ots/frontend/app.js
Knut Ahlers 37d79e1478
Re-generate frontend code after rebase on master
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2021-09-06 22:36:11 +02:00

2 lines
969 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*! For license information please see app.js.LICENSE.txt */
(()=>{var t={9669:(t,e,r)=>{t.exports=r(1609)},5448:(t,e,r)=>{"use strict";var o=r(4867),n=r(6026),i=r(4372),a=r(5327),l=r(4097),s=r(4109),c=r(7985),d=r(5061);t.exports=function(t){return new Promise((function(e,r){var p=t.data,u=t.headers,m=t.responseType;o.isFormData(p)&&delete u["Content-Type"];var f=new XMLHttpRequest;if(t.auth){var b=t.auth.username||"",h=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";u.Authorization="Basic "+btoa(b+":"+h)}var g=l(t.baseURL,t.url);function v(){if(f){var o="getAllResponseHeaders"in f?s(f.getAllResponseHeaders()):null,i={data:m&&"text"!==m&&"json"!==m?f.response:f.responseText,status:f.status,statusText:f.statusText,headers:o,config:t,request:f};n(e,r,i),f=null}}if(f.open(t.method.toUpperCase(),a(g,t.params,t.paramsSerializer),!0),f.timeout=t.timeout,"onloadend"in f?f.onloadend=v:f.onreadystatechange=function(){f&&4===f.readyState&&(0!==f.status||f.responseURL&&0===f.responseURL.indexOf("file:"))&&setTimeout(v)},f.onabort=function(){f&&(r(d("Request aborted",t,"ECONNABORTED",f)),f=null)},f.onerror=function(){r(d("Network Error",t,null,f)),f=null},f.ontimeout=function(){var e="timeout of "+t.timeout+"ms exceeded";t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),r(d(e,t,t.transitional&&t.transitional.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",f)),f=null},o.isStandardBrowserEnv()){var x=(t.withCredentials||c(g))&&t.xsrfCookieName?i.read(t.xsrfCookieName):void 0;x&&(u[t.xsrfHeaderName]=x)}"setRequestHeader"in f&&o.forEach(u,(function(t,e){void 0===p&&"content-type"===e.toLowerCase()?delete u[e]:f.setRequestHeader(e,t)})),o.isUndefined(t.withCredentials)||(f.withCredentials=!!t.withCredentials),m&&"json"!==m&&(f.responseType=t.responseType),"function"==typeof t.onDownloadProgress&&f.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&f.upload&&f.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then((function(t){f&&(f.abort(),r(t),f=null)})),p||(p=null),f.send(p)}))}},1609:(t,e,r)=>{"use strict";var o=r(4867),n=r(1849),i=r(321),a=r(7185);function l(t){var e=new i(t),r=n(i.prototype.request,e);return o.extend(r,i.prototype,e),o.extend(r,e),r}var s=l(r(5655));s.Axios=i,s.create=function(t){return l(a(s.defaults,t))},s.Cancel=r(5263),s.CancelToken=r(4972),s.isCancel=r(6502),s.all=function(t){return Promise.all(t)},s.spread=r(8713),s.isAxiosError=r(6268),t.exports=s,t.exports.default=s},5263:t=>{"use strict";function e(t){this.message=t}e.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},e.prototype.__CANCEL__=!0,t.exports=e},4972:(t,e,r)=>{"use strict";var o=r(5263);function n(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(t){e=t}));var r=this;t((function(t){r.reason||(r.reason=new o(t),e(r.reason))}))}n.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},n.source=function(){var t;return{token:new n((function(e){t=e})),cancel:t}},t.exports=n},6502:t=>{"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},321:(t,e,r)=>{"use strict";var o=r(4867),n=r(5327),i=r(782),a=r(3572),l=r(7185),s=r(4875),c=s.validators;function d(t){this.defaults=t,this.interceptors={request:new i,response:new i}}d.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=l(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=t.transitional;void 0!==e&&s.assertOptions(e,{silentJSONParsing:c.transitional(c.boolean,"1.0.0"),forcedJSONParsing:c.transitional(c.boolean,"1.0.0"),clarifyTimeoutError:c.transitional(c.boolean,"1.0.0")},!1);var r=[],o=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(o=o&&e.synchronous,r.unshift(e.fulfilled,e.rejected))}));var n,i=[];if(this.interceptors.response.forEach((function(t){i.push(t.fulfilled,t.rejected)})),!o){var d=[a,void 0];for(Array.prototype.unshift.apply(d,r),d=d.concat(i),n=Promise.resolve(t);d.length;)n=n.then(d.shift(),d.shift());return n}for(var p=t;r.length;){var u=r.shift(),m=r.shift();try{p=u(p)}catch(t){m(t);break}}try{n=a(p)}catch(t){return Promise.reject(t)}for(;i.length;)n=n.then(i.shift(),i.shift());return n},d.prototype.getUri=function(t){return t=l(this.defaults,t),n(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},o.forEach(["delete","get","head","options"],(function(t){d.prototype[t]=function(e,r){return this.request(l(r||{},{method:t,url:e,data:(r||{}).data}))}})),o.forEach(["post","put","patch"],(function(t){d.prototype[t]=function(e,r,o){return this.request(l(o||{},{method:t,url:e,data:r}))}})),t.exports=d},782:(t,e,r)=>{"use strict";var o=r(4867);function n(){this.handlers=[]}n.prototype.use=function(t,e,r){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!r&&r.synchronous,runWhen:r?r.runWhen:null}),this.handlers.length-1},n.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},n.prototype.forEach=function(t){o.forEach(this.handlers,(function(e){null!==e&&t(e)}))},t.exports=n},4097:(t,e,r)=>{"use strict";var o=r(1793),n=r(7303);t.exports=function(t,e){return t&&!o(e)?n(t,e):e}},5061:(t,e,r)=>{"use strict";var o=r(481);t.exports=function(t,e,r,n,i){var a=new Error(t);return o(a,e,r,n,i)}},3572:(t,e,r)=>{"use strict";var o=r(4867),n=r(8527),i=r(6502),a=r(5655);function l(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return l(t),t.headers=t.headers||{},t.data=n.call(t,t.data,t.headers,t.transformRequest),t.headers=o.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),o.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),(t.adapter||a.adapter)(t).then((function(e){return l(t),e.data=n.call(t,e.data,e.headers,t.transformResponse),e}),(function(e){return i(e)||(l(t),e&&e.response&&(e.response.data=n.call(t,e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},481:t=>{"use strict";t.exports=function(t,e,r,o,n){return t.config=e,r&&(t.code=r),t.request=o,t.response=n,t.isAxiosError=!0,t.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},t}},7185:(t,e,r)=>{"use strict";var o=r(4867);t.exports=function(t,e){e=e||{};var r={},n=["url","method","data"],i=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],l=["validateStatus"];function s(t,e){return o.isPlainObject(t)&&o.isPlainObject(e)?o.merge(t,e):o.isPlainObject(e)?o.merge({},e):o.isArray(e)?e.slice():e}function c(n){o.isUndefined(e[n])?o.isUndefined(t[n])||(r[n]=s(void 0,t[n])):r[n]=s(t[n],e[n])}o.forEach(n,(function(t){o.isUndefined(e[t])||(r[t]=s(void 0,e[t]))})),o.forEach(i,c),o.forEach(a,(function(n){o.isUndefined(e[n])?o.isUndefined(t[n])||(r[n]=s(void 0,t[n])):r[n]=s(void 0,e[n])})),o.forEach(l,(function(o){o in e?r[o]=s(t[o],e[o]):o in t&&(r[o]=s(void 0,t[o]))}));var d=n.concat(i).concat(a).concat(l),p=Object.keys(t).concat(Object.keys(e)).filter((function(t){return-1===d.indexOf(t)}));return o.forEach(p,c),r}},6026:(t,e,r)=>{"use strict";var o=r(5061);t.exports=function(t,e,r){var n=r.config.validateStatus;r.status&&n&&!n(r.status)?e(o("Request failed with status code "+r.status,r.config,null,r.request,r)):t(r)}},8527:(t,e,r)=>{"use strict";var o=r(4867),n=r(5655);t.exports=function(t,e,r){var i=this||n;return o.forEach(r,(function(r){t=r.call(i,t,e)})),t}},5655:(t,e,r)=>{"use strict";var o=r(4867),n=r(6016),i=r(481),a={"Content-Type":"application/x-www-form-urlencoded"};function l(t,e){!o.isUndefined(t)&&o.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}var s,c={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:(("undefined"!=typeof XMLHttpRequest||"undefined"!=typeof process&&"[object process]"===Object.prototype.toString.call(process))&&(s=r(5448)),s),transformRequest:[function(t,e){return n(e,"Accept"),n(e,"Content-Type"),o.isFormData(t)||o.isArrayBuffer(t)||o.isBuffer(t)||o.isStream(t)||o.isFile(t)||o.isBlob(t)?t:o.isArrayBufferView(t)?t.buffer:o.isURLSearchParams(t)?(l(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):o.isObject(t)||e&&"application/json"===e["Content-Type"]?(l(e,"application/json"),function(t,e,r){if(o.isString(t))try{return(0,JSON.parse)(t),o.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(0,JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){var e=this.transitional,r=e&&e.silentJSONParsing,n=e&&e.forcedJSONParsing,a=!r&&"json"===this.responseType;if(a||n&&o.isString(t)&&t.length)try{return JSON.parse(t)}catch(t){if(a){if("SyntaxError"===t.name)throw i(t,this,"E_JSON_PARSE");throw t}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};o.forEach(["delete","get","head"],(function(t){c.headers[t]={}})),o.forEach(["post","put","patch"],(function(t){c.headers[t]=o.merge(a)})),t.exports=c},1849:t=>{"use strict";t.exports=function(t,e){return function(){for(var r=new Array(arguments.length),o=0;o<r.length;o++)r[o]=arguments[o];return t.apply(e,r)}}},5327:(t,e,r)=>{"use strict";var o=r(4867);function n(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,e,r){if(!e)return t;var i;if(r)i=r(e);else if(o.isURLSearchParams(e))i=e.toString();else{var a=[];o.forEach(e,(function(t,e){null!=t&&(o.isArray(t)?e+="[]":t=[t],o.forEach(t,(function(t){o.isDate(t)?t=t.toISOString():o.isObject(t)&&(t=JSON.stringify(t)),a.push(n(e)+"="+n(t))})))})),i=a.join("&")}if(i){var l=t.indexOf("#");-1!==l&&(t=t.slice(0,l)),t+=(-1===t.indexOf("?")?"?":"&")+i}return t}},7303:t=>{"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},4372:(t,e,r)=>{"use strict";var o=r(4867);t.exports=o.isStandardBrowserEnv()?{write:function(t,e,r,n,i,a){var l=[];l.push(t+"="+encodeURIComponent(e)),o.isNumber(r)&&l.push("expires="+new Date(r).toGMTString()),o.isString(n)&&l.push("path="+n),o.isString(i)&&l.push("domain="+i),!0===a&&l.push("secure"),document.cookie=l.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},1793:t=>{"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},6268:t=>{"use strict";t.exports=function(t){return"object"==typeof t&&!0===t.isAxiosError}},7985:(t,e,r)=>{"use strict";var o=r(4867);t.exports=o.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");function n(t){var o=t;return e&&(r.setAttribute("href",o),o=r.href),r.setAttribute("href",o),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:"/"===r.pathname.charAt(0)?r.pathname:"/"+r.pathname}}return t=n(window.location.href),function(e){var r=o.isString(e)?n(e):e;return r.protocol===t.protocol&&r.host===t.host}}():function(){return!0}},6016:(t,e,r)=>{"use strict";var o=r(4867);t.exports=function(t,e){o.forEach(t,(function(r,o){o!==e&&o.toUpperCase()===e.toUpperCase()&&(t[e]=r,delete t[o])}))}},4109:(t,e,r)=>{"use strict";var o=r(4867),n=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,r,i,a={};return t?(o.forEach(t.split("\n"),(function(t){if(i=t.indexOf(":"),e=o.trim(t.substr(0,i)).toLowerCase(),r=o.trim(t.substr(i+1)),e){if(a[e]&&n.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([r]):a[e]?a[e]+", "+r:r}})),a):a}},8713:t=>{"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},4875:(t,e,r)=>{"use strict";var o=r(8593),n={};["object","boolean","number","function","string","symbol"].forEach((function(t,e){n[t]=function(r){return typeof r===t||"a"+(e<1?"n ":" ")+t}}));var i={},a=o.version.split(".");function l(t,e){for(var r=e?e.split("."):a,o=t.split("."),n=0;n<3;n++){if(r[n]>o[n])return!0;if(r[n]<o[n])return!1}return!1}n.transitional=function(t,e,r){var n=e&&l(e);function a(t,e){return"[Axios v"+o.version+"] Transitional option '"+t+"'"+e+(r?". "+r:"")}return function(r,o,l){if(!1===t)throw new Error(a(o," has been removed in "+e));return n&&!i[o]&&(i[o]=!0,console.warn(a(o," has been deprecated since v"+e+" and will be removed in the near future"))),!t||t(r,o,l)}},t.exports={isOlderVersion:l,assertOptions:function(t,e,r){if("object"!=typeof t)throw new TypeError("options must be an object");for(var o=Object.keys(t),n=o.length;n-- >0;){var i=o[n],a=e[i];if(a){var l=t[i],s=void 0===l||a(l,i,t);if(!0!==s)throw new TypeError("option "+i+" must be "+s)}else if(!0!==r)throw Error("Unknown option "+i)}},validators:n}},4867:(t,e,r)=>{"use strict";var o=r(1849),n=Object.prototype.toString;function i(t){return"[object Array]"===n.call(t)}function a(t){return void 0===t}function l(t){return null!==t&&"object"==typeof t}function s(t){if("[object Object]"!==n.call(t))return!1;var e=Object.getPrototypeOf(t);return null===e||e===Object.prototype}function c(t){return"[object Function]"===n.call(t)}function d(t,e){if(null!=t)if("object"!=typeof t&&(t=[t]),i(t))for(var r=0,o=t.length;r<o;r++)e.call(null,t[r],r,t);else for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.call(null,t[n],n,t)}t.exports={isArray:i,isArrayBuffer:function(t){return"[object ArrayBuffer]"===n.call(t)},isBuffer:function(t){return null!==t&&!a(t)&&null!==t.constructor&&!a(t.constructor)&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)},isFormData:function(t){return"undefined"!=typeof FormData&&t instanceof FormData},isArrayBufferView:function(t){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&t.buffer instanceof ArrayBuffer},isString:function(t){return"string"==typeof t},isNumber:function(t){return"number"==typeof t},isObject:l,isPlainObject:s,isUndefined:a,isDate:function(t){return"[object Date]"===n.call(t)},isFile:function(t){return"[object File]"===n.call(t)},isBlob:function(t){return"[object Blob]"===n.call(t)},isFunction:c,isStream:function(t){return l(t)&&c(t.pipe)},isURLSearchParams:function(t){return"undefined"!=typeof URLSearchParams&&t instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&"undefined"!=typeof window&&"undefined"!=typeof document},forEach:d,merge:function t(){var e={};function r(r,o){s(e[o])&&s(r)?e[o]=t(e[o],r):s(r)?e[o]=t({},r):i(r)?e[o]=r.slice():e[o]=r}for(var o=0,n=arguments.length;o<n;o++)d(arguments[o],r);return e},extend:function(t,e,r){return d(e,(function(e,n){t[n]=r&&"function"==typeof e?o(e,r):e})),t},trim:function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")},stripBOM:function(t){return 65279===t.charCodeAt(0)&&(t=t.slice(1)),t}}},6438:(t,e,r)=>{"use strict";var o=r(144),n=["compactDisplay","currency","currencyDisplay","currencySign","localeMatcher","notation","numberingSystem","signDisplay","style","unit","unitDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits"];function i(t,e){"undefined"!=typeof console&&(console.warn("[vue-i18n] "+t),e&&console.warn(e.stack))}var a=Array.isArray;function l(t){return null!==t&&"object"==typeof t}function s(t){return"string"==typeof t}var c=Object.prototype.toString;function d(t){return"[object Object]"===c.call(t)}function p(t){return null==t}function u(t){return"function"==typeof t}function m(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var r=null,o=null;return 1===t.length?l(t[0])||a(t[0])?o=t[0]:"string"==typeof t[0]&&(r=t[0]):2===t.length&&("string"==typeof t[0]&&(r=t[0]),(l(t[1])||a(t[1]))&&(o=t[1])),{locale:r,params:o}}function f(t){return JSON.parse(JSON.stringify(t))}function b(t,e){return!!~t.indexOf(e)}var h=Object.prototype.hasOwnProperty;function g(t,e){return h.call(t,e)}function v(t){for(var e=arguments,r=Object(t),o=1;o<arguments.length;o++){var n=e[o];if(null!=n){var i=void 0;for(i in n)g(n,i)&&(l(n[i])?r[i]=v(r[i],n[i]):r[i]=n[i])}}return r}function x(t,e){if(t===e)return!0;var r=l(t),o=l(e);if(!r||!o)return!r&&!o&&String(t)===String(e);try{var n=a(t),i=a(e);if(n&&i)return t.length===e.length&&t.every((function(t,r){return x(t,e[r])}));if(n||i)return!1;var s=Object.keys(t),c=Object.keys(e);return s.length===c.length&&s.every((function(r){return x(t[r],e[r])}))}catch(t){return!1}}function y(t){return null!=t&&Object.keys(t).forEach((function(e){"string"==typeof t[e]&&(t[e]=t[e].replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&apos;"))})),t}var w={beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n){if(t.i18n instanceof K){if(t.__i18n)try{var e=t.i18n&&t.i18n.messages?t.i18n.messages:{};t.__i18n.forEach((function(t){e=v(e,JSON.parse(t))})),Object.keys(e).forEach((function(r){t.i18n.mergeLocaleMessage(r,e[r])}))}catch(t){}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData()}else if(d(t.i18n)){var r=this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof K?this.$root.$i18n:null;if(r&&(t.i18n.root=this.$root,t.i18n.formatter=r.formatter,t.i18n.fallbackLocale=r.fallbackLocale,t.i18n.formatFallbackMessages=r.formatFallbackMessages,t.i18n.silentTranslationWarn=r.silentTranslationWarn,t.i18n.silentFallbackWarn=r.silentFallbackWarn,t.i18n.pluralizationRules=r.pluralizationRules,t.i18n.preserveDirectiveContent=r.preserveDirectiveContent),t.__i18n)try{var o=t.i18n&&t.i18n.messages?t.i18n.messages:{};t.__i18n.forEach((function(t){o=v(o,JSON.parse(t))})),t.i18n.messages=o}catch(t){}var n=t.i18n.sharedMessages;n&&d(n)&&(t.i18n.messages=v(t.i18n.messages,n)),this._i18n=new K(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale()),r&&r.onComponentInstanceCreated(this._i18n)}}else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof K?this._i18n=this.$root.$i18n:t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof K&&(this._i18n=t.parent.$i18n)},beforeMount:function(){var t=this.$options;t.i18n=t.i18n||(t.__i18n?{}:null),t.i18n?(t.i18n instanceof K||d(t.i18n))&&(this._i18n.subscribeDataChanging(this),this._subscribing=!0):(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof K||t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof K)&&(this._i18n.subscribeDataChanging(this),this._subscribing=!0)},mounted:function(){this!==this.$root&&this.$options.__INTLIFY_META__&&this.$el&&this.$el.setAttribute("data-intlify",this.$options.__INTLIFY_META__)},beforeDestroy:function(){if(this._i18n){var t=this;this.$nextTick((function(){t._subscribing&&(t._i18n.unsubscribeDataChanging(t),delete t._subscribing),t._i18nWatcher&&(t._i18nWatcher(),t._i18n.destroyVM(),delete t._i18nWatcher),t._localeWatcher&&(t._localeWatcher(),delete t._localeWatcher)}))}}},k={name:"i18n",functional:!0,props:{tag:{type:[String,Boolean,Object],default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,e){var r=e.data,o=e.parent,n=e.props,i=e.slots,a=o.$i18n;if(a){var l=n.path,s=n.locale,c=n.places,d=i(),p=a.i(l,s,function(t){var e;for(e in t)if("default"!==e)return!1;return Boolean(e)}(d)||c?function(t,e){var r=e?function(t){return Array.isArray(t)?t.reduce(j,{}):Object.assign({},t)}(e):{};if(!t)return r;var o=(t=t.filter((function(t){return t.tag||""!==t.text.trim()}))).every(S);return t.reduce(o?O:j,r)}(d.default,c):d),u=n.tag&&!0!==n.tag||!1===n.tag?n.tag:"span";return u?t(u,r,p):p}}};function O(t,e){return e.data&&e.data.attrs&&e.data.attrs.place&&(t[e.data.attrs.place]=e),t}function j(t,e,r){return t[r]=e,t}function S(t){return Boolean(t.data&&t.data.attrs&&t.data.attrs.place)}var P,T={name:"i18n-n",functional:!0,props:{tag:{type:[String,Boolean,Object],default:"span"},value:{type:Number,required:!0},format:{type:[String,Object]},locale:{type:String}},render:function(t,e){var r=e.props,o=e.parent,i=e.data,a=o.$i18n;if(!a)return null;var c=null,d=null;s(r.format)?c=r.format:l(r.format)&&(r.format.key&&(c=r.format.key),d=Object.keys(r.format).reduce((function(t,e){var o;return b(n,e)?Object.assign({},t,((o={})[e]=r.format[e],o)):t}),null));var p=r.locale||a.locale,u=a._ntp(r.value,p,c,d),m=u.map((function(t,e){var r,o=i.scopedSlots&&i.scopedSlots[t.type];return o?o(((r={})[t.type]=t.value,r.index=e,r.parts=u,r)):t.value})),f=r.tag&&!0!==r.tag||!1===r.tag?r.tag:"span";return f?t(f,{attrs:i.attrs,class:i.class,staticClass:i.staticClass},m):m}};function _(t,e,r){D(0,r)&&E(t,e,r)}function C(t,e,r,o){if(D(0,r)){var n=r.context.$i18n;(function(t,e){var r=e.context;return t._locale===r.$i18n.locale})(t,r)&&x(e.value,e.oldValue)&&x(t._localeMessage,n.getLocaleMessage(n.locale))||E(t,e,r)}}function $(t,e,r,o){if(r.context){var n=r.context.$i18n||{};e.modifiers.preserve||n.preserveDirectiveContent||(t.textContent=""),t._vt=void 0,delete t._vt,t._locale=void 0,delete t._locale,t._localeMessage=void 0,delete t._localeMessage}else i("Vue instance does not exists in VNode context")}function D(t,e){var r=e.context;return r?!!r.$i18n||(i("VueI18n instance does not exists in Vue instance"),!1):(i("Vue instance does not exists in VNode context"),!1)}function E(t,e,r){var o,n,a=function(t){var e,r,o,n;return s(t)?e=t:d(t)&&(e=t.path,r=t.locale,o=t.args,n=t.choice),{path:e,locale:r,args:o,choice:n}}(e.value),l=a.path,c=a.locale,p=a.args,u=a.choice;if(l||c||p)if(l){var m=r.context;t._vt=t.textContent=null!=u?(o=m.$i18n).tc.apply(o,[l,u].concat(z(c,p))):(n=m.$i18n).t.apply(n,[l].concat(z(c,p))),t._locale=m.$i18n.locale,t._localeMessage=m.$i18n.getLocaleMessage(m.$i18n.locale)}else i("`path` is required in v-t directive");else i("value type not supported")}function z(t,e){var r=[];return t&&r.push(t),e&&(Array.isArray(e)||d(e))&&r.push(e),r}function B(t){B.installed=!0,(P=t).version&&Number(P.version.split(".")[0]),function(t){t.prototype.hasOwnProperty("$i18n")||Object.defineProperty(t.prototype,"$i18n",{get:function(){return this._i18n}}),t.prototype.$t=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];var o=this.$i18n;return o._t.apply(o,[t,o.locale,o._getMessages(),this].concat(e))},t.prototype.$tc=function(t,e){for(var r=[],o=arguments.length-2;o-- >0;)r[o]=arguments[o+2];var n=this.$i18n;return n._tc.apply(n,[t,n.locale,n._getMessages(),this,e].concat(r))},t.prototype.$te=function(t,e){var r=this.$i18n;return r._te(t,r.locale,r._getMessages(),e)},t.prototype.$d=function(t){for(var e,r=[],o=arguments.length-1;o-- >0;)r[o]=arguments[o+1];return(e=this.$i18n).d.apply(e,[t].concat(r))},t.prototype.$n=function(t){for(var e,r=[],o=arguments.length-1;o-- >0;)r[o]=arguments[o+1];return(e=this.$i18n).n.apply(e,[t].concat(r))}}(P),P.mixin(w),P.directive("t",{bind:_,update:C,unbind:$}),P.component(k.name,k),P.component(T.name,T),P.config.optionMergeStrategies.i18n=function(t,e){return void 0===e?t:e}}var A=function(){this._caches=Object.create(null)};A.prototype.interpolate=function(t,e){if(!e)return[t];var r=this._caches[t];return r||(r=function(t){for(var e=[],r=0,o="";r<t.length;){var n=t[r++];if("{"===n){o&&e.push({type:"text",value:o}),o="";var i="";for(n=t[r++];void 0!==n&&"}"!==n;)i+=n,n=t[r++];var a="}"===n,l=I.test(i)?"list":a&&F.test(i)?"named":"unknown";e.push({value:i,type:l})}else"%"===n?"{"!==t[r]&&(o+=n):o+=n}return o&&e.push({type:"text",value:o}),e}(t),this._caches[t]=r),function(t,e){var r=[],o=0,n=Array.isArray(e)?"list":l(e)?"named":"unknown";if("unknown"===n)return r;for(;o<t.length;){var i=t[o];switch(i.type){case"text":r.push(i.value);break;case"list":r.push(e[parseInt(i.value,10)]);break;case"named":"named"===n&&r.push(e[i.value])}o++}return r}(r,e)};var I=/^(?:\d)+/,F=/^(?:\w)+/,L=[];L[0]={ws:[0],ident:[3,0],"[":[4],eof:[7]},L[1]={ws:[1],".":[2],"[":[4],eof:[7]},L[2]={ws:[2],ident:[3,0],0:[3,0],number:[3,0]},L[3]={ident:[3,0],0:[3,0],number:[3,0],ws:[1,1],".":[2,1],"[":[4,1],eof:[7,1]},L[4]={"'":[5,0],'"':[6,0],"[":[4,2],"]":[1,3],eof:8,else:[4,0]},L[5]={"'":[4,0],eof:8,else:[5,0]},L[6]={'"':[4,0],eof:8,else:[6,0]};var M=/^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;function R(t){if(null==t)return"eof";switch(t.charCodeAt(0)){case 91:case 93:case 46:case 34:case 39:return t;case 95:case 36:case 45:return"ident";case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"ws"}return"ident"}var V=function(){this._cache=Object.create(null)};V.prototype.parsePath=function(t){var e=this._cache[t];return e||(e=function(t){var e,r,o,n,i,a,l,s=[],c=-1,d=0,p=0,u=[];function m(){var e=t[c+1];if(5===d&&"'"===e||6===d&&'"'===e)return c++,o="\\"+e,u[0](),!0}for(u[1]=function(){void 0!==r&&(s.push(r),r=void 0)},u[0]=function(){void 0===r?r=o:r+=o},u[2]=function(){u[0](),p++},u[3]=function(){if(p>0)p--,d=4,u[0]();else{if(p=0,void 0===r)return!1;if(!1===(r=function(t){var e,r=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(e=r,M.test(e)?function(t){var e=t.charCodeAt(0);return e!==t.charCodeAt(t.length-1)||34!==e&&39!==e?t:t.slice(1,-1)}(r):"*"+r)}(r)))return!1;u[1]()}};null!==d;)if(c++,"\\"!==(e=t[c])||!m()){if(n=R(e),8===(i=(l=L[d])[n]||l.else||8))return;if(d=i[0],(a=u[i[1]])&&(o=void 0===(o=i[2])?e:o,!1===a()))return;if(7===d)return s}}(t))&&(this._cache[t]=e),e||[]},V.prototype.getPathValue=function(t,e){if(!l(t))return null;var r=this.parsePath(e);if(0===r.length)return null;for(var o=r.length,n=t,i=0;i<o;){var a=n[r[i]];if(null==a)return null;n=a,i++}return n};var N,H=/<\/?[\w\s="/.':;#-\/]+>/,U=/(?:@(?:\.[a-z]+)?:(?:[\w\-_|.]+|\([\w\-_|.]+\)))/g,W=/^@(?:\.([a-z]+))?:/,G=/[()]/g,q={upper:function(t){return t.toLocaleUpperCase()},lower:function(t){return t.toLocaleLowerCase()},capitalize:function(t){return""+t.charAt(0).toLocaleUpperCase()+t.substr(1)}},Y=new A,K=function(t){var e=this;void 0===t&&(t={}),!P&&"undefined"!=typeof window&&window.Vue&&B(window.Vue);var r=t.locale||"en-US",o=!1!==t.fallbackLocale&&(t.fallbackLocale||"en-US"),n=t.messages||{},i=t.dateTimeFormats||{},a=t.numberFormats||{};this._vm=null,this._formatter=t.formatter||Y,this._modifiers=t.modifiers||{},this._missing=t.missing||null,this._root=t.root||null,this._sync=void 0===t.sync||!!t.sync,this._fallbackRoot=void 0===t.fallbackRoot||!!t.fallbackRoot,this._formatFallbackMessages=void 0!==t.formatFallbackMessages&&!!t.formatFallbackMessages,this._silentTranslationWarn=void 0!==t.silentTranslationWarn&&t.silentTranslationWarn,this._silentFallbackWarn=void 0!==t.silentFallbackWarn&&!!t.silentFallbackWarn,this._dateTimeFormatters={},this._numberFormatters={},this._path=new V,this._dataListeners=new Set,this._componentInstanceCreatedListener=t.componentInstanceCreatedListener||null,this._preserveDirectiveContent=void 0!==t.preserveDirectiveContent&&!!t.preserveDirectiveContent,this.pluralizationRules=t.pluralizationRules||{},this._warnHtmlInMessage=t.warnHtmlInMessage||"off",this._postTranslation=t.postTranslation||null,this._escapeParameterHtml=t.escapeParameterHtml||!1,this.getChoiceIndex=function(t,r){var o,n,i=Object.getPrototypeOf(e);return i&&i.getChoiceIndex?i.getChoiceIndex.call(e,t,r):e.locale in e.pluralizationRules?e.pluralizationRules[e.locale].apply(e,[t,r]):(o=t,n=r,o=Math.abs(o),2===n?o?o>1?1:0:1:o?Math.min(o,2):0)},this._exist=function(t,r){return!(!t||!r||p(e._path.getPathValue(t,r))&&!t[r])},"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||Object.keys(n).forEach((function(t){e._checkLocaleMessage(t,e._warnHtmlInMessage,n[t])})),this._initVM({locale:r,fallbackLocale:o,messages:n,dateTimeFormats:i,numberFormats:a})},X={vm:{configurable:!0},messages:{configurable:!0},dateTimeFormats:{configurable:!0},numberFormats:{configurable:!0},availableLocales:{configurable:!0},locale:{configurable:!0},fallbackLocale:{configurable:!0},formatFallbackMessages:{configurable:!0},missing:{configurable:!0},formatter:{configurable:!0},silentTranslationWarn:{configurable:!0},silentFallbackWarn:{configurable:!0},preserveDirectiveContent:{configurable:!0},warnHtmlInMessage:{configurable:!0},postTranslation:{configurable:!0}};K.prototype._checkLocaleMessage=function(t,e,r){var o=function(t,e,r,n){if(d(r))Object.keys(r).forEach((function(i){var a=r[i];d(a)?(n.push(i),n.push("."),o(t,e,a,n),n.pop(),n.pop()):(n.push(i),o(t,e,a,n),n.pop())}));else if(a(r))r.forEach((function(r,i){d(r)?(n.push("["+i+"]"),n.push("."),o(t,e,r,n),n.pop(),n.pop()):(n.push("["+i+"]"),o(t,e,r,n),n.pop())}));else if(s(r)&&H.test(r)){var l="Detected HTML in message '"+r+"' of keypath '"+n.join("")+"' at '"+e+"'. Consider component interpolation with '<i18n>' to avoid XSS. See https://bit.ly/2ZqJzkp";"warn"===t?i(l):"error"===t&&function(t,e){"undefined"!=typeof console&&console.error("[vue-i18n] "+t)}(l)}};o(e,t,r,[])},K.prototype._initVM=function(t){var e=P.config.silent;P.config.silent=!0,this._vm=new P({data:t}),P.config.silent=e},K.prototype.destroyVM=function(){this._vm.$destroy()},K.prototype.subscribeDataChanging=function(t){this._dataListeners.add(t)},K.prototype.unsubscribeDataChanging=function(t){!function(t,e){t.delete(e)}(this._dataListeners,t)},K.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",(function(){for(var e,r,o=(e=t._dataListeners,r=[],e.forEach((function(t){return r.push(t)})),r),n=o.length;n--;)P.nextTick((function(){o[n]&&o[n].$forceUpdate()}))}),{deep:!0})},K.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.$i18n.vm.$watch("locale",(function(e){t.$set(t,"locale",e),t.$forceUpdate()}),{immediate:!0})},K.prototype.onComponentInstanceCreated=function(t){this._componentInstanceCreatedListener&&this._componentInstanceCreatedListener(t,this)},X.vm.get=function(){return this._vm},X.messages.get=function(){return f(this._getMessages())},X.dateTimeFormats.get=function(){return f(this._getDateTimeFormats())},X.numberFormats.get=function(){return f(this._getNumberFormats())},X.availableLocales.get=function(){return Object.keys(this.messages).sort()},X.locale.get=function(){return this._vm.locale},X.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},X.fallbackLocale.get=function(){return this._vm.fallbackLocale},X.fallbackLocale.set=function(t){this._localeChainCache={},this._vm.$set(this._vm,"fallbackLocale",t)},X.formatFallbackMessages.get=function(){return this._formatFallbackMessages},X.formatFallbackMessages.set=function(t){this._formatFallbackMessages=t},X.missing.get=function(){return this._missing},X.missing.set=function(t){this._missing=t},X.formatter.get=function(){return this._formatter},X.formatter.set=function(t){this._formatter=t},X.silentTranslationWarn.get=function(){return this._silentTranslationWarn},X.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},X.silentFallbackWarn.get=function(){return this._silentFallbackWarn},X.silentFallbackWarn.set=function(t){this._silentFallbackWarn=t},X.preserveDirectiveContent.get=function(){return this._preserveDirectiveContent},X.preserveDirectiveContent.set=function(t){this._preserveDirectiveContent=t},X.warnHtmlInMessage.get=function(){return this._warnHtmlInMessage},X.warnHtmlInMessage.set=function(t){var e=this,r=this._warnHtmlInMessage;if(this._warnHtmlInMessage=t,r!==t&&("warn"===t||"error"===t)){var o=this._getMessages();Object.keys(o).forEach((function(t){e._checkLocaleMessage(t,e._warnHtmlInMessage,o[t])}))}},X.postTranslation.get=function(){return this._postTranslation},X.postTranslation.set=function(t){this._postTranslation=t},K.prototype._getMessages=function(){return this._vm.messages},K.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},K.prototype._getNumberFormats=function(){return this._vm.numberFormats},K.prototype._warnDefault=function(t,e,r,o,n,i){if(!p(r))return r;if(this._missing){var a=this._missing.apply(null,[t,e,o,n]);if(s(a))return a}if(this._formatFallbackMessages){var l=m.apply(void 0,n);return this._render(e,i,l.params,e)}return e},K.prototype._isFallbackRoot=function(t){return!t&&!p(this._root)&&this._fallbackRoot},K.prototype._isSilentFallbackWarn=function(t){return this._silentFallbackWarn instanceof RegExp?this._silentFallbackWarn.test(t):this._silentFallbackWarn},K.prototype._isSilentFallback=function(t,e){return this._isSilentFallbackWarn(e)&&(this._isFallbackRoot()||t!==this.fallbackLocale)},K.prototype._isSilentTranslationWarn=function(t){return this._silentTranslationWarn instanceof RegExp?this._silentTranslationWarn.test(t):this._silentTranslationWarn},K.prototype._interpolate=function(t,e,r,o,n,i,l){if(!e)return null;var c,m=this._path.getPathValue(e,r);if(a(m)||d(m))return m;if(p(m)){if(!d(e))return null;if(!s(c=e[r])&&!u(c))return null}else{if(!s(m)&&!u(m))return null;c=m}return s(c)&&(c.indexOf("@:")>=0||c.indexOf("@.")>=0)&&(c=this._link(t,e,c,o,"raw",i,l)),this._render(c,n,i,r)},K.prototype._link=function(t,e,r,o,n,i,l){var s=r,c=s.match(U);for(var d in c)if(c.hasOwnProperty(d)){var p=c[d],u=p.match(W),m=u[0],f=u[1],h=p.replace(m,"").replace(G,"");if(b(l,h))return s;l.push(h);var g=this._interpolate(t,e,h,o,"raw"===n?"string":n,"raw"===n?void 0:i,l);if(this._isFallbackRoot(g)){if(!this._root)throw Error("unexpected error");var v=this._root.$i18n;g=v._translate(v._getMessages(),v.locale,v.fallbackLocale,h,o,n,i)}g=this._warnDefault(t,h,g,o,a(i)?i:[i],n),this._modifiers.hasOwnProperty(f)?g=this._modifiers[f](g):q.hasOwnProperty(f)&&(g=q[f](g)),l.pop(),s=g?s.replace(p,g):s}return s},K.prototype._createMessageContext=function(t,e,r,o){var n=this,i=a(t)?t:[],s=l(t)?t:{},c=this._getMessages(),d=this.locale;return{list:function(t){return i[t]},named:function(t){return s[t]},values:t,formatter:e,path:r,messages:c,locale:d,linked:function(t){return n._interpolate(d,c[d]||{},t,null,o,void 0,[t])}}},K.prototype._render=function(t,e,r,o){if(u(t))return t(this._createMessageContext(r,this._formatter||Y,o,e));var n=this._formatter.interpolate(t,r,o);return n||(n=Y.interpolate(t,r,o)),"string"!==e||s(n)?n:n.join("")},K.prototype._appendItemToChain=function(t,e,r){var o=!1;return b(t,e)||(o=!0,e&&(o="!"!==e[e.length-1],e=e.replace(/!/g,""),t.push(e),r&&r[e]&&(o=r[e]))),o},K.prototype._appendLocaleToChain=function(t,e,r){var o,n=e.split("-");do{var i=n.join("-");o=this._appendItemToChain(t,i,r),n.splice(-1,1)}while(n.length&&!0===o);return o},K.prototype._appendBlockToChain=function(t,e,r){for(var o=!0,n=0;n<e.length&&"boolean"==typeof o;n++){var i=e[n];s(i)&&(o=this._appendLocaleToChain(t,i,r))}return o},K.prototype._getLocaleChain=function(t,e){if(""===t)return[];this._localeChainCache||(this._localeChainCache={});var r=this._localeChainCache[t];if(!r){e||(e=this.fallbackLocale),r=[];for(var o,n=[t];a(n);)n=this._appendBlockToChain(r,n,e);(n=s(o=a(e)?e:l(e)?e.default?e.default:null:e)?[o]:o)&&this._appendBlockToChain(r,n,null),this._localeChainCache[t]=r}return r},K.prototype._translate=function(t,e,r,o,n,i,a){for(var l,s=this._getLocaleChain(e,r),c=0;c<s.length;c++){var d=s[c];if(!p(l=this._interpolate(d,t[d],o,n,i,a,[o])))return l}return null},K.prototype._t=function(t,e,r,o){for(var n,i=[],a=arguments.length-4;a-- >0;)i[a]=arguments[a+4];if(!t)return"";var l=m.apply(void 0,i);this._escapeParameterHtml&&(l.params=y(l.params));var s=l.locale||e,c=this._translate(r,s,this.fallbackLocale,t,o,"string",l.params);if(this._isFallbackRoot(c)){if(!this._root)throw Error("unexpected error");return(n=this._root).$t.apply(n,[t].concat(i))}return c=this._warnDefault(s,t,c,o,i,"string"),this._postTranslation&&null!=c&&(c=this._postTranslation(c,t)),c},K.prototype.t=function(t){for(var e,r=[],o=arguments.length-1;o-- >0;)r[o]=arguments[o+1];return(e=this)._t.apply(e,[t,this.locale,this._getMessages(),null].concat(r))},K.prototype._i=function(t,e,r,o,n){var i=this._translate(r,e,this.fallbackLocale,t,o,"raw",n);if(this._isFallbackRoot(i)){if(!this._root)throw Error("unexpected error");return this._root.$i18n.i(t,e,n)}return this._warnDefault(e,t,i,o,[n],"raw")},K.prototype.i=function(t,e,r){return t?(s(e)||(e=this.locale),this._i(t,e,this._getMessages(),null,r)):""},K.prototype._tc=function(t,e,r,o,n){for(var i,a=[],l=arguments.length-5;l-- >0;)a[l]=arguments[l+5];if(!t)return"";void 0===n&&(n=1);var s={count:n,n},c=m.apply(void 0,a);return c.params=Object.assign(s,c.params),a=null===c.locale?[c.params]:[c.locale,c.params],this.fetchChoice((i=this)._t.apply(i,[t,e,r,o].concat(a)),n)},K.prototype.fetchChoice=function(t,e){if(!t||!s(t))return null;var r=t.split("|");return r[e=this.getChoiceIndex(e,r.length)]?r[e].trim():t},K.prototype.tc=function(t,e){for(var r,o=[],n=arguments.length-2;n-- >0;)o[n]=arguments[n+2];return(r=this)._tc.apply(r,[t,this.locale,this._getMessages(),null,e].concat(o))},K.prototype._te=function(t,e,r){for(var o=[],n=arguments.length-3;n-- >0;)o[n]=arguments[n+3];var i=m.apply(void 0,o).locale||e;return this._exist(r[i],t)},K.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},K.prototype.getLocaleMessage=function(t){return f(this._vm.messages[t]||{})},K.prototype.setLocaleMessage=function(t,e){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,e),this._vm.$set(this._vm.messages,t,e)},K.prototype.mergeLocaleMessage=function(t,e){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,e),this._vm.$set(this._vm.messages,t,v(void 0!==this._vm.messages[t]&&Object.keys(this._vm.messages[t]).length?Object.assign({},this._vm.messages[t]):{},e))},K.prototype.getDateTimeFormat=function(t){return f(this._vm.dateTimeFormats[t]||{})},K.prototype.setDateTimeFormat=function(t,e){this._vm.$set(this._vm.dateTimeFormats,t,e),this._clearDateTimeFormat(t,e)},K.prototype.mergeDateTimeFormat=function(t,e){this._vm.$set(this._vm.dateTimeFormats,t,v(this._vm.dateTimeFormats[t]||{},e)),this._clearDateTimeFormat(t,e)},K.prototype._clearDateTimeFormat=function(t,e){for(var r in e){var o=t+"__"+r;this._dateTimeFormatters.hasOwnProperty(o)&&delete this._dateTimeFormatters[o]}},K.prototype._localizeDateTime=function(t,e,r,o,n){for(var i=e,a=o[i],l=this._getLocaleChain(e,r),s=0;s<l.length;s++){var c=l[s];if(i=c,!p(a=o[c])&&!p(a[n]))break}if(p(a)||p(a[n]))return null;var d=a[n],u=i+"__"+n,m=this._dateTimeFormatters[u];return m||(m=this._dateTimeFormatters[u]=new Intl.DateTimeFormat(i,d)),m.format(t)},K.prototype._d=function(t,e,r){if(!r)return new Intl.DateTimeFormat(e).format(t);var o=this._localizeDateTime(t,e,this.fallbackLocale,this._getDateTimeFormats(),r);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.$i18n.d(t,r,e)}return o||""},K.prototype.d=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];var o=this.locale,n=null;return 1===e.length?s(e[0])?n=e[0]:l(e[0])&&(e[0].locale&&(o=e[0].locale),e[0].key&&(n=e[0].key)):2===e.length&&(s(e[0])&&(n=e[0]),s(e[1])&&(o=e[1])),this._d(t,o,n)},K.prototype.getNumberFormat=function(t){return f(this._vm.numberFormats[t]||{})},K.prototype.setNumberFormat=function(t,e){this._vm.$set(this._vm.numberFormats,t,e),this._clearNumberFormat(t,e)},K.prototype.mergeNumberFormat=function(t,e){this._vm.$set(this._vm.numberFormats,t,v(this._vm.numberFormats[t]||{},e)),this._clearNumberFormat(t,e)},K.prototype._clearNumberFormat=function(t,e){for(var r in e){var o=t+"__"+r;this._numberFormatters.hasOwnProperty(o)&&delete this._numberFormatters[o]}},K.prototype._getNumberFormatter=function(t,e,r,o,n,i){for(var a=e,l=o[a],s=this._getLocaleChain(e,r),c=0;c<s.length;c++){var d=s[c];if(a=d,!p(l=o[d])&&!p(l[n]))break}if(p(l)||p(l[n]))return null;var u,m=l[n];if(i)u=new Intl.NumberFormat(a,Object.assign({},m,i));else{var f=a+"__"+n;(u=this._numberFormatters[f])||(u=this._numberFormatters[f]=new Intl.NumberFormat(a,m))}return u},K.prototype._n=function(t,e,r,o){if(!K.availabilities.numberFormat)return"";if(!r)return(o?new Intl.NumberFormat(e,o):new Intl.NumberFormat(e)).format(t);var n=this._getNumberFormatter(t,e,this.fallbackLocale,this._getNumberFormats(),r,o),i=n&&n.format(t);if(this._isFallbackRoot(i)){if(!this._root)throw Error("unexpected error");return this._root.$i18n.n(t,Object.assign({},{key:r,locale:e},o))}return i||""},K.prototype.n=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];var o=this.locale,i=null,a=null;return 1===e.length?s(e[0])?i=e[0]:l(e[0])&&(e[0].locale&&(o=e[0].locale),e[0].key&&(i=e[0].key),a=Object.keys(e[0]).reduce((function(t,r){var o;return b(n,r)?Object.assign({},t,((o={})[r]=e[0][r],o)):t}),null)):2===e.length&&(s(e[0])&&(i=e[0]),s(e[1])&&(o=e[1])),this._n(t,o,i,a)},K.prototype._ntp=function(t,e,r,o){if(!K.availabilities.numberFormat)return[];if(!r)return(o?new Intl.NumberFormat(e,o):new Intl.NumberFormat(e)).formatToParts(t);var n=this._getNumberFormatter(t,e,this.fallbackLocale,this._getNumberFormats(),r,o),i=n&&n.formatToParts(t);if(this._isFallbackRoot(i)){if(!this._root)throw Error("unexpected error");return this._root.$i18n._ntp(t,e,r,o)}return i||[]},Object.defineProperties(K.prototype,X),Object.defineProperty(K,"availabilities",{get:function(){if(!N){var t="undefined"!=typeof Intl;N={dateTimeFormat:t&&void 0!==Intl.DateTimeFormat,numberFormat:t&&void 0!==Intl.NumberFormat}}return N}}),K.install=B,K.version="8.25.0";const J=K;var Z="undefined"!=typeof window,Q="undefined"!=typeof document,tt="undefined"!=typeof navigator,et="undefined"!=typeof Promise,rt="undefined"!=typeof MutationObserver||"undefined"!=typeof WebKitMutationObserver||"undefined"!=typeof MozMutationObserver,ot=Z&&Q&&tt,nt=Z?window:{},it=Q?document:{},at=tt?navigator:{},lt=(at.userAgent||"").toLowerCase(),st=lt.indexOf("jsdom")>0,ct=(/msie|trident/.test(lt),function(){var t=!1;if(ot)try{var e={get passive(){t=!0}};nt.addEventListener("test",e,e),nt.removeEventListener("test",e,e)}catch(e){t=!1}return t}()),dt=ot&&("ontouchstart"in it.documentElement||at.maxTouchPoints>0),pt=ot&&Boolean(nt.PointerEvent||nt.MSPointerEvent),ut=ot&&"IntersectionObserver"in nt&&"IntersectionObserverEntry"in nt&&"intersectionRatio"in nt.IntersectionObserverEntry.prototype,mt="BvConfig",ft=["xs","sm","md","lg","xl"],bt=/\[(\d+)]/g,ht=/^(BV?)/,gt=/^\d+$/,vt=/^\..+/,xt=/^#/,yt=/^#[A-Za-z]+[\w\-:.]*$/,wt=/(<([^>]+)>)/gi,kt=/\B([A-Z])/g,Ot=/([a-z])([A-Z])/g,jt=/^[0-9]*\.?[0-9]+$/,St=/\+/g,Pt=/[-/\\^$*+?.()|[\]{}]/g,Tt=/[\s\uFEFF\xA0]+/g,_t=/\s+/,Ct=/\/\*$/,$t=/(\s|^)(\w)/g,Dt=/^\s+/,Et=/_/g,zt=/-(\w)/g,Bt=/^\d+-\d\d?-\d\d?(?:\s|T|$)/,At=/-|\s|T/,It=/^([0-1]?[0-9]|2[0-3]):[0-5]?[0-9](:[0-5]?[0-9])?$/,Ft=/^.*(#[^#]+)$/,Lt=/%2C/g,Mt=/[!'()*]/g,Rt=/^(\?|#|&)/,Vt=/^\d+(\.\d*)?[/:]\d+(\.\d*)?$/,Nt=/[/:]/,Ht=/^col-/,Ut=/^BIcon/,Wt=/-u-.+/;function Gt(t){return(Gt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function qt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Yt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&te(t,e)}function Kt(t){var e=Qt();return function(){var r,o=ee(t);if(e){var n=ee(this).constructor;r=Reflect.construct(o,arguments,n)}else r=o.apply(this,arguments);return Xt(this,r)}}function Xt(t,e){return!e||"object"!==Gt(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function Jt(t){var e="function"==typeof Map?new Map:void 0;return(Jt=function(t){if(null===t||(r=t,-1===Function.toString.call(r).indexOf("[native code]")))return t;var r;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,o)}function o(){return Zt(t,arguments,ee(this).constructor)}return o.prototype=Object.create(t.prototype,{constructor:{value:o,enumerable:!1,writable:!0,configurable:!0}}),te(o,t)})(t)}function Zt(t,e,r){return(Zt=Qt()?Reflect.construct:function(t,e,r){var o=[null];o.push.apply(o,e);var n=new(Function.bind.apply(t,o));return r&&te(n,r.prototype),n}).apply(null,arguments)}function Qt(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}function te(t,e){return(te=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function ee(t){return(ee=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var re=Z?nt.Element:function(t){Yt(r,t);var e=Kt(r);function r(){return qt(this,r),e.apply(this,arguments)}return r}(Jt(Object)),oe=Z?nt.HTMLElement:function(t){Yt(r,t);var e=Kt(r);function r(){return qt(this,r),e.apply(this,arguments)}return r}(re),ne=Z?nt.SVGElement:function(t){Yt(r,t);var e=Kt(r);function r(){return qt(this,r),e.apply(this,arguments)}return r}(re),ie=Z?nt.File:function(t){Yt(r,t);var e=Kt(r);function r(){return qt(this,r),e.apply(this,arguments)}return r}(Jt(Object));function ae(t){return(ae="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var le=function(t){return ae(t)},se=function(t){return void 0===t},ce=function(t){return null===t},de=function(t){return se(t)||ce(t)},pe=function(t){return"function"===le(t)},ue=function(t){return"boolean"===le(t)},me=function(t){return"string"===le(t)},fe=function(t){return"number"===le(t)},be=function(t){return jt.test(String(t))},he=function(t){return Array.isArray(t)},ge=function(t){return null!==t&&"object"===ae(t)},ve=function(t){return"[object Object]"===Object.prototype.toString.call(t)},xe=function(t){return t instanceof Date},ye=function(t){return t instanceof Event},we=function(t){return"RegExp"===function(t){return Object.prototype.toString.call(t).slice(8,-1)}(t)};function ke(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Oe(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?ke(Object(r),!0).forEach((function(e){je(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ke(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function je(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Se=function(){return Object.assign.apply(Object,arguments)},Pe=function(t,e){return Object.create(t,e)},Te=function(t,e){return Object.defineProperties(t,e)},_e=function(t,e,r){return Object.defineProperty(t,e,r)},Ce=function(t){return Object.getOwnPropertyNames(t)},$e=function(t){return Object.keys(t)},De=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},Ee=function(t){return Oe({},t)},ze=function(t,e){return $e(t).filter((function(t){return-1!==e.indexOf(t)})).reduce((function(e,r){return Oe(Oe({},e),{},je({},r,t[r]))}),{})},Be=function(t,e){return $e(t).filter((function(t){return-1===e.indexOf(t)})).reduce((function(e,r){return Oe(Oe({},e),{},je({},r,t[r]))}),{})},Ae=function t(e,r){return ge(e)&&ge(r)&&$e(r).forEach((function(o){ge(r[o])?(e[o]&&ge(e[o])||(e[o]=r[o]),t(e[o],r[o])):Se(e,je({},o,r[o]))})),e},Ie=function(t){return $e(t).sort().reduce((function(e,r){return Oe(Oe({},e),{},je({},r,t[r]))}),{})};function Fe(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Le(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Fe(Object(r),!0).forEach((function(e){Me(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Fe(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Me(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Re(t){return function(t){if(Array.isArray(t))return Ve(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return Ve(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Ve(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ve(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}var Ne=function t(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;return he(e)?e.reduce((function(e,r){return[].concat(Re(e),[t(r,r)])}),[]):ve(e)?$e(e).reduce((function(r,o){return Le(Le({},r),{},Me({},o,t(e[o],e[o])))}),{}):r},He=function(t){return t},Ue=function(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;if(!(e=he(e)?e.join("."):e)||!ge(t))return r;if(e in t)return t[e];var o=(e=String(e).replace(bt,".$1")).split(".").filter(He);return 0===o.length?r:o.every((function(e){return ge(t)&&e in t&&!de(t=t[e])}))?t:ce(t)?null:r},We=function(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,o=Ue(t,e);return de(o)?r:o},Ge=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r="undefined"!=typeof process&&process?{NODE_ENV:"production"}||0:{};return t?r[t]||e:r},qe=function(){return Ge("BOOTSTRAP_VUE_NO_WARN")||"production"===Ge("NODE_ENV")},Ye=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;qe()||console.warn("[BootstrapVue warn]: ".concat(e?"".concat(e," - "):"").concat(t))},Ke=function(t){return!ot&&(Ye("".concat(t,": Can not be called during SSR.")),!0)},Xe=function(t){return!et&&(Ye("".concat(t,": Requires Promise support.")),!0)};function Je(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}var Ze=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.$_config={}}var e,r;return e=t,(r=[{key:"setConfig",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(ve(e)){var r=Ce(e);r.forEach((function(r){var o=e[r];"breakpoints"===r?!he(o)||o.length<2||o.some((function(t){return!me(t)||0===t.length}))?Ye('"breakpoints" must be an array of at least 2 breakpoint names',mt):t.$_config[r]=Ne(o):ve(o)&&(t.$_config[r]=Ce(o).reduce((function(t,e){return se(o[e])||(t[e]=Ne(o[e])),t}),t.$_config[r]||{}))}))}}},{key:"resetConfig",value:function(){this.$_config={}}},{key:"getConfig",value:function(){return Ne(this.$_config)}},{key:"getConfigValue",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0;return Ne(Ue(this.$_config,t,e))}}])&&Je(e.prototype,r),t}(),Qe=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:o.default;e.prototype.$bvConfig=o.default.prototype.$bvConfig=e.prototype.$bvConfig||o.default.prototype.$bvConfig||new Ze,e.prototype.$bvConfig.setConfig(t)};function tr(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function er(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?tr(Object(r),!0).forEach((function(e){rr(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):tr(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function rr(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var or,nr,ir=(or=!1,nr=["Multiple instances of Vue detected!","You may need to set up an alias for Vue in your bundler config.","See: https://bootstrap-vue.org/docs#using-module-bundlers"].join("\n"),function(t){or||o.default===t||st||Ye(nr),or=!0}),ar=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.components,r=t.directives,o=t.plugins,n=function t(n){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.installed||(t.installed=!0,ir(n),Qe(i,n),dr(n,e),ur(n,r),sr(n,o))};return n.installed=!1,n},lr=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return er(er({},e),{},{install:ar(t)})},sr=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var r in e)r&&e[r]&&t.use(e[r])},cr=function(t,e,r){t&&e&&r&&t.component(e,r)},dr=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var r in e)cr(t,r,e[r])},pr=function(t,e,r){t&&e&&r&&t.directive(e.replace(/^VB/,"B"),r)},ur=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var r in e)pr(t,r,e[r])},mr=function(){return(mr=Object.assign||function(t){for(var e,r=1,o=arguments.length;r<o;r++)for(var n in e=arguments[r])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t}).apply(this,arguments)},fr=/-(\w)/g,br=/:(.*)/,hr=/;(?![^(]*\))/g;function gr(t,e){return e?e.toUpperCase():""}function vr(t){for(var e,r={},o=0,n=t.split(hr);o<n.length;o++){var i=n[o].split(br),a=i[0],l=i[1];(a=a.trim())&&("string"==typeof l&&(l=l.trim()),r[(e=a,e.replace(fr,gr))]=l)}return r}function xr(){for(var t,e,r={},o=arguments.length;o--;)for(var n=0,i=Object.keys(arguments[o]);n<i.length;n++)switch(t=i[n]){case"class":case"style":case"directives":if(Array.isArray(r[t])||(r[t]=[]),"style"===t){var a=void 0;a=Array.isArray(arguments[o].style)?arguments[o].style:[arguments[o].style];for(var l=0;l<a.length;l++){var s=a[l];"string"==typeof s&&(a[l]=vr(s))}arguments[o].style=a}r[t]=r[t].concat(arguments[o][t]);break;case"staticClass":if(!arguments[o][t])break;void 0===r[t]&&(r[t]=""),r[t]&&(r[t]+=" "),r[t]+=arguments[o][t].trim();break;case"on":case"nativeOn":r[t]||(r[t]={});for(var c=0,d=Object.keys(arguments[o][t]||{});c<d.length;c++)e=d[c],r[t][e]?r[t][e]=[].concat(r[t][e],arguments[o][t][e]):r[t][e]=arguments[o][t][e];break;case"attrs":case"props":case"domProps":case"scopedSlots":case"staticStyle":case"hook":case"transition":r[t]||(r[t]={}),r[t]=mr({},arguments[o][t],r[t]);break;case"slot":case"key":case"ref":case"tag":case"show":case"keepAlive":default:r[t]||(r[t]=arguments[o][t])}return r}var yr="BAlert",wr="BAspect",kr="BAvatar",Or="BAvatarGroup",jr="BBadge",Sr="BBreadcrumb",Pr="BBreadcrumbItem",Tr="BBreadcrumbLink",_r="BButton",Cr="BButtonClose",$r="BButtonGroup",Dr="BButtonToolbar",Er="BCalendar",zr="BCard",Br="BCardBody",Ar="BCardFooter",Ir="BCardGroup",Fr="BCardHeader",Lr="BCardImg",Mr="BCardImgLazy",Rr="BCardSubTitle",Vr="BCardText",Nr="BCardTitle",Hr="BCarousel",Ur="BCarouselSlide",Wr="BCol",Gr="BCollapse",qr="BContainer",Yr="BDropdown",Kr="BDropdownDivider",Xr="BDropdownForm",Jr="BDropdownGroup",Zr="BDropdownHeader",Qr="BDropdownItem",to="BDropdownItemButton",eo="BDropdownText",ro="BEmbed",oo="BForm",no="BFormCheckbox",io="BFormCheckboxGroup",ao="BFormDatalist",lo="BFormDatepicker",so="BFormFile",co="BFormGroup",po="BFormInput",uo="BFormInvalidFeedback",mo="BFormRadio",fo="BFormRadioGroup",bo="BFormRating",ho="BFormRow",go="BFormSelect",vo="BFormSelectOption",xo="BFormSelectOptionGroup",yo="BFormSpinbutton",wo="BFormTag",ko="BFormTags",Oo="BFormText",jo="BFormTextarea",So="BFormTimepicker",Po="BFormValidFeedback",To="BIcon",_o="BImg",Co="BImgLazy",$o="BInputGroup",Do="BInputGroupAddon",Eo="BInputGroupAppend",zo="BInputGroupPrepend",Bo="BInputGroupText",Ao="BJumbotron",Io="BLink",Fo="BListGroup",Lo="BListGroupItem",Mo="BMedia",Ro="BMediaAside",Vo="BMediaBody",No="BModal",Ho="BNav",Uo="BNavbar",Wo="BNavbarBrand",Go="BNavbarNav",qo="BNavbarToggle",Yo="BNavForm",Ko="BNavItem",Xo="BNavItemDropdown",Jo="BOverlay",Zo="BPagination",Qo="BPaginationNav",tn="BPopover",en="BProgress",rn="BProgressBar",on="BRow",nn="BSidebar",an="BSkeleton",ln="BSkeletonIcon",sn="BSkeletonImg",cn="BSkeletonTable",dn="BSkeletonWrapper",pn="BSpinner",un="BTab",mn="BTable",fn="BTableCell",bn="BTableLite",hn="BTableSimple",gn="BTabs",vn="BTbody",xn="BTfoot",yn="BThead",wn="BTime",kn="BToast",On="BToaster",jn="BTooltip",Sn="cancel",Pn="change",Tn="click",_n="close",Cn="context",$n="context-changed",Dn="destroyed",En="disable",zn="disabled",Bn="enable",An="enabled",In="filtered",Fn="first",Ln="focusin",Mn="focusout",Rn="head-clicked",Vn="hidden",Nn="hide",Hn="input",Un="last",Wn="mouseenter",Gn="mouseleave",qn="next",Yn="open",Kn="page-click",Xn="prev",Jn="refreshed",Zn="row-clicked",Qn="selected",ti="show",ei="shown",ri="sliding-end",oi="toggle",ni="hook:beforeDestroy",ii="hook:destroyed",ai="bv",li={passive:!0},si={passive:!0,capture:!1},ci=void 0,di=Array,pi=Boolean,ui=Date,mi=Function,fi=Number,bi=Object,hi=RegExp,gi=String,vi=[di,mi],xi=[di,bi],yi=[di,bi,gi],wi=[di,gi],ki=[pi,fi],Oi=[pi,fi,gi],ji=[pi,gi],Si=[ui,gi],Pi=[mi,gi],Ti=[fi,gi],_i=[fi,bi,gi],Ci=[bi,mi],$i=[bi,gi],Di="append",Ei="badge",zi="bottom-row",Bi="button-content",Ai="custom-foot",Ii="default",Fi="empty",Li="file-name",Mi="first",Ri="footer",Vi="header",Ni="label",Hi="lead",Ui="modal-cancel",Wi="modal-ok",Gi="modal-title",qi="prepend",Yi="row-details",Ki="table-busy",Xi="table-caption",Ji="table-colgroup",Zi="thead-top",Qi="title",ta="top-row",ea=function(){return Array.from.apply(Array,arguments)},ra=function(t,e){return-1!==t.indexOf(e)},oa=function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return Array.prototype.concat.apply([],e)},na=function(t,e){var r=pe(e)?e:function(){return e};return Array.apply(null,{length:t}).map(r)},ia=function(t){return t.reduce((function(t,e){return oa(t,e)}),[])},aa=function t(e){return e.reduce((function(e,r){return oa(e,Array.isArray(r)?t(r):r)}),[])},la=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:NaN,r=parseInt(t,10);return isNaN(r)?e:r},sa=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:NaN,r=parseFloat(t);return isNaN(r)?e:r},ca=function(t,e){return sa(t).toFixed(la(e,0))},da=function(t){return t.replace(kt,"-$1").toLowerCase()},pa=function(t){return(t=da(t).replace(zt,(function(t,e){return e?e.toUpperCase():""}))).charAt(0).toUpperCase()+t.slice(1)},ua=function(t){return t.replace(Et," ").replace(Ot,(function(t,e,r){return e+" "+r})).replace($t,(function(t,e,r){return e+r.toUpperCase()}))},ma=function(t){return(t=me(t)?t.trim():String(t)).charAt(0).toUpperCase()+t.slice(1)},fa=function(t){return t.replace(Pt,"\\$&")},ba=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;return de(t)?"":he(t)||ve(t)&&t.toString===Object.prototype.toString?JSON.stringify(t,null,e):String(t)},ha=function(t){return ba(t).trim()},ga=function(t){return ba(t).toLowerCase()},va=re.prototype,xa=["button","[href]:not(.disabled)","input","select","textarea","[tabindex]","[contenteditable]"].map((function(t){return"".concat(t,":not(:disabled):not([disabled])")})).join(", "),ya=va.matches||va.msMatchesSelector||va.webkitMatchesSelector,wa=va.closest||function(t){var e=this;do{if(za(e,t))return e;e=e.parentElement||e.parentNode}while(!ce(e)&&e.nodeType===Node.ELEMENT_NODE);return null},ka=nt.requestAnimationFrame||nt.webkitRequestAnimationFrame||nt.mozRequestAnimationFrame||nt.msRequestAnimationFrame||nt.oRequestAnimationFrame||function(t){return setTimeout(t,16)},Oa=nt.MutationObserver||nt.WebKitMutationObserver||nt.MozMutationObserver||null,ja=function(t){return!(!t||t.nodeType!==Node.ELEMENT_NODE)},Sa=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],e=it.activeElement;return e&&!t.some((function(t){return t===e}))?e:null},Pa=function(t,e){return ba(t).toLowerCase()===ba(e).toLowerCase()},Ta=function(t){return ja(t)&&t===Sa()},_a=function(t){if(!ja(t)||!t.parentNode||!Aa(it.body,t))return!1;if("none"===Ga(t,"display"))return!1;var e=qa(t);return!!(e&&e.height>0&&e.width>0)},Ca=function(t){return!ja(t)||t.disabled||Ha(t,"disabled")||Ma(t,"disabled")},$a=function(t){return ja(t)&&t.offsetHeight},Da=function(t,e){return ea((ja(e)?e:it).querySelectorAll(t))},Ea=function(t,e){return(ja(e)?e:it).querySelector(t)||null},za=function(t,e){return!!ja(t)&&ya.call(t,e)},Ba=function(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(!ja(e))return null;var o=wa.call(e,t);return r?o:o===e?null:o},Aa=function(t,e){return!(!t||!pe(t.contains))&&t.contains(e)},Ia=function(t){return it.getElementById(/^#/.test(t)?t.slice(1):t)||null},Fa=function(t,e){e&&ja(t)&&t.classList&&t.classList.add(e)},La=function(t,e){e&&ja(t)&&t.classList&&t.classList.remove(e)},Ma=function(t,e){return!!(e&&ja(t)&&t.classList)&&t.classList.contains(e)},Ra=function(t,e,r){e&&ja(t)&&t.setAttribute(e,r)},Va=function(t,e){e&&ja(t)&&t.removeAttribute(e)},Na=function(t,e){return e&&ja(t)?t.getAttribute(e):null},Ha=function(t,e){return e&&ja(t)?t.hasAttribute(e):null},Ua=function(t,e,r){e&&ja(t)&&(t.style[e]=r)},Wa=function(t,e){e&&ja(t)&&(t.style[e]="")},Ga=function(t,e){return e&&ja(t)&&t.style[e]||null},qa=function(t){return ja(t)?t.getBoundingClientRect():null},Ya=function(t){var e=nt.getComputedStyle;return e&&ja(t)?e(t):{}},Ka=function(){return nt.getSelection?nt.getSelection():null},Xa=function(t){var e={top:0,left:0};if(!ja(t)||0===t.getClientRects().length)return e;var r=qa(t);if(r){var o=t.ownerDocument.defaultView;e.top=r.top+o.pageYOffset,e.left=r.left+o.pageXOffset}return e},Ja=function(t){var e={top:0,left:0};if(!ja(t))return e;var r={top:0,left:0},o=Ya(t);if("fixed"===o.position)e=qa(t)||e;else{e=Xa(t);for(var n=t.ownerDocument,i=t.offsetParent||n.documentElement;i&&(i===n.body||i===n.documentElement)&&"static"===Ya(i).position;)i=i.parentNode;if(i&&i!==t&&i.nodeType===Node.ELEMENT_NODE){r=Xa(i);var a=Ya(i);r.top+=sa(a.borderTopWidth,0),r.left+=sa(a.borderLeftWidth,0)}}return{top:e.top-r.top-sa(o.marginTop,0),left:e.left-r.left-sa(o.marginLeft,0)}},Za=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document;return Da(xa,t).filter(_a).filter((function(t){return t.tabIndex>-1&&!t.disabled}))},Qa=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{t.focus(e)}catch(t){}return Ta(t)},tl=function(t){try{t.blur()}catch(t){}return!Ta(t)},el=function(t){var e=Pe(null);return function(){for(var r=arguments.length,o=new Array(r),n=0;n<r;n++)o[n]=arguments[n];var i=JSON.stringify(o);return e[i]=e[i]||t.apply(null,o)}},rl=o.default.prototype,ol=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,r=rl.$bvConfig;return r?r.getConfigValue(t,e):Ne(e)},nl=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;return e?ol("".concat(t,".").concat(e),r):ol(t,{})},il=function(){return ol("breakpoints",ft)},al=el((function(){return il()})),ll=el((function(){var t=Ne(al());return t[0]="",t}));function sl(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function cl(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?sl(Object(r),!0).forEach((function(e){dl(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):sl(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function dl(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var pl=function(t,e){return t+ma(e)},ul=function(t,e){return r=e.replace(t,""),(r=me(r)?r.trim():String(r)).charAt(0).toLowerCase()+r.slice(1);var r},ml=function(t,e){return e+(t?ma(t):"")},fl=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:ci,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:void 0,n=!0===r;return o=n?o:r,cl(cl(cl({},t?{type:t}:{}),n?{required:n}:se(e)?{}:{default:ge(e)?function(){return e}:e}),se(o)?{}:{validator:o})},bl=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:He;if(he(t))return t.map(e);var r={};for(var o in t)De(t,o)&&(r[e(o)]=ge(t[o])?Ee(t[o]):t[o]);return r},hl=function(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:He;return(he(t)?t.slice():$e(t)).reduce((function(t,o){return t[r(o)]=e[o],t}),{})},gl=function(t,e,r){return cl(cl({},Ne(t)),{},{default:function(){var o=nl(r,e,t.default);return pe(o)?o():o}})},vl=function(t,e){return $e(t).reduce((function(r,o){return cl(cl({},r),{},dl({},o,gl(t[o],o,e)))}),{})},xl=gl({},"","").default.name,yl=function(t){return pe(t)&&t.name!==xl};function wl(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var kl=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=e.type,n=void 0===r?ci:r,i=e.defaultValue,a=void 0===i?void 0:i,l=e.validator,s=void 0===l?void 0:l,c=e.event,d=void 0===c?Hn:c,p=wl({},t,fl(n,a,s)),u=o.default.extend({model:{prop:t,event:d},props:p});return{mixin:u,props:p,prop:t,event:d}},Ol=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return(t=oa(t).filter(He)).some((function(t){return e[t]||r[t]}))},jl=function(t){var e,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};t=oa(t).filter(He);for(var i=0;i<t.length&&!e;i++){var a=t[i];e=o[a]||n[a]}return pe(e)?e(r):e},Sl=o.default.extend({methods:{hasNormalizedSlot:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Ii,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.$scopedSlots,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.$slots;return Ol(t,e,r)},normalizeSlot:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Ii,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.$scopedSlots,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:this.$slots,n=jl(t,e,r,o);return n?oa(n):n}}}),Pl=function(t){return ct?ge(t)?t:{capture:!!t||!1}:!!(ge(t)?t.capture:t)},Tl=function(t,e,r,o){t&&t.addEventListener&&t.addEventListener(e,r,Pl(o))},_l=function(t,e,r,o){t&&t.removeEventListener&&t.removeEventListener(e,r,Pl(o))},Cl=function(t){for(var e=t?Tl:_l,r=arguments.length,o=new Array(r>1?r-1:0),n=1;n<r;n++)o[n-1]=arguments[n];e.apply(void 0,o)},$l=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=e.preventDefault,o=void 0===r||r,n=e.propagation,i=void 0===n||n,a=e.immediatePropagation,l=void 0!==a&&a;o&&t.preventDefault(),i&&t.stopPropagation(),l&&t.stopImmediatePropagation()},Dl=function(t){return da(t.replace(ht,""))},El=function(t,e){return[ai,Dl(t),e].join("::")},zl=function(t,e){return[ai,e,Dl(t)].join("::")},Bl=vl({ariaLabel:fl(gi,"Close"),content:fl(gi,"&times;"),disabled:fl(pi,!1),textVariant:fl(gi)},Cr),Al=o.default.extend({name:Cr,functional:!0,props:Bl,render:function(t,e){var r,o,n,i=e.props,a=e.data,l=e.slots,s=e.scopedSlots,c=l(),d=s||{},p={staticClass:"close",class:(r={},o="text-".concat(i.textVariant),n=i.textVariant,o in r?Object.defineProperty(r,o,{value:n,enumerable:!0,configurable:!0,writable:!0}):r[o]=n,r),attrs:{type:"button",disabled:i.disabled,"aria-label":i.ariaLabel?String(i.ariaLabel):null},on:{click:function(t){i.disabled&&ye(t)&&$l(t)}}};return Ol(Ii,d,c)||(p.domProps={innerHTML:i.content}),t("button",xr(a,p),jl(Ii,{},d,c))}});function Il(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Fl(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Il(Object(r),!0).forEach((function(e){Ll(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Il(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Ll(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Ml,Rl={name:"",enterClass:"",enterActiveClass:"",enterToClass:"show",leaveClass:"show",leaveActiveClass:"",leaveToClass:""},Vl=Fl(Fl({},Rl),{},{enterActiveClass:"fade",leaveActiveClass:"fade"}),Nl={appear:fl(pi,!1),mode:fl(gi),noFade:fl(pi,!1),transProps:fl(bi)},Hl=o.default.extend({name:"BVTransition",functional:!0,props:Nl,render:function(t,e){var r=e.children,o=e.data,n=e.props,i=n.transProps;return ve(i)||(i=n.noFade?Rl:Vl,n.appear&&(i=Fl(Fl({},i),{},{appear:!0,appearClass:i.enterClass,appearActiveClass:i.enterActiveClass,appearToClass:i.enterToClass}))),t("transition",xr(o,{props:i=Fl(Fl({mode:n.mode},i),{},{css:!0})}),r)}});function Ul(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Wl(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ul(Object(r),!0).forEach((function(e){Gl(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ul(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Gl(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var ql=kl("show",{type:Oi,defaultValue:!1}),Yl=ql.mixin,Kl=ql.props,Xl=ql.prop,Jl=ql.event,Zl=function(t){return""===t||ue(t)?0:(t=la(t,0))>0?t:0},Ql=function(t){return""===t||!0===t||!(la(t,0)<1)&&!!t},ts=vl(Ie(Wl(Wl({},Kl),{},{dismissLabel:fl(gi,"Close"),dismissible:fl(pi,!1),fade:fl(pi,!1),variant:fl(gi,"info")})),yr),es=lr({components:{BAlert:o.default.extend({name:yr,mixins:[Yl,Sl],props:ts,data:function(){return{countDown:0,localShow:Ql(this[Xl])}},watch:(Ml={},Gl(Ml,Xl,(function(t){this.countDown=Zl(t),this.localShow=Ql(t)})),Gl(Ml,"countDown",(function(t){var e=this;this.clearCountDownInterval();var r=this[Xl];be(r)&&(this.$emit("dismiss-count-down",t),r!==t&&this.$emit(Jl,t),t>0?(this.localShow=!0,this.$_countDownTimeout=setTimeout((function(){e.countDown--}),1e3)):this.$nextTick((function(){ka((function(){e.localShow=!1}))})))})),Gl(Ml,"localShow",(function(t){var e=this[Xl];t||!this.dismissible&&!be(e)||this.$emit("dismissed"),be(e)||e===t||this.$emit(Jl,t)})),Ml),created:function(){this.$_filterTimer=null;var t=this[Xl];this.countDown=Zl(t),this.localShow=Ql(t)},beforeDestroy:function(){this.clearCountDownInterval()},methods:{dismiss:function(){this.clearCountDownInterval(),this.countDown=0,this.localShow=!1},clearCountDownInterval:function(){clearTimeout(this.$_countDownTimeout),this.$_countDownTimeout=null}},render:function(t){var e=t();if(this.localShow){var r=this.dismissible,o=this.variant,n=t();r&&(n=t(Al,{attrs:{"aria-label":this.dismissLabel},on:{click:this.dismiss}},[this.normalizeSlot("dismiss")])),e=t("div",{staticClass:"alert",class:Gl({"alert-dismissible":r},"alert-".concat(o),o),attrs:{role:"alert","aria-live":"polite","aria-atomic":!0},key:this._uid},[n,this.normalizeSlot()])}return t(Hl,{props:{noFade:!this.fade}},[e])}})}}),rs=Math.min,os=Math.max,ns=Math.abs,is=Math.ceil,as=Math.floor,ls=Math.pow,ss=Math.round;function cs(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}var ds="b-aspect",ps=vl({aspect:fl(Ti,"1:1"),tag:fl(gi,"div")},wr),us=o.default.extend({name:wr,mixins:[Sl],props:ps,computed:{padding:function(){var t=this.aspect,e=1;if(Vt.test(t)){var r=function(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t)){var r=[],o=!0,n=!1,i=void 0;try{for(var a,l=t[Symbol.iterator]();!(o=(a=l.next()).done)&&(r.push(a.value),!e||r.length!==e);o=!0);}catch(t){n=!0,i=t}finally{try{o||null==l.return||l.return()}finally{if(n)throw i}}return r}}(t,e)||function(t,e){if(t){if("string"==typeof t)return cs(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?cs(t,e):void 0}}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(t.split(Nt).map((function(t){return sa(t)||1})),2);e=r[0]/r[1]}else e=sa(t)||1;return"".concat(100/ns(e),"%")}},render:function(t){var e=t("div",{staticClass:"".concat(ds,"-sizer flex-grow-1"),style:{paddingBottom:this.padding,height:0}}),r=t("div",{staticClass:"".concat(ds,"-content flex-grow-1 w-100 mw-100"),style:{marginLeft:"-100%"}},this.normalizeSlot());return t(this.tag,{staticClass:"".concat(ds," d-flex")},[e,r])}}),ms=lr({components:{BAspect:us}}),fs=function(t){return"%"+t.charCodeAt(0).toString(16)},bs=function(t){return encodeURIComponent(ba(t)).replace(Mt,fs).replace(Lt,",")},hs=decodeURIComponent,gs=function(t){if(!ve(t))return"";var e=$e(t).map((function(e){var r=t[e];return se(r)?"":ce(r)?bs(e):he(r)?r.reduce((function(t,r){return ce(r)?t.push(bs(e)):se(r)||t.push(bs(e)+"="+bs(r)),t}),[]).join("&"):bs(e)+"="+bs(r)})).filter((function(t){return t.length>0})).join("&");return e?"?".concat(e):""},vs=function(t){var e={};return(t=ba(t).trim().replace(Rt,""))?(t.split("&").forEach((function(t){var r=t.replace(St," ").split("="),o=hs(r.shift()),n=r.length>0?hs(r.join("=")):null;se(e[o])?e[o]=n:he(e[o])?e[o].push(n):e[o]=[e[o],n]})),e):e},xs=function(t){return!(!t.href&&!t.to)},ys=function(t){return!(!t||Pa(t,"a"))},ws=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.href,r=t.to,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"a",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"#",i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"/";if(e)return e;if(ys(o))return null;if(me(r))return r||i;if(ve(r)&&(r.path||r.query||r.hash)){var a=ba(r.path),l=gs(r.query),s=ba(r.hash);return s=s&&"#"!==s.charAt(0)?"#".concat(s):s,"".concat(a).concat(l).concat(s)||i}return n};function ks(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Os={viewBox:"0 0 16 16",width:"1em",height:"1em",focusable:"false",role:"img","aria-label":"icon"},js={width:null,height:null,focusable:null,role:null,"aria-label":null},Ss={animation:fl(gi),content:fl(gi),flipH:fl(pi,!1),flipV:fl(pi,!1),fontScale:fl(Ti,1),rotate:fl(Ti,0),scale:fl(Ti,1),shiftH:fl(Ti,0),shiftV:fl(Ti,0),stacked:fl(pi,!1),title:fl(gi),variant:fl(gi)},Ps=o.default.extend({name:"BIconBase",functional:!0,props:Ss,render:function(t,e){var r,o=e.data,n=e.props,i=e.children,a=n.animation,l=n.content,s=n.flipH,c=n.flipV,d=n.stacked,p=n.title,u=n.variant,m=os(sa(n.fontScale,1),0)||1,f=os(sa(n.scale,1),0)||1,b=sa(n.rotate,0),h=sa(n.shiftH,0),g=sa(n.shiftV,0),v=s||c||1!==f,x=v||b,y=h||g,w=!de(l),k=t("g",{attrs:{transform:[x?"translate(8 8)":null,v?"scale(".concat((s?-1:1)*f," ").concat((c?-1:1)*f,")"):null,b?"rotate(".concat(b,")"):null,x?"translate(-8 -8)":null].filter(He).join(" ")||null},domProps:w?{innerHTML:l||""}:{}},i);y&&(k=t("g",{attrs:{transform:"translate(".concat(16*h/16," ").concat(-16*g/16,")")}},[k])),d&&(k=t("g",[k]));var O=[p?t("title",p):null,k].filter(He);return t("svg",xr({staticClass:"b-icon bi",class:(r={},ks(r,"text-".concat(u),u),ks(r,"b-icon-animation-".concat(a),a),r),attrs:Os,style:d?{}:{fontSize:1===m?null:"".concat(100*m,"%")}},o,d?{attrs:js}:{},{attrs:{xmlns:d?null:"http://www.w3.org/2000/svg",fill:"currentColor"}}),O)}});function Ts(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function _s(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ts(Object(r),!0).forEach((function(e){Cs(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ts(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Cs(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var $s=function(t,e){var r=da(t),n="BIcon".concat(pa(t)),i="bi-".concat(r),a=r.replace(/-/g," "),l=ha(e||"");return o.default.extend({name:n,functional:!0,props:Be(Ss,["content"]),render:function(t,e){var r=e.data,o=e.props;return t(Ps,xr({props:{title:a},attrs:{"aria-label":a}},r,{staticClass:i,props:_s(_s({},o),{},{content:l})}))}})},Ds=$s("Blank",""),Es=$s("Calendar",'<path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z"/>'),zs=$s("CalendarFill",'<path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5h16V4H0V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5z"/>'),Bs=$s("ChevronBarLeft",'<path fill-rule="evenodd" d="M11.854 3.646a.5.5 0 0 1 0 .708L8.207 8l3.647 3.646a.5.5 0 0 1-.708.708l-4-4a.5.5 0 0 1 0-.708l4-4a.5.5 0 0 1 .708 0zM4.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5z"/>'),As=$s("ChevronDoubleLeft",'<path fill-rule="evenodd" d="M8.354 1.646a.5.5 0 0 1 0 .708L2.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z"/><path fill-rule="evenodd" d="M12.354 1.646a.5.5 0 0 1 0 .708L6.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z"/>'),Is=$s("ChevronDown",'<path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/>'),Fs=$s("ChevronLeft",'<path fill-rule="evenodd" d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z"/>'),Ls=$s("ChevronUp",'<path fill-rule="evenodd" d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z"/>'),Ms=$s("CircleFill",'<circle cx="8" cy="8" r="8"/>'),Rs=$s("Clock",'<path d="M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71V3.5z"/><path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0z"/>'),Vs=$s("ClockFill",'<path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71V3.5z"/>'),Ns=$s("Dash",'<path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z"/>'),Hs=$s("PersonFill",'<path d="M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/>'),Us=$s("Plus",'<path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/>'),Ws=$s("Star",'<path d="M2.866 14.85c-.078.444.36.791.746.593l4.39-2.256 4.389 2.256c.386.198.824-.149.746-.592l-.83-4.73 3.523-3.356c.329-.314.158-.888-.283-.95l-4.898-.696L8.465.792a.513.513 0 0 0-.927 0L5.354 5.12l-4.898.696c-.441.062-.612.636-.283.95l3.523 3.356-.83 4.73zm4.905-2.767l-3.686 1.894.694-3.957a.565.565 0 0 0-.163-.505L1.71 6.745l4.052-.576a.525.525 0 0 0 .393-.288l1.847-3.658 1.846 3.658a.525.525 0 0 0 .393.288l4.052.575-2.906 2.77a.564.564 0 0 0-.163.506l.694 3.957-3.686-1.894a.503.503 0 0 0-.461 0z"/>'),Gs=$s("StarFill",'<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.283.95l-3.523 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>'),qs=$s("StarHalf",'<path d="M5.354 5.119L7.538.792A.516.516 0 0 1 8 .5c.183 0 .366.097.465.292l2.184 4.327 4.898.696A.537.537 0 0 1 16 6.32a.55.55 0 0 1-.17.445l-3.523 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256a.519.519 0 0 1-.146.05c-.341.06-.668-.254-.6-.642l.83-4.73L.173 6.765a.55.55 0 0 1-.171-.403.59.59 0 0 1 .084-.302.513.513 0 0 1 .37-.245l4.898-.696zM8 12.027c.08 0 .16.018.232.056l3.686 1.894-.694-3.957a.564.564 0 0 1 .163-.505l2.906-2.77-4.052-.576a.525.525 0 0 1-.393-.288L8.002 2.223 8 2.226v9.8z"/>'),Ys=$s("X",'<path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"/>');function Ks(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Xs(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ks(Object(r),!0).forEach((function(e){Js(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ks(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Js(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Zs=function t(e,r){return e?(e.$options||{}).components[r]||t(e.$parent,r):null},Qs=Be(Ss,["content"]),tc=vl(Ie(Xs(Xs({},Qs),{},{icon:fl(gi)})),To),ec=o.default.extend({name:To,functional:!0,props:tc,render:function(t,e){var r=e.data,o=e.props,n=e.parent,i=pa(ha(o.icon||"")).replace(Ut,"");return t(i&&Zs(n,"BIcon".concat(i))||Ds,xr(r,{props:hl(Qs,o)}))}}),rc=40,oc=35,nc=13,ic=36,ac=37,lc=39,sc=32,cc=38,dc=function t(e,r){if(e===r)return!0;var o=xe(e),n=xe(r);if(o||n)return!(!o||!n)&&e.getTime()===r.getTime();if(o=he(e),n=he(r),o||n)return!(!o||!n)&&function(t,e){if(t.length!==e.length)return!1;for(var r=!0,o=0;r&&o<t.length;o++)r=dc(t[o],e[o]);return r}(e,r);if(o=ge(e),n=ge(r),o||n){if(!o||!n)return!1;if($e(e).length!==$e(r).length)return!1;for(var i in e){var a=De(e,i),l=De(r,i);if(a&&!l||!a&&l||!t(e[i],r[i]))return!1}}return String(e)===String(r)};function pc(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var uc=function(t){return!t||0===$e(t).length},mc=function(t){return{handler:function(e,r){if(!dc(e,r))if(uc(e)||uc(r))this[t]=Ne(e);else{for(var o in r)De(e,o)||this.$delete(this.$data[t],o);for(var n in e)this.$set(this.$data[t],n,e[n])}}}},fc=function(t,e){return o.default.extend({data:function(){return pc({},e,Ne(this[t]))},watch:pc({},t,mc(e))})},bc=fc("$attrs","bvAttrs"),hc=o.default.extend({methods:{listenOnRoot:function(t,e){var r=this;this.$root.$on(t,e),this.$on(ni,(function(){r.$root.$off(t,e)}))},listenOnRootOnce:function(t,e){var r=this;this.$root.$once(t,e),this.$on(ni,(function(){r.$root.$off(t,e)}))},emitOnRoot:function(t){for(var e,r=arguments.length,o=new Array(r>1?r-1:0),n=1;n<r;n++)o[n-1]=arguments[n];(e=this.$root).$emit.apply(e,[t].concat(o))}}}),gc=fc("$listeners","bvListeners");function vc(t){return function(t){if(Array.isArray(t))return xc(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return xc(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?xc(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function xc(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}function yc(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function wc(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?yc(Object(r),!0).forEach((function(e){kc(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):yc(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function kc(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Oc=El(Io,"clicked"),jc={activeClass:fl(gi),append:fl(pi,!1),event:fl(wi,Tn),exact:fl(pi,!1),exactActiveClass:fl(gi),replace:fl(pi,!1),routerTag:fl(gi,"a"),to:fl($i)},Sc={noPrefetch:fl(pi,!1),prefetch:fl(pi,null)},Pc=vl(Ie(wc(wc(wc({},Sc),jc),{},{active:fl(pi,!1),disabled:fl(pi,!1),href:fl(gi),rel:fl(gi,null),routerComponentName:fl(gi),target:fl(gi,"_self")})),Io),Tc=o.default.extend({name:Io,mixins:[bc,gc,hc,Sl],inheritAttrs:!1,props:Pc,computed:{computedTag:function(){return t={to:this.to,disabled:this.disabled,routerComponentName:this.routerComponentName},r=t.to,o=t.disabled,n=t.routerComponentName,!(i=!!(e=this).$router)||i&&(o||!r)?"a":n||(e.$nuxt?"nuxt-link":"router-link");var t,e,r,o,n,i},isRouterLink:function(){return ys(this.computedTag)},computedRel:function(){return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.target,r=t.rel;return"_blank"===e&&ce(r)?"noopener":r||null}({target:this.target,rel:this.rel})},computedHref:function(){var t=this.to,e=this.href;return ws({to:t,href:e},this.computedTag)},computedProps:function(){var t=this.prefetch;return this.isRouterLink?wc(wc({},hl(wc(wc({},jc),Sc),this)),{},{prefetch:ue(t)?t:void 0,tag:this.routerTag}):{}},computedAttrs:function(){var t=this.bvAttrs,e=this.computedHref,r=this.computedRel,o=this.disabled,n=this.target,i=this.routerTag,a=this.isRouterLink;return wc(wc(wc(wc({},t),e?{href:e}:{}),a&&!Pa(i,"a")?{}:{rel:r,target:n}),{},{tabindex:o?"-1":se(t.tabindex)?null:t.tabindex,"aria-disabled":o?"true":null})},computedListeners:function(){return wc(wc({},this.bvListeners),{},{click:this.onClick})}},methods:{onClick:function(t){var e=arguments,r=ye(t),o=this.isRouterLink,n=this.bvListeners.click;r&&this.disabled?$l(t,{immediatePropagation:!0}):(o&&t.currentTarget.__vue__&&t.currentTarget.__vue__.$emit(Tn,t),oa(n).filter((function(t){return pe(t)})).forEach((function(t){t.apply(void 0,vc(e))})),this.emitOnRoot(Oc,t),this.emitOnRoot("clicked::link",t)),r&&!o&&"#"===this.computedHref&&$l(t,{propagation:!1})},focus:function(){Qa(this.$el)},blur:function(){tl(this.$el)}},render:function(t){var e=this.active,r=this.disabled;return t(this.computedTag,kc({class:{active:e,disabled:r},attrs:this.computedAttrs,props:this.computedProps},this.isRouterLink?"nativeOn":"on",this.computedListeners),this.normalizeSlot())}});function _c(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Cc(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?_c(Object(r),!0).forEach((function(e){$c(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):_c(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function $c(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Dc=Be(Pc,["event","routerTag"]);delete Dc.href.default,delete Dc.to.default;var Ec=vl(Ie(Cc(Cc({},Dc),{},{block:fl(pi,!1),disabled:fl(pi,!1),pill:fl(pi,!1),pressed:fl(pi,null),size:fl(gi),squared:fl(pi,!1),tag:fl(gi,"button"),type:fl(gi,"button"),variant:fl(gi,"secondary")})),_r),zc=function(t){"focusin"===t.type?Fa(t.target,"focus"):"focusout"===t.type&&La(t.target,"focus")},Bc=function(t){return xs(t)||Pa(t.tag,"a")},Ac=function(t){return ue(t.pressed)},Ic=function(t){return!(Bc(t)||t.tag&&!Pa(t.tag,"button"))},Fc=function(t){return!Bc(t)&&!Ic(t)},Lc=function(t){var e;return["btn-".concat(t.variant||"secondary"),(e={},$c(e,"btn-".concat(t.size),t.size),$c(e,"btn-block",t.block),$c(e,"rounded-pill",t.pill),$c(e,"rounded-0",t.squared&&!t.pill),$c(e,"disabled",t.disabled),$c(e,"active",t.pressed),e)]},Mc=function(t){return Bc(t)?hl(Dc,t):{}},Rc=function(t,e){var r=Ic(t),o=Bc(t),n=Ac(t),i=Fc(t),a=o&&"#"===t.href,l=e.attrs&&e.attrs.role?e.attrs.role:null,s=e.attrs?e.attrs.tabindex:null;return(i||a)&&(s="0"),{type:r&&!o?t.type:null,disabled:r?t.disabled:null,role:i||a?"button":l,"aria-disabled":i?String(t.disabled):null,"aria-pressed":n?String(t.pressed):null,autocomplete:n?"off":null,tabindex:t.disabled&&!r?"-1":s}},Vc=o.default.extend({name:_r,functional:!0,props:Ec,render:function(t,e){var r=e.props,o=e.data,n=e.listeners,i=e.children,a=Ac(r),l=Bc(r),s=Fc(r),c=l&&"#"===r.href,d={keydown:function(t){if(!r.disabled&&(s||c)){var e=t.keyCode;if(e===sc||e===nc&&s){var o=t.currentTarget||t.target;$l(t,{propagation:!1}),o.click()}}},click:function(t){r.disabled&&ye(t)?$l(t):a&&n&&n["update:pressed"]&&oa(n["update:pressed"]).forEach((function(t){pe(t)&&t(!r.pressed)}))}};a&&(d.focusin=zc,d.focusout=zc);var p={staticClass:"btn",class:Lc(r),props:Mc(r),attrs:Rc(r,o),on:d};return t(l?Tc:r.tag,xr(o,p),i)}});function Nc(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Hc(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Nc(Object(r),!0).forEach((function(e){Uc(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Nc(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Uc(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Wc="b-avatar",Gc=["sm",null,"lg"],qc=function(t){return t=me(t)&&be(t)?sa(t,0):t,fe(t)?"".concat(t,"px"):t||null},Yc=Be(Pc,["active","event","routerTag"]),Kc=vl(Ie(Hc(Hc({},Yc),{},{alt:fl(gi,"avatar"),ariaLabel:fl(gi),badge:fl(ji,!1),badgeLeft:fl(pi,!1),badgeOffset:fl(gi),badgeTop:fl(pi,!1),badgeVariant:fl(gi,"primary"),button:fl(pi,!1),buttonType:fl(gi,"button"),icon:fl(gi),rounded:fl(ji,!1),size:fl(Ti),square:fl(pi,!1),src:fl(gi),text:fl(gi),variant:fl(gi,"secondary")})),kr),Xc=o.default.extend({name:kr,mixins:[Sl],inject:{bvAvatarGroup:{default:null}},props:Kc,data:function(){return{localSrc:this.src||null}},computed:{computedSize:function(){var t=this.bvAvatarGroup;return qc(t?t.size:this.size)},computedVariant:function(){var t=this.bvAvatarGroup;return t&&t.variant?t.variant:this.variant},computedRounded:function(){var t=this.bvAvatarGroup,e=!(!t||!t.square)||this.square,r=t&&t.rounded?t.rounded:this.rounded;return e?"0":""===r||r||"circle"},fontStyle:function(){var t=this.computedSize,e=-1===Gc.indexOf(t)?"calc(".concat(t," * ").concat(.4,")"):null;return e?{fontSize:e}:{}},marginStyle:function(){var t=this.computedSize,e=this.bvAvatarGroup,r=e?e.overlapScale:0,o=t&&r?"calc(".concat(t," * -").concat(r,")"):null;return o?{marginLeft:o,marginRight:o}:{}},badgeStyle:function(){var t=this.computedSize,e=this.badgeTop,r=this.badgeLeft,o=this.badgeOffset||"0px";return{fontSize:-1===Gc.indexOf(t)?"calc(".concat(t," * ").concat(.27999999999999997," )"):null,top:e?o:null,bottom:e?null:o,left:r?o:null,right:r?null:o}}},watch:{src:function(t,e){t!==e&&(this.localSrc=t||null)}},methods:{onImgError:function(t){this.localSrc=null,this.$emit("img-error",t)},onClick:function(t){this.$emit(Tn,t)}},render:function(t){var e,r=this.computedVariant,o=this.disabled,n=this.computedRounded,i=this.icon,a=this.localSrc,l=this.text,s=this.fontStyle,c=this.marginStyle,d=this.computedSize,p=this.button,u=this.buttonType,m=this.badge,f=this.badgeVariant,b=this.badgeStyle,h=!p&&xs(this),g=p?Vc:h?Tc:"span",v=this.alt,x=this.ariaLabel||null,y=null;this.hasNormalizedSlot()?y=t("span",{staticClass:"b-avatar-custom"},[this.normalizeSlot()]):a?(y=t("img",{style:r?{}:{width:"100%",height:"100%"},attrs:{src:a,alt:v},on:{error:this.onImgError}}),y=t("span",{staticClass:"b-avatar-img"},[y])):y=i?t(ec,{props:{icon:i},attrs:{"aria-hidden":"true",alt:v}}):l?t("span",{staticClass:"b-avatar-text",style:s},[t("span",l)]):t(Hs,{attrs:{"aria-hidden":"true",alt:v}});var w=t(),k=this.hasNormalizedSlot(Ei);if(m||""===m||k){var O=!0===m?"":m;w=t("span",{staticClass:"b-avatar-badge",class:Uc({},"badge-".concat(f),f),style:b},[k?this.normalizeSlot(Ei):O])}return t(g,{staticClass:Wc,class:(e={},Uc(e,"".concat(Wc,"-").concat(d),d&&-1!==Gc.indexOf(d)),Uc(e,"badge-".concat(r),!p&&r),Uc(e,"rounded",!0===n),Uc(e,"rounded-".concat(n),n&&!0!==n),Uc(e,"disabled",o),e),style:Hc(Hc({},c),{},{width:d,height:d}),attrs:{"aria-label":x||null},props:p?{variant:r,disabled:o,type:u}:h?hl(Yc,this):{},on:p||h?{click:this.onClick}:{}},[y,w])}}),Jc=vl({overlap:fl(Ti,.3),rounded:fl(ji,!1),size:fl(gi),square:fl(pi,!1),tag:fl(gi,"div"),variant:fl(gi)},Or),Zc=lr({components:{BAvatar:Xc,BAvatarGroup:o.default.extend({name:Or,mixins:[Sl],provide:function(){return{bvAvatarGroup:this}},props:Jc,computed:{computedSize:function(){return qc(this.size)},overlapScale:function(){return rs(os(sa(this.overlap,0),0),1)/2},paddingStyle:function(){var t=this.computedSize;return(t=t?"calc(".concat(t," * ").concat(this.overlapScale,")"):null)?{paddingLeft:t,paddingRight:t}:{}}},render:function(t){var e=t("div",{staticClass:"b-avatar-group-inner",style:this.paddingStyle},this.normalizeSlot());return t(this.tag,{staticClass:"b-avatar-group",attrs:{role:"group"}},[e])}})}});function Qc(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function td(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Qc(Object(r),!0).forEach((function(e){ed(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Qc(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function ed(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var rd=Be(Pc,["event","routerTag"]);delete rd.href.default,delete rd.to.default;var od=vl(Ie(td(td({},rd),{},{pill:fl(pi,!1),tag:fl(gi,"span"),variant:fl(gi,"secondary")})),jr),nd=o.default.extend({name:jr,functional:!0,props:od,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=r.active,a=r.disabled,l=xs(r),s=l?Tc:r.tag,c=r.variant||"secondary";return t(s,xr(o,{staticClass:"badge",class:["badge-".concat(c),{"badge-pill":r.pill,active:i,disabled:a}],props:l?hl(rd,r):{}}),n)}}),id=lr({components:{BBadge:nd}}),ad=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return String(t).replace(wt,"")},ld=function(t,e){return t?{innerHTML:t}:e?{textContent:e}:{}};function sd(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function cd(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?sd(Object(r),!0).forEach((function(e){dd(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):sd(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function dd(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var pd=vl(Ie(cd(cd({},Be(Pc,["event","routerTag"])),{},{ariaCurrent:fl(gi,"location"),html:fl(gi),text:fl(gi)})),Tr),ud=o.default.extend({name:Tr,functional:!0,props:pd,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=r.active,a=i?"span":Tc,l={attrs:{"aria-current":i?r.ariaCurrent:null},props:hl(pd,r)};return n||(l.domProps=ld(r.html,r.text)),t(a,xr(o,l),n)}}),md=vl(pd,Pr),fd=o.default.extend({name:Pr,functional:!0,props:md,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t("li",xr(o,{staticClass:"breadcrumb-item",class:{active:r.active}}),[t(ud,{props:r},n)])}});function bd(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function hd(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?bd(Object(r),!0).forEach((function(e){gd(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):bd(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function gd(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var vd=vl({items:fl(di)},Sr),xd=lr({components:{BBreadcrumb:o.default.extend({name:Sr,functional:!0,props:vd,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=r.items,a=n;if(he(i)){var l=!1;a=i.map((function(e,r){ge(e)||(e={text:ba(e)});var o=e.active;return o&&(l=!0),o||l||(o=r+1===i.length),t(fd,{props:hd(hd({},e),{},{active:o})})}))}return t("ol",xr(o,{staticClass:"breadcrumb"}),a)}}),BBreadcrumbItem:fd,BBreadcrumbLink:ud}}),yd=lr({components:{BButton:Vc,BBtn:Vc,BButtonClose:Al,BBtnClose:Al}});function wd(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function kd(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?wd(Object(r),!0).forEach((function(e){Od(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):wd(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Od(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var jd=vl(Ie(kd(kd({},ze(Ec,["size"])),{},{ariaRole:fl(gi,"group"),size:fl(gi),tag:fl(gi,"div"),vertical:fl(pi,!1)})),$r),Sd=o.default.extend({name:$r,functional:!0,props:jd,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t(r.tag,xr(o,{class:Od({"btn-group":!r.vertical,"btn-group-vertical":r.vertical},"btn-group-".concat(r.size),r.size),attrs:{role:r.ariaRole}}),n)}}),Pd=lr({components:{BButtonGroup:Sd,BBtnGroup:Sd}}),Td=[".btn:not(.disabled):not([disabled]):not(.dropdown-item)",".form-control:not(.disabled):not([disabled])","select:not(.disabled):not([disabled])",'input[type="checkbox"]:not(.disabled)','input[type="radio"]:not(.disabled)'].join(","),_d=vl({justify:fl(pi,!1),keyNav:fl(pi,!1)},Dr),Cd=o.default.extend({name:Dr,mixins:[Sl],props:_d,mounted:function(){this.keyNav&&this.getItems()},methods:{getItems:function(){var t=Da(Td,this.$el);return t.forEach((function(t){t.tabIndex=-1})),t.filter((function(t){return _a(t)}))},focusFirst:function(){var t=this.getItems();Qa(t[0])},focusPrev:function(t){var e=this.getItems(),r=e.indexOf(t.target);r>-1&&(e=e.slice(0,r).reverse(),Qa(e[0]))},focusNext:function(t){var e=this.getItems(),r=e.indexOf(t.target);r>-1&&(e=e.slice(r+1),Qa(e[0]))},focusLast:function(){var t=this.getItems().reverse();Qa(t[0])},onFocusin:function(t){var e=this.$el;t.target!==e||Aa(e,t.relatedTarget)||($l(t),this.focusFirst(t))},onKeydown:function(t){var e=t.keyCode,r=t.shiftKey;e===cc||e===ac?($l(t),r?this.focusFirst(t):this.focusPrev(t)):e!==rc&&e!==lc||($l(t),r?this.focusLast(t):this.focusNext(t))}},render:function(t){var e=this.keyNav;return t("div",{staticClass:"btn-toolbar",class:{"justify-content-between":this.justify},attrs:{role:"toolbar",tabindex:e?"0":null},on:e?{focusin:this.onFocusin,keydown:this.onKeydown}:{}},[this.normalizeSlot()])}}),$d=lr({components:{BButtonToolbar:Cd,BBtnToolbar:Cd}}),Dd="gregory",Ed="long",zd="short",Bd="2-digit",Ad="numeric";function Id(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}function Fd(t,e,r){return(Fd=Ld()?Reflect.construct:function(t,e,r){var o=[null];o.push.apply(o,e);var n=new(Function.bind.apply(t,o));return r&&Md(n,r.prototype),n}).apply(null,arguments)}function Ld(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}function Md(t,e){return(Md=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}var Rd,Vd=function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return Fd(Date,e)},Nd=function(t){if(me(t)&&Bt.test(t.trim())){var e=function(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t)){var r=[],o=!0,n=!1,i=void 0;try{for(var a,l=t[Symbol.iterator]();!(o=(a=l.next()).done)&&(r.push(a.value),!e||r.length!==e);o=!0);}catch(t){n=!0,i=t}finally{try{o||null==l.return||l.return()}finally{if(n)throw i}}return r}}(t,e)||function(t,e){if(t){if("string"==typeof t)return Id(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Id(t,e):void 0}}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(t.split(At).map((function(t){return la(t,1)})),3),r=e[0],o=e[1],n=e[2];return Vd(r,o-1,n)}return xe(t)?Vd(t.getFullYear(),t.getMonth(),t.getDate()):null},Hd=function(t){if(!(t=Nd(t)))return null;var e=t.getFullYear(),r="0".concat(t.getMonth()+1).slice(-2),o="0".concat(t.getDate()).slice(-2);return"".concat(e,"-").concat(r,"-").concat(o)},Ud=function(t,e){return new Intl.DateTimeFormat(t,e).format},Wd=function(t,e){return Hd(t)===Hd(e)},Gd=function(t){return(t=Vd(t)).setDate(1),t},qd=function(t){return(t=Vd(t)).setMonth(t.getMonth()+1),t.setDate(0),t},Yd=function(t,e){var r=(t=Vd(t)).getMonth();return t.setFullYear(t.getFullYear()+e),t.getMonth()!==r&&t.setDate(0),t},Kd=function(t){var e=(t=Vd(t)).getMonth();return t.setMonth(e-1),t.getMonth()===e&&t.setDate(0),t},Xd=function(t){var e=(t=Vd(t)).getMonth();return t.setMonth(e+1),t.getMonth()===(e+2)%12&&t.setDate(0),t},Jd=function(t){return Yd(t,-1)},Zd=function(t){return Yd(t,1)},Qd=function(t){return Yd(t,-10)},tp=function(t){return Yd(t,10)},ep=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return t=Nd(t),e=Nd(e)||t,r=Nd(r)||t,t?t<e?e:t>r?r:t:null},rp=["ar","az","ckb","fa","he","ks","lrc","mzn","ps","sd","te","ug","ur","yi"].map((function(t){return t.toLowerCase()})),op=function(t){var e=ba(t).toLowerCase().replace(Wt,"").split("-"),r=e.slice(0,2).join("-"),o=e[0];return ra(rp,r)||ra(rp,o)},np={id:fl(gi)},ip=o.default.extend({props:np,data:function(){return{localId_:null}},computed:{safeId:function(){var t=this.id||this.localId_;return function(e){return t?(e=String(e||"").replace(/\s+/g,"_"))?t+"_"+e:t:null}}},mounted:function(){var t=this;this.$nextTick((function(){t.localId_="__BVID__".concat(t._uid)}))}});function ap(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function lp(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?ap(Object(r),!0).forEach((function(e){sp(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ap(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function sp(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var cp=kl("value",{type:Si}),dp=cp.mixin,pp=cp.props,up=cp.prop,mp=cp.event,fp=vl(Ie(lp(lp(lp({},np),pp),{},{ariaControls:fl(gi),block:fl(pi,!1),dateDisabledFn:fl(mi),dateFormatOptions:fl(bi,{year:Ad,month:Ed,day:Ad,weekday:Ed}),dateInfoFn:fl(mi),direction:fl(gi),disabled:fl(pi,!1),hidden:fl(pi,!1),hideHeader:fl(pi,!1),initialDate:fl(Si),labelCalendar:fl(gi,"Calendar"),labelCurrentMonth:fl(gi,"Current month"),labelHelp:fl(gi,"Use cursor keys to navigate calendar dates"),labelNav:fl(gi,"Calendar navigation"),labelNextDecade:fl(gi,"Next decade"),labelNextMonth:fl(gi,"Next month"),labelNextYear:fl(gi,"Next year"),labelNoDateSelected:fl(gi,"No date selected"),labelPrevDecade:fl(gi,"Previous decade"),labelPrevMonth:fl(gi,"Previous month"),labelPrevYear:fl(gi,"Previous year"),labelSelected:fl(gi,"Selected date"),labelToday:fl(gi,"Today"),locale:fl(wi),max:fl(Si),min:fl(Si),navButtonVariant:fl(gi,"secondary"),noHighlightToday:fl(pi,!1),noKeyNav:fl(pi,!1),readonly:fl(pi,!1),roleDescription:fl(gi),selectedVariant:fl(gi,"primary"),showDecadeNav:fl(pi,!1),startWeekday:fl(Ti,0),todayVariant:fl(gi),valueAsDate:fl(pi,!1),weekdayHeaderFormat:fl(gi,zd,(function(t){return ra([Ed,zd,"narrow"],t)})),width:fl(gi,"270px")})),Er),bp=o.default.extend({name:Er,mixins:[bc,ip,dp,Sl],props:fp,data:function(){var t=Hd(this[up])||"";return{selectedYMD:t,activeYMD:t||Hd(ep(this.initialDate||this.getToday()),this.min,this.max),gridHasFocus:!1,isLive:!1}},computed:{valueId:function(){return this.safeId()},widgetId:function(){return this.safeId("_calendar-wrapper_")},navId:function(){return this.safeId("_calendar-nav_")},gridId:function(){return this.safeId("_calendar-grid_")},gridCaptionId:function(){return this.safeId("_calendar-grid-caption_")},gridHelpId:function(){return this.safeId("_calendar-grid-help_")},activeId:function(){return this.activeYMD?this.safeId("_cell-".concat(this.activeYMD,"_")):null},selectedDate:function(){return Nd(this.selectedYMD)},activeDate:function(){return Nd(this.activeYMD)},computedMin:function(){return Nd(this.min)},computedMax:function(){return Nd(this.max)},computedWeekStarts:function(){return os(la(this.startWeekday,0),0)%7},computedLocale:function(){return function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Dd;return t=oa(t).filter(He),new Intl.DateTimeFormat(t,{calendar:e}).resolvedOptions().locale}(oa(this.locale).filter(He),Dd)},computedDateDisabledFn:function(){var t=this.dateDisabledFn;return yl(t)?t:function(){return!1}},computedDateInfoFn:function(){var t=this.dateInfoFn;return yl(t)?t:function(){return{}}},calendarLocale:function(){var t=new Intl.DateTimeFormat(this.computedLocale,{calendar:Dd}),e=t.resolvedOptions().calendar,r=t.resolvedOptions().locale;return e!==Dd&&(r=r.replace(/-u-.+$/i,"").concat("-u-ca-gregory")),r},calendarYear:function(){return this.activeDate.getFullYear()},calendarMonth:function(){return this.activeDate.getMonth()},calendarFirstDay:function(){return Vd(this.calendarYear,this.calendarMonth,1,12)},calendarDaysInMonth:function(){var t=Vd(this.calendarFirstDay);return t.setMonth(t.getMonth()+1,0),t.getDate()},computedVariant:function(){return"btn-".concat(this.selectedVariant||"primary")},computedTodayVariant:function(){return"btn-outline-".concat(this.todayVariant||this.selectedVariant||"primary")},computedNavButtonVariant:function(){return"btn-outline-".concat(this.navButtonVariant||"primary")},isRTL:function(){var t=ba(this.direction).toLowerCase();return"rtl"===t||"ltr"!==t&&op(this.computedLocale)},context:function(){var t=this.selectedYMD,e=this.activeYMD,r=Nd(t),o=Nd(e);return{selectedYMD:t,selectedDate:r,selectedFormatted:r?this.formatDateString(r):this.labelNoDateSelected,activeYMD:e,activeDate:o,activeFormatted:o?this.formatDateString(o):"",disabled:this.dateDisabled(o),locale:this.computedLocale,calendarLocale:this.calendarLocale,rtl:this.isRTL}},dateOutOfRange:function(){var t=this.computedMin,e=this.computedMax;return function(r){return r=Nd(r),t&&r<t||e&&r>e}},dateDisabled:function(){var t=this,e=this.dateOutOfRange;return function(r){r=Nd(r);var o=Hd(r);return!(!e(r)&&!t.computedDateDisabledFn(o,r))}},formatDateString:function(){return Ud(this.calendarLocale,lp(lp({year:Ad,month:Bd,day:Bd},this.dateFormatOptions),{},{hour:void 0,minute:void 0,second:void 0,calendar:Dd}))},formatYearMonth:function(){return Ud(this.calendarLocale,{year:Ad,month:Ed,calendar:Dd})},formatWeekdayName:function(){return Ud(this.calendarLocale,{weekday:Ed,calendar:Dd})},formatWeekdayNameShort:function(){return Ud(this.calendarLocale,{weekday:this.weekdayHeaderFormat||zd,calendar:Dd})},formatDay:function(){var t=new Intl.NumberFormat([this.computedLocale],{style:"decimal",minimumIntegerDigits:1,minimumFractionDigits:0,maximumFractionDigits:0,notation:"standard"});return function(e){return t.format(e.getDate())}},prevDecadeDisabled:function(){var t=this.computedMin;return this.disabled||t&&qd(Qd(this.activeDate))<t},prevYearDisabled:function(){var t=this.computedMin;return this.disabled||t&&qd(Jd(this.activeDate))<t},prevMonthDisabled:function(){var t=this.computedMin;return this.disabled||t&&qd(Kd(this.activeDate))<t},thisMonthDisabled:function(){return this.disabled},nextMonthDisabled:function(){var t=this.computedMax;return this.disabled||t&&Gd(Xd(this.activeDate))>t},nextYearDisabled:function(){var t=this.computedMax;return this.disabled||t&&Gd(Zd(this.activeDate))>t},nextDecadeDisabled:function(){var t=this.computedMax;return this.disabled||t&&Gd(tp(this.activeDate))>t},calendar:function(){for(var t=[],e=this.calendarFirstDay,r=e.getFullYear(),o=e.getMonth(),n=this.calendarDaysInMonth,i=e.getDay(),a=0-((this.computedWeekStarts>i?7:0)-this.computedWeekStarts)-i,l=0;l<6&&a<n;l++){t[l]=[];for(var s=0;s<7;s++){a++;var c=Vd(r,o,a),d=c.getMonth(),p=Hd(c),u=this.dateDisabled(c),m=this.computedDateInfoFn(p,Nd(p));m=me(m)||he(m)?{class:m}:ve(m)?lp({class:""},m):{class:""},t[l].push({ymd:p,day:this.formatDay(c),label:this.formatDateString(c),isThisMonth:d===o,isDisabled:u,info:m})}}return t},calendarHeadings:function(){var t=this;return this.calendar[0].map((function(e){return{text:t.formatWeekdayNameShort(Nd(e.ymd)),label:t.formatWeekdayName(Nd(e.ymd))}}))}},watch:(Rd={},sp(Rd,up,(function(t,e){var r=Hd(t)||"",o=Hd(e)||"";Wd(r,o)||(this.activeYMD=r||this.activeYMD,this.selectedYMD=r)})),sp(Rd,"selectedYMD",(function(t,e){t!==e&&this.$emit(mp,this.valueAsDate?Nd(t)||null:t||"")})),sp(Rd,"context",(function(t,e){dc(t,e)||this.$emit(Cn,t)})),sp(Rd,"hidden",(function(t){this.activeYMD=this.selectedYMD||Hd(this[up]||this.constrainDate(this.initialDate||this.getToday())),this.setLive(!t)})),Rd),created:function(){var t=this;this.$nextTick((function(){t.$emit(Cn,t.context)}))},mounted:function(){this.setLive(!0)},activated:function(){this.setLive(!0)},deactivated:function(){this.setLive(!1)},beforeDestroy:function(){this.setLive(!1)},methods:{focus:function(){this.disabled||Qa(this.$refs.grid)},blur:function(){this.disabled||tl(this.$refs.grid)},setLive:function(t){var e=this;t?this.$nextTick((function(){ka((function(){e.isLive=!0}))})):this.isLive=!1},getToday:function(){return Nd(Vd())},constrainDate:function(t){return ep(t,this.computedMin,this.computedMax)},emitSelected:function(t){var e=this;this.$nextTick((function(){e.$emit(Qn,Hd(t)||"",Nd(t)||null)}))},setGridFocusFlag:function(t){this.gridHasFocus=!this.disabled&&"focus"===t.type},onKeydownWrapper:function(t){if(!this.noKeyNav){var e=t.altKey,r=t.ctrlKey,o=t.keyCode;if(ra([33,34,oc,ic,ac,cc,lc,rc],o)){$l(t);var n=Vd(this.activeDate),i=Vd(this.activeDate),a=n.getDate(),l=this.constrainDate(this.getToday()),s=this.isRTL;33===o?(n=(e?r?Qd:Jd:Kd)(n),(i=Vd(n)).setDate(1)):34===o?(n=(e?r?tp:Zd:Xd)(n),(i=Vd(n)).setMonth(i.getMonth()+1),i.setDate(0)):o===ac?(n.setDate(a+(s?1:-1)),i=n=this.constrainDate(n)):o===lc?(n.setDate(a+(s?-1:1)),i=n=this.constrainDate(n)):o===cc?(n.setDate(a-7),i=n=this.constrainDate(n)):o===rc?(n.setDate(a+7),i=n=this.constrainDate(n)):o===ic?i=n=l:o===oc&&(i=n=Nd(this.selectedDate)||l),this.dateOutOfRange(i)||Wd(n,this.activeDate)||(this.activeYMD=Hd(n)),this.focus()}}},onKeydownGrid:function(t){var e=t.keyCode,r=this.activeDate;e!==nc&&e!==sc||($l(t),this.disabled||this.readonly||this.dateDisabled(r)||(this.selectedYMD=Hd(r),this.emitSelected(r)),this.focus())},onClickDay:function(t){var e=this.selectedDate,r=this.activeDate,o=Nd(t.ymd);this.disabled||t.isDisabled||this.dateDisabled(o)||(this.readonly||(this.selectedYMD=Hd(Wd(o,e)?e:o),this.emitSelected(o)),this.activeYMD=Hd(Wd(o,r)?r:Vd(o)),this.focus())},gotoPrevDecade:function(){this.activeYMD=Hd(this.constrainDate(Qd(this.activeDate)))},gotoPrevYear:function(){this.activeYMD=Hd(this.constrainDate(Jd(this.activeDate)))},gotoPrevMonth:function(){this.activeYMD=Hd(this.constrainDate(Kd(this.activeDate)))},gotoCurrentMonth:function(){this.activeYMD=Hd(this.constrainDate(this.getToday()))},gotoNextMonth:function(){this.activeYMD=Hd(this.constrainDate(Xd(this.activeDate)))},gotoNextYear:function(){this.activeYMD=Hd(this.constrainDate(Zd(this.activeDate)))},gotoNextDecade:function(){this.activeYMD=Hd(this.constrainDate(tp(this.activeDate)))},onHeaderClick:function(){this.disabled||(this.activeYMD=this.selectedYMD||Hd(this.getToday()),this.focus())}},render:function(t){var e=this;if(this.hidden)return t();var r=this.valueId,o=this.widgetId,n=this.navId,i=this.gridId,a=this.gridCaptionId,l=this.gridHelpId,s=this.activeId,c=this.disabled,d=this.noKeyNav,p=this.isLive,u=this.isRTL,m=this.activeYMD,f=this.selectedYMD,b=this.safeId,h=!this.showDecadeNav,g=Hd(this.getToday()),v=!this.noHighlightToday,x=t("output",{staticClass:"form-control form-control-sm text-center",class:{"text-muted":c,readonly:this.readonly||c},attrs:{id:r,for:i,role:"status",tabindex:c?null:"-1","data-selected":ba(f),"aria-live":p?"polite":"off","aria-atomic":p?"true":null},on:{click:this.onHeaderClick,focus:this.onHeaderClick}},this.selectedDate?[t("bdi",{staticClass:"sr-only"}," (".concat(ba(this.labelSelected),") ")),t("bdi",this.formatDateString(this.selectedDate))]:this.labelNoDateSelected||" ");x=t("header",{staticClass:"b-calendar-header",class:{"sr-only":this.hideHeader},attrs:{title:this.selectedDate&&this.labelSelectedDate||null}},[x]);var y={isRTL:u},w={shiftV:.5},k=lp(lp({},w),{},{flipH:u}),O=lp(lp({},w),{},{flipH:!u}),j=this.normalizeSlot("nav-prev-decade",y)||t(Bs,{props:k}),S=this.normalizeSlot("nav-prev-year",y)||t(As,{props:k}),P=this.normalizeSlot("nav-prev-month",y)||t(Fs,{props:k}),T=this.normalizeSlot("nav-this-month",y)||t(Ms,{props:w}),_=this.normalizeSlot("nav-next-month",y)||t(Fs,{props:O}),C=this.normalizeSlot("nav-next-year",y)||t(As,{props:O}),$=this.normalizeSlot("nav-next-decade",y)||t(Bs,{props:O}),D=function(r,o,n,i,a){return t("button",{staticClass:"btn btn-sm border-0 flex-fill",class:[e.computedNavButtonVariant,{disabled:i}],attrs:{title:o||null,type:"button",tabindex:d?"-1":null,"aria-label":o||null,"aria-disabled":i?"true":null,"aria-keyshortcuts":a||null},on:i?{}:{click:n}},[t("div",{attrs:{"aria-hidden":"true"}},[r])])},E=t("div",{staticClass:"b-calendar-nav d-flex",attrs:{id:n,role:"group",tabindex:d?"-1":null,"aria-hidden":c?"true":null,"aria-label":this.labelNav||null,"aria-controls":i}},[h?t():D(j,this.labelPrevDecade,this.gotoPrevDecade,this.prevDecadeDisabled,"Ctrl+Alt+PageDown"),D(S,this.labelPrevYear,this.gotoPrevYear,this.prevYearDisabled,"Alt+PageDown"),D(P,this.labelPrevMonth,this.gotoPrevMonth,this.prevMonthDisabled,"PageDown"),D(T,this.labelCurrentMonth,this.gotoCurrentMonth,this.thisMonthDisabled,"Home"),D(_,this.labelNextMonth,this.gotoNextMonth,this.nextMonthDisabled,"PageUp"),D(C,this.labelNextYear,this.gotoNextYear,this.nextYearDisabled,"Alt+PageUp"),h?t():D($,this.labelNextDecade,this.gotoNextDecade,this.nextDecadeDisabled,"Ctrl+Alt+PageUp")]),z=t("header",{staticClass:"b-calendar-grid-caption text-center font-weight-bold",class:{"text-muted":c},attrs:{id:a,"aria-live":p?"polite":null,"aria-atomic":p?"true":null},key:"grid-caption"},this.formatYearMonth(this.calendarFirstDay)),B=t("div",{staticClass:"b-calendar-grid-weekdays row no-gutters border-bottom",attrs:{"aria-hidden":"true"}},this.calendarHeadings.map((function(e,r){return t("small",{staticClass:"col text-truncate",class:{"text-muted":c},attrs:{title:e.label===e.text?null:e.label,"aria-label":e.label},key:r},e.text)}))),A=this.calendar.map((function(r){var o=r.map((function(r,o){var n,i=r.ymd===f,a=r.ymd===m,l=r.ymd===g,s=b("_cell-".concat(r.ymd,"_")),d=t("span",{staticClass:"btn border-0 rounded-circle text-nowrap",class:(n={focus:a&&e.gridHasFocus,disabled:r.isDisabled||c,active:i},sp(n,e.computedVariant,i),sp(n,e.computedTodayVariant,l&&v&&!i&&r.isThisMonth),sp(n,"btn-outline-light",!(l&&v||i||a)),sp(n,"btn-light",!(l&&v)&&!i&&a),sp(n,"text-muted",!r.isThisMonth&&!i),sp(n,"text-dark",!(l&&v)&&!i&&!a&&r.isThisMonth),sp(n,"font-weight-bold",(i||r.isThisMonth)&&!r.isDisabled),n),on:{click:function(){return e.onClickDay(r)}}},r.day);return t("div",{staticClass:"col p-0",class:r.isDisabled?"bg-light":r.info.class||"",attrs:{id:s,role:"button","data-date":r.ymd,"aria-hidden":r.isThisMonth?null:"true","aria-disabled":r.isDisabled||c?"true":null,"aria-label":[r.label,i?"(".concat(e.labelSelected,")"):null,l?"(".concat(e.labelToday,")"):null].filter(He).join(" "),"aria-selected":i?"true":null,"aria-current":i?"date":null},key:o},[d])}));return t("div",{staticClass:"row no-gutters",key:r[0].ymd},o)}));A=t("div",{staticClass:"b-calendar-grid-body",style:c?{pointerEvents:"none"}:{}},A);var I=t("footer",{staticClass:"b-calendar-grid-help border-top small text-muted text-center bg-light",attrs:{id:l}},[t("div",{staticClass:"small"},this.labelHelp)]),F=t("div",{staticClass:"b-calendar-grid form-control h-auto text-center",attrs:{id:i,role:"application",tabindex:d?"-1":c?null:"0","data-month":m.slice(0,-3),"aria-roledescription":this.labelCalendar||null,"aria-labelledby":a,"aria-describedby":l,"aria-disabled":c?"true":null,"aria-activedescendant":s},on:{keydown:this.onKeydownGrid,focus:this.setGridFocusFlag,blur:this.setGridFocusFlag},ref:"grid"},[z,B,A,I]),L=this.normalizeSlot();L=L?t("footer",{staticClass:"b-calendar-footer"},L):t();var M=t("div",{staticClass:"b-calendar-inner",style:this.block?{}:{width:this.width},attrs:{id:o,dir:u?"rtl":"ltr",lang:this.computedLocale||null,role:"group","aria-disabled":c?"true":null,"aria-controls":this.ariaControls||null,"aria-roledescription":this.roleDescription||null,"aria-describedby":[this.bvAttrs["aria-describedby"],r,l].filter(He).join(" ")},on:{keydown:this.onKeydownWrapper}},[x,E,F,L]);return t("div",{staticClass:"b-calendar",class:{"d-block":this.block}},[M])}}),hp=lr({components:{BCalendar:bp}}),gp=vl({bgVariant:fl(gi),borderVariant:fl(gi),tag:fl(gi,"div"),textVariant:fl(gi)},zr),vp=(o.default.extend({props:gp}),vl({title:fl(gi),titleTag:fl(gi,"h4")},Nr)),xp=o.default.extend({name:Nr,functional:!0,props:vp,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t(r.titleTag,xr(o,{staticClass:"card-title"}),n||ba(r.title))}}),yp=vl({subTitle:fl(gi),subTitleTag:fl(gi,"h6"),subTitleTextVariant:fl(gi,"muted")},Rr),wp=o.default.extend({name:Rr,functional:!0,props:yp,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t(r.subTitleTag,xr(o,{staticClass:"card-subtitle",class:[r.subTitleTextVariant?"text-".concat(r.subTitleTextVariant):null]}),n||ba(r.subTitle))}});function kp(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Op(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?kp(Object(r),!0).forEach((function(e){jp(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):kp(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function jp(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Sp=vl(Ie(Op(Op(Op(Op({},vp),yp),bl(gp,pl.bind(null,"body"))),{},{bodyClass:fl(yi),overlay:fl(pi,!1)})),Br),Pp=o.default.extend({name:Br,functional:!0,props:Sp,render:function(t,e){var r,o=e.props,n=e.data,i=e.children,a=o.bodyBgVariant,l=o.bodyBorderVariant,s=o.bodyTextVariant,c=t();o.title&&(c=t(xp,{props:hl(vp,o)}));var d=t();return o.subTitle&&(d=t(wp,{props:hl(yp,o),class:["mb-2"]})),t(o.bodyTag,xr(n,{staticClass:"card-body",class:[(r={"card-img-overlay":o.overlay},jp(r,"bg-".concat(a),a),jp(r,"border-".concat(l),l),jp(r,"text-".concat(s),s),r),o.bodyClass]}),[c,d,i])}});function Tp(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function _p(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Tp(Object(r),!0).forEach((function(e){Cp(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Tp(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Cp(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var $p=vl(Ie(_p(_p({},bl(gp,pl.bind(null,"header"))),{},{header:fl(gi),headerClass:fl(yi),headerHtml:fl(gi)})),Fr),Dp=o.default.extend({name:Fr,functional:!0,props:$p,render:function(t,e){var r,o=e.props,n=e.data,i=e.children,a=o.headerBgVariant,l=o.headerBorderVariant,s=o.headerTextVariant;return t(o.headerTag,xr(n,{staticClass:"card-header",class:[o.headerClass,(r={},Cp(r,"bg-".concat(a),a),Cp(r,"border-".concat(l),l),Cp(r,"text-".concat(s),s),r)],domProps:i?{}:ld(o.headerHtml,o.header)}),i)}});function Ep(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function zp(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ep(Object(r),!0).forEach((function(e){Bp(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ep(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Bp(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Ap=vl(Ie(zp(zp({},bl(gp,pl.bind(null,"footer"))),{},{footer:fl(gi),footerClass:fl(yi),footerHtml:fl(gi)})),Ar),Ip=o.default.extend({name:Ar,functional:!0,props:Ap,render:function(t,e){var r,o=e.props,n=e.data,i=e.children,a=o.footerBgVariant,l=o.footerBorderVariant,s=o.footerTextVariant;return t(o.footerTag,xr(n,{staticClass:"card-footer",class:[o.footerClass,(r={},Bp(r,"bg-".concat(a),a),Bp(r,"border-".concat(l),l),Bp(r,"text-".concat(s),s),r)],domProps:i?{}:ld(o.footerHtml,o.footer)}),i)}});function Fp(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Lp=vl({alt:fl(gi),blank:fl(pi,!1),blankColor:fl(gi,"transparent"),block:fl(pi,!1),center:fl(pi,!1),fluid:fl(pi,!1),fluidGrow:fl(pi,!1),height:fl(Ti),left:fl(pi,!1),right:fl(pi,!1),rounded:fl(ji,!1),sizes:fl(wi),src:fl(gi),srcset:fl(wi),thumbnail:fl(pi,!1),width:fl(Ti)},_o),Mp=o.default.extend({name:_o,functional:!0,props:Lp,render:function(t,e){var r,o=e.props,n=e.data,i=o.alt,a=o.src,l=o.block,s=o.fluidGrow,c=o.rounded,d=la(o.width)||null,p=la(o.height)||null,u=null,m=oa(o.srcset).filter(He).join(","),f=oa(o.sizes).filter(He).join(",");return o.blank&&(!p&&d?p=d:!d&&p&&(d=p),d||p||(d=1,p=1),a=function(t,e,r){var o=encodeURIComponent('<svg width="%{w}" height="%{h}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 %{w} %{h}" preserveAspectRatio="none"><rect width="100%" height="100%" style="fill:%{f};"></rect></svg>'.replace("%{w}",ba(t)).replace("%{h}",ba(e)).replace("%{f}",r));return"data:image/svg+xml;charset=UTF-8,".concat(o)}(d,p,o.blankColor||"transparent"),m=null,f=null),o.left?u="float-left":o.right?u="float-right":o.center&&(u="mx-auto",l=!0),t("img",xr(n,{attrs:{src:a,alt:i,width:d?ba(d):null,height:p?ba(p):null,srcset:m||null,sizes:f||null},class:(r={"img-thumbnail":o.thumbnail,"img-fluid":o.fluid||s,"w-100":s,rounded:""===c||!0===c},Fp(r,"rounded-".concat(c),me(c)&&""!==c),Fp(r,u,u),Fp(r,"d-block",l),r)}))}});function Rp(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Vp(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Rp(Object(r),!0).forEach((function(e){Np(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Rp(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Np(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Hp=vl(Ie(Vp(Vp({},ze(Lp,["src","alt","width","height","left","right"])),{},{bottom:fl(pi,!1),end:fl(pi,!1),start:fl(pi,!1),top:fl(pi,!1)})),Lr),Up=o.default.extend({name:Lr,functional:!0,props:Hp,render:function(t,e){var r=e.props,o=e.data,n=r.src,i=r.alt,a=r.width,l=r.height,s="card-img";return r.top?s+="-top":r.right||r.end?s+="-right":r.bottom?s+="-bottom":(r.left||r.start)&&(s+="-left"),t("img",xr(o,{class:s,attrs:{src:n,alt:i,width:a,height:l}}))}});function Wp(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Gp(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Wp(Object(r),!0).forEach((function(e){qp(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Wp(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function qp(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Yp=bl(Hp,pl.bind(null,"img"));Yp.imgSrc.required=!1;var Kp=vl(Ie(Gp(Gp(Gp(Gp(Gp(Gp({},Sp),$p),Ap),Yp),gp),{},{align:fl(gi),noBody:fl(pi,!1)})),zr),Xp=o.default.extend({name:zr,functional:!0,props:Kp,render:function(t,e){var r,o=e.props,n=e.data,i=e.slots,a=e.scopedSlots,l=o.imgSrc,s=o.imgLeft,c=o.imgRight,d=o.imgStart,p=o.imgEnd,u=o.imgBottom,m=o.header,f=o.headerHtml,b=o.footer,h=o.footerHtml,g=o.align,v=o.textVariant,x=o.bgVariant,y=o.borderVariant,w=a||{},k=i(),O={},j=t(),S=t();if(l){var P=t(Up,{props:hl(Yp,o,ul.bind(null,"img"))});u?S=P:j=P}var T=t(),_=Ol(Vi,w,k);(_||m||f)&&(T=t(Dp,{props:hl($p,o),domProps:_?{}:ld(f,m)},jl(Vi,O,w,k)));var C=jl(Ii,O,w,k);o.noBody||(C=t(Pp,{props:hl(Sp,o)},C),o.overlay&&l&&(C=t("div",{staticClass:"position-relative"},[j,C,S]),j=t(),S=t()));var $=t();return(Ol(Ri,w,k)||b||h)&&($=t(Ip,{props:hl(Ap,o),domProps:_?{}:ld(h,b)},jl(Ri,O,w,k))),t(o.tag,xr(n,{staticClass:"card",class:(r={"flex-row":s||d,"flex-row-reverse":(c||p)&&!(s||d)},qp(r,"text-".concat(g),g),qp(r,"bg-".concat(x),x),qp(r,"border-".concat(y),y),qp(r,"text-".concat(v),v),r)}),[j,T,C,$,S])}});function Jp(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}var Zp,Qp="__bv__visibility_observer",tu=function(){function t(e,r,o){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.el=e,this.callback=r.callback,this.margin=r.margin||0,this.once=r.once||!1,this.observer=null,this.visible=void 0,this.doneOnce=!1,this.createObserver(o)}var e,r;return e=t,(r=[{key:"createObserver",value:function(t){var e=this;if(this.observer&&this.stop(),!this.doneOnce&&pe(this.callback)){try{this.observer=new IntersectionObserver(this.handler.bind(this),{root:null,rootMargin:this.margin,threshold:0})}catch(t){return this.doneOnce=!0,this.observer=void 0,void this.callback(null)}t.context.$nextTick((function(){ka((function(){e.observer&&e.observer.observe(e.el)}))}))}}},{key:"handler",value:function(t){var e=t?t[0]:{},r=Boolean(e.isIntersecting||e.intersectionRatio>0);r!==this.visible&&(this.visible=r,this.callback(r),this.once&&this.visible&&(this.doneOnce=!0,this.stop()))}},{key:"stop",value:function(){this.observer&&this.observer.disconnect(),this.observer=null}}])&&Jp(e.prototype,r),t}(),eu=function(t){var e=t[Qp];e&&e.stop&&e.stop(),delete t[Qp]},ru=function(t,e,r){var o=e.value,n=e.modifiers,i={margin:"0px",once:!1,callback:o};$e(n).forEach((function(t){gt.test(t)?i.margin="".concat(t,"px"):"once"===t.toLowerCase()&&(i.once=!0)})),eu(t),t[Qp]=new tu(t,i,r),t[Qp]._prevModifiers=Ee(n)},ou={bind:ru,componentUpdated:function(t,e,r){var o=e.value,n=e.oldValue,i=e.modifiers;i=Ee(i),!t||o===n&&t[Qp]&&dc(i,t[Qp]._prevModifiers)||ru(t,{value:o,modifiers:i},r)},unbind:function(t){eu(t)}};function nu(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function iu(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?nu(Object(r),!0).forEach((function(e){au(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):nu(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function au(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var lu="show",su=Be(Lp,["blank"]),cu=vl(iu(iu({},su),{},au({blankColor:fl(gi,"transparent"),blankHeight:fl(Ti),blankSrc:fl(gi,null),blankWidth:fl(Ti),offset:fl(Ti,360)},lu,fl(pi,!1))),Co),du=o.default.extend({name:Co,directives:{"b-visible":ou},props:cu,data:function(){return{isShown:this.show}},computed:{computedSrc:function(){var t=this.blankSrc;return!t||this.isShown?this.src:t},computedBlank:function(){return!(this.isShown||this.blankSrc)},computedWidth:function(){var t=this.width;return this.isShown?t:this.blankWidth||t},computedHeight:function(){var t=this.height;return this.isShown?t:this.blankHeight||t},computedSrcset:function(){var t=oa(this.srcset).filter(He).join(",");return!this.blankSrc||this.isShown?t:null},computedSizes:function(){var t=oa(this.sizes).filter(He).join(",");return!this.blankSrc||this.isShown?t:null}},watch:(Zp={},au(Zp,lu,(function(t,e){if(t!==e){var r=!ut||t;this.isShown=r,r!==t&&this.$nextTick(this.updateShowProp)}})),au(Zp,"isShown",(function(t,e){t!==e&&this.updateShowProp()})),Zp),mounted:function(){this.isShown=!ut||this.show},methods:{updateShowProp:function(){this.$emit("update:show",this.isShown)},doShow:function(t){!t&&null!==t||this.isShown||(this.isShown=!0)}},render:function(t){var e,r=[];return this.isShown||r.push({name:"b-visible",value:this.doShow,modifiers:(e={},au(e,"".concat(la(this.offset,0)),!0),au(e,"once",!0),e)}),t(Mp,{directives:r,props:iu({src:this.computedSrc,blank:this.computedBlank,width:this.computedWidth,height:this.computedHeight,srcset:this.computedSrcset||null,sizes:this.computedSizes||null},hl(su,this.$props))})}});function pu(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function uu(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?pu(Object(r),!0).forEach((function(e){mu(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):pu(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function mu(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var fu=vl(Ie(uu(uu({},Be(cu,$e(Lp))),Be(Hp,["src","alt","width","height"]))),Mr),bu=o.default.extend({name:Mr,functional:!0,props:fu,render:function(t,e){var r=e.props,o=e.data,n="card-img";return r.top?n+="-top":r.right||r.end?n+="-right":r.bottom?n+="-bottom":(r.left||r.start)&&(n+="-left"),t(du,xr(o,{class:[n],props:Be(r,["left","right"])}))}}),hu=vl({textTag:fl(gi,"p")},Vr),gu=o.default.extend({name:Vr,functional:!0,props:hu,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t(r.textTag,xr(o,{staticClass:"card-text"}),n)}}),vu=vl({columns:fl(pi,!1),deck:fl(pi,!1),tag:fl(gi,"div")},Ir),xu=lr({components:{BCard:Xp,BCardHeader:Dp,BCardBody:Pp,BCardTitle:xp,BCardSubTitle:wp,BCardFooter:Ip,BCardImg:Up,BCardImgLazy:bu,BCardText:gu,BCardGroup:o.default.extend({name:Ir,functional:!0,props:vu,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t(r.tag,xr(o,{class:r.deck?"card-deck":r.columns?"card-columns":"card-group"}),n)}})}}),yu=function(){};function wu(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function ku(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Ou,ju=function(t,e,r){if(t=t?t.$el||t:null,!ja(t))return null;if("observeDom",!rt&&(Ye("".concat("observeDom",": Requires MutationObserver support.")),1))return null;var o=new Oa((function(t){for(var r=!1,o=0;o<t.length&&!r;o++){var n=t[o],i=n.type,a=n.target;("characterData"===i&&a.nodeType===Node.TEXT_NODE||"attributes"===i||"childList"===i&&(n.addedNodes.length>0||n.removedNodes.length>0))&&(r=!0)}r&&e()}));return o.observe(t,function(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?wu(Object(r),!0).forEach((function(e){ku(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):wu(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}({childList:!0,subtree:!0},r)),o};function Su(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Pu(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Su(Object(r),!0).forEach((function(e){Tu(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Su(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Tu(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var _u=kl("value",{type:fi,defaultValue:0}),Cu=_u.mixin,$u=_u.props,Du=_u.prop,Eu=_u.event,zu={next:{dirClass:"carousel-item-left",overlayClass:"carousel-item-next"},prev:{dirClass:"carousel-item-right",overlayClass:"carousel-item-prev"}},Bu={TOUCH:"touch",PEN:"pen"},Au={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"otransitionend oTransitionEnd",transition:"transitionend"},Iu=vl(Ie(Pu(Pu(Pu({},np),$u),{},{background:fl(gi),controls:fl(pi,!1),fade:fl(pi,!1),imgHeight:fl(Ti),imgWidth:fl(Ti),indicators:fl(pi,!1),interval:fl(fi,5e3),labelGotoSlide:fl(gi,"Goto slide"),labelIndicators:fl(gi,"Select a slide to display"),labelNext:fl(gi,"Next slide"),labelPrev:fl(gi,"Previous slide"),noAnimation:fl(pi,!1),noHoverPause:fl(pi,!1),noTouch:fl(pi,!1),noWrap:fl(pi,!1)})),Hr),Fu=o.default.extend({name:Hr,mixins:[ip,Cu,Sl],provide:function(){return{bvCarousel:this}},props:Iu,data:function(){return{index:this[Du]||0,isSliding:!1,transitionEndEvent:null,slides:[],direction:null,isPaused:!(la(this.interval,0)>0),touchStartX:0,touchDeltaX:0}},computed:{numSlides:function(){return this.slides.length}},watch:(Ou={},Tu(Ou,Du,(function(t,e){t!==e&&this.setSlide(la(t,0))})),Tu(Ou,"interval",(function(t,e){t!==e&&(t?(this.pause(!0),this.start(!1)):this.pause(!1))})),Tu(Ou,"isPaused",(function(t,e){t!==e&&this.$emit(t?"paused":"unpaused")})),Tu(Ou,"index",(function(t,e){t===e||this.isSliding||this.doSlide(t,e)})),Ou),created:function(){this.$_interval=null,this.$_animationTimeout=null,this.$_touchTimeout=null,this.$_observer=null,this.isPaused=!(la(this.interval,0)>0)},mounted:function(){this.transitionEndEvent=function(t){for(var e in Au)if(!se(t.style[e]))return Au[e];return null}(this.$el)||null,this.updateSlides(),this.setObserver(!0)},beforeDestroy:function(){this.clearInterval(),this.clearAnimationTimeout(),this.clearTouchTimeout(),this.setObserver(!1)},methods:{clearInterval:function(t){function e(){return t.apply(this,arguments)}return e.toString=function(){return t.toString()},e}((function(){clearInterval(this.$_interval),this.$_interval=null})),clearAnimationTimeout:function(){clearTimeout(this.$_animationTimeout),this.$_animationTimeout=null},clearTouchTimeout:function(){clearTimeout(this.$_touchTimeout),this.$_touchTimeout=null},setObserver:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,t&&(this.$_observer=ju(this.$refs.inner,this.updateSlides.bind(this),{subtree:!1,childList:!0,attributes:!0,attributeFilter:["id"]}))},setSlide:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!(ot&&document.visibilityState&&document.hidden)){var o=this.noWrap,n=this.numSlides;t=as(t),0!==n&&(this.isSliding?this.$once(ri,(function(){ka((function(){return e.setSlide(t,r)}))})):(this.direction=r,this.index=t>=n?o?n-1:0:t<0?o?0:n-1:t,o&&this.index!==t&&this.index!==this[Du]&&this.$emit(Eu,this.index)))}},prev:function(){this.setSlide(this.index-1,"prev")},next:function(){this.setSlide(this.index+1,"next")},pause:function(t){t||(this.isPaused=!0),this.clearInterval()},start:function(t){t||(this.isPaused=!1),this.clearInterval(),this.interval&&this.numSlides>1&&(this.$_interval=setInterval(this.next,os(1e3,this.interval)))},restart:function(){this.$el.contains(Sa())||this.start()},doSlide:function(t,e){var r=this,o=Boolean(this.interval),n=this.calcDirection(this.direction,e,t),i=n.overlayClass,a=n.dirClass,l=this.slides[e],s=this.slides[t];if(l&&s){if(this.isSliding=!0,o&&this.pause(!1),this.$emit("sliding-start",t),this.$emit(Eu,this.index),this.noAnimation)Fa(s,"active"),La(l,"active"),this.isSliding=!1,this.$nextTick((function(){return r.$emit(ri,t)}));else{Fa(s,i),$a(s),Fa(l,a),Fa(s,a);var c=!1,d=function e(){c||(c=!0,r.transitionEndEvent&&r.transitionEndEvent.split(/\s+/).forEach((function(t){return _l(s,t,e,si)})),r.clearAnimationTimeout(),La(s,a),La(s,i),Fa(s,"active"),La(l,"active"),La(l,a),La(l,i),Ra(l,"aria-current","false"),Ra(s,"aria-current","true"),Ra(l,"aria-hidden","true"),Ra(s,"aria-hidden","false"),r.isSliding=!1,r.direction=null,r.$nextTick((function(){return r.$emit(ri,t)})))};this.transitionEndEvent&&this.transitionEndEvent.split(/\s+/).forEach((function(t){return Tl(s,t,d,si)})),this.$_animationTimeout=setTimeout(d,650)}o&&this.start(!1)}},updateSlides:function(){this.pause(!0),this.slides=Da(".carousel-item",this.$refs.inner);var t=this.slides.length,e=os(0,rs(as(this.index),t-1));this.slides.forEach((function(r,o){var n=o+1;o===e?(Fa(r,"active"),Ra(r,"aria-current","true")):(La(r,"active"),Ra(r,"aria-current","false")),Ra(r,"aria-posinset",String(n)),Ra(r,"aria-setsize",String(t))})),this.setSlide(e),this.start(this.isPaused)},calcDirection:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return t?zu[t]:r>e?zu.next:zu.prev},handleClick:function(t,e){var r=t.keyCode;"click"!==t.type&&r!==sc&&r!==nc||($l(t),e())},handleSwipe:function(){var t=ns(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0?this.prev():e<0&&this.next()}},touchStart:function(t){pt&&Bu[t.pointerType.toUpperCase()]?this.touchStartX=t.clientX:pt||(this.touchStartX=t.touches[0].clientX)},touchMove:function(t){t.touches&&t.touches.length>1?this.touchDeltaX=0:this.touchDeltaX=t.touches[0].clientX-this.touchStartX},touchEnd:function(t){pt&&Bu[t.pointerType.toUpperCase()]&&(this.touchDeltaX=t.clientX-this.touchStartX),this.handleSwipe(),this.pause(!1),this.clearTouchTimeout(),this.$_touchTimeout=setTimeout(this.start,500+os(1e3,this.interval))}},render:function(t){var e=this,r=this.indicators,o=this.background,n=this.noAnimation,i=this.noHoverPause,a=this.noTouch,l=this.index,s=this.isSliding,c=this.pause,d=this.restart,p=this.touchStart,u=this.touchEnd,m=this.safeId("__BV_inner_"),f=t("div",{staticClass:"carousel-inner",attrs:{id:m,role:"list"},ref:"inner"},[this.normalizeSlot()]),b=t();if(this.controls){var h=function(r,o,n){var i=function(t){s?$l(t,{propagation:!1}):e.handleClick(t,n)};return t("a",{staticClass:"carousel-control-".concat(r),attrs:{href:"#",role:"button","aria-controls":m,"aria-disabled":s?"true":null},on:{click:i,keydown:i}},[t("span",{staticClass:"carousel-control-".concat(r,"-icon"),attrs:{"aria-hidden":"true"}}),t("span",{class:"sr-only"},[o])])};b=[h("prev",this.labelPrev,this.prev),h("next",this.labelNext,this.next)]}var g=t("ol",{staticClass:"carousel-indicators",directives:[{name:"show",value:r}],attrs:{id:this.safeId("__BV_indicators_"),"aria-hidden":r?"false":"true","aria-label":this.labelIndicators,"aria-owns":m}},this.slides.map((function(o,n){var i=function(t){e.handleClick(t,(function(){e.setSlide(n)}))};return t("li",{class:{active:n===l},attrs:{role:"button",id:e.safeId("__BV_indicator_".concat(n+1,"_")),tabindex:r?"0":"-1","aria-current":n===l?"true":"false","aria-label":"".concat(e.labelGotoSlide," ").concat(n+1),"aria-describedby":o.id||null,"aria-controls":m},on:{click:i,keydown:i},key:"slide_".concat(n)})}))),v={mouseenter:i?yu:c,mouseleave:i?yu:d,focusin:c,focusout:d,keydown:function(t){if(!/input|textarea/i.test(t.target.tagName)){var r=t.keyCode;r!==ac&&r!==lc||($l(t),e[r===ac?"prev":"next"]())}}};return dt&&!a&&(pt?(v["&pointerdown"]=p,v["&pointerup"]=u):(v["&touchstart"]=p,v["&touchmove"]=this.touchMove,v["&touchend"]=u)),t("div",{staticClass:"carousel",class:{slide:!n,"carousel-fade":!n&&this.fade,"pointer-event":dt&&pt&&!a},style:{background:o},attrs:{role:"region",id:this.safeId(),"aria-busy":s?"true":"false"},on:v},[f,b,g])}});function Lu(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Mu(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Lu(Object(r),!0).forEach((function(e){Ru(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Lu(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Ru(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Vu,Nu={imgAlt:fl(gi),imgBlank:fl(pi,!1),imgBlankColor:fl(gi,"transparent"),imgHeight:fl(Ti),imgSrc:fl(gi),imgWidth:fl(Ti)},Hu=vl(Ie(Mu(Mu(Mu({},np),Nu),{},{background:fl(gi),caption:fl(gi),captionHtml:fl(gi),captionTag:fl(gi,"h3"),contentTag:fl(gi,"div"),contentVisibleUp:fl(gi),text:fl(gi),textHtml:fl(gi),textTag:fl(gi,"p")})),Ur),Uu=lr({components:{BCarousel:Fu,BCarouselSlide:o.default.extend({name:Ur,mixins:[ip,Sl],inject:{bvCarousel:{default:function(){return{noTouch:!0}}}},props:Hu,computed:{contentClasses:function(){return[this.contentVisibleUp?"d-none":"",this.contentVisibleUp?"d-".concat(this.contentVisibleUp,"-block"):""]},computedWidth:function(){return this.imgWidth||this.bvCarousel.imgWidth||null},computedHeight:function(){return this.imgHeight||this.bvCarousel.imgHeight||null}},render:function(t){var e=this.normalizeSlot("img");if(!e&&(this.imgSrc||this.imgBlank)){var r={};!this.bvCarousel.noTouch&&dt&&(r.dragstart=function(t){return $l(t,{propagation:!1})}),e=t(Mp,{props:Mu(Mu({},hl(Nu,this.$props,ul.bind(null,"img"))),{},{width:this.computedWidth,height:this.computedHeight,fluidGrow:!0,block:!0}),on:r})}var o=[!(!this.caption&&!this.captionHtml)&&t(this.captionTag,{domProps:ld(this.captionHtml,this.caption)}),!(!this.text&&!this.textHtml)&&t(this.textTag,{domProps:ld(this.textHtml,this.text)}),this.normalizeSlot()||!1],n=t();return o.some(He)&&(n=t(this.contentTag,{staticClass:"carousel-caption",class:this.contentClasses},o.map((function(e){return e||t()})))),t("div",{staticClass:"carousel-item",style:{background:this.background||this.bvCarousel.background||null},attrs:{id:this.safeId(),role:"listitem"}},[e,n])}})}}),Wu="show",Gu={css:!0,enterClass:"",enterActiveClass:"collapsing",enterToClass:"collapse show",leaveClass:"collapse show",leaveActiveClass:"collapsing",leaveToClass:"collapse"},qu={enter:function(t){Ua(t,"height",0),ka((function(){$a(t),Ua(t,"height","".concat(t.scrollHeight,"px"))}))},afterEnter:function(t){Wa(t,"height")},leave:function(t){Ua(t,"height","auto"),Ua(t,"display","block"),Ua(t,"height","".concat(qa(t).height,"px")),$a(t),Ua(t,"height",0)},afterLeave:function(t){Wa(t,"height")}},Yu={appear:fl(pi,!1)},Ku=o.default.extend({name:"BVCollapse",functional:!0,props:Yu,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t("transition",xr(o,{props:Gu,on:qu},{props:r}),n)}});function Xu(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Ju(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Xu(Object(r),!0).forEach((function(e){Zu(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Xu(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Zu(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Qu=zl(Gr,"toggle"),tm=zl(Gr,"request-state"),em=El(Gr,"accordion"),rm=El(Gr,"state"),om=El(Gr,"sync-state"),nm=kl("visible",{type:pi,defaultValue:!1}),im=nm.mixin,am=nm.props,lm=nm.prop,sm=nm.event,cm=vl(Ie(Ju(Ju(Ju({},np),am),{},{accordion:fl(gi),appear:fl(pi,!1),isNav:fl(pi,!1),tag:fl(gi,"div")})),Gr),dm=o.default.extend({name:Gr,mixins:[ip,im,Sl,hc],props:cm,data:function(){return{show:this[lm],transitioning:!1}},computed:{classObject:function(){var t=this.transitioning;return{"navbar-collapse":this.isNav,collapse:!t,show:this.show&&!t}},slotScope:function(){var t=this;return{visible:this.show,close:function(){t.show=!1}}}},watch:(Vu={},Zu(Vu,lm,(function(t){t!==this.show&&(this.show=t)})),Zu(Vu,"show",(function(t,e){t!==e&&this.emitState()})),Vu),created:function(){this.show=this[lm]},mounted:function(){var t=this;this.show=this[lm],this.listenOnRoot(Qu,this.handleToggleEvt),this.listenOnRoot(em,this.handleAccordionEvt),this.isNav&&(this.setWindowEvents(!0),this.handleResize()),this.$nextTick((function(){t.emitState()})),this.listenOnRoot(tm,(function(e){e===t.safeId()&&t.$nextTick(t.emitSync)}))},updated:function(){this.emitSync()},deactivated:function(){this.isNav&&this.setWindowEvents(!1)},activated:function(){this.isNav&&this.setWindowEvents(!0),this.emitSync()},beforeDestroy:function(){this.show=!1,this.isNav&&ot&&this.setWindowEvents(!1)},methods:{setWindowEvents:function(t){Cl(t,window,"resize",this.handleResize,si),Cl(t,window,"orientationchange",this.handleResize,si)},toggle:function(){this.show=!this.show},onEnter:function(){this.transitioning=!0,this.$emit(ti)},onAfterEnter:function(){this.transitioning=!1,this.$emit(ei)},onLeave:function(){this.transitioning=!0,this.$emit(Nn)},onAfterLeave:function(){this.transitioning=!1,this.$emit(Vn)},emitState:function(){var t=this.show,e=this.accordion,r=this.safeId();this.$emit(sm,t),this.emitOnRoot(rm,r,t),e&&t&&this.emitOnRoot(em,r,e)},emitSync:function(){this.emitOnRoot(om,this.safeId(),this.show)},checkDisplayBlock:function(){var t=this.$el,e=Ma(t,Wu);La(t,Wu);var r="block"===Ya(t).display;return e&&Fa(t,Wu),r},clickHandler:function(t){var e=t.target;this.isNav&&e&&"block"===Ya(this.$el).display&&(!za(e,".nav-link,.dropdown-item")&&!Ba(".nav-link,.dropdown-item",e)||this.checkDisplayBlock()||(this.show=!1))},handleToggleEvt:function(t){t===this.safeId()&&this.toggle()},handleAccordionEvt:function(t,e){var r=this.accordion,o=this.show;if(r&&r===e){var n=t===this.safeId();(n&&!o||!n&&o)&&this.toggle()}},handleResize:function(){this.show="block"===Ya(this.$el).display}},render:function(t){var e=this.appear,r=t(this.tag,{class:this.classObject,directives:[{name:"show",value:this.show}],attrs:{id:this.safeId()},on:{click:this.clickHandler}},this.normalizeSlot(Ii,this.slotScope));return t(Ku,{props:{appear:e},on:{enter:this.onEnter,afterEnter:this.onAfterEnter,leave:this.onLeave,afterLeave:this.onAfterLeave}},[r])}}),pm="collapsed",um="not-collapsed",mm="__BV_toggle",fm="".concat(mm,"_HANDLER__"),bm="".concat(mm,"_CLICK__"),hm="".concat(mm,"_STATE__"),gm="".concat(mm,"_TARGETS__"),vm="aria-controls",xm="aria-expanded",ym="role",wm="tabindex",km="overflow-anchor",Om=zl(Gr,"toggle"),jm=El(Gr,"state"),Sm=El(Gr,"sync-state"),Pm=zl(Gr,"request-state"),Tm=[nc,sc],_m=function(t){return!ra(["button","a"],t.tagName.toLowerCase())},Cm=function(t){var e=t[bm];e&&(_l(t,"click",e,li),_l(t,"keydown",e,li)),t[bm]=null},$m=function(t,e){t[fm]&&e.context&&e.context.$root.$off([jm,Sm],t[fm]),t[fm]=null},Dm=function(t,e){e?(La(t,pm),Fa(t,um),Ra(t,xm,"true")):(La(t,um),Fa(t,pm),Ra(t,xm,"false"))},Em=function(t,e){t[e]=null,delete t[e]},zm=function(t,e,r){if(ot&&r.context){_m(t)&&(Ha(t,ym)||Ra(t,ym,"button"),Ha(t,wm)||Ra(t,wm,"0")),Dm(t,t[hm]);var o=function(t,e){var r=t.modifiers,o=t.arg,n=t.value,i=$e(r||{});if(n=me(n)?n.split(_t):n,Pa(e.tagName,"a")){var a=Na(e,"href")||"";yt.test(a)&&i.push(a.replace(xt,""))}return oa(o,n).forEach((function(t){return me(t)&&i.push(t)})),i.filter((function(t,e,r){return t&&r.indexOf(t)===e}))}(e,t);o.length>0?(Ra(t,vm,o.join(" ")),Ua(t,km,"none")):(Va(t,vm),Wa(t,km)),ka((function(){!function(t,e){if(Cm(t),e.context){var r=function(r){"keydown"===r.type&&!ra(Tm,r.keyCode)||Ca(t)||(t[gm]||[]).forEach((function(t){e.context.$root.$emit(Om,t)}))};t[bm]=r,Tl(t,"click",r,li),_m(t)&&Tl(t,"keydown",r,li)}}(t,r)})),dc(o,t[gm])||(t[gm]=o,o.forEach((function(t){r.context.$root.$emit(Pm,t)})))}},Bm={bind:function(t,e,r){t[hm]=!1,t[gm]=[],function(t,e){if($m(t,e),e.context){var r=function(e,r){ra(t[gm]||[],e)&&(t[hm]=r,Dm(t,r))};t[fm]=r,e.context.$root.$on([jm,Sm],r)}}(t,r),zm(t,e,r)},componentUpdated:zm,updated:zm,unbind:function(t,e,r){Cm(t),$m(t,r),Em(t,fm),Em(t,bm),Em(t,hm),Em(t,gm),La(t,pm),La(t,um),Va(t,xm),Va(t,vm),Va(t,ym),Wa(t,km)}},Am=lr({directives:{VBToggle:Bm}}),Im=lr({components:{BCollapse:dm},plugins:{VBTogglePlugin:Am}}),Fm="undefined"!=typeof window&&"undefined"!=typeof document&&"undefined"!=typeof navigator,Lm=function(){for(var t=["Edge","Trident","Firefox"],e=0;e<t.length;e+=1)if(Fm&&navigator.userAgent.indexOf(t[e])>=0)return 1;return 0}(),Mm=Fm&&window.Promise?function(t){var e=!1;return function(){e||(e=!0,window.Promise.resolve().then((function(){e=!1,t()})))}}:function(t){var e=!1;return function(){e||(e=!0,setTimeout((function(){e=!1,t()}),Lm))}};function Rm(t){return t&&"[object Function]"==={}.toString.call(t)}function Vm(t,e){if(1!==t.nodeType)return[];var r=t.ownerDocument.defaultView.getComputedStyle(t,null);return e?r[e]:r}function Nm(t){return"HTML"===t.nodeName?t:t.parentNode||t.host}function Hm(t){if(!t)return document.body;switch(t.nodeName){case"HTML":case"BODY":return t.ownerDocument.body;case"#document":return t.body}var e=Vm(t),r=e.overflow,o=e.overflowX,n=e.overflowY;return/(auto|scroll|overlay)/.test(r+n+o)?t:Hm(Nm(t))}function Um(t){return t&&t.referenceNode?t.referenceNode:t}var Wm=Fm&&!(!window.MSInputMethodContext||!document.documentMode),Gm=Fm&&/MSIE 10/.test(navigator.userAgent);function qm(t){return 11===t?Wm:10===t?Gm:Wm||Gm}function Ym(t){if(!t)return document.documentElement;for(var e=qm(10)?document.body:null,r=t.offsetParent||null;r===e&&t.nextElementSibling;)r=(t=t.nextElementSibling).offsetParent;var o=r&&r.nodeName;return o&&"BODY"!==o&&"HTML"!==o?-1!==["TH","TD","TABLE"].indexOf(r.nodeName)&&"static"===Vm(r,"position")?Ym(r):r:t?t.ownerDocument.documentElement:document.documentElement}function Km(t){return null!==t.parentNode?Km(t.parentNode):t}function Xm(t,e){if(!(t&&t.nodeType&&e&&e.nodeType))return document.documentElement;var r=t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING,o=r?t:e,n=r?e:t,i=document.createRange();i.setStart(o,0),i.setEnd(n,0);var a,l,s=i.commonAncestorContainer;if(t!==s&&e!==s||o.contains(n))return"BODY"===(l=(a=s).nodeName)||"HTML"!==l&&Ym(a.firstElementChild)!==a?Ym(s):s;var c=Km(t);return c.host?Xm(c.host,e):Xm(t,Km(e).host)}function Jm(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top",r="top"===e?"scrollTop":"scrollLeft",o=t.nodeName;if("BODY"===o||"HTML"===o){var n=t.ownerDocument.documentElement,i=t.ownerDocument.scrollingElement||n;return i[r]}return t[r]}function Zm(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],o=Jm(e,"top"),n=Jm(e,"left"),i=r?-1:1;return t.top+=o*i,t.bottom+=o*i,t.left+=n*i,t.right+=n*i,t}function Qm(t,e){var r="x"===e?"Left":"Top",o="Left"===r?"Right":"Bottom";return parseFloat(t["border"+r+"Width"])+parseFloat(t["border"+o+"Width"])}function tf(t,e,r,o){return Math.max(e["offset"+t],e["scroll"+t],r["client"+t],r["offset"+t],r["scroll"+t],qm(10)?parseInt(r["offset"+t])+parseInt(o["margin"+("Height"===t?"Top":"Left")])+parseInt(o["margin"+("Height"===t?"Bottom":"Right")]):0)}function ef(t){var e=t.body,r=t.documentElement,o=qm(10)&&getComputedStyle(r);return{height:tf("Height",e,r,o),width:tf("Width",e,r,o)}}var rf=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},of=function(){function t(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,r,o){return r&&t(e.prototype,r),o&&t(e,o),e}}(),nf=function(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t},af=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(t[o]=r[o])}return t};function lf(t){return af({},t,{right:t.left+t.width,bottom:t.top+t.height})}function sf(t){var e={};try{if(qm(10)){e=t.getBoundingClientRect();var r=Jm(t,"top"),o=Jm(t,"left");e.top+=r,e.left+=o,e.bottom+=r,e.right+=o}else e=t.getBoundingClientRect()}catch(t){}var n={left:e.left,top:e.top,width:e.right-e.left,height:e.bottom-e.top},i="HTML"===t.nodeName?ef(t.ownerDocument):{},a=i.width||t.clientWidth||n.width,l=i.height||t.clientHeight||n.height,s=t.offsetWidth-a,c=t.offsetHeight-l;if(s||c){var d=Vm(t);s-=Qm(d,"x"),c-=Qm(d,"y"),n.width-=s,n.height-=c}return lf(n)}function cf(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],o=qm(10),n="HTML"===e.nodeName,i=sf(t),a=sf(e),l=Hm(t),s=Vm(e),c=parseFloat(s.borderTopWidth),d=parseFloat(s.borderLeftWidth);r&&n&&(a.top=Math.max(a.top,0),a.left=Math.max(a.left,0));var p=lf({top:i.top-a.top-c,left:i.left-a.left-d,width:i.width,height:i.height});if(p.marginTop=0,p.marginLeft=0,!o&&n){var u=parseFloat(s.marginTop),m=parseFloat(s.marginLeft);p.top-=c-u,p.bottom-=c-u,p.left-=d-m,p.right-=d-m,p.marginTop=u,p.marginLeft=m}return(o&&!r?e.contains(l):e===l&&"BODY"!==l.nodeName)&&(p=Zm(p,e)),p}function df(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=t.ownerDocument.documentElement,o=cf(t,r),n=Math.max(r.clientWidth,window.innerWidth||0),i=Math.max(r.clientHeight,window.innerHeight||0),a=e?0:Jm(r),l=e?0:Jm(r,"left"),s={top:a-o.top+o.marginTop,left:l-o.left+o.marginLeft,width:n,height:i};return lf(s)}function pf(t){var e=t.nodeName;if("BODY"===e||"HTML"===e)return!1;if("fixed"===Vm(t,"position"))return!0;var r=Nm(t);return!!r&&pf(r)}function uf(t){if(!t||!t.parentElement||qm())return document.documentElement;for(var e=t.parentElement;e&&"none"===Vm(e,"transform");)e=e.parentElement;return e||document.documentElement}function mf(t,e,r,o){var n=arguments.length>4&&void 0!==arguments[4]&&arguments[4],i={top:0,left:0},a=n?uf(t):Xm(t,Um(e));if("viewport"===o)i=df(a,n);else{var l=void 0;"scrollParent"===o?"BODY"===(l=Hm(Nm(e))).nodeName&&(l=t.ownerDocument.documentElement):l="window"===o?t.ownerDocument.documentElement:o;var s=cf(l,a,n);if("HTML"!==l.nodeName||pf(a))i=s;else{var c=ef(t.ownerDocument),d=c.height,p=c.width;i.top+=s.top-s.marginTop,i.bottom=d+s.top,i.left+=s.left-s.marginLeft,i.right=p+s.left}}var u="number"==typeof(r=r||0);return i.left+=u?r:r.left||0,i.top+=u?r:r.top||0,i.right-=u?r:r.right||0,i.bottom-=u?r:r.bottom||0,i}function ff(t){return t.width*t.height}function bf(t,e,r,o,n){var i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===t.indexOf("auto"))return t;var a=mf(r,o,i,n),l={top:{width:a.width,height:e.top-a.top},right:{width:a.right-e.right,height:a.height},bottom:{width:a.width,height:a.bottom-e.bottom},left:{width:e.left-a.left,height:a.height}},s=Object.keys(l).map((function(t){return af({key:t},l[t],{area:ff(l[t])})})).sort((function(t,e){return e.area-t.area})),c=s.filter((function(t){var e=t.width,o=t.height;return e>=r.clientWidth&&o>=r.clientHeight})),d=c.length>0?c[0].key:s[0].key,p=t.split("-")[1];return d+(p?"-"+p:"")}function hf(t,e,r){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,n=o?uf(e):Xm(e,Um(r));return cf(r,n,o)}function gf(t){var e=t.ownerDocument.defaultView.getComputedStyle(t),r=parseFloat(e.marginTop||0)+parseFloat(e.marginBottom||0),o=parseFloat(e.marginLeft||0)+parseFloat(e.marginRight||0);return{width:t.offsetWidth+o,height:t.offsetHeight+r}}function vf(t){var e={left:"right",right:"left",bottom:"top",top:"bottom"};return t.replace(/left|right|bottom|top/g,(function(t){return e[t]}))}function xf(t,e,r){r=r.split("-")[0];var o=gf(t),n={width:o.width,height:o.height},i=-1!==["right","left"].indexOf(r),a=i?"top":"left",l=i?"left":"top",s=i?"height":"width",c=i?"width":"height";return n[a]=e[a]+e[s]/2-o[s]/2,n[l]=r===l?e[l]-o[c]:e[vf(l)],n}function yf(t,e){return Array.prototype.find?t.find(e):t.filter(e)[0]}function wf(t,e,r){return(void 0===r?t:t.slice(0,function(t,e,r){if(Array.prototype.findIndex)return t.findIndex((function(t){return t.name===r}));var o=yf(t,(function(t){return t.name===r}));return t.indexOf(o)}(t,0,r))).forEach((function(t){t.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var r=t.function||t.fn;t.enabled&&Rm(r)&&(e.offsets.popper=lf(e.offsets.popper),e.offsets.reference=lf(e.offsets.reference),e=r(e,t))})),e}function kf(){if(!this.state.isDestroyed){var t={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};t.offsets.reference=hf(this.state,this.popper,this.reference,this.options.positionFixed),t.placement=bf(this.options.placement,t.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),t.originalPlacement=t.placement,t.positionFixed=this.options.positionFixed,t.offsets.popper=xf(this.popper,t.offsets.reference,t.placement),t.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",t=wf(this.modifiers,t),this.state.isCreated?this.options.onUpdate(t):(this.state.isCreated=!0,this.options.onCreate(t))}}function Of(t,e){return t.some((function(t){var r=t.name;return t.enabled&&r===e}))}function jf(t){for(var e=[!1,"ms","Webkit","Moz","O"],r=t.charAt(0).toUpperCase()+t.slice(1),o=0;o<e.length;o++){var n=e[o],i=n?""+n+r:t;if(void 0!==document.body.style[i])return i}return null}function Sf(){return this.state.isDestroyed=!0,Of(this.modifiers,"applyStyle")&&(this.popper.removeAttribute("x-placement"),this.popper.style.position="",this.popper.style.top="",this.popper.style.left="",this.popper.style.right="",this.popper.style.bottom="",this.popper.style.willChange="",this.popper.style[jf("transform")]=""),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}function Pf(t){var e=t.ownerDocument;return e?e.defaultView:window}function Tf(t,e,r,o){var n="BODY"===t.nodeName,i=n?t.ownerDocument.defaultView:t;i.addEventListener(e,r,{passive:!0}),n||Tf(Hm(i.parentNode),e,r,o),o.push(i)}function _f(t,e,r,o){r.updateBound=o,Pf(t).addEventListener("resize",r.updateBound,{passive:!0});var n=Hm(t);return Tf(n,"scroll",r.updateBound,r.scrollParents),r.scrollElement=n,r.eventsEnabled=!0,r}function Cf(){this.state.eventsEnabled||(this.state=_f(this.reference,this.options,this.state,this.scheduleUpdate))}function $f(){var t,e;this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=(t=this.reference,e=this.state,Pf(t).removeEventListener("resize",e.updateBound),e.scrollParents.forEach((function(t){t.removeEventListener("scroll",e.updateBound)})),e.updateBound=null,e.scrollParents=[],e.scrollElement=null,e.eventsEnabled=!1,e))}function Df(t){return""!==t&&!isNaN(parseFloat(t))&&isFinite(t)}function Ef(t,e){Object.keys(e).forEach((function(r){var o="";-1!==["width","height","top","right","bottom","left"].indexOf(r)&&Df(e[r])&&(o="px"),t.style[r]=e[r]+o}))}var zf=Fm&&/Firefox/i.test(navigator.userAgent);function Bf(t,e,r){var o=yf(t,(function(t){return t.name===e})),n=!!o&&t.some((function(t){return t.name===r&&t.enabled&&t.order<o.order}));if(!n){var i="`"+e+"`",a="`"+r+"`";console.warn(a+" modifier is required by "+i+" modifier in order to work, be sure to include it before "+i+"!")}return n}var Af=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"],If=Af.slice(3);function Ff(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=If.indexOf(t),o=If.slice(r+1).concat(If.slice(0,r));return e?o.reverse():o}var Lf={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(t){var e=t.placement,r=e.split("-")[0],o=e.split("-")[1];if(o){var n=t.offsets,i=n.reference,a=n.popper,l=-1!==["bottom","top"].indexOf(r),s=l?"left":"top",c=l?"width":"height",d={start:nf({},s,i[s]),end:nf({},s,i[s]+i[c]-a[c])};t.offsets.popper=af({},a,d[o])}return t}},offset:{order:200,enabled:!0,fn:function(t,e){var r,o=e.offset,n=t.placement,i=t.offsets,a=i.popper,l=i.reference,s=n.split("-")[0];return r=Df(+o)?[+o,0]:function(t,e,r,o){var n=[0,0],i=-1!==["right","left"].indexOf(o),a=t.split(/(\+|\-)/).map((function(t){return t.trim()})),l=a.indexOf(yf(a,(function(t){return-1!==t.search(/,|\s/)})));a[l]&&-1===a[l].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var s=/\s*,\s*|\s+/,c=-1!==l?[a.slice(0,l).concat([a[l].split(s)[0]]),[a[l].split(s)[1]].concat(a.slice(l+1))]:[a];return(c=c.map((function(t,o){var n=(1===o?!i:i)?"height":"width",a=!1;return t.reduce((function(t,e){return""===t[t.length-1]&&-1!==["+","-"].indexOf(e)?(t[t.length-1]=e,a=!0,t):a?(t[t.length-1]+=e,a=!1,t):t.concat(e)}),[]).map((function(t){return function(t,e,r,o){var n=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),i=+n[1],a=n[2];if(!i)return t;if(0===a.indexOf("%")){var l=void 0;switch(a){case"%p":l=r;break;case"%":case"%r":default:l=o}return lf(l)[e]/100*i}return"vh"===a||"vw"===a?("vh"===a?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*i:i}(t,n,e,r)}))}))).forEach((function(t,e){t.forEach((function(r,o){Df(r)&&(n[e]+=r*("-"===t[o-1]?-1:1))}))})),n}(o,a,l,s),"left"===s?(a.top+=r[0],a.left-=r[1]):"right"===s?(a.top+=r[0],a.left+=r[1]):"top"===s?(a.left+=r[0],a.top-=r[1]):"bottom"===s&&(a.left+=r[0],a.top+=r[1]),t.popper=a,t},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(t,e){var r=e.boundariesElement||Ym(t.instance.popper);t.instance.reference===r&&(r=Ym(r));var o=jf("transform"),n=t.instance.popper.style,i=n.top,a=n.left,l=n[o];n.top="",n.left="",n[o]="";var s=mf(t.instance.popper,t.instance.reference,e.padding,r,t.positionFixed);n.top=i,n.left=a,n[o]=l,e.boundaries=s;var c=e.priority,d=t.offsets.popper,p={primary:function(t){var r=d[t];return d[t]<s[t]&&!e.escapeWithReference&&(r=Math.max(d[t],s[t])),nf({},t,r)},secondary:function(t){var r="right"===t?"left":"top",o=d[r];return d[t]>s[t]&&!e.escapeWithReference&&(o=Math.min(d[r],s[t]-("right"===t?d.width:d.height))),nf({},r,o)}};return c.forEach((function(t){var e=-1!==["left","top"].indexOf(t)?"primary":"secondary";d=af({},d,p[e](t))})),t.offsets.popper=d,t},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(t){var e=t.offsets,r=e.popper,o=e.reference,n=t.placement.split("-")[0],i=Math.floor,a=-1!==["top","bottom"].indexOf(n),l=a?"right":"bottom",s=a?"left":"top",c=a?"width":"height";return r[l]<i(o[s])&&(t.offsets.popper[s]=i(o[s])-r[c]),r[s]>i(o[l])&&(t.offsets.popper[s]=i(o[l])),t}},arrow:{order:500,enabled:!0,fn:function(t,e){var r;if(!Bf(t.instance.modifiers,"arrow","keepTogether"))return t;var o=e.element;if("string"==typeof o){if(!(o=t.instance.popper.querySelector(o)))return t}else if(!t.instance.popper.contains(o))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),t;var n=t.placement.split("-")[0],i=t.offsets,a=i.popper,l=i.reference,s=-1!==["left","right"].indexOf(n),c=s?"height":"width",d=s?"Top":"Left",p=d.toLowerCase(),u=s?"left":"top",m=s?"bottom":"right",f=gf(o)[c];l[m]-f<a[p]&&(t.offsets.popper[p]-=a[p]-(l[m]-f)),l[p]+f>a[m]&&(t.offsets.popper[p]+=l[p]+f-a[m]),t.offsets.popper=lf(t.offsets.popper);var b=l[p]+l[c]/2-f/2,h=Vm(t.instance.popper),g=parseFloat(h["margin"+d]),v=parseFloat(h["border"+d+"Width"]),x=b-t.offsets.popper[p]-g-v;return x=Math.max(Math.min(a[c]-f,x),0),t.arrowElement=o,t.offsets.arrow=(nf(r={},p,Math.round(x)),nf(r,u,""),r),t},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(t,e){if(Of(t.instance.modifiers,"inner"))return t;if(t.flipped&&t.placement===t.originalPlacement)return t;var r=mf(t.instance.popper,t.instance.reference,e.padding,e.boundariesElement,t.positionFixed),o=t.placement.split("-")[0],n=vf(o),i=t.placement.split("-")[1]||"",a=[];switch(e.behavior){case"flip":a=[o,n];break;case"clockwise":a=Ff(o);break;case"counterclockwise":a=Ff(o,!0);break;default:a=e.behavior}return a.forEach((function(l,s){if(o!==l||a.length===s+1)return t;o=t.placement.split("-")[0],n=vf(o);var c=t.offsets.popper,d=t.offsets.reference,p=Math.floor,u="left"===o&&p(c.right)>p(d.left)||"right"===o&&p(c.left)<p(d.right)||"top"===o&&p(c.bottom)>p(d.top)||"bottom"===o&&p(c.top)<p(d.bottom),m=p(c.left)<p(r.left),f=p(c.right)>p(r.right),b=p(c.top)<p(r.top),h=p(c.bottom)>p(r.bottom),g="left"===o&&m||"right"===o&&f||"top"===o&&b||"bottom"===o&&h,v=-1!==["top","bottom"].indexOf(o),x=!!e.flipVariations&&(v&&"start"===i&&m||v&&"end"===i&&f||!v&&"start"===i&&b||!v&&"end"===i&&h),y=!!e.flipVariationsByContent&&(v&&"start"===i&&f||v&&"end"===i&&m||!v&&"start"===i&&h||!v&&"end"===i&&b),w=x||y;(u||g||w)&&(t.flipped=!0,(u||g)&&(o=a[s+1]),w&&(i=function(t){return"end"===t?"start":"start"===t?"end":t}(i)),t.placement=o+(i?"-"+i:""),t.offsets.popper=af({},t.offsets.popper,xf(t.instance.popper,t.offsets.reference,t.placement)),t=wf(t.instance.modifiers,t,"flip"))})),t},behavior:"flip",padding:5,boundariesElement:"viewport",flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(t){var e=t.placement,r=e.split("-")[0],o=t.offsets,n=o.popper,i=o.reference,a=-1!==["left","right"].indexOf(r),l=-1===["top","left"].indexOf(r);return n[a?"left":"top"]=i[r]-(l?n[a?"width":"height"]:0),t.placement=vf(e),t.offsets.popper=lf(n),t}},hide:{order:800,enabled:!0,fn:function(t){if(!Bf(t.instance.modifiers,"hide","preventOverflow"))return t;var e=t.offsets.reference,r=yf(t.instance.modifiers,(function(t){return"preventOverflow"===t.name})).boundaries;if(e.bottom<r.top||e.left>r.right||e.top>r.bottom||e.right<r.left){if(!0===t.hide)return t;t.hide=!0,t.attributes["x-out-of-boundaries"]=""}else{if(!1===t.hide)return t;t.hide=!1,t.attributes["x-out-of-boundaries"]=!1}return t}},computeStyle:{order:850,enabled:!0,fn:function(t,e){var r=e.x,o=e.y,n=t.offsets.popper,i=yf(t.instance.modifiers,(function(t){return"applyStyle"===t.name})).gpuAcceleration;void 0!==i&&console.warn("WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!");var a,l,s=void 0!==i?i:e.gpuAcceleration,c=Ym(t.instance.popper),d=sf(c),p={position:n.position},u=function(t,e){var r=t.offsets,o=r.popper,n=r.reference,i=Math.round,a=Math.floor,l=function(t){return t},s=i(n.width),c=i(o.width),d=-1!==["left","right"].indexOf(t.placement),p=-1!==t.placement.indexOf("-"),u=e?d||p||s%2==c%2?i:a:l,m=e?i:l;return{left:u(s%2==1&&c%2==1&&!p&&e?o.left-1:o.left),top:m(o.top),bottom:m(o.bottom),right:u(o.right)}}(t,window.devicePixelRatio<2||!zf),m="bottom"===r?"top":"bottom",f="right"===o?"left":"right",b=jf("transform");if(l="bottom"===m?"HTML"===c.nodeName?-c.clientHeight+u.bottom:-d.height+u.bottom:u.top,a="right"===f?"HTML"===c.nodeName?-c.clientWidth+u.right:-d.width+u.right:u.left,s&&b)p[b]="translate3d("+a+"px, "+l+"px, 0)",p[m]=0,p[f]=0,p.willChange="transform";else{var h="bottom"===m?-1:1,g="right"===f?-1:1;p[m]=l*h,p[f]=a*g,p.willChange=m+", "+f}var v={"x-placement":t.placement};return t.attributes=af({},v,t.attributes),t.styles=af({},p,t.styles),t.arrowStyles=af({},t.offsets.arrow,t.arrowStyles),t},gpuAcceleration:!0,x:"bottom",y:"right"},applyStyle:{order:900,enabled:!0,fn:function(t){var e,r;return Ef(t.instance.popper,t.styles),e=t.instance.popper,r=t.attributes,Object.keys(r).forEach((function(t){!1!==r[t]?e.setAttribute(t,r[t]):e.removeAttribute(t)})),t.arrowElement&&Object.keys(t.arrowStyles).length&&Ef(t.arrowElement,t.arrowStyles),t},onLoad:function(t,e,r,o,n){var i=hf(n,e,t,r.positionFixed),a=bf(r.placement,i,e,t,r.modifiers.flip.boundariesElement,r.modifiers.flip.padding);return e.setAttribute("x-placement",a),Ef(e,{position:r.positionFixed?"fixed":"absolute"}),r},gpuAcceleration:void 0}}},Mf=function(){function t(e,r){var o=this,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};rf(this,t),this.scheduleUpdate=function(){return requestAnimationFrame(o.update)},this.update=Mm(this.update.bind(this)),this.options=af({},t.Defaults,n),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=e&&e.jquery?e[0]:e,this.popper=r&&r.jquery?r[0]:r,this.options.modifiers={},Object.keys(af({},t.Defaults.modifiers,n.modifiers)).forEach((function(e){o.options.modifiers[e]=af({},t.Defaults.modifiers[e]||{},n.modifiers?n.modifiers[e]:{})})),this.modifiers=Object.keys(this.options.modifiers).map((function(t){return af({name:t},o.options.modifiers[t])})).sort((function(t,e){return t.order-e.order})),this.modifiers.forEach((function(t){t.enabled&&Rm(t.onLoad)&&t.onLoad(o.reference,o.popper,o.options,t,o.state)})),this.update();var i=this.options.eventsEnabled;i&&this.enableEventListeners(),this.state.eventsEnabled=i}return of(t,[{key:"update",value:function(){return kf.call(this)}},{key:"destroy",value:function(){return Sf.call(this)}},{key:"enableEventListeners",value:function(){return Cf.call(this)}},{key:"disableEventListeners",value:function(){return $f.call(this)}}]),t}();Mf.Utils=("undefined"!=typeof window?window:r.g).PopperUtils,Mf.placements=Af,Mf.Defaults=Lf;const Rf=Mf;function Vf(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Nf(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}var Hf=function(){function t(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(Vf(this,t),!e)throw new TypeError("Failed to construct '".concat(this.constructor.name,"'. 1 argument required, ").concat(arguments.length," given."));Se(this,t.Defaults,this.constructor.Defaults,r,{type:e}),Te(this,{type:{enumerable:!0,configurable:!1,writable:!1},cancelable:{enumerable:!0,configurable:!1,writable:!1},nativeEvent:{enumerable:!0,configurable:!1,writable:!1},target:{enumerable:!0,configurable:!1,writable:!1},relatedTarget:{enumerable:!0,configurable:!1,writable:!1},vueTarget:{enumerable:!0,configurable:!1,writable:!1},componentId:{enumerable:!0,configurable:!1,writable:!1}});var o=!1;this.preventDefault=function(){this.cancelable&&(o=!0)},_e(this,"defaultPrevented",{enumerable:!0,get:function(){return o}})}var e,r;return e=t,r=[{key:"Defaults",get:function(){return{type:"",cancelable:!0,nativeEvent:null,target:null,relatedTarget:null,vueTarget:null,componentId:null}}}],null&&Nf(e.prototype,null),r&&Nf(e,r),t}(),Uf=o.default.extend({data:function(){return{listenForClickOut:!1}},watch:{listenForClickOut:function(t,e){t!==e&&(_l(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,si),t&&Tl(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,si))}},beforeCreate:function(){this.clickOutElement=null,this.clickOutEventName=null},mounted:function(){this.clickOutElement||(this.clickOutElement=document),this.clickOutEventName||(this.clickOutEventName="click"),this.listenForClickOut&&Tl(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,si)},beforeDestroy:function(){_l(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,si)},methods:{isClickOut:function(t){return!Aa(this.$el,t.target)},_clickOutHandler:function(t){this.clickOutHandler&&this.isClickOut(t)&&this.clickOutHandler(t)}}}),Wf=o.default.extend({data:function(){return{listenForFocusIn:!1}},watch:{listenForFocusIn:function(t,e){t!==e&&(_l(this.focusInElement,"focusin",this._focusInHandler,si),t&&Tl(this.focusInElement,"focusin",this._focusInHandler,si))}},beforeCreate:function(){this.focusInElement=null},mounted:function(){this.focusInElement||(this.focusInElement=document),this.listenForFocusIn&&Tl(this.focusInElement,"focusin",this._focusInHandler,si)},beforeDestroy:function(){_l(this.focusInElement,"focusin",this._focusInHandler,si)},methods:{_focusInHandler:function(t){this.focusInHandler&&this.focusInHandler(t)}}});function Gf(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function qf(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Gf(Object(r),!0).forEach((function(e){Yf(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Gf(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Yf(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Kf=El(Yr,ei),Xf=El(Yr,Vn),Jf=[".dropdown-item",".b-dropdown-form"].map((function(t){return"".concat(t,":not(.disabled):not([disabled])")})).join(", "),Zf=vl(Ie(qf(qf({},np),{},{boundary:fl([oe,gi],"scrollParent"),disabled:fl(pi,!1),dropleft:fl(pi,!1),dropright:fl(pi,!1),dropup:fl(pi,!1),noFlip:fl(pi,!1),offset:fl(Ti,0),popperOpts:fl(bi,{}),right:fl(pi,!1)})),Yr),Qf=o.default.extend({mixins:[ip,hc,Uf,Wf],provide:function(){return{bvDropdown:this}},inject:{bvNavbar:{default:null}},props:Zf,data:function(){return{visible:!1,visibleChangePrevented:!1}},computed:{inNavbar:function(){return!ce(this.bvNavbar)},toggler:function(){var t=this.$refs.toggle;return t?t.$el||t:null},directionClass:function(){return this.dropup?"dropup":this.dropright?"dropright":this.dropleft?"dropleft":""},boundaryClass:function(){return"scrollParent"===this.boundary||this.inNavbar?"":"position-static"}},watch:{visible:function(t,e){if(this.visibleChangePrevented)this.visibleChangePrevented=!1;else if(t!==e){var r=new Hf(t?ti:Nn,{cancelable:!0,vueTarget:this,target:this.$refs.menu,relatedTarget:null,componentId:this.safeId?this.safeId():this.id||null});if(this.emitEvent(r),r.defaultPrevented)return this.visibleChangePrevented=!0,this.visible=e,void this.$off(Vn,this.focusToggler);t?this.showMenu():this.hideMenu()}},disabled:function(t,e){t!==e&&t&&this.visible&&(this.visible=!1)}},created:function(){this.$_popper=null,this.$_hideTimeout=null},deactivated:function(){this.visible=!1,this.whileOpenListen(!1),this.destroyPopper()},beforeDestroy:function(){this.visible=!1,this.whileOpenListen(!1),this.destroyPopper(),this.clearHideTimeout()},methods:{emitEvent:function(t){var e=t.type;this.emitOnRoot(El(Yr,e),t),this.$emit(e,t)},showMenu:function(){var t=this;if(!this.disabled){if(!this.inNavbar)if(void 0===Rf)Ye("Popper.js not found. Falling back to CSS positioning",Yr);else{var e=this.dropup&&this.right||this.split?this.$el:this.$refs.toggle;e=e.$el||e,this.createPopper(e)}this.emitOnRoot(Kf,this),this.whileOpenListen(!0),this.$nextTick((function(){t.focusMenu(),t.$emit(ei)}))}},hideMenu:function(){this.whileOpenListen(!1),this.emitOnRoot(Xf,this),this.$emit(Vn),this.destroyPopper()},createPopper:function(t){this.destroyPopper(),this.$_popper=new Rf(t,this.$refs.menu,this.getPopperConfig())},destroyPopper:function(){this.$_popper&&this.$_popper.destroy(),this.$_popper=null},updatePopper:function(){try{this.$_popper.scheduleUpdate()}catch(t){}},clearHideTimeout:function(){clearTimeout(this.$_hideTimeout),this.$_hideTimeout=null},getPopperConfig:function(){var t="bottom-start";this.dropup?t=this.right?"top-end":"top-start":this.dropright?t="right-start":this.dropleft?t="left-start":this.right&&(t="bottom-end");var e={placement:t,modifiers:{offset:{offset:this.offset||0},flip:{enabled:!this.noFlip}}},r=this.boundary;return r&&(e.modifiers.preventOverflow={boundariesElement:r}),Ae(e,this.popperOpts||{})},whileOpenListen:function(t){this.listenForClickOut=t,this.listenForFocusIn=t;var e=t?"$on":"$off";this.$root[e](Kf,this.rootCloseListener)},rootCloseListener:function(t){t!==this&&(this.visible=!1)},show:function(){var t=this;this.disabled||ka((function(){t.visible=!0}))},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.disabled||(this.visible=!1,t&&this.$once(Vn,this.focusToggler))},toggle:function(t){var e=t=t||{},r=e.type,o=e.keyCode;("click"===r||"keydown"===r&&-1!==[nc,sc,rc].indexOf(o))&&(this.disabled?this.visible=!1:(this.$emit(oi,t),$l(t),this.visible?this.hide(!0):this.show()))},onMousedown:function(t){$l(t,{propagation:!1})},onKeydown:function(t){var e=t.keyCode;27===e?this.onEsc(t):e===rc?this.focusNext(t,!1):e===cc&&this.focusNext(t,!0)},onEsc:function(t){this.visible&&(this.visible=!1,$l(t),this.$once(Vn,this.focusToggler))},onSplitClick:function(t){this.disabled?this.visible=!1:this.$emit(Tn,t)},hideHandler:function(t){var e=this,r=t.target;!this.visible||Aa(this.$refs.menu,r)||Aa(this.toggler,r)||(this.clearHideTimeout(),this.$_hideTimeout=setTimeout((function(){return e.hide()}),this.inNavbar?300:0))},clickOutHandler:function(t){this.hideHandler(t)},focusInHandler:function(t){this.hideHandler(t)},focusNext:function(t,e){var r=this,o=t.target;!this.visible||t&&Ba(".dropdown form",o)||($l(t),this.$nextTick((function(){var t=r.getItems();if(!(t.length<1)){var n=t.indexOf(o);e&&n>0?n--:!e&&n<t.length-1&&n++,n<0&&(n=0),r.focusItem(n,t)}})))},focusItem:function(t,e){var r=e.find((function(e,r){return r===t}));Qa(r)},getItems:function(){return(Da(Jf,this.$refs.menu)||[]).filter(_a)},focusMenu:function(){Qa(this.$refs.menu)},focusToggler:function(){var t=this;this.$nextTick((function(){Qa(t.toggler)}))}}});function tb(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function eb(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?tb(Object(r),!0).forEach((function(e){rb(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):tb(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function rb(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var ob=vl(Ie(eb(eb(eb({},np),Zf),{},{block:fl(pi,!1),html:fl(gi),lazy:fl(pi,!1),menuClass:fl(yi),noCaret:fl(pi,!1),role:fl(gi,"menu"),size:fl(gi),split:fl(pi,!1),splitButtonType:fl(gi,"button",(function(t){return ra(["button","submit","reset"],t)})),splitClass:fl(yi),splitHref:fl(gi),splitTo:fl($i),splitVariant:fl(gi),text:fl(gi),toggleClass:fl(yi),toggleTag:fl(gi,"button"),toggleText:fl(gi,"Toggle dropdown"),variant:fl(gi,"secondary")})),Yr),nb=o.default.extend({name:Yr,mixins:[ip,Qf,Sl],props:ob,computed:{dropdownClasses:function(){var t=this.block,e=this.split;return[this.directionClass,this.boundaryClass,{show:this.visible,"btn-group":e||!t,"d-flex":t&&e}]},menuClasses:function(){return[this.menuClass,{"dropdown-menu-right":this.right,show:this.visible}]},toggleClasses:function(){var t=this.split;return[this.toggleClass,{"dropdown-toggle-split":t,"dropdown-toggle-no-caret":this.noCaret&&!t}]}},render:function(t){var e=this.visible,r=this.variant,o=this.size,n=this.block,i=this.disabled,a=this.split,l=this.role,s=this.hide,c=this.toggle,d={variant:r,size:o,block:n,disabled:i},p=this.normalizeSlot(Bi),u=this.hasNormalizedSlot(Bi)?{}:ld(this.html,this.text),m=t();if(a){var f=this.splitTo,b=this.splitHref,h=this.splitButtonType,g=eb(eb({},d),{},{variant:this.splitVariant||r});f?g.to=f:b?g.href=b:h&&(g.type=h),m=t(Vc,{class:this.splitClass,attrs:{id:this.safeId("_BV_button_")},props:g,domProps:u,on:{click:this.onSplitClick},ref:"button"},p),p=[t("span",{class:["sr-only"]},[this.toggleText])],u={}}var v=t(Vc,{staticClass:"dropdown-toggle",class:this.toggleClasses,attrs:{id:this.safeId("_BV_toggle_"),"aria-haspopup":"true","aria-expanded":ba(e)},props:eb(eb({},d),{},{tag:this.toggleTag,block:n&&!a}),domProps:u,on:{mousedown:this.onMousedown,click:c,keydown:c},ref:"toggle"},p),x=t("ul",{staticClass:"dropdown-menu",class:this.menuClasses,attrs:{role:l,tabindex:"-1","aria-labelledby":this.safeId(a?"_BV_button_":"_BV_toggle_")},on:{keydown:this.onKeydown},ref:"menu"},[!this.lazy||e?this.normalizeSlot(Ii,{hide:s}):t()]);return t("div",{staticClass:"dropdown b-dropdown",class:this.dropdownClasses,attrs:{id:this.safeId()}},[m,v,x])}});function ib(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function ab(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?ib(Object(r),!0).forEach((function(e){lb(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ib(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function lb(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var sb=Be(Pc,["event","routerTag"]),cb=vl(Ie(ab(ab({},sb),{},{linkClass:fl(yi),variant:fl(gi)})),Qr),db=o.default.extend({name:Qr,mixins:[bc,Sl],inject:{bvDropdown:{default:null}},inheritAttrs:!1,props:cb,computed:{computedAttrs:function(){return ab(ab({},this.bvAttrs),{},{role:"menuitem"})}},methods:{closeDropdown:function(){var t=this;ka((function(){t.bvDropdown&&t.bvDropdown.hide(!0)}))},onClick:function(t){this.$emit(Tn,t),this.closeDropdown()}},render:function(t){var e=this.linkClass,r=this.variant,o=this.active,n=this.disabled,i=this.onClick,a=this.bvAttrs;return t("li",{class:a.class,style:a.style,attrs:{role:"presentation"}},[t(Tc,{staticClass:"dropdown-item",class:[e,lb({},"text-".concat(r),r&&!(o||n))],props:hl(sb,this.$props),attrs:this.computedAttrs,on:{click:i},ref:"item"},this.normalizeSlot())])}});function pb(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function ub(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?pb(Object(r),!0).forEach((function(e){mb(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):pb(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function mb(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var fb=vl({active:fl(pi,!1),activeClass:fl(gi,"active"),buttonClass:fl(yi),disabled:fl(pi,!1),variant:fl(gi)},to),bb=o.default.extend({name:to,mixins:[bc,Sl],inject:{bvDropdown:{default:null}},inheritAttrs:!1,props:fb,computed:{computedAttrs:function(){return ub(ub({},this.bvAttrs),{},{role:"menuitem",type:"button",disabled:this.disabled})}},methods:{closeDropdown:function(){this.bvDropdown&&this.bvDropdown.hide(!0)},onClick:function(t){this.$emit(Tn,t),this.closeDropdown()}},render:function(t){var e,r=this.active,o=this.variant,n=this.bvAttrs;return t("li",{class:n.class,style:n.style,attrs:{role:"presentation"}},[t("button",{staticClass:"dropdown-item",class:[this.buttonClass,(e={},mb(e,this.activeClass,r),mb(e,"text-".concat(o),o&&!(r||this.disabled)),e)],attrs:this.computedAttrs,on:{click:this.onClick},ref:"button"},this.normalizeSlot())])}});function hb(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function gb(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?hb(Object(r),!0).forEach((function(e){vb(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):hb(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function vb(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var xb=vl({id:fl(gi),tag:fl(gi,"header"),variant:fl(gi)},Zr),yb=o.default.extend({name:Zr,functional:!0,props:xb,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=r.tag,a=r.variant;return t("li",xr(Be(o,["attrs"]),{attrs:{role:"presentation"}}),[t(i,{staticClass:"dropdown-header",class:vb({},"text-".concat(a),a),attrs:gb(gb({},o.attrs||{}),{},{id:r.id||null,role:Pa(i,"header")?null:"heading"}),ref:"header"},n)])}});function wb(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function kb(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?wb(Object(r),!0).forEach((function(e){Ob(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):wb(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Ob(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var jb=vl({tag:fl(gi,"hr")},Kr),Sb=o.default.extend({name:Kr,functional:!0,props:jb,render:function(t,e){var r=e.props,o=e.data;return t("li",xr(Be(o,["attrs"]),{attrs:{role:"presentation"}}),[t(r.tag,{staticClass:"dropdown-divider",attrs:kb(kb({},o.attrs||{}),{},{role:"separator","aria-orientation":"horizontal"}),ref:"divider"})])}}),Pb=vl({id:fl(gi),inline:fl(pi,!1),novalidate:fl(pi,!1),validated:fl(pi,!1)},oo),Tb=o.default.extend({name:oo,functional:!0,props:Pb,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t("form",xr(o,{class:{"form-inline":r.inline,"was-validated":r.validated},attrs:{id:r.id,novalidate:r.novalidate}}),n)}});function _b(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Cb(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?_b(Object(r),!0).forEach((function(e){$b(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):_b(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function $b(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Db=vl(Ie(Cb(Cb({},Pb),{},{disabled:fl(pi,!1),formClass:fl(yi)})),Xr),Eb=o.default.extend({name:Xr,functional:!0,props:Db,render:function(t,e){var r=e.props,o=e.data,n=e.listeners,i=e.children;return t("li",xr(Be(o,["attrs","on"]),{attrs:{role:"presentation"}}),[t(Tb,{staticClass:"b-dropdown-form",class:[r.formClass,{disabled:r.disabled}],props:r,attrs:Cb(Cb({},o.attrs||{}),{},{disabled:r.disabled,tabindex:r.disabled?null:"-1"}),on:n,ref:"form"},i)])}}),zb=vl({tag:fl(gi,"p"),textClass:fl(yi),variant:fl(gi)},eo),Bb=o.default.extend({name:eo,functional:!0,props:zb,render:function(t,e){var r,o,n,i=e.props,a=e.data,l=e.children,s=i.tag,c=i.textClass,d=i.variant;return t("li",xr(Be(a,["attrs"]),{attrs:{role:"presentation"}}),[t(s,{staticClass:"b-dropdown-text",class:[c,(r={},o="text-".concat(d),n=d,o in r?Object.defineProperty(r,o,{value:n,enumerable:!0,configurable:!0,writable:!0}):r[o]=n,r)],props:i,attrs:a.attrs||{},ref:"text"},l)])}});function Ab(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Ib(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ab(Object(r),!0).forEach((function(e){Fb(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ab(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Fb(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Lb=vl({ariaDescribedby:fl(gi),header:fl(gi),headerClasses:fl(yi),headerTag:fl(gi,"header"),headerVariant:fl(gi),id:fl(gi)},Jr),Mb=o.default.extend({name:Jr,functional:!0,props:Lb,render:function(t,e){var r=e.props,o=e.data,n=e.slots,i=e.scopedSlots,a=r.id,l=r.variant,s=r.header,c=r.headerTag,d=n(),p=i||{},u={},m=a?"_bv_".concat(a,"_group_dd_header"):null,f=t();return(Ol(Vi,p,d)||s)&&(f=t(c,{staticClass:"dropdown-header",class:[r.headerClasses,Fb({},"text-".concat(l),l)],attrs:{id:m,role:Pa(c,"header")?null:"heading"}},jl(Vi,u,p,d)||s)),t("li",xr(Be(o,["attrs"]),{attrs:{role:"presentation"}}),[f,t("ul",{staticClass:"list-unstyled",attrs:Ib(Ib({},o.attrs||{}),{},{id:a,role:"group","aria-describedby":[m,r.ariaDescribedBy].filter(He).join(" ").trim()||null})},jl(Ii,u,p,d))])}}),Rb=lr({components:{BDropdown:nb,BDd:nb,BDropdownItem:db,BDdItem:db,BDropdownItemButton:bb,BDropdownItemBtn:bb,BDdItemButton:bb,BDdItemBtn:bb,BDropdownHeader:yb,BDdHeader:yb,BDropdownDivider:Sb,BDdDivider:Sb,BDropdownForm:Eb,BDdForm:Eb,BDropdownText:Bb,BDdText:Bb,BDropdownGroup:Mb,BDdGroup:Mb}}),Vb=["iframe","embed","video","object","img","b-img","b-img-lazy"],Nb=vl({aspect:fl(gi,"16by9"),tag:fl(gi,"div"),type:fl(gi,"iframe",(function(t){return ra(Vb,t)}))},ro),Hb=lr({components:{BEmbed:o.default.extend({name:ro,functional:!0,props:Nb,render:function(t,e){var r,o,n,i=e.props,a=e.data,l=e.children,s=i.aspect;return t(i.tag,{staticClass:"embed-responsive",class:(r={},o="embed-responsive-".concat(s),n=s,o in r?Object.defineProperty(r,o,{value:n,enumerable:!0,configurable:!0,writable:!0}):r[o]=n,r),ref:a.ref},[t(i.type,xr(Be(a,["ref"]),{staticClass:"embed-responsive-item"}),l)])}})}}),Ub=vl({disabledField:fl(gi,"disabled"),htmlField:fl(gi,"html"),options:fl(xi,[]),textField:fl(gi,"text"),valueField:fl(gi,"value")},"formOptionControls"),Wb=o.default.extend({props:Ub,computed:{formOptions:function(){return this.normalizeOptions(this.options)}},methods:{normalizeOption:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(ve(t)){var r=We(t,this.valueField),o=We(t,this.textField);return{value:se(r)?e||o:r,text:ad(String(se(o)?e:o)),html:We(t,this.htmlField),disabled:Boolean(We(t,this.disabledField))}}return{value:e||t,text:ad(String(t)),disabled:!1}},normalizeOptions:function(t){var e=this;return he(t)?t.map((function(t){return e.normalizeOption(t)})):ve(t)?(Ye('Setting prop "options" to an object is deprecated. Use the array format instead.',this.$options.name),$e(t).map((function(r){return e.normalizeOption(t[r]||{},r)}))):[]}}});function Gb(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function qb(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Gb(Object(r),!0).forEach((function(e){Yb(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Gb(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Yb(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Kb,Xb,Jb=vl(Ie(qb(qb({},Ub),{},{id:fl(gi,void 0,!0)})),ao),Zb=o.default.extend({name:ao,mixins:[Wb,Sl],props:Jb,render:function(t){var e=this.id,r=this.formOptions.map((function(e,r){var o=e.value,n=e.text,i=e.html,a=e.disabled;return t("option",{attrs:{value:o,disabled:a},domProps:ld(i,n),key:"option_".concat(r)})}));return t("datalist",{attrs:{id:e}},[r,this.normalizeSlot()])}}),Qb=vl({id:fl(gi),inline:fl(pi,!1),tag:fl(gi,"small"),textVariant:fl(gi,"muted")},Oo),th=o.default.extend({name:Oo,functional:!0,props:Qb,render:function(t,e){var r,o,n,i=e.props,a=e.data,l=e.children;return t(i.tag,xr(a,{class:(r={"form-text":!i.inline},o="text-".concat(i.textVariant),n=i.textVariant,o in r?Object.defineProperty(r,o,{value:n,enumerable:!0,configurable:!0,writable:!0}):r[o]=n,r),attrs:{id:i.id}}),l)}}),eh=vl({ariaLive:fl(gi),forceShow:fl(pi,!1),id:fl(gi),role:fl(gi),state:fl(pi,null),tag:fl(gi,"div"),tooltip:fl(pi,!1)},uo),rh=o.default.extend({name:uo,functional:!0,props:eh,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=r.tooltip,a=r.ariaLive,l=!0===r.forceShow||!1===r.state;return t(r.tag,xr(o,{class:{"d-block":l,"invalid-feedback":!i,"invalid-tooltip":i},attrs:{id:r.id||null,role:r.role||null,"aria-live":a||null,"aria-atomic":a?"true":null}}),n)}}),oh=vl({ariaLive:fl(gi),forceShow:fl(pi,!1),id:fl(gi),role:fl(gi),state:fl(pi,null),tag:fl(gi,"div"),tooltip:fl(pi,!1)},Po),nh=o.default.extend({name:Po,functional:!0,props:oh,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=r.tooltip,a=r.ariaLive,l=!0===r.forceShow||!0===r.state;return t(r.tag,xr(o,{class:{"d-block":l,"valid-feedback":!i,"valid-tooltip":i},attrs:{id:r.id||null,role:r.role||null,"aria-live":a||null,"aria-atomic":a?"true":null}}),n)}}),ih=vl({tag:fl(gi,"div")},ho),ah=o.default.extend({name:ho,functional:!0,props:ih,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t(r.tag,xr(o,{staticClass:"form-row"}),n)}}),lh=lr({components:{BForm:Tb,BFormDatalist:Zb,BDatalist:Zb,BFormText:th,BFormInvalidFeedback:rh,BFormFeedback:rh,BFormValidFeedback:nh,BFormRow:ah}}),sh=function(t,e){for(var r=0;r<t.length;r++)if(dc(t[r],e))return r;return-1},ch="input, textarea, select",dh=vl({autofocus:fl(pi,!1),disabled:fl(pi,!1),form:fl(gi),id:fl(gi),name:fl(gi),required:fl(pi,!1)},"formControls"),ph=o.default.extend({props:dh,mounted:function(){this.handleAutofocus()},activated:function(){this.handleAutofocus()},methods:{handleAutofocus:function(){var t=this;this.$nextTick((function(){ka((function(){var e=t.$el;t.autofocus&&_a(e)&&(za(e,ch)||(e=Ea(ch,e)),Qa(e))}))}))}}}),uh=vl({plain:fl(pi,!1)},"formControls"),mh=o.default.extend({props:uh,computed:{custom:function(){return!this.plain}}}),fh=vl({size:fl(gi)},"formControls"),bh=o.default.extend({props:fh,computed:{sizeFormClass:function(){return[this.size?"form-control-".concat(this.size):null]}}}),hh=vl({state:fl(pi,null)},"formState"),gh=o.default.extend({props:hh,computed:{computedState:function(){return ue(this.state)?this.state:null},stateClass:function(){var t=this.computedState;return!0===t?"is-valid":!1===t?"is-invalid":null},computedAriaInvalid:function(){var t=this.ariaInvalid;return!0===t||"true"===t||""===t||!1===this.computedState?"true":t}}});function vh(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function xh(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?vh(Object(r),!0).forEach((function(e){yh(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):vh(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function yh(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var wh,kh=kl("checked",{defaultValue:null}),Oh=kh.mixin,jh=kh.props,Sh=kh.prop,Ph=kh.event,Th=vl(Ie(xh(xh(xh(xh(xh(xh(xh({},np),jh),dh),fh),hh),uh),{},{ariaLabel:fl(gi),ariaLabelledby:fl(gi),button:fl(pi,!1),buttonVariant:fl(gi),inline:fl(pi,!1),value:fl(ci)})),"formRadioCheckControls"),_h=o.default.extend({mixins:[bc,ip,Oh,Sl,ph,bh,gh,mh],inheritAttrs:!1,props:Th,data:function(){return{localChecked:this.isGroup?this.bvGroup[Sh]:this[Sh],hasFocus:!1}},computed:{computedLocalChecked:{get:function(){return this.isGroup?this.bvGroup.localChecked:this.localChecked},set:function(t){this.isGroup?this.bvGroup.localChecked=t:this.localChecked=t}},isChecked:function(){return dc(this.value,this.computedLocalChecked)},isRadio:function(){return!0},isGroup:function(){return!!this.bvGroup},isBtnMode:function(){return this.isGroup?this.bvGroup.buttons:this.button},isPlain:function(){return!this.isBtnMode&&(this.isGroup?this.bvGroup.plain:this.plain)},isCustom:function(){return!this.isBtnMode&&!this.isPlain},isSwitch:function(){return!(this.isBtnMode||this.isRadio||this.isPlain)&&(this.isGroup?this.bvGroup.switches:this.switch)},isInline:function(){return this.isGroup?this.bvGroup.inline:this.inline},isDisabled:function(){return this.isGroup&&this.bvGroup.disabled||this.disabled},isRequired:function(){return this.computedName&&(this.isGroup?this.bvGroup.required:this.required)},computedName:function(){return(this.isGroup?this.bvGroup.groupName:this.name)||null},computedForm:function(){return(this.isGroup?this.bvGroup.form:this.form)||null},computedSize:function(){return(this.isGroup?this.bvGroup.size:this.size)||""},computedState:function(){return this.isGroup?this.bvGroup.computedState:ue(this.state)?this.state:null},computedButtonVariant:function(){return this.buttonVariant||(this.isGroup&&this.bvGroup.buttonVariant?this.bvGroup.buttonVariant:"secondary")},buttonClasses:function(){var t,e=this.computedSize;return["btn","btn-".concat(this.computedButtonVariant),(t={},yh(t,"btn-".concat(e),e),yh(t,"disabled",this.isDisabled),yh(t,"active",this.isChecked),yh(t,"focus",this.hasFocus),t)]},computedAttrs:function(){var t=this.isDisabled,e=this.isRequired;return xh(xh({},this.bvAttrs),{},{id:this.safeId(),type:this.isRadio?"radio":"checkbox",name:this.computedName,form:this.computedForm,disabled:t,required:e,"aria-required":e||null,"aria-label":this.ariaLabel||null,"aria-labelledby":this.ariaLabelledby||null})}},watch:(Kb={},yh(Kb,Sh,(function(){this["".concat(Sh,"Watcher")].apply(this,arguments)})),yh(Kb,"computedLocalChecked",(function(){this.computedLocalCheckedWatcher.apply(this,arguments)})),Kb),methods:(Xb={},yh(Xb,"".concat(Sh,"Watcher"),(function(t){dc(t,this.computedLocalChecked)||(this.computedLocalChecked=t)})),yh(Xb,"computedLocalCheckedWatcher",(function(t,e){dc(t,e)||this.$emit(Ph,t)})),yh(Xb,"handleChange",(function(t){var e=this,r=t.target.checked,o=this.value,n=r?o:null;this.computedLocalChecked=o,this.$nextTick((function(){e.$emit(Pn,n),e.isGroup&&e.bvGroup.$emit(Pn,n)}))})),yh(Xb,"handleFocus",(function(t){t.target&&("focus"===t.type?this.hasFocus=!0:"blur"===t.type&&(this.hasFocus=!1))})),yh(Xb,"focus",(function(){this.isDisabled||Qa(this.$refs.input)})),yh(Xb,"blur",(function(){this.isDisabled||tl(this.$refs.input)})),Xb),render:function(t){var e=this.isRadio,r=this.isBtnMode,o=this.isPlain,n=this.isCustom,i=this.isInline,a=this.isSwitch,l=this.computedSize,s=this.bvAttrs,c=this.normalizeSlot(),d=t("input",{class:[{"form-check-input":o,"custom-control-input":n,"position-static":o&&!c},r?"":this.stateClass],directives:[{name:"model",value:this.computedLocalChecked}],attrs:this.computedAttrs,domProps:{value:this.value,checked:this.isChecked},on:xh({change:this.handleChange},r?{focus:this.handleFocus,blur:this.handleFocus}:{}),key:"input",ref:"input"});if(r){var p=t("label",{class:this.buttonClasses},[d,c]);return this.isGroup||(p=t("div",{class:["btn-group-toggle","d-inline-block"]},[p])),p}var u=t();return o&&!c||(u=t("label",{class:{"form-check-label":o,"custom-control-label":n},attrs:{for:this.safeId()}},c)),t("div",{class:[yh({"form-check":o,"form-check-inline":o&&i,"custom-control":n,"custom-control-inline":n&&i,"custom-checkbox":n&&!e&&!a,"custom-switch":a,"custom-radio":n&&e},"b-custom-control-".concat(l),l&&!r),s.class],style:s.style},[d,u])}});function Ch(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function $h(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ch(Object(r),!0).forEach((function(e){Dh(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ch(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Dh(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Eh="indeterminate",zh="update:indeterminate",Bh=vl(Ie($h($h({},Th),{},(Dh(wh={},Eh,fl(pi,!1)),Dh(wh,"switch",fl(pi,!1)),Dh(wh,"uncheckedValue",fl(ci,!1)),Dh(wh,"value",fl(ci,!0)),wh))),no),Ah=o.default.extend({name:no,mixins:[_h],inject:{bvGroup:{from:"bvCheckGroup",default:null}},props:Bh,computed:{isChecked:function(){var t=this.value,e=this.computedLocalChecked;return he(e)?sh(e,t)>-1:dc(e,t)},isRadio:function(){return!1}},watch:Dh({},Eh,(function(t,e){dc(t,e)||this.setIndeterminate(t)})),mounted:function(){this.setIndeterminate(this.indeterminate)},methods:{computedLocalCheckedWatcher:function(t,e){if(!dc(t,e)){this.$emit(Ph,t);var r=this.$refs.input;r&&this.$emit(zh,r.indeterminate)}},handleChange:function(t){var e=this,r=t.target,o=r.checked,n=r.indeterminate,i=this.value,a=this.uncheckedValue,l=this.computedLocalChecked;if(he(l)){var s=sh(l,i);o&&s<0?l=l.concat(i):!o&&s>-1&&(l=l.slice(0,s).concat(l.slice(s+1)))}else l=o?i:a;this.computedLocalChecked=l,this.$nextTick((function(){e.$emit(Pn,l),e.isGroup&&e.bvGroup.$emit(Pn,l),e.$emit(zh,n)}))},setIndeterminate:function(t){he(this.computedLocalChecked)&&(t=!1);var e=this.$refs.input;e&&(e.indeterminate=t,this.$emit(zh,t))}}});function Ih(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Fh(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ih(Object(r),!0).forEach((function(e){Lh(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ih(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Lh(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Mh,Rh=vl(Ie(Fh(Fh(Fh(Fh(Fh({},np),dh),Th),fh),hh)),mo),Vh=o.default.extend({name:mo,mixins:[ip,_h,ph,bh,gh],inject:{bvGroup:{from:"bvRadioGroup",default:!1}},props:Rh,watch:{computedLocalChecked:function(t,e){dc(t,e)||this.$emit(Ph,t)}}});function Nh(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Hh(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Nh(Object(r),!0).forEach((function(e){Uh(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Nh(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Uh(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Wh,Gh=["aria-describedby","aria-labelledby"],qh=kl("checked"),Yh=qh.mixin,Kh=qh.props,Xh=qh.prop,Jh=qh.event,Zh=vl(Ie(Hh(Hh(Hh(Hh(Hh(Hh(Hh(Hh({},np),Kh),dh),Ub),fh),hh),uh),{},{ariaInvalid:fl(ji,!1),buttonVariant:fl(gi),buttons:fl(pi,!1),stacked:fl(pi,!1),validated:fl(pi,!1)})),"formRadioCheckGroups"),Qh=o.default.extend({mixins:[ip,Yh,Sl,ph,Wb,bh,gh,mh],inheritAttrs:!1,props:Zh,data:function(){return{localChecked:this[Xh]}},computed:{inline:function(){return!this.stacked},groupName:function(){return this.name||this.safeId()},groupClasses:function(){var t=this.inline,e=this.size,r={"was-validated":this.validated};return this.buttons&&(r=[r,"btn-group-toggle",Uh({"btn-group":t,"btn-group-vertical":!t},"btn-group-".concat(e),e)]),r}},watch:(Mh={},Uh(Mh,Xh,(function(t){dc(t,this.localChecked)||(this.localChecked=t)})),Uh(Mh,"localChecked",(function(t,e){dc(t,e)||this.$emit(Jh,t)})),Mh),render:function(t){var e=this,r=this.isRadioGroup,o=ze(this.$attrs,Gh),n=r?Vh:Ah,i=this.formOptions.map((function(r,i){var a="BV_option_".concat(i);return t(n,{props:{disabled:r.disabled||!1,id:e.safeId(a),value:r.value},attrs:o,key:a},[t("span",{domProps:ld(r.html,r.text)})])}));return t("div",{class:[this.groupClasses,"bv-no-focus-ring"],attrs:Hh(Hh({},Be(this.$attrs,Gh)),{},{"aria-invalid":this.computedAriaInvalid,"aria-required":this.required?"true":null,id:this.safeId(),role:r?"radiogroup":"group",tabindex:"-1"})},[this.normalizeSlot(Mi),i,this.normalizeSlot()])}});function tg(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function eg(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?tg(Object(r),!0).forEach((function(e){rg(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):tg(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function rg(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var og=vl(Ie(eg(eg({},Zh),{},(rg(Wh={},Xh,fl(di,[])),rg(Wh,"switches",fl(pi,!1)),Wh))),io),ng=o.default.extend({name:io,mixins:[Qh],provide:function(){return{bvCheckGroup:this}},props:og,computed:{isRadioGroup:function(){return!1}}}),ig=lr({components:{BFormCheckbox:Ah,BCheckbox:Ah,BCheck:Ah,BFormCheckboxGroup:ng,BCheckboxGroup:ng,BCheckGroup:ng}}),ag="__BV_hover_handler__",lg="mouseenter",sg=function(t,e,r){Cl(t,e,lg,r,si),Cl(t,e,"mouseleave",r,si)},cg=function(t,e){var r=e.value,o=void 0===r?null:r;if(ot){var n=t[ag],i=pe(n),a=!(i&&n.fn===o);i&&a&&(sg(!1,t,n),delete t[ag]),pe(o)&&a&&(t[ag]=function(t){var e=function(e){t(e.type===lg,e)};return e.fn=t,e}(o),sg(!0,t,t[ag]))}},dg={bind:cg,componentUpdated:cg,unbind:function(t){cg(t,{value:null})}};function pg(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function ug(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?pg(Object(r),!0).forEach((function(e){mg(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):pg(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function mg(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var fg,bg=Ie(ug(ug(ug(ug(ug(ug({},np),fh),hh),Be(Zf,["disabled"])),Be(dh,["autofocus"])),{},{buttonOnly:fl(pi,!1),buttonVariant:fl(gi,"secondary"),formattedValue:fl(gi),labelSelected:fl(gi),lang:fl(gi),menuClass:fl(yi),placeholder:fl(gi),readonly:fl(pi,!1),rtl:fl(pi,null),value:fl(gi,"")})),hg=o.default.extend({name:"BVFormBtnLabelControl",directives:{"b-hover":dg},mixins:[ip,bh,gh,Qf,Sl],props:bg,data:function(){return{isHovered:!1,hasFocus:!1}},computed:{idButton:function(){return this.safeId()},idLabel:function(){return this.safeId("_value_")},idMenu:function(){return this.safeId("_dialog_")},idWrapper:function(){return this.safeId("_outer_")},computedDir:function(){return!0===this.rtl?"rtl":!1===this.rtl?"ltr":null}},methods:{focus:function(){this.disabled||Qa(this.$refs.toggle)},blur:function(){this.disabled||tl(this.$refs.toggle)},setFocus:function(t){this.hasFocus="focus"===t.type},handleHover:function(t){this.isHovered=t}},render:function(t){var e,r=this.idButton,o=this.idLabel,n=this.idMenu,i=this.idWrapper,a=this.disabled,l=this.readonly,s=this.required,c=this.name,d=this.state,p=this.visible,u=this.size,m=this.isHovered,f=this.hasFocus,b=this.labelSelected,h=this.buttonVariant,g=this.buttonOnly,v=ba(this.value)||"",x=!1===d||s&&!v,y={isHovered:m,hasFocus:f,state:d,opened:p},w=t("button",{staticClass:"btn",class:(e={},mg(e,"btn-".concat(h),g),mg(e,"btn-".concat(u),u),mg(e,"h-auto",!g),mg(e,"dropdown-toggle",g),mg(e,"dropdown-toggle-no-caret",g),e),attrs:{id:r,type:"button",disabled:a,"aria-haspopup":"dialog","aria-expanded":p?"true":"false","aria-invalid":x?"true":null,"aria-required":s?"true":null},directives:[{name:"b-hover",value:this.handleHover}],on:{mousedown:this.onMousedown,click:this.toggle,keydown:this.toggle,"!focus":this.setFocus,"!blur":this.setFocus},ref:"toggle"},[this.hasNormalizedSlot(Bi)?this.normalizeSlot(Bi,y):t(Is,{props:{scale:1.25}})]),k=t();c&&!a&&(k=t("input",{attrs:{type:"hidden",name:c||null,form:this.form||null,value:v}}));var O=t("div",{staticClass:"dropdown-menu",class:[this.menuClass,{show:p,"dropdown-menu-right":this.right}],attrs:{id:n,role:"dialog",tabindex:"-1","aria-modal":"false","aria-labelledby":o},on:{keydown:this.onKeydown},ref:"menu"},[this.normalizeSlot(Ii,{opened:p})]),j=t("label",{class:g?"sr-only":["form-control",{"text-muted":!v},this.stateClass,this.sizeFormClass],attrs:{id:o,for:r,"aria-invalid":x?"true":null,"aria-required":s?"true":null},directives:[{name:"b-hover",value:this.handleHover}],on:{"!click":function(t){$l(t,{preventDefault:!1})}}},[v?this.formattedValue||v:this.placeholder||"",v&&b?t("bdi",{staticClass:"sr-only"},b):""]);return t("div",{staticClass:"b-form-btn-label-control dropdown",class:[this.directionClass,this.boundaryClass,[{"btn-group":g,"form-control":!g,focus:f&&!g,show:p,"is-valid":!0===d,"is-invalid":!1===d},g?null:this.sizeFormClass]],attrs:{id:i,role:g?null:"group",lang:this.lang||null,dir:this.computedDir,"aria-disabled":a,"aria-readonly":l&&!a,"aria-labelledby":o,"aria-invalid":!1===d||s&&!v?"true":null,"aria-required":s?"true":null}},[w,k,O,j])}});function gg(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function vg(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?gg(Object(r),!0).forEach((function(e){xg(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):gg(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function xg(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var yg,wg=kl("value",{type:Si}),kg=wg.mixin,Og=wg.props,jg=wg.prop,Sg=wg.event,Pg=Be(fp,["block","hidden","id","noKeyNav","roleDescription","value","width"]),Tg=Be(bg,["formattedValue","id","lang","rtl","value"]),_g=vl(Ie(vg(vg(vg(vg(vg({},np),Og),Pg),Tg),{},{calendarWidth:fl(gi,"270px"),closeButton:fl(pi,!1),closeButtonVariant:fl(gi,"outline-secondary"),dark:fl(pi,!1),labelCloseButton:fl(gi,"Close"),labelResetButton:fl(gi,"Reset"),labelTodayButton:fl(gi,"Select today"),noCloseOnSelect:fl(pi,!1),resetButton:fl(pi,!1),resetButtonVariant:fl(gi,"outline-danger"),resetValue:fl(Si),todayButton:fl(pi,!1),todayButtonVariant:fl(gi,"outline-primary")})),lo),Cg=o.default.extend({name:lo,mixins:[ip,kg],props:_g,data:function(){return{localYMD:Hd(this[jg])||"",isVisible:!1,localLocale:null,isRTL:!1,formattedValue:"",activeYMD:""}},computed:{calendarYM:function(){return this.activeYMD.slice(0,-3)},computedLang:function(){return(this.localLocale||"").replace(/-u-.*$/i,"")||null},computedResetValue:function(){return Hd(ep(this.resetValue))||""}},watch:(fg={},xg(fg,jg,(function(t){this.localYMD=Hd(t)||""})),xg(fg,"localYMD",(function(t){this.isVisible&&this.$emit(Sg,this.valueAsDate?Nd(t)||null:t||"")})),xg(fg,"calendarYM",(function(t,e){if(t!==e&&e)try{this.$refs.control.updatePopper()}catch(t){}})),fg),methods:{focus:function(){this.disabled||Qa(this.$refs.control)},blur:function(){this.disabled||tl(this.$refs.control)},setAndClose:function(t){var e=this;this.localYMD=t,this.noCloseOnSelect||this.$nextTick((function(){e.$refs.control.hide(!0)}))},onSelected:function(t){var e=this;this.$nextTick((function(){e.setAndClose(t)}))},onInput:function(t){this.localYMD!==t&&(this.localYMD=t)},onContext:function(t){var e=t.activeYMD,r=t.isRTL,o=t.locale,n=t.selectedYMD,i=t.selectedFormatted;this.isRTL=r,this.localLocale=o,this.formattedValue=i,this.localYMD=n,this.activeYMD=e,this.$emit(Cn,t)},onTodayButton:function(){this.setAndClose(Hd(ep(Vd(),this.min,this.max)))},onResetButton:function(){this.setAndClose(this.computedResetValue)},onCloseButton:function(){this.$refs.control.hide(!0)},onShow:function(){this.isVisible=!0},onShown:function(){var t=this;this.$nextTick((function(){Qa(t.$refs.calendar),t.$emit(ei)}))},onHidden:function(){this.isVisible=!1,this.$emit(Vn)},defaultButtonFn:function(t){var e=t.isHovered,r=t.hasFocus;return this.$createElement(e||r?zs:Es,{attrs:{"aria-hidden":"true"}})}},render:function(t){var e=this.localYMD,r=this.disabled,o=this.readonly,n=this.dark,i=this.$props,a=this.$scopedSlots,l=de(this.placeholder)?this.labelNoDateSelected:this.placeholder,s=[];if(this.todayButton){var c=this.labelTodayButton;s.push(t(Vc,{props:{disabled:r||o,size:"sm",variant:this.todayButtonVariant},attrs:{"aria-label":c||null},on:{click:this.onTodayButton}},c))}if(this.resetButton){var d=this.labelResetButton;s.push(t(Vc,{props:{disabled:r||o,size:"sm",variant:this.resetButtonVariant},attrs:{"aria-label":d||null},on:{click:this.onResetButton}},d))}if(this.closeButton){var p=this.labelCloseButton;s.push(t(Vc,{props:{disabled:r,size:"sm",variant:this.closeButtonVariant},attrs:{"aria-label":p||null},on:{click:this.onCloseButton}},p))}s.length>0&&(s=[t("div",{staticClass:"b-form-date-controls d-flex flex-wrap",class:{"justify-content-between":s.length>1,"justify-content-end":s.length<2}},s)]);var u=t(bp,{staticClass:"b-form-date-calendar w-100",props:vg(vg({},hl(Pg,i)),{},{hidden:!this.isVisible,value:e,valueAsDate:!1,width:this.calendarWidth}),on:{selected:this.onSelected,input:this.onInput,context:this.onContext},scopedSlots:ze(a,["nav-prev-decade","nav-prev-year","nav-prev-month","nav-this-month","nav-next-month","nav-next-year","nav-next-decade"]),key:"calendar",ref:"calendar"},s);return t(hg,{staticClass:"b-form-datepicker",props:vg(vg({},hl(Tg,i)),{},{formattedValue:e?this.formattedValue:"",id:this.safeId(),lang:this.computedLang,menuClass:[{"bg-dark":n,"text-light":n},this.menuClass],placeholder:l,rtl:this.isRTL,value:e}),on:{show:this.onShow,shown:this.onShown,hidden:this.onHidden},scopedSlots:xg({},Bi,a["button-content"]||this.defaultButtonFn),ref:"control"},[u])}}),$g=lr({components:{BFormDatepicker:Cg,BDatepicker:Cg}});function Dg(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Eg(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Dg(Object(r),!0).forEach((function(e){zg(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Dg(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function zg(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Bg=kl("value",{type:[di,ie],defaultValue:null,validator:function(t){return""===t?(Ye(Mg,so),!0):de(t)||Rg(t)}}),Ag=Bg.mixin,Ig=Bg.props,Fg=Bg.prop,Lg=Bg.event,Mg='Setting "value"/"v-model" to an empty string for reset is deprecated. Set to "null" instead.',Rg=function t(e){return function(t){return t instanceof ie}(e)||he(e)&&e.every((function(e){return t(e)}))},Vg=function(t){return pe(t.getAsEntry)?t.getAsEntry():pe(t.webkitGetAsEntry)?t.webkitGetAsEntry():null},Ng=function t(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return new Promise((function(o){var n=[];!function i(){e.readEntries((function(e){0===e.length?o(Promise.all(n).then((function(t){return ia(t)}))):(n.push(Promise.all(e.map((function(e){if(e){if(e.isDirectory)return t(e.createReader(),"".concat(r).concat(e.name,"/"));if(e.isFile)return new Promise((function(t){e.file((function(e){e.$path="".concat(r).concat(e.name),t(e)}))}))}return null})).filter(He))),i())}))}()}))},Hg=vl(Ie(Eg(Eg(Eg(Eg(Eg(Eg(Eg({},np),Ig),dh),uh),hh),fh),{},{accept:fl(gi,""),browseText:fl(gi,"Browse"),capture:fl(pi,!1),directory:fl(pi,!1),dropPlaceholder:fl(gi,"Drop files here"),fileNameFormatter:fl(mi),multiple:fl(pi,!1),noDrop:fl(pi,!1),noDropPlaceholder:fl(gi,"Not allowed"),noTraverse:fl(pi,!1),placeholder:fl(gi,"No file chosen")})),so),Ug=o.default.extend({name:so,mixins:[bc,ip,Ag,Sl,ph,gh,mh,Sl],inheritAttrs:!1,props:Hg,data:function(){return{files:[],dragging:!1,dropAllowed:!this.noDrop,hasFocus:!1}},computed:{computedAccept:function(){var t=this.accept;return 0===(t=(t||"").trim().split(/[,\s]+/).filter(He)).length?null:t.map((function(t){var e="name",r="^",o="$";return vt.test(t)?r="":(e="type",Ct.test(t)&&(o=".+$",t=t.slice(0,-1))),t=fa(t),{rx:new RegExp("".concat(r).concat(t).concat(o)),prop:e}}))},computedCapture:function(){var t=this.capture;return!0===t||""===t||t||null},computedAttrs:function(){var t=this.name,e=this.disabled,r=this.required,o=this.form,n=this.computedCapture,i=this.accept,a=this.multiple,l=this.directory;return Eg(Eg({},this.bvAttrs),{},{type:"file",id:this.safeId(),name:t,disabled:e,required:r,form:o||null,capture:n,accept:i||null,multiple:a,directory:l,webkitdirectory:l,"aria-required":r?"true":null})},computedFileNameFormatter:function(){var t=this.fileNameFormatter;return yl(t)?t:this.defaultFileNameFormatter},clonedFiles:function(){return Ne(this.files)},flattenedFiles:function(){return aa(this.files)},fileNames:function(){return this.flattenedFiles.map((function(t){return t.name}))},labelContent:function(){if(this.dragging&&!this.noDrop)return this.normalizeSlot("drop-placeholder",{allowed:this.dropAllowed})||(this.dropAllowed?this.dropPlaceholder:this.$createElement("span",{staticClass:"text-danger"},this.noDropPlaceholder));if(0===this.files.length)return this.normalizeSlot("placeholder")||this.placeholder;var t=this.flattenedFiles,e=this.clonedFiles,r=this.fileNames,o=this.computedFileNameFormatter;return this.hasNormalizedSlot(Li)?this.normalizeSlot(Li,{files:t,filesTraversed:e,names:r}):o(t,e,r)}},watch:(yg={},zg(yg,Fg,(function(t){(!t||he(t)&&0===t.length)&&this.reset()})),zg(yg,"files",(function(t,e){if(!dc(t,e)){var r=this.multiple,o=this.noTraverse,n=!r||o?aa(t):t;this.$emit(Lg,r?n:n[0]||null)}})),yg),created:function(){this.$_form=null},mounted:function(){var t=Ba("form",this.$el);t&&(Tl(t,"reset",this.reset,li),this.$_form=t)},beforeDestroy:function(){var t=this.$_form;t&&_l(t,"reset",this.reset,li)},methods:{isFileValid:function(t){if(!t)return!1;var e=this.computedAccept;return!e||e.some((function(e){return e.rx.test(t[e.prop])}))},isFilesArrayValid:function(t){var e=this;return he(t)?t.every((function(t){return e.isFileValid(t)})):this.isFileValid(t)},defaultFileNameFormatter:function(t,e,r){return r.join(", ")},setFiles:function(t){this.dropAllowed=!this.noDrop,this.dragging=!1,this.files=this.multiple?this.directory?t:aa(t):aa(t).slice(0,1)},setInputFiles:function(t){try{var e=new ClipboardEvent("").clipboardData||new DataTransfer;aa(Ne(t)).forEach((function(t){delete t.$path,e.items.add(t)})),this.$refs.input.files=e.files}catch(t){}},reset:function(){try{var t=this.$refs.input;t.value="",t.type="",t.type="file"}catch(t){}this.files=[]},handleFiles:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e){var r=t.filter(this.isFilesArrayValid);r.length>0&&(this.setFiles(r),this.setInputFiles(r))}else this.setFiles(t)},focusHandler:function(t){this.plain||"focusout"===t.type?this.hasFocus=!1:this.hasFocus=!0},onChange:function(t){var e=this,r=t.type,o=t.target,n=t.dataTransfer,i=void 0===n?{}:n,a="drop"===r;this.$emit(Pn,t);var l=ea(i.items||[]);if(et&&l.length>0&&!ce(Vg(l[0])))(function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return Promise.all(ea(t).filter((function(t){return"file"===t.kind})).map((function(t){var r=Vg(t);if(r){if(r.isDirectory&&e)return Ng(r.createReader(),"".concat(r.name,"/"));if(r.isFile)return new Promise((function(t){r.file((function(e){e.$path="",t(e)}))}))}return null})).filter(He))})(l,this.directory).then((function(t){return e.handleFiles(t,a)}));else{var s=ea(o.files||i.files||[]).map((function(t){return t.$path=t.webkitRelativePath||"",t}));this.handleFiles(s,a)}},onDragenter:function(t){$l(t),this.dragging=!0;var e=t.dataTransfer,r=void 0===e?{}:e;if(this.noDrop||this.disabled||!this.dropAllowed)return r.dropEffect="none",void(this.dropAllowed=!1);r.dropEffect="copy"},onDragover:function(t){$l(t),this.dragging=!0;var e=t.dataTransfer,r=void 0===e?{}:e;if(this.noDrop||this.disabled||!this.dropAllowed)return r.dropEffect="none",void(this.dropAllowed=!1);r.dropEffect="copy"},onDragleave:function(t){var e=this;$l(t),this.$nextTick((function(){e.dragging=!1,e.dropAllowed=!e.noDrop}))},onDrop:function(t){var e=this;$l(t),this.dragging=!1,this.noDrop||this.disabled||!this.dropAllowed?this.$nextTick((function(){e.dropAllowed=!e.noDrop})):this.onChange(t)}},render:function(t){var e=this.custom,r=this.plain,o=this.size,n=this.dragging,i=this.stateClass,a=this.bvAttrs,l=t("input",{class:[{"form-control-file":r,"custom-file-input":e,focus:e&&this.hasFocus},i],style:e?{zIndex:-5}:{},attrs:this.computedAttrs,on:{change:this.onChange,focusin:this.focusHandler,focusout:this.focusHandler,reset:this.reset},ref:"input"});if(r)return l;var s=t("label",{staticClass:"custom-file-label",class:{dragging:n},attrs:{for:this.safeId(),"data-browse":this.browseText||null}},[t("span",{staticClass:"d-block form-file-text",style:{pointerEvents:"none"}},[this.labelContent])]);return t("div",{staticClass:"custom-file b-form-file",class:[zg({},"b-custom-control-".concat(o),o),i,a.class],style:a.style,attrs:{id:this.safeId("_BV_file_outer_")},on:{dragenter:this.onDragenter,dragover:this.onDragover,dragleave:this.onDragleave,drop:this.onDrop}},[l,s])}}),Wg=lr({components:{BFormFile:Ug,BFile:Ug}}),Gg=function(t){return"\\"+t},qg=function(t){var e=(t=ba(t)).length,r=t.charCodeAt(0);return t.split("").reduce((function(o,n,i){var a=t.charCodeAt(i);return 0===a?o+"<22>":127===a||a>=1&&a<=31||0===i&&a>=48&&a<=57||1===i&&a>=48&&a<=57&&45===r?o+Gg("".concat(a.toString(16)," ")):0===i&&45===a&&1===e?o+Gg(n):a>=128||45===a||95===a||a>=48&&a<=57||a>=65&&a<=90||a>=97&&a<=122?o+n:o+Gg(n)}),"")};function Yg(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Kg(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Yg(Object(r),!0).forEach((function(e){Xg(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Yg(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Xg(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Jg=["auto","start","end","center","baseline","stretch"],Zg=el((function(t,e,r){var o=t;if(!de(r)&&!1!==r)return e&&(o+="-".concat(e)),"col"!==t||""!==r&&!0!==r?(o+="-".concat(r),ga(o)):ga(o)})),Qg=Pe(null),tv={name:Wr,functional:!0,get props(){return delete this.props,this.props=(e=(t=ll().filter(He)).reduce((function(t,e){return t[e]=fl(Oi),t}),Pe(null)),r=t.reduce((function(t,e){return t[ml(e,"offset")]=fl(Ti),t}),Pe(null)),o=t.reduce((function(t,e){return t[ml(e,"order")]=fl(Ti),t}),Pe(null)),Qg=Se(Pe(null),{col:$e(e),offset:$e(r),order:$e(o)}),vl(Ie(Kg(Kg(Kg(Kg({},e),r),o),{},{alignSelf:fl(gi,null,(function(t){return ra(Jg,t)})),col:fl(pi,!1),cols:fl(Ti),offset:fl(Ti),order:fl(Ti),tag:fl(gi,"div")})),Wr));var t,e,r,o},render:function(t,e){var r,o=e.props,n=e.data,i=e.children,a=o.cols,l=o.offset,s=o.order,c=o.alignSelf,d=[];for(var p in Qg)for(var u=Qg[p],m=0;m<u.length;m++){var f=Zg(p,u[m].replace(p,""),o[u[m]]);f&&d.push(f)}var b=d.some((function(t){return Ht.test(t)}));return d.push((Xg(r={col:o.col||!b&&!a},"col-".concat(a),a),Xg(r,"offset-".concat(l),l),Xg(r,"order-".concat(s),s),Xg(r,"align-self-".concat(c),c),r)),t(o.tag,xr(n,{class:d}),i)}};function ev(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function rv(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?ev(Object(r),!0).forEach((function(e){ov(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ev(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function ov(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var nv=["input","select","textarea"],iv=nv.map((function(t){return"".concat(t,":not([disabled])")})).join(),av=[].concat(nv,["a","button","label"]),lv={name:co,mixins:[ip,gh,Sl],get props(){return delete this.props,this.props=vl(Ie(rv(rv(rv(rv({},np),hh),ll().reduce((function(t,e){return t[ml(e,"contentCols")]=fl(Oi),t[ml(e,"labelAlign")]=fl(gi),t[ml(e,"labelCols")]=fl(Oi),t}),Pe(null))),{},{description:fl(gi),disabled:fl(pi,!1),feedbackAriaLive:fl(gi,"assertive"),invalidFeedback:fl(gi),label:fl(gi),labelClass:fl(yi),labelFor:fl(gi),labelSize:fl(gi),labelSrOnly:fl(pi,!1),tooltip:fl(pi,!1),validFeedback:fl(gi),validated:fl(pi,!1)})),co)},data:function(){return{ariaDescribedby:null}},computed:{contentColProps:function(){return this.getColProps(this.$props,"content")},labelAlignClasses:function(){return this.getAlignClasses(this.$props,"label")},labelColProps:function(){return this.getColProps(this.$props,"label")},isHorizontal:function(){return $e(this.contentColProps).length>0||$e(this.labelColProps).length>0}},watch:{ariaDescribedby:function(t,e){t!==e&&this.updateAriaDescribedby(t,e)}},mounted:function(){var t=this;this.$nextTick((function(){t.updateAriaDescribedby(t.ariaDescribedby)}))},methods:{getAlignClasses:function(t,e){return ll().reduce((function(r,o){var n=t[ml(o,"".concat(e,"Align"))]||null;return n&&r.push(["text",o,n].filter(He).join("-")),r}),[])},getColProps:function(t,e){return ll().reduce((function(r,o){var n=t[ml(o,"".concat(e,"Cols"))];return ue(n=""===n||n||!1)||"auto"===n||(n=(n=la(n,0))>0&&n),n&&(r[o||(ue(n)?"col":"cols")]=n),r}),{})},updateAriaDescribedby:function(t,e){var r=this.labelFor;if(ot&&r){var o=Ea("#".concat(qg(r)),this.$refs.content);if(o){var n="aria-describedby",i=(t||"").split(_t),a=(e||"").split(_t),l=(Na(o,n)||"").split(_t).filter((function(t){return!ra(a,t)})).concat(i).filter((function(t,e,r){return r.indexOf(t)===e})).filter(He).join(" ").trim();l?Ra(o,n,l):Va(o,n)}}},onLegendClick:function(t){if(!this.labelFor){var e=t.target,r=e?e.tagName:"";if(-1===av.indexOf(r)){var o=Da(iv,this.$refs.content).filter(_a);1===o.length&&Qa(o[0])}}}},render:function(t){var e=this.computedState,r=this.feedbackAriaLive,o=this.isHorizontal,n=this.labelFor,i=this.normalizeSlot,a=this.safeId,l=this.tooltip,s=a(),c=!n,d=t(),p=i(Ni)||this.label,u=p?a("_BV_label_"):null;if(p||o){var m=this.labelSize,f=this.labelColProps,b=c?"legend":"label";this.labelSrOnly?(p&&(d=t(b,{class:"sr-only",attrs:{id:u,for:n||null}},[p])),d=t(o?tv:"div",{props:o?f:{}},[d])):d=t(o?tv:b,{on:c?{click:this.onLegendClick}:{},props:o?rv(rv({},f),{},{tag:b}):{},attrs:{id:u,for:n||null,tabindex:c?"-1":null},class:[c?"bv-no-focus-ring":"",o||c?"col-form-label":"",!o&&c?"pt-0":"",o||c?"":"d-block",m?"col-form-label-".concat(m):"",this.labelAlignClasses,this.labelClass]},[p])}var h=t(),g=i("invalid-feedback")||this.invalidFeedback,v=g?a("_BV_feedback_invalid_"):null;g&&(h=t(rh,{props:{ariaLive:r,id:v,role:r?"alert":null,state:e,tooltip:l},attrs:{tabindex:g?"-1":null}},[g]));var x=t(),y=i("valid-feedback")||this.validFeedback,w=y?a("_BV_feedback_valid_"):null;y&&(x=t(nh,{props:{ariaLive:r,id:w,role:r?"alert":null,state:e,tooltip:l},attrs:{tabindex:y?"-1":null}},[y]));var k=t(),O=i("description")||this.description,j=O?a("_BV_description_"):null;O&&(k=t(th,{attrs:{id:j,tabindex:"-1"}},[O]));var S=this.ariaDescribedby=[j,!1===e?v:null,!0===e?w:null].filter(He).join(" ")||null,P=t(o?tv:"div",{props:o?this.contentColProps:{},ref:"content"},[i(Ii,{ariaDescribedby:S,descriptionId:j,id:s,labelId:u})||t(),h,x,k]);return t(c?"fieldset":o?ah:"div",{staticClass:"form-group",class:[{"was-validated":this.validated},this.stateClass],attrs:{id:s,disabled:c?this.disabled:null,role:c?null:"group","aria-invalid":this.computedAriaInvalid,"aria-labelledby":c&&o?u:null}},o&&c?[t(ah,[d,P])]:[d,P])}},sv=lr({components:{BFormGroup:lv,BFormFieldset:lv}}),cv=o.default.extend({computed:{selectionStart:{cache:!1,get:function(){return this.$refs.input.selectionStart},set:function(t){this.$refs.input.selectionStart=t}},selectionEnd:{cache:!1,get:function(){return this.$refs.input.selectionEnd},set:function(t){this.$refs.input.selectionEnd=t}},selectionDirection:{cache:!1,get:function(){return this.$refs.input.selectionDirection},set:function(t){this.$refs.input.selectionDirection=t}}},methods:{select:function(){var t;(t=this.$refs.input).select.apply(t,arguments)},setSelectionRange:function(){var t;(t=this.$refs.input).setSelectionRange.apply(t,arguments)},setRangeText:function(){var t;(t=this.$refs.input).setRangeText.apply(t,arguments)}}});function dv(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function pv(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?dv(Object(r),!0).forEach((function(e){uv(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):dv(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function uv(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var mv=kl("value",{type:Ti,defaultValue:"",event:"update"}),fv=mv.mixin,bv=mv.props,hv=mv.prop,gv=mv.event,vv=vl(Ie(pv(pv({},bv),{},{ariaInvalid:fl(ji,!1),autocomplete:fl(gi),debounce:fl(Ti,0),formatter:fl(mi),lazy:fl(pi,!1),lazyFormatter:fl(pi,!1),number:fl(pi,!1),placeholder:fl(gi),plaintext:fl(pi,!1),readonly:fl(pi,!1),trim:fl(pi,!1)})),"formTextControls"),xv=o.default.extend({mixins:[fv],props:vv,data:function(){var t=this[hv];return{localValue:ba(t),vModelValue:this.modifyValue(t)}},computed:{computedClass:function(){var t=this.plaintext,e=this.type,r="range"===e,o="color"===e;return[{"custom-range":r,"form-control-plaintext":t&&!r&&!o,"form-control":o||!t&&!r},this.sizeFormClass,this.stateClass]},computedDebounce:function(){return os(la(this.debounce,0),0)},hasFormatter:function(){return yl(this.formatter)}},watch:uv({},hv,(function(t){var e=ba(t),r=this.modifyValue(t);e===this.localValue&&r===this.vModelValue||(this.clearDebounce(),this.localValue=e,this.vModelValue=r)})),created:function(){this.$_inputDebounceTimer=null},mounted:function(){this.$on(ni,this.clearDebounce)},beforeDestroy:function(){this.clearDebounce()},methods:{clearDebounce:function(){clearTimeout(this.$_inputDebounceTimer),this.$_inputDebounceTimer=null},formatValue:function(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return t=ba(t),!this.hasFormatter||this.lazyFormatter&&!r||(t=this.formatter(t,e)),t},modifyValue:function(t){return t=ba(t),this.trim&&(t=t.trim()),this.number&&(t=sa(t,t)),t},updateValue:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=this.lazy;if(!o||r){this.clearDebounce();var n=function(){if((t=e.modifyValue(t))!==e.vModelValue)e.vModelValue=t,e.$emit(gv,t);else if(e.hasFormatter){var r=e.$refs.input;r&&t!==r.value&&(r.value=t)}},i=this.computedDebounce;i>0&&!o&&!r?this.$_inputDebounceTimer=setTimeout(n,i):n()}},onInput:function(t){if(!t.target.composing){var e=t.target.value,r=this.formatValue(e,t);!1===r||t.defaultPrevented?$l(t,{propagation:!1}):(this.localValue=r,this.updateValue(r),this.$emit(Hn,r))}},onChange:function(t){var e=t.target.value,r=this.formatValue(e,t);!1===r||t.defaultPrevented?$l(t,{propagation:!1}):(this.localValue=r,this.updateValue(r,!0),this.$emit(Pn,r))},onBlur:function(t){var e=t.target.value,r=this.formatValue(e,t,!0);!1!==r&&(this.localValue=ba(this.modifyValue(r)),this.updateValue(r,!0)),this.$emit("blur",t)},focus:function(){this.disabled||Qa(this.$el)},blur:function(){this.disabled||tl(this.$el)}}}),yv=o.default.extend({computed:{validity:{cache:!1,get:function(){return this.$refs.input.validity}},validationMessage:{cache:!1,get:function(){return this.$refs.input.validationMessage}},willValidate:{cache:!1,get:function(){return this.$refs.input.willValidate}}},methods:{setCustomValidity:function(){var t;return(t=this.$refs.input).setCustomValidity.apply(t,arguments)},checkValidity:function(){var t;return(t=this.$refs.input).checkValidity.apply(t,arguments)},reportValidity:function(){var t;return(t=this.$refs.input).reportValidity.apply(t,arguments)}}});function wv(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function kv(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?wv(Object(r),!0).forEach((function(e){Ov(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):wv(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Ov(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var jv,Sv=["text","password","email","number","url","tel","search","range","color","date","time","datetime","datetime-local","month","week"],Pv=vl(Ie(kv(kv(kv(kv(kv(kv({},np),dh),fh),hh),vv),{},{list:fl(gi),max:fl(Ti),min:fl(Ti),noWheel:fl(pi,!1),step:fl(Ti),type:fl(gi,"text",(function(t){return ra(Sv,t)}))})),po),Tv=o.default.extend({name:po,mixins:[gc,ip,ph,bh,gh,xv,cv,yv],props:Pv,computed:{localType:function(){var t=this.type;return ra(Sv,t)?t:"text"},computedAttrs:function(){var t=this.localType,e=this.name,r=this.form,o=this.disabled,n=this.placeholder,i=this.required,a=this.min,l=this.max,s=this.step;return{id:this.safeId(),name:e,form:r,type:t,disabled:o,placeholder:n,required:i,autocomplete:this.autocomplete||null,readonly:this.readonly||this.plaintext,min:a,max:l,step:s,list:"password"!==t?this.list:null,"aria-required":i?"true":null,"aria-invalid":this.computedAriaInvalid}},computedListeners:function(){return kv(kv({},this.bvListeners),{},{input:this.onInput,change:this.onChange,blur:this.onBlur})}},watch:{noWheel:function(t){this.setWheelStopper(t)}},mounted:function(){this.setWheelStopper(this.noWheel)},deactivated:function(){this.setWheelStopper(!1)},activated:function(){this.setWheelStopper(this.noWheel)},beforeDestroy:function(){this.setWheelStopper(!1)},methods:{setWheelStopper:function(t){var e=this.$el;Cl(t,e,"focus",this.onWheelFocus),Cl(t,e,"blur",this.onWheelBlur),t||_l(document,"wheel",this.stopWheel)},onWheelFocus:function(){Tl(document,"wheel",this.stopWheel)},onWheelBlur:function(){_l(document,"wheel",this.stopWheel)},stopWheel:function(t){$l(t,{propagation:!1}),tl(this.$el)}},render:function(t){return t("input",{class:this.computedClass,attrs:this.computedAttrs,domProps:{value:this.localValue},on:this.computedListeners,ref:"input"})}}),_v=lr({components:{BFormInput:Tv,BInput:Tv}}),Cv=vl(Zh,fo),$v=o.default.extend({name:fo,mixins:[Qh],provide:function(){return{bvRadioGroup:this}},props:Cv,computed:{isRadioGroup:function(){return!0}}}),Dv=lr({components:{BFormRadio:Vh,BRadio:Vh,BFormRadioGroup:$v,BRadioGroup:$v}});function Ev(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function zv(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ev(Object(r),!0).forEach((function(e){Bv(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ev(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Bv(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Av=kl("value",{type:Ti,event:Pn}),Iv=Av.mixin,Fv=Av.props,Lv=Av.prop,Mv=Av.event,Rv=function(t){return os(3,la(t,5))},Vv=function(t,e,r){return os(rs(t,r),e)},Nv=o.default.extend({name:"BVFormRatingStar",mixins:[Sl],props:{disabled:fl(pi,!1),focused:fl(pi,!1),hasClear:fl(pi,!1),rating:fl(fi,0),readonly:fl(pi,!1),star:fl(fi,0),variant:fl(gi)},methods:{onClick:function(t){this.disabled||this.readonly||($l(t,{propagation:!1}),this.$emit(Qn,this.star))}},render:function(t){var e=this.rating,r=this.star,o=this.focused,n=this.hasClear,i=this.variant,a=this.disabled,l=this.readonly,s=n?0:1,c=e>=r?"full":e>=r-.5?"half":"empty",d={variant:i,disabled:a,readonly:l};return t("span",{staticClass:"b-rating-star",class:{focused:o&&e===r||!la(e)&&r===s,"b-rating-star-empty":"empty"===c,"b-rating-star-half":"half"===c,"b-rating-star-full":"full"===c},attrs:{tabindex:a||l?null:"-1"},on:{click:this.onClick}},[t("span",{staticClass:"b-rating-icon"},[this.normalizeSlot(c,d)])])}}),Hv=vl(Ie(zv(zv(zv(zv(zv({},np),Fv),Be(dh,["required","autofocus"])),fh),{},{color:fl(gi),iconClear:fl(gi,"x"),iconEmpty:fl(gi,"star"),iconFull:fl(gi,"star-fill"),iconHalf:fl(gi,"star-half"),inline:fl(pi,!1),locale:fl(wi),noBorder:fl(pi,!1),precision:fl(Ti),readonly:fl(pi,!1),showClear:fl(pi,!1),showValue:fl(pi,!1),showValueMax:fl(pi,!1),stars:fl(Ti,5,(function(t){return la(t)>=3})),variant:fl(gi)})),bo),Uv=o.default.extend({name:bo,components:{BIconStar:Ws,BIconStarHalf:qs,BIconStarFill:Gs,BIconX:Ys},mixins:[ip,Iv,bh],props:Hv,data:function(){var t=sa(this[Lv],null),e=Rv(this.stars);return{localValue:ce(t)?null:Vv(t,0,e),hasFocus:!1}},computed:{computedStars:function(){return Rv(this.stars)},computedRating:function(){var t=sa(this.localValue,0),e=la(this.precision,3);return Vv(sa(t.toFixed(e)),0,this.computedStars)},computedLocale:function(){var t=oa(this.locale).filter(He);return new Intl.NumberFormat(t).resolvedOptions().locale},isInteractive:function(){return!this.disabled&&!this.readonly},isRTL:function(){return op(this.computedLocale)},formattedRating:function(){var t=la(this.precision),e=this.showValueMax,r=this.computedLocale,o={notation:"standard",minimumFractionDigits:isNaN(t)?0:t,maximumFractionDigits:isNaN(t)?3:t},n=this.computedStars.toLocaleString(r),i=this.localValue;return i=ce(i)?e?"-":"":i.toLocaleString(r,o),e?"".concat(i,"/").concat(n):i}},watch:(jv={},Bv(jv,Lv,(function(t,e){if(t!==e){var r=sa(t,null);this.localValue=ce(r)?null:Vv(r,0,this.computedStars)}})),Bv(jv,"localValue",(function(t,e){t!==e&&t!==(this.value||0)&&this.$emit(Mv,t||null)})),Bv(jv,"disabled",(function(t){t&&(this.hasFocus=!1,this.blur())})),jv),methods:{focus:function(){this.disabled||Qa(this.$el)},blur:function(){this.disabled||tl(this.$el)},onKeydown:function(t){var e=t.keyCode;if(this.isInteractive&&ra([ac,rc,lc,cc],e)){$l(t,{propagation:!1});var r=la(this.localValue,0),o=this.showClear?0:1,n=this.computedStars,i=this.isRTL?-1:1;e===ac?this.localValue=Vv(r-i,o,n)||null:e===lc?this.localValue=Vv(r+i,o,n):e===rc?this.localValue=Vv(r-1,o,n)||null:e===cc&&(this.localValue=Vv(r+1,o,n))}},onSelected:function(t){this.isInteractive&&(this.localValue=t)},onFocus:function(t){this.hasFocus=!!this.isInteractive&&"focus"===t.type},renderIcon:function(t){return this.$createElement(ec,{props:{icon:t,variant:this.disabled||this.color?null:this.variant||null}})},iconEmptyFn:function(){return this.renderIcon(this.iconEmpty)},iconHalfFn:function(){return this.renderIcon(this.iconHalf)},iconFullFn:function(){return this.renderIcon(this.iconFull)},iconClearFn:function(){return this.$createElement(ec,{props:{icon:this.iconClear}})}},render:function(t){var e=this,r=this.disabled,o=this.readonly,n=this.name,i=this.form,a=this.inline,l=this.variant,s=this.color,c=this.noBorder,d=this.hasFocus,p=this.computedRating,u=this.computedStars,m=this.formattedRating,f=this.showClear,b=this.isRTL,h=this.isInteractive,g=this.$scopedSlots,v=[];if(f&&!r&&!o){var x=t("span",{staticClass:"b-rating-icon"},[(g["icon-clear"]||this.iconClearFn)()]);v.push(t("span",{staticClass:"b-rating-star b-rating-star-clear flex-grow-1",class:{focused:d&&0===p},attrs:{tabindex:h?"-1":null},on:{click:function(){return e.onSelected(null)}},key:"clear"},[x]))}for(var y=0;y<u;y++){var w=y+1;v.push(t(Nv,{staticClass:"flex-grow-1",style:s&&!r?{color:s}:{},props:{rating:p,star:w,variant:r?null:l||null,disabled:r,readonly:o,focused:d,hasClear:f},on:{selected:this.onSelected},scopedSlots:{empty:g["icon-empty"]||this.iconEmptyFn,half:g["icon-half"]||this.iconHalfFn,full:g["icon-full"]||this.iconFullFn},key:y}))}return n&&v.push(t("input",{attrs:{type:"hidden",value:ce(this.localValue)?"":p,name:n,form:i||null},key:"hidden"})),this.showValue&&v.push(t("b",{staticClass:"b-rating-value flex-grow-1",attrs:{"aria-hidden":"true"},key:"value"},ba(m))),t("output",{staticClass:"b-rating form-control align-items-center",class:[{"d-inline-flex":a,"d-flex":!a,"border-0":c,disabled:r,readonly:!r&&o},this.sizeFormClass],attrs:{id:this.safeId(),dir:b?"rtl":"ltr",tabindex:r?null:"0",disabled:r,role:"slider","aria-disabled":r?"true":null,"aria-readonly":!r&&o?"true":null,"aria-live":"off","aria-valuemin":f?"0":"1","aria-valuemax":ba(u),"aria-valuenow":p?ba(p):null},on:{keydown:this.onKeydown,focus:this.onFocus,blur:this.onFocus}},v)}}),Wv=lr({components:{BFormRating:Uv,BRating:Uv}}),Gv=kl("value"),qv=Gv.mixin,Yv=Gv.props,Kv=Gv.prop,Xv=Gv.event;function Jv(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Zv(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Jv(Object(r),!0).forEach((function(e){Qv(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Jv(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Qv(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var tx=vl(Ie(Zv(Zv({},Ub),{},{labelField:fl(gi,"label"),optionsField:fl(gi,"options")})),"formOptions"),ex=o.default.extend({mixins:[Wb],props:tx,methods:{normalizeOption:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(ve(t)){var r=We(t,this.valueField),o=We(t,this.textField),n=We(t,this.optionsField,null);return ce(n)?{value:se(r)?e||o:r,text:String(se(o)?e:o),html:We(t,this.htmlField),disabled:Boolean(We(t,this.disabledField))}:{label:String(We(t,this.labelField)||o),options:this.normalizeOptions(n)}}return{value:e||t,text:String(t),disabled:!1}}}}),rx=vl({disabled:fl(pi,!1),value:fl(ci,void 0,!0)},vo),ox=o.default.extend({name:vo,functional:!0,props:rx,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=r.value;return t("option",xr(o,{attrs:{disabled:r.disabled},domProps:{value:i}}),n)}});function nx(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function ix(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?nx(Object(r),!0).forEach((function(e){ax(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):nx(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function ax(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var lx=vl(Ie(ix(ix({},Ub),{},{label:fl(gi,void 0,!0)})),xo),sx=o.default.extend({name:xo,mixins:[Sl,Wb],props:lx,render:function(t){var e=this.label,r=this.formOptions.map((function(e,r){var o=e.value,n=e.text,i=e.html,a=e.disabled;return t(ox,{attrs:{value:o,disabled:a},domProps:ld(i,n),key:"option_".concat(r)})}));return t("optgroup",{attrs:{label:e}},[this.normalizeSlot(Mi),r,this.normalizeSlot()])}});function cx(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function dx(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?cx(Object(r),!0).forEach((function(e){px(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):cx(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function px(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var ux,mx=vl(Ie(dx(dx(dx(dx(dx(dx(dx({},np),Yv),dh),uh),fh),hh),{},{ariaInvalid:fl(ji,!1),multiple:fl(pi,!1),selectSize:fl(fi,0)})),go),fx=o.default.extend({name:go,mixins:[ip,qv,ph,bh,gh,mh,ex,Sl],props:mx,data:function(){return{localValue:this[Kv]}},computed:{computedSelectSize:function(){return this.plain||0!==this.selectSize?this.selectSize:null},inputClass:function(){return[this.plain?"form-control":"custom-select",this.size&&this.plain?"form-control-".concat(this.size):null,this.size&&!this.plain?"custom-select-".concat(this.size):null,this.stateClass]}},watch:{value:function(t){this.localValue=t},localValue:function(){this.$emit(Xv,this.localValue)}},methods:{focus:function(){Qa(this.$refs.input)},blur:function(){tl(this.$refs.input)},onChange:function(t){var e=this,r=t.target,o=ea(r.options).filter((function(t){return t.selected})).map((function(t){return"_value"in t?t._value:t.value}));this.localValue=r.multiple?o:o[0],this.$nextTick((function(){e.$emit(Pn,e.localValue)}))}},render:function(t){var e=this.name,r=this.disabled,o=this.required,n=this.computedSelectSize,i=this.localValue,a=this.formOptions.map((function(e,r){var o=e.value,n=e.label,i=e.options,a=e.disabled,l="option_".concat(r);return he(i)?t(sx,{props:{label:n,options:i},key:l}):t(ox,{props:{value:o,disabled:a},domProps:ld(e.html,e.text),key:l})}));return t("select",{class:this.inputClass,attrs:{id:this.safeId(),name:e,form:this.form||null,multiple:this.multiple||null,size:n,disabled:r,required:o,"aria-required":o?"true":null,"aria-invalid":this.computedAriaInvalid},on:{change:this.onChange},directives:[{name:"model",value:i}],ref:"input"},[this.normalizeSlot(Mi),a,this.normalizeSlot()])}}),bx=lr({components:{BFormSelect:fx,BFormSelectOption:ox,BFormSelectOptionGroup:sx,BSelect:fx,BSelectOption:ox,BSelectOptionGroup:sx}});function hx(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function gx(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?hx(Object(r),!0).forEach((function(e){vx(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):hx(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function vx(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var xx=kl("value",{type:ki}),yx=xx.mixin,wx=xx.props,kx=xx.prop,Ox=xx.event,jx=[cc,rc,ic,oc,33,34],Sx=vl(Ie(gx(gx(gx(gx(gx(gx({},np),wx),Be(dh,["required","autofocus"])),fh),hh),{},{ariaControls:fl(gi),ariaLabel:fl(gi),formatterFn:fl(mi),inline:fl(pi,!1),labelDecrement:fl(gi,"Decrement"),labelIncrement:fl(gi,"Increment"),locale:fl(wi),max:fl(Ti,100),min:fl(Ti,1),placeholder:fl(gi),readonly:fl(pi,!1),repeatDelay:fl(Ti,500),repeatInterval:fl(Ti,100),repeatStepMultiplier:fl(Ti,4),repeatThreshold:fl(Ti,10),step:fl(Ti,1),vertical:fl(pi,!1),wrap:fl(pi,!1)})),yo),Px=o.default.extend({name:yo,mixins:[bc,ip,yx,bh,gh,Sl],inheritAttrs:!1,props:Sx,data:function(){return{localValue:sa(this[kx],null),hasFocus:!1}},computed:{spinId:function(){return this.safeId()},computedInline:function(){return this.inline&&!this.vertical},computedReadonly:function(){return this.readonly&&!this.disabled},computedRequired:function(){return this.required&&!this.computedReadonly&&!this.disabled},computedStep:function(){return sa(this.step,1)},computedMin:function(){return sa(this.min,1)},computedMax:function(){var t=sa(this.max,100),e=this.computedStep,r=this.computedMin;return as((t-r)/e)*e+r},computedDelay:function(){var t=la(this.repeatDelay,0);return t>0?t:500},computedInterval:function(){var t=la(this.repeatInterval,0);return t>0?t:100},computedThreshold:function(){return os(la(this.repeatThreshold,10),1)},computedStepMultiplier:function(){return os(la(this.repeatStepMultiplier,4),1)},computedPrecision:function(){var t=this.computedStep;return as(t)===t?0:(t.toString().split(".")[1]||"").length},computedMultiplier:function(){return ls(10,this.computedPrecision||0)},valueAsFixed:function(){var t=this.localValue;return ce(t)?"":t.toFixed(this.computedPrecision)},computedLocale:function(){var t=oa(this.locale).filter(He);return new Intl.NumberFormat(t).resolvedOptions().locale},computedRTL:function(){return op(this.computedLocale)},defaultFormatter:function(){var t=this.computedPrecision;return new Intl.NumberFormat(this.computedLocale,{style:"decimal",useGrouping:!1,minimumIntegerDigits:1,minimumFractionDigits:t,maximumFractionDigits:t,notation:"standard"}).format},computedFormatter:function(){var t=this.formatterFn;return yl(t)?t:this.defaultFormatter},computedAttrs:function(){return gx(gx({},this.bvAttrs),{},{role:"group",lang:this.computedLocale,tabindex:this.disabled?null:"-1",title:this.ariaLabel})},computedSpinAttrs:function(){var t=this.spinId,e=this.localValue,r=this.computedRequired,o=this.disabled,n=this.state,i=this.computedFormatter,a=!ce(e);return gx(gx({dir:this.computedRTL?"rtl":"ltr"},this.bvAttrs),{},{id:t,role:"spinbutton",tabindex:o?null:"0","aria-live":"off","aria-label":this.ariaLabel||null,"aria-controls":this.ariaControls||null,"aria-invalid":!1===n||!a&&r?"true":null,"aria-required":r?"true":null,"aria-valuemin":ba(this.computedMin),"aria-valuemax":ba(this.computedMax),"aria-valuenow":a?e:null,"aria-valuetext":a?i(e):null})}},watch:(ux={},vx(ux,kx,(function(t){this.localValue=sa(t,null)})),vx(ux,"localValue",(function(t){this.$emit(Ox,t)})),vx(ux,"disabled",(function(t){t&&this.clearRepeat()})),vx(ux,"readonly",(function(t){t&&this.clearRepeat()})),ux),created:function(){this.$_autoDelayTimer=null,this.$_autoRepeatTimer=null,this.$_keyIsDown=!1},beforeDestroy:function(){this.clearRepeat()},deactivated:function(){this.clearRepeat()},methods:{focus:function(){this.disabled||Qa(this.$refs.spinner)},blur:function(){this.disabled||tl(this.$refs.spinner)},emitChange:function(){this.$emit(Pn,this.localValue)},stepValue:function(t){var e=this.localValue;if(!this.disabled&&!ce(e)){var r=this.computedStep*t,o=this.computedMin,n=this.computedMax,i=this.computedMultiplier,a=this.wrap;e=ss((e-o)/r)*r+o+r,e=ss(e*i)/i,this.localValue=e>n?a?o:n:e<o?a?n:o:e}},onFocusBlur:function(t){this.disabled?this.hasFocus=!1:this.hasFocus="focus"===t.type},stepUp:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,e=this.localValue;ce(e)?this.localValue=this.computedMin:this.stepValue(1*t)},stepDown:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,e=this.localValue;ce(e)?this.localValue=this.wrap?this.computedMax:this.computedMin:this.stepValue(-1*t)},onKeydown:function(t){var e=t.keyCode,r=t.altKey,o=t.ctrlKey,n=t.metaKey;if(!(this.disabled||this.readonly||r||o||n)&&ra(jx,e)){if($l(t,{propagation:!1}),this.$_keyIsDown)return;this.resetTimers(),ra([cc,rc],e)?(this.$_keyIsDown=!0,e===cc?this.handleStepRepeat(t,this.stepUp):e===rc&&this.handleStepRepeat(t,this.stepDown)):33===e?this.stepUp(this.computedStepMultiplier):34===e?this.stepDown(this.computedStepMultiplier):e===ic?this.localValue=this.computedMin:e===oc&&(this.localValue=this.computedMax)}},onKeyup:function(t){var e=t.keyCode,r=t.altKey,o=t.ctrlKey,n=t.metaKey;this.disabled||this.readonly||r||o||n||ra(jx,e)&&($l(t,{propagation:!1}),this.resetTimers(),this.$_keyIsDown=!1,this.emitChange())},handleStepRepeat:function(t,e){var r=this,o=t||{},n=o.type,i=o.button;if(!this.disabled&&!this.readonly){if("mousedown"===n&&i)return;this.resetTimers(),e(1);var a=this.computedThreshold,l=this.computedStepMultiplier,s=this.computedDelay,c=this.computedInterval;this.$_autoDelayTimer=setTimeout((function(){var t=0;r.$_autoRepeatTimer=setInterval((function(){e(t<a?1:l),t++}),c)}),s)}},onMouseup:function(t){var e=t||{},r=e.type,o=e.button;"mouseup"===r&&o||($l(t,{propagation:!1}),this.resetTimers(),this.setMouseup(!1),this.emitChange())},setMouseup:function(t){try{Cl(t,document.body,"mouseup",this.onMouseup,!1),Cl(t,document.body,"touchend",this.onMouseup,!1)}catch(t){}},resetTimers:function(){clearTimeout(this.$_autoDelayTimer),clearInterval(this.$_autoRepeatTimer),this.$_autoDelayTimer=null,this.$_autoRepeatTimer=null},clearRepeat:function(){this.resetTimers(),this.setMouseup(!1),this.$_keyIsDown=!1}},render:function(t){var e=this,r=this.spinId,o=this.localValue,n=this.computedInline,i=this.computedReadonly,a=this.vertical,l=this.disabled,s=this.computedFormatter,c=!ce(o),d=function(o,n,s,c,d,p,u){var m=t(s,{props:{scale:e.hasFocus?1.5:1.25},attrs:{"aria-hidden":"true"}}),f={hasFocus:e.hasFocus},b=function(t){l||i||($l(t,{propagation:!1}),e.setMouseup(!0),Qa(t.currentTarget),e.handleStepRepeat(t,o))};return t("button",{staticClass:"btn btn-sm border-0 rounded-0",class:{"py-0":!a},attrs:{tabindex:"-1",type:"button",disabled:l||i||p,"aria-disabled":l||i||p?"true":null,"aria-controls":r,"aria-label":n||null,"aria-keyshortcuts":d||null},on:{mousedown:b,touchstart:b},key:c||null,ref:c},[e.normalizeSlot(u,f)||m])},p=d(this.stepUp,this.labelIncrement,Us,"inc","ArrowUp",!1,"increment"),u=d(this.stepDown,this.labelDecrement,Ns,"dec","ArrowDown",!1,"decrement"),m=t();this.name&&!l&&(m=t("input",{attrs:{type:"hidden",name:this.name,form:this.form||null,value:this.valueAsFixed},key:"hidden"}));var f=t("output",{staticClass:"flex-grow-1",class:{"d-flex":a,"align-self-center":!a,"align-items-center":a,"border-top":a,"border-bottom":a,"border-left":!a,"border-right":!a},attrs:this.computedSpinAttrs,key:"output",ref:"spinner"},[t("bdi",c?s(o):this.placeholder||"")]);return t("div",{staticClass:"b-form-spinbutton form-control",class:[{disabled:l,readonly:i,focus:this.hasFocus,"d-inline-flex":n||a,"d-flex":!n&&!a,"align-items-stretch":!a,"flex-column":a},this.sizeFormClass,this.stateClass],attrs:this.computedAttrs,on:{keydown:this.onKeydown,keyup:this.onKeyup,"!focus":this.onFocusBlur,"!blur":this.onFocusBlur}},a?[p,m,f,u]:[u,m,f,p])}}),Tx=lr({components:{BFormSpinbutton:Px,BSpinbutton:Px}});function _x(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Cx(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?_x(Object(r),!0).forEach((function(e){$x(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):_x(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function $x(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Dx,Ex=vl(Ie(Cx(Cx({},np),{},{disabled:fl(pi,!1),noRemove:fl(pi,!1),pill:fl(pi,!1),removeLabel:fl(gi,"Remove tag"),tag:fl(gi,"span"),title:fl(gi),variant:fl(gi,"secondary")})),wo),zx=o.default.extend({name:wo,mixins:[ip,Sl],props:Ex,methods:{onRemove:function(t){var e=t.type,r=t.keyCode;this.disabled||"click"!==e&&("keydown"!==e||46!==r)||this.$emit("remove")}},render:function(t){var e=this.title,r=this.tag,o=this.variant,n=this.pill,i=this.disabled,a=this.safeId(),l=this.safeId("_taglabel_"),s=t();this.noRemove||i||(s=t(Al,{staticClass:"b-form-tag-remove",props:{ariaLabel:this.removeLabel},attrs:{"aria-controls":a,"aria-describedby":l,"aria-keyshortcuts":"Delete"},on:{click:this.onRemove,keydown:this.onRemove}}));var c=t("span",{staticClass:"b-form-tag-content flex-grow-1 text-truncate",attrs:{id:l}},this.normalizeSlot()||e);return t(nd,{staticClass:"b-form-tag d-inline-flex align-items-baseline mw-100",class:{disabled:i},props:{tag:r,variant:o,pill:n},attrs:{id:a,title:e||null,"aria-labelledby":l}},[c,s])}});function Bx(t){return function(t){if(Array.isArray(t))return Ax(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return Ax(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Ax(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ax(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}function Ix(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Fx(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ix(Object(r),!0).forEach((function(e){Lx(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ix(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Lx(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Mx=kl("value",{type:di,defaultValue:[]}),Rx=Mx.mixin,Vx=Mx.props,Nx=Mx.prop,Hx=Mx.event,Ux=["text","email","tel","url","number"],Wx=[".b-form-tag","button","input","select"].join(" "),Gx=function(t){return oa(t).map((function(t){return ha(ba(t))})).filter((function(t,e,r){return t.length>0&&r.indexOf(t)===e}))},qx=function(t){return me(t)?t:ye(t)&&t.target.value||""},Yx=vl(Ie(Fx(Fx(Fx(Fx(Fx(Fx({},np),Vx),dh),fh),hh),{},{addButtonText:fl(gi,"Add"),addButtonVariant:fl(gi,"outline-secondary"),addOnChange:fl(pi,!1),duplicateTagText:fl(gi,"Duplicate tag(s)"),ignoreInputFocusSelector:fl(wi,Wx),inputAttrs:fl(bi,{}),inputClass:fl(yi),inputId:fl(gi),inputType:fl(gi,"text",(function(t){return ra(Ux,t)})),invalidTagText:fl(gi,"Invalid tag(s)"),limit:fl(fi),limitTagsText:fl(gi,"Tag limit reached"),noAddOnEnter:fl(pi,!1),noOuterFocus:fl(pi,!1),noTagRemove:fl(pi,!1),placeholder:fl(gi,"Add tag..."),removeOnDelete:fl(pi,!1),separator:fl(wi),tagClass:fl(yi),tagPills:fl(pi,!1),tagRemoveLabel:fl(gi,"Remove tag"),tagRemovedLabel:fl(gi,"Tag removed"),tagValidator:fl(mi),tagVariant:fl(gi,"secondary")})),ko),Kx=o.default.extend({name:ko,mixins:[ip,Rx,ph,bh,gh,Sl],props:Yx,data:function(){return{hasFocus:!1,newTag:"",tags:[],removedTags:[],tagsState:{all:[],valid:[],invalid:[],duplicate:[]}}},computed:{computedInputId:function(){return this.inputId||this.safeId("__input__")},computedInputType:function(){return ra(Ux,this.inputType)?this.inputType:"text"},computedInputAttrs:function(){var t=this.disabled,e=this.form;return Fx(Fx({},this.inputAttrs),{},{id:this.computedInputId,value:this.newTag,disabled:t,form:e})},computedInputHandlers:function(){return{input:this.onInputInput,change:this.onInputChange,keydown:this.onInputKeydown,reset:this.reset}},computedSeparator:function(){return oa(this.separator).filter(me).filter(He).join("")},computedSeparatorRegExp:function(){var t=this.computedSeparator;return t?new RegExp("[".concat(fa(t).replace(Tt,"\\s"),"]+")):null},computedJoiner:function(){var t=this.computedSeparator.charAt(0);return" "!==t?"".concat(t," "):t},computeIgnoreInputFocusSelector:function(){return oa(this.ignoreInputFocusSelector).filter(He).join(",").trim()},disableAddButton:function(){var t=this,e=ha(this.newTag);return""===e||!this.splitTags(e).some((function(e){return!ra(t.tags,e)&&t.validateTag(e)}))},duplicateTags:function(){return this.tagsState.duplicate},hasDuplicateTags:function(){return this.duplicateTags.length>0},invalidTags:function(){return this.tagsState.invalid},hasInvalidTags:function(){return this.invalidTags.length>0},isLimitReached:function(){var t=this.limit;return fe(t)&&t>=0&&this.tags.length>=t}},watch:(Dx={},Lx(Dx,Nx,(function(t){this.tags=Gx(t)})),Lx(Dx,"tags",(function(t,e){dc(t,this[Nx])||this.$emit(Hx,t),dc(t,e)||(t=oa(t).filter(He),e=oa(e).filter(He),this.removedTags=e.filter((function(e){return!ra(t,e)})))})),Lx(Dx,"tagsState",(function(t,e){dc(t,e)||this.$emit("tag-state",t.valid,t.invalid,t.duplicate)})),Dx),created:function(){this.tags=Gx(this[Nx])},mounted:function(){var t=this,e=Ba("form",this.$el);e&&(Tl(e,"reset",this.reset,li),this.$on(ni,(function(){_l(e,"reset",t.reset,li)})))},methods:{addTag:function(t){if(t=me(t)?t:this.newTag,!this.disabled&&""!==ha(t)&&!this.isLimitReached){var e=this.parseTags(t);if(e.valid.length>0||0===e.all.length)if(za(this.getInput(),"select"))this.newTag="";else{var r=[].concat(Bx(e.invalid),Bx(e.duplicate));this.newTag=e.all.filter((function(t){return ra(r,t)})).join(this.computedJoiner).concat(r.length>0?this.computedJoiner.charAt(0):"")}e.valid.length>0&&(this.tags=oa(this.tags,e.valid)),this.tagsState=e,this.focus()}},removeTag:function(t){var e=this;this.disabled||(this.tags=this.tags.filter((function(e){return e!==t})),this.$nextTick((function(){e.focus()})))},reset:function(){var t=this;this.newTag="",this.tags=[],this.$nextTick((function(){t.removedTags=[],t.tagsState={all:[],valid:[],invalid:[],duplicate:[]}}))},onInputInput:function(t){if(!(this.disabled||ye(t)&&t.target.composing)){var e=qx(t),r=this.computedSeparatorRegExp;this.newTag!==e&&(this.newTag=e),e=ba(e).replace(Dt,""),r&&r.test(e.slice(-1))?this.addTag():this.tagsState=""===e?{all:[],valid:[],invalid:[],duplicate:[]}:this.parseTags(e)}},onInputChange:function(t){if(!this.disabled&&this.addOnChange){var e=qx(t);this.newTag!==e&&(this.newTag=e),this.addTag()}},onInputKeydown:function(t){if(!this.disabled&&ye(t)){var e=t.keyCode,r=t.target.value||"";this.noAddOnEnter||e!==nc?!this.removeOnDelete||8!==e&&46!==e||""!==r||($l(t,{propagation:!1}),this.tags=this.tags.slice(0,-1)):($l(t,{propagation:!1}),this.addTag())}},onClick:function(t){var e=this,r=this.computeIgnoreInputFocusSelector,o=t.target;this.disabled||Ta(o)||r&&Ba(r,o,!0)||this.$nextTick((function(){e.focus()}))},onFocusin:function(){this.hasFocus=!0},onFocusout:function(){this.hasFocus=!1},handleAutofocus:function(){var t=this;this.$nextTick((function(){ka((function(){t.autofocus&&!t.disabled&&t.focus()}))}))},focus:function(){this.disabled||Qa(this.getInput())},blur:function(){this.disabled||tl(this.getInput())},splitTags:function(t){t=ba(t);var e=this.computedSeparatorRegExp;return(e?t.split(e):[t]).map(ha).filter(He)},parseTags:function(t){var e=this,r=this.splitTags(t),o={all:r,valid:[],invalid:[],duplicate:[]};return r.forEach((function(t){ra(e.tags,t)||ra(o.valid,t)?ra(o.duplicate,t)||o.duplicate.push(t):e.validateTag(t)?o.valid.push(t):ra(o.invalid,t)||o.invalid.push(t)})),o},validateTag:function(t){var e=this.tagValidator;return!yl(e)||e(t)},getInput:function(){return Ea("#".concat(qg(this.computedInputId)),this.$el)},defaultRender:function(t){var e=t.addButtonText,r=t.addButtonVariant,o=t.addTag,n=t.disableAddButton,i=t.disabled,a=t.duplicateTagText,l=t.inputAttrs,s=t.inputClass,c=t.inputHandlers,d=t.inputType,p=t.invalidTagText,u=t.isDuplicate,m=t.isInvalid,f=t.isLimitReached,b=t.limitTagsText,h=t.noTagRemove,g=t.placeholder,v=t.removeTag,x=t.tagClass,y=t.tagPills,w=t.tagRemoveLabel,k=t.tagVariant,O=t.tags,j=this.$createElement,S=O.map((function(t){return t=ba(t),j(zx,{class:x,props:{disabled:i,noRemove:h,pill:y,removeLabel:w,tag:"li",title:t,variant:k},on:{remove:function(){return v(t)}},key:"tags_".concat(t)},t)})),P=p&&m?this.safeId("__invalid_feedback__"):null,T=a&&u?this.safeId("__duplicate_feedback__"):null,_=b&&f?this.safeId("__limit_feedback__"):null,C=[l["aria-describedby"],P,T,_].filter(He).join(" "),$=j("input",{staticClass:"b-form-tags-input w-100 flex-grow-1 p-0 m-0 bg-transparent border-0",class:s,style:{outline:0,minWidth:"5rem"},attrs:Fx(Fx({},l),{},{"aria-describedby":C||null,type:d,placeholder:g||null}),domProps:{value:l.value},on:c,directives:[{name:"model",value:l.value}],ref:"input"}),D=j(Vc,{staticClass:"b-form-tags-button py-0",class:{invisible:n},style:{fontSize:"90%"},props:{disabled:n||f,variant:r},on:{click:function(){return o()}},ref:"button"},[this.normalizeSlot("add-button-text")||e]),E=this.safeId("__tag_list__"),z=j("li",{staticClass:"b-from-tags-field flex-grow-1",attrs:{role:"none","aria-live":"off","aria-controls":E},key:"tags_field"},[j("div",{staticClass:"d-flex",attrs:{role:"group"}},[$,D])]),B=j("ul",{staticClass:"b-form-tags-list list-unstyled mb-0 d-flex flex-wrap align-items-center",attrs:{id:E},key:"tags_list"},[S,z]),A=j();if(p||a||b){var I=this.computedJoiner,F=j();P&&(F=j(rh,{props:{id:P,forceShow:!0},key:"tags_invalid_feedback"},[this.invalidTagText,": ",this.invalidTags.join(I)]));var L=j();T&&(L=j(th,{props:{id:T},key:"tags_duplicate_feedback"},[this.duplicateTagText,": ",this.duplicateTags.join(I)]));var M=j();_&&(M=j(th,{props:{id:_},key:"tags_limit_feedback"},[b])),A=j("div",{attrs:{"aria-live":"polite","aria-atomic":"true"},key:"tags_feedback"},[F,L,M])}return[B,A]}},render:function(t){var e=this.name,r=this.disabled,o=this.required,n=this.form,i=this.tags,a=this.computedInputId,l=this.hasFocus,s=this.noOuterFocus,c=Fx({tags:i.slice(),inputAttrs:this.computedInputAttrs,inputType:this.computedInputType,inputHandlers:this.computedInputHandlers,removeTag:this.removeTag,addTag:this.addTag,reset:this.reset,inputId:a,isInvalid:this.hasInvalidTags,invalidTags:this.invalidTags.slice(),isDuplicate:this.hasDuplicateTags,duplicateTags:this.duplicateTags.slice(),isLimitReached:this.isLimitReached,disableAddButton:this.disableAddButton},ze(this.$props,["addButtonText","addButtonVariant","disabled","duplicateTagText","form","inputClass","invalidTagText","limit","limitTagsText","noTagRemove","placeholder","required","separator","size","state","tagClass","tagPills","tagRemoveLabel","tagVariant"])),d=this.normalizeSlot(Ii,c)||this.defaultRender(c),p=t("output",{staticClass:"sr-only",attrs:{id:this.safeId("__selected_tags__"),role:"status",for:a,"aria-live":l?"polite":"off","aria-atomic":"true","aria-relevant":"additions text"}},this.tags.join(", ")),u=t("div",{staticClass:"sr-only",attrs:{id:this.safeId("__removed_tags__"),role:"status","aria-live":l?"assertive":"off","aria-atomic":"true"}},this.removedTags.length>0?"(".concat(this.tagRemovedLabel,") ").concat(this.removedTags.join(", ")):""),m=t();if(e&&!r){var f=i.length>0;m=(f?i:[""]).map((function(r){return t("input",{class:{"sr-only":!f},attrs:{type:f?"hidden":"text",value:r,required:o,name:e,form:n},key:"tag_input_".concat(r)})}))}return t("div",{staticClass:"b-form-tags form-control h-auto",class:[{focus:l&&!s&&!r,disabled:r},this.sizeFormClass,this.stateClass],attrs:{id:this.safeId(),role:"group",tabindex:r||s?null:"-1","aria-describedby":this.safeId("__selected_tags__")},on:{click:this.onClick,focusin:this.onFocusin,focusout:this.onFocusout}},[p,u,d,m])}}),Xx=lr({components:{BFormTags:Kx,BTags:Kx,BFormTag:zx,BTag:zx}});function Jx(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Zx(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Jx(Object(r),!0).forEach((function(e){Qx(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Jx(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Qx(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var ty,ey=vl(Ie(Zx(Zx(Zx(Zx(Zx(Zx({},np),dh),fh),hh),vv),{},{maxRows:fl(Ti),noAutoShrink:fl(pi,!1),noResize:fl(pi,!1),rows:fl(Ti,2),wrap:fl(gi,"soft")})),jo),ry=o.default.extend({name:jo,directives:{"b-visible":ou},mixins:[gc,ip,hc,ph,bh,gh,xv,cv,yv],props:ey,data:function(){return{heightInPx:null}},computed:{computedStyle:function(){var t={resize:!this.computedRows||this.noResize?"none":null};return this.computedRows||(t.height=this.heightInPx,t.overflowY="scroll"),t},computedMinRows:function(){return os(la(this.rows,2),2)},computedMaxRows:function(){return os(this.computedMinRows,la(this.maxRows,0))},computedRows:function(){return this.computedMinRows===this.computedMaxRows?this.computedMinRows:null},computedAttrs:function(){var t=this.disabled,e=this.required;return{id:this.safeId(),name:this.name||null,form:this.form||null,disabled:t,placeholder:this.placeholder||null,required:e,autocomplete:this.autocomplete||null,readonly:this.readonly||this.plaintext,rows:this.computedRows,wrap:this.wrap||null,"aria-required":this.required?"true":null,"aria-invalid":this.computedAriaInvalid}},computedListeners:function(){return Zx(Zx({},this.bvListeners),{},{input:this.onInput,change:this.onChange,blur:this.onBlur})}},watch:{localValue:function(){this.setHeight()}},mounted:function(){this.setHeight()},methods:{visibleCallback:function(t){t&&this.$nextTick(this.setHeight)},setHeight:function(){var t=this;this.$nextTick((function(){ka((function(){t.heightInPx=t.computeHeight()}))}))},computeHeight:function(){if(this.$isServer||!ce(this.computedRows))return null;var t=this.$el;if(!_a(t))return null;var e=Ya(t),r=sa(e.lineHeight,1),o=sa(e.borderTopWidth,0)+sa(e.borderBottomWidth,0),n=sa(e.paddingTop,0)+sa(e.paddingBottom,0),i=o+n,a=r*this.computedMinRows+i,l=Ga(t,"height")||e.height;Ua(t,"height","auto");var s=t.scrollHeight;Ua(t,"height",l);var c=os((s-n)/r,2),d=rs(os(c,this.computedMinRows),this.computedMaxRows),p=os(is(d*r+i),a);return this.noAutoShrink&&sa(l,0)>p?l:"".concat(p,"px")}},render:function(t){return t("textarea",{class:this.computedClass,style:this.computedStyle,directives:[{name:"b-visible",value:this.visibleCallback,modifiers:{640:!0}}],attrs:this.computedAttrs,domProps:{value:this.localValue},on:this.computedListeners,ref:"input"})}}),oy=lr({components:{BFormTextarea:ry,BTextarea:ry}});function ny(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function iy(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?ny(Object(r),!0).forEach((function(e){ay(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ny(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function ay(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function ly(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}var sy,cy=kl("value",{type:gi,defaultValue:""}),dy=cy.mixin,py=cy.props,uy=cy.prop,my=cy.event,fy="numeric",by=function(t){return"00".concat(t||"").slice(-2)},hy=function(t){t=ba(t);var e=null,r=null,o=null;if(It.test(t)){var n=function(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t)){var r=[],o=!0,n=!1,i=void 0;try{for(var a,l=t[Symbol.iterator]();!(o=(a=l.next()).done)&&(r.push(a.value),!e||r.length!==e);o=!0);}catch(t){n=!0,i=t}finally{try{o||null==l.return||l.return()}finally{if(n)throw i}}return r}}(t,e)||function(t,e){if(t){if("string"==typeof t)return ly(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?ly(t,e):void 0}}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(t.split(":").map((function(t){return la(t,null)})),3);e=n[0],r=n[1],o=n[2]}return{hours:de(e)?null:e,minutes:de(r)?null:r,seconds:de(o)?null:o,ampm:de(e)||e<12?0:1}},gy=vl(Ie(iy(iy(iy(iy({},np),py),ze(Sx,["labelIncrement","labelDecrement"])),{},{ariaLabelledby:fl(gi),disabled:fl(pi,!1),hidden:fl(pi,!1),hideHeader:fl(pi,!1),hour12:fl(pi,null),labelAm:fl(gi,"AM"),labelAmpm:fl(gi,"AM/PM"),labelHours:fl(gi,"Hours"),labelMinutes:fl(gi,"Minutes"),labelNoTimeSelected:fl(gi,"No time selected"),labelPm:fl(gi,"PM"),labelSeconds:fl(gi,"Seconds"),labelSelected:fl(gi,"Selected time"),locale:fl(wi),minutesStep:fl(Ti,1),readonly:fl(pi,!1),secondsStep:fl(Ti,1),showSeconds:fl(pi,!1)})),wn),vy=o.default.extend({name:wn,mixins:[ip,dy,Sl],props:gy,data:function(){var t=hy(this[uy]||"");return{modelHours:t.hours,modelMinutes:t.minutes,modelSeconds:t.seconds,modelAmpm:t.ampm,isLive:!1}},computed:{computedHMS:function(){return function(t){var e=t.hours,r=t.minutes,o=t.seconds,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return ce(e)||ce(r)||n&&ce(o)?"":[e,r,n?o:0].map(by).join(":")}({hours:this.modelHours,minutes:this.modelMinutes,seconds:this.modelSeconds},this.showSeconds)},resolvedOptions:function(){var t=oa(this.locale).filter(He),e={hour:fy,minute:fy,second:fy};de(this.hour12)||(e.hour12=!!this.hour12);var r=new Intl.DateTimeFormat(t,e).resolvedOptions(),o=r.hour12||!1,n=r.hourCycle||(o?"h12":"h23");return{locale:r.locale,hour12:o,hourCycle:n}},computedLocale:function(){return this.resolvedOptions.locale},computedLang:function(){return(this.computedLocale||"").replace(/-u-.*$/,"")},computedRTL:function(){return op(this.computedLang)},computedHourCycle:function(){return this.resolvedOptions.hourCycle},is12Hour:function(){return!!this.resolvedOptions.hour12},context:function(){return{locale:this.computedLocale,isRTL:this.computedRTL,hourCycle:this.computedHourCycle,hour12:this.is12Hour,hours:this.modelHours,minutes:this.modelMinutes,seconds:this.showSeconds?this.modelSeconds:0,value:this.computedHMS,formatted:this.formattedTimeString}},valueId:function(){return this.safeId()||null},computedAriaLabelledby:function(){return[this.ariaLabelledby,this.valueId].filter(He).join(" ")||null},timeFormatter:function(){var t={hour12:this.is12Hour,hourCycle:this.computedHourCycle,hour:fy,minute:fy,timeZone:"UTC"};return this.showSeconds&&(t.second=fy),Ud(this.computedLocale,t)},numberFormatter:function(){return new Intl.NumberFormat(this.computedLocale,{style:"decimal",minimumIntegerDigits:2,minimumFractionDigits:0,maximumFractionDigits:0,notation:"standard"}).format},formattedTimeString:function(){var t=this.modelHours,e=this.modelMinutes,r=this.showSeconds&&this.modelSeconds||0;return this.computedHMS?this.timeFormatter(Vd(Date.UTC(0,0,1,t,e,r))):this.labelNoTimeSelected||" "},spinScopedSlots:function(){var t=this.$createElement;return{increment:function(e){var r=e.hasFocus;return t(Ls,{props:{scale:r?1.5:1.25},attrs:{"aria-hidden":"true"}})},decrement:function(e){var r=e.hasFocus;return t(Ls,{props:{flipV:!0,scale:r?1.5:1.25},attrs:{"aria-hidden":"true"}})}}}},watch:(ty={},ay(ty,uy,(function(t,e){if(t!==e&&!dc(hy(t),hy(this.computedHMS))){var r=hy(t),o=r.hours,n=r.minutes,i=r.seconds,a=r.ampm;this.modelHours=o,this.modelMinutes=n,this.modelSeconds=i,this.modelAmpm=a}})),ay(ty,"computedHMS",(function(t,e){t!==e&&this.$emit(my,t)})),ay(ty,"context",(function(t,e){dc(t,e)||this.$emit(Cn,t)})),ay(ty,"modelAmpm",(function(t,e){var r=this;if(t!==e){var o=ce(this.modelHours)?0:this.modelHours;this.$nextTick((function(){0===t&&o>11?r.modelHours=o-12:1===t&&o<12&&(r.modelHours=o+12)}))}})),ay(ty,"modelHours",(function(t,e){t!==e&&(this.modelAmpm=t>11?1:0)})),ty),created:function(){var t=this;this.$nextTick((function(){t.$emit(Cn,t.context)}))},mounted:function(){this.setLive(!0)},activated:function(){this.setLive(!0)},deactivated:function(){this.setLive(!1)},beforeDestroy:function(){this.setLive(!1)},methods:{focus:function(){this.disabled||Qa(this.$refs.spinners[0])},blur:function(){if(!this.disabled){var t=Sa();Aa(this.$el,t)&&tl(t)}},formatHours:function(t){var e=this.computedHourCycle;return t=0===(t=this.is12Hour&&t>12?t-12:t)&&"h12"===e?12:0===t&&"h24"===e?24:12===t&&"h11"===e?0:t,this.numberFormatter(t)},formatMinutes:function(t){return this.numberFormatter(t)},formatSeconds:function(t){return this.numberFormatter(t)},formatAmpm:function(t){return 0===t?this.labelAm:1===t?this.labelPm:""},setHours:function(t){this.modelHours=t},setMinutes:function(t){this.modelMinutes=t},setSeconds:function(t){this.modelSeconds=t},setAmpm:function(t){this.modelAmpm=t},onSpinLeftRight:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.type,r=t.keyCode;if(!this.disabled&&"keydown"===e&&(r===ac||r===lc)){$l(t);var o=this.$refs.spinners||[],n=o.map((function(t){return!!t.hasFocus})).indexOf(!0);n=(n+=r===ac?-1:1)>=o.length?0:n<0?o.length-1:n,Qa(o[n])}},setLive:function(t){var e=this;t?this.$nextTick((function(){ka((function(){e.isLive=!0}))})):this.isLive=!1}},render:function(t){var e=this;if(this.hidden)return t();var r=this.valueId,o=this.computedAriaLabelledby,n=[],i=function(o,i,a){var l=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},s=e.safeId("_spinbutton_".concat(i,"_"))||null;return n.push(s),t(Px,{class:a,props:iy({id:s,placeholder:"--",vertical:!0,required:!0,disabled:e.disabled,readonly:e.readonly,locale:e.computedLocale,labelIncrement:e.labelIncrement,labelDecrement:e.labelDecrement,wrap:!0,ariaControls:r,min:0},l),scopedSlots:e.spinScopedSlots,on:{change:o},key:i,ref:"spinners",refInFor:!0})},a=function(){return t("div",{staticClass:"d-flex flex-column",class:{"text-muted":e.disabled||e.readonly},attrs:{"aria-hidden":"true"}},[t(Ms,{props:{shiftV:4,scale:.5}}),t(Ms,{props:{shiftV:-4,scale:.5}})])},l=[];l.push(i(this.setHours,"hours","b-time-hours",{value:this.modelHours,max:23,step:1,formatterFn:this.formatHours,ariaLabel:this.labelHours})),l.push(a()),l.push(i(this.setMinutes,"minutes","b-time-minutes",{value:this.modelMinutes,max:59,step:this.minutesStep||1,formatterFn:this.formatMinutes,ariaLabel:this.labelMinutes})),this.showSeconds&&(l.push(a()),l.push(i(this.setSeconds,"seconds","b-time-seconds",{value:this.modelSeconds,max:59,step:this.secondsStep||1,formatterFn:this.formatSeconds,ariaLabel:this.labelSeconds}))),this.is12Hour&&l.push(i(this.setAmpm,"ampm","b-time-ampm",{value:this.modelAmpm,max:1,formatterFn:this.formatAmpm,ariaLabel:this.labelAmpm,required:!1})),l=t("div",{staticClass:"d-flex align-items-center justify-content-center mx-auto",attrs:{role:"group",tabindex:this.disabled||this.readonly?null:"-1","aria-labelledby":o},on:{keydown:this.onSpinLeftRight,click:function(t){t.target===t.currentTarget&&e.focus()}}},l);var s=t("output",{staticClass:"form-control form-control-sm text-center",class:{disabled:this.disabled||this.readonly},attrs:{id:r,role:"status",for:n.filter(He).join(" ")||null,tabindex:this.disabled?null:"-1","aria-live":this.isLive?"polite":"off","aria-atomic":"true"},on:{click:this.focus,focus:this.focus}},[t("bdi",this.formattedTimeString),this.computedHMS?t("span",{staticClass:"sr-only"}," (".concat(this.labelSelected,") ")):""]),c=t("header",{staticClass:"b-time-header",class:{"sr-only":this.hideHeader}},[s]),d=this.normalizeSlot();return d=d?t("footer",{staticClass:"b-time-footer"},d):t(),t("div",{staticClass:"b-time d-inline-flex flex-column text-center",attrs:{role:"group",lang:this.computedLang||null,"aria-labelledby":o||null,"aria-disabled":this.disabled?"true":null,"aria-readonly":this.readonly&&!this.disabled?"true":null}},[c,l,d])}});function xy(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function yy(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?xy(Object(r),!0).forEach((function(e){wy(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):xy(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function wy(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var ky=kl("value",{type:gi,defaultValue:""}),Oy=ky.mixin,jy=ky.props,Sy=ky.prop,Py=ky.event,Ty=Be(gy,["hidden","id","value"]),_y=Be(bg,["formattedValue","id","lang","rtl","value"]),Cy=vl(Ie(yy(yy(yy(yy(yy({},np),jy),Ty),_y),{},{closeButtonVariant:fl(gi,"outline-secondary"),labelCloseButton:fl(gi,"Close"),labelNowButton:fl(gi,"Select now"),labelResetButton:fl(gi,"Reset"),noCloseButton:fl(pi,!1),nowButton:fl(pi,!1),nowButtonVariant:fl(gi,"outline-primary"),resetButton:fl(pi,!1),resetButtonVariant:fl(gi,"outline-danger"),resetValue:fl(Si)})),So),$y=o.default.extend({name:So,mixins:[ip,Oy],props:Cy,data:function(){return{localHMS:this[Sy]||"",localLocale:null,isRTL:!1,formattedValue:"",isVisible:!1}},computed:{computedLang:function(){return(this.localLocale||"").replace(/-u-.*$/i,"")||null}},watch:(sy={},wy(sy,Sy,(function(t){this.localHMS=t||""})),wy(sy,"localHMS",(function(t){this.isVisible&&this.$emit(Py,t||"")})),sy),methods:{focus:function(){this.disabled||Qa(this.$refs.control)},blur:function(){this.disabled||tl(this.$refs.control)},setAndClose:function(t){var e=this;this.localHMS=t,this.$nextTick((function(){e.$refs.control.hide(!0)}))},onInput:function(t){this.localHMS!==t&&(this.localHMS=t)},onContext:function(t){var e=t.isRTL,r=t.locale,o=t.value,n=t.formatted;this.isRTL=e,this.localLocale=r,this.formattedValue=n,this.localHMS=o||"",this.$emit(Cn,t)},onNowButton:function(){var t=new Date,e=[t.getHours(),t.getMinutes(),this.showSeconds?t.getSeconds():0].map((function(t){return"00".concat(t||"").slice(-2)})).join(":");this.setAndClose(e)},onResetButton:function(){this.setAndClose(this.resetValue)},onCloseButton:function(){this.$refs.control.hide(!0)},onShow:function(){this.isVisible=!0},onShown:function(){var t=this;this.$nextTick((function(){Qa(t.$refs.time),t.$emit(ei)}))},onHidden:function(){this.isVisible=!1,this.$emit(Vn)},defaultButtonFn:function(t){var e=t.isHovered,r=t.hasFocus;return this.$createElement(e||r?Vs:Rs,{attrs:{"aria-hidden":"true"}})}},render:function(t){var e=this.localHMS,r=this.disabled,o=this.readonly,n=this.$props,i=de(this.placeholder)?this.labelNoTimeSelected:this.placeholder,a=[];if(this.nowButton){var l=this.labelNowButton;a.push(t(Vc,{props:{size:"sm",disabled:r||o,variant:this.nowButtonVariant},attrs:{"aria-label":l||null},on:{click:this.onNowButton},key:"now-btn"},l))}if(this.resetButton){a.length>0&&a.push(t("span"," "));var s=this.labelResetButton;a.push(t(Vc,{props:{size:"sm",disabled:r||o,variant:this.resetButtonVariant},attrs:{"aria-label":s||null},on:{click:this.onResetButton},key:"reset-btn"},s))}if(!this.noCloseButton){a.length>0&&a.push(t("span"," "));var c=this.labelCloseButton;a.push(t(Vc,{props:{size:"sm",disabled:r,variant:this.closeButtonVariant},attrs:{"aria-label":c||null},on:{click:this.onCloseButton},key:"close-btn"},c))}a.length>0&&(a=[t("div",{staticClass:"b-form-date-controls d-flex flex-wrap",class:{"justify-content-between":a.length>1,"justify-content-end":a.length<2}},a)]);var d=t(vy,{staticClass:"b-form-time-control",props:yy(yy({},hl(Ty,n)),{},{value:e,hidden:!this.isVisible}),on:{input:this.onInput,context:this.onContext},ref:"time"},a);return t(hg,{staticClass:"b-form-timepicker",props:yy(yy({},hl(_y,n)),{},{id:this.safeId(),value:e,formattedValue:e?this.formattedValue:"",placeholder:i,rtl:this.isRTL,lang:this.computedLang}),on:{show:this.onShow,shown:this.onShown,hidden:this.onHidden},scopedSlots:wy({},Bi,this.$scopedSlots["button-content"]||this.defaultButtonFn),ref:"control"},[d])}}),Dy=lr({components:{BFormTimepicker:$y,BTimepicker:$y}}),Ey=lr({components:{BImg:Mp,BImgLazy:du}}),zy=vl({tag:fl(gi,"div")},Bo),By=o.default.extend({name:Bo,functional:!0,props:zy,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t(r.tag,xr(o,{staticClass:"input-group-text"}),n)}}),Ay=vl({append:fl(pi,!1),id:fl(gi),isText:fl(pi,!1),tag:fl(gi,"div")},Do),Iy=o.default.extend({name:Do,functional:!0,props:Ay,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=r.append;return t(r.tag,xr(o,{class:{"input-group-append":i,"input-group-prepend":!i},attrs:{id:r.id}}),r.isText?[t(By,n)]:n)}});function Fy(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Ly(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Fy(Object(r),!0).forEach((function(e){My(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Fy(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function My(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Ry=vl(Be(Ay,["append"]),Eo),Vy=o.default.extend({name:Eo,functional:!0,props:Ry,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t(Iy,xr(o,{props:Ly(Ly({},r),{},{append:!0})}),n)}});function Ny(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Hy(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ny(Object(r),!0).forEach((function(e){Uy(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ny(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Uy(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Wy=vl(Be(Ay,["append"]),zo),Gy=o.default.extend({name:zo,functional:!0,props:Wy,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t(Iy,xr(o,{props:Hy(Hy({},r),{},{append:!1})}),n)}}),qy=vl({append:fl(gi),appendHtml:fl(gi),id:fl(gi),prepend:fl(gi),prependHtml:fl(gi),size:fl(gi),tag:fl(gi,"div")},$o),Yy=lr({components:{BInputGroup:o.default.extend({name:$o,functional:!0,props:qy,render:function(t,e){var r=e.props,o=e.data,n=e.slots,i=e.scopedSlots,a=r.prepend,l=r.prependHtml,s=r.append,c=r.appendHtml,d=r.size,p=i||{},u=n(),m={},f=t(),b=Ol(qi,p,u);(b||a||l)&&(f=t(Gy,[b?jl(qi,m,p,u):t(By,{domProps:ld(l,a)})]));var h,g,v,x=t(),y=Ol(Di,p,u);return(y||s||c)&&(x=t(Vy,[y?jl(Di,m,p,u):t(By,{domProps:ld(c,s)})])),t(r.tag,xr(o,{staticClass:"input-group",class:(h={},g="input-group-".concat(d),v=d,g in h?Object.defineProperty(h,g,{value:v,enumerable:!0,configurable:!0,writable:!0}):h[g]=v,h),attrs:{id:r.id||null,role:"group"}}),[f,jl(Ii,m,p,u),x])}}),BInputGroupAddon:Iy,BInputGroupPrepend:Gy,BInputGroupAppend:Vy,BInputGroupText:By}}),Ky=vl({fluid:fl(ji,!1),tag:fl(gi,"div")},qr),Xy=o.default.extend({name:qr,functional:!0,props:Ky,render:function(t,e){var r,o,n,i=e.props,a=e.data,l=e.children,s=i.fluid;return t(i.tag,xr(a,{class:(r={container:!(s||""===s),"container-fluid":!0===s||""===s},o="container-".concat(s),n=s&&!0!==s,o in r?Object.defineProperty(r,o,{value:n,enumerable:!0,configurable:!0,writable:!0}):r[o]=n,r)}),l)}});function Jy(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Zy=vl({bgVariant:fl(gi),borderVariant:fl(gi),containerFluid:fl(ji,!1),fluid:fl(pi,!1),header:fl(gi),headerHtml:fl(gi),headerLevel:fl(Ti,3),headerTag:fl(gi,"h1"),lead:fl(gi),leadHtml:fl(gi),leadTag:fl(gi,"p"),tag:fl(gi,"div"),textVariant:fl(gi)},Ao),Qy=lr({components:{BJumbotron:o.default.extend({name:Ao,functional:!0,props:Zy,render:function(t,e){var r,o=e.props,n=e.data,i=e.slots,a=e.scopedSlots,l=o.header,s=o.headerHtml,c=o.lead,d=o.leadHtml,p=o.textVariant,u=o.bgVariant,m=o.borderVariant,f=a||{},b=i(),h={},g=t(),v=Ol(Vi,f,b);if(v||l||s){var x=o.headerLevel;g=t(o.headerTag,{class:Jy({},"display-".concat(x),x),domProps:v?{}:ld(s,l)},jl(Vi,h,f,b))}var y=t(),w=Ol(Hi,f,b);(w||c||d)&&(y=t(o.leadTag,{staticClass:"lead",domProps:w?{}:ld(d,c)},jl(Hi,h,f,b)));var k=[g,y,jl(Ii,h,f,b)];return o.fluid&&(k=[t(Xy,{props:{fluid:o.containerFluid}},k)]),t(o.tag,xr(n,{staticClass:"jumbotron",class:(r={"jumbotron-fluid":o.fluid},Jy(r,"text-".concat(p),p),Jy(r,"bg-".concat(u),u),Jy(r,"border-".concat(m),m),Jy(r,"border",m),r)}),k)}})}});function tw(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function ew(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?tw(Object(r),!0).forEach((function(e){rw(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):tw(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function rw(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var ow=["start","end","center"],nw=el((function(t,e){return(e=ha(ba(e)))?ga(["row-cols",t,e].filter(He).join("-")):null})),iw=el((function(t){return ga(t.replace("cols",""))})),aw=[],lw=lr({components:{BContainer:Xy,BRow:{name:on,functional:!0,get props(){var t;return delete this.props,this.props=(t=ll().reduce((function(t,e){return t[ml(e,"cols")]=fl(Ti),t}),Pe(null)),aw=$e(t),vl(Ie(ew(ew({},t),{},{alignContent:fl(gi,null,(function(t){return ra(oa(ow,"between","around","stretch"),t)})),alignH:fl(gi,null,(function(t){return ra(oa(ow,"between","around"),t)})),alignV:fl(gi,null,(function(t){return ra(oa(ow,"baseline","stretch"),t)})),noGutters:fl(pi,!1),tag:fl(gi,"div")})),on)),this.props},render:function(t,e){var r,o=e.props,n=e.data,i=e.children,a=o.alignV,l=o.alignH,s=o.alignContent,c=[];return aw.forEach((function(t){var e=nw(iw(t),o[t]);e&&c.push(e)})),c.push((rw(r={"no-gutters":o.noGutters},"align-items-".concat(a),a),rw(r,"justify-content-".concat(l),l),rw(r,"align-content-".concat(s),s),r)),t(o.tag,xr(n,{staticClass:"row",class:c}),i)}},BCol:tv,BFormRow:ah}}),sw=lr({components:{BLink:Tc}}),cw=vl({flush:fl(pi,!1),horizontal:fl(ji,!1),tag:fl(gi,"div")},Fo),dw=o.default.extend({name:Fo,functional:!0,props:cw,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=""===r.horizontal||r.horizontal;i=!r.flush&&i;var a,l,s,c={staticClass:"list-group",class:(a={"list-group-flush":r.flush,"list-group-horizontal":!0===i},l="list-group-horizontal-".concat(i),s=me(i),l in a?Object.defineProperty(a,l,{value:s,enumerable:!0,configurable:!0,writable:!0}):a[l]=s,a)};return t(r.tag,xr(o,c),n)}});function pw(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function uw(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?pw(Object(r),!0).forEach((function(e){mw(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):pw(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function mw(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var fw=["a","router-link","button","b-link"],bw=Be(Pc,["event","routerTag"]);delete bw.href.default,delete bw.to.default;var hw=vl(Ie(uw(uw({},bw),{},{action:fl(pi,!1),button:fl(pi,!1),tag:fl(gi,"div"),variant:fl(gi)})),Lo),gw=lr({components:{BListGroup:dw,BListGroupItem:o.default.extend({name:Lo,functional:!0,props:hw,render:function(t,e){var r,o=e.props,n=e.data,i=e.children,a=o.button,l=o.variant,s=o.active,c=o.disabled,d=xs(o),p=a?"button":d?Tc:o.tag,u=!!(o.action||d||a||ra(fw,o.tag)),m={},f={};return Pa(p,"button")?(n.attrs&&n.attrs.type||(m.type="button"),o.disabled&&(m.disabled=!0)):f=hl(bw,o),t(p,xr(n,{attrs:m,props:f,staticClass:"list-group-item",class:(r={},mw(r,"list-group-item-".concat(l),l),mw(r,"list-group-item-action",u),mw(r,"active",s),mw(r,"disabled",c),r)}),i)}})}}),vw=vl({right:fl(pi,!1),tag:fl(gi,"div"),verticalAlign:fl(gi,"top")},Ro),xw=o.default.extend({name:Ro,functional:!0,props:vw,render:function(t,e){var r,o,n,i=e.props,a=e.data,l=e.children,s=i.verticalAlign,c="top"===s?"start":"bottom"===s?"end":s;return t(i.tag,xr(a,{staticClass:"media-aside",class:(r={"media-aside-right":i.right},o="align-self-".concat(c),n=c,o in r?Object.defineProperty(r,o,{value:n,enumerable:!0,configurable:!0,writable:!0}):r[o]=n,r)}),l)}}),yw=vl({tag:fl(gi,"div")},Vo),ww=o.default.extend({name:Vo,functional:!0,props:yw,render:function(t,e){var r=e.props,o=e.data,n=e.children;return t(r.tag,xr(o,{staticClass:"media-body"}),n)}}),kw=vl({noBody:fl(pi,!1),rightAlign:fl(pi,!1),tag:fl(gi,"div"),verticalAlign:fl(gi,"top")},Mo),Ow=lr({components:{BMedia:o.default.extend({name:Mo,functional:!0,props:kw,render:function(t,e){var r=e.props,o=e.data,n=e.slots,i=e.scopedSlots,a=e.children,l=r.noBody,s=r.rightAlign,c=r.verticalAlign,d=l?a:[];if(!l){var p={},u=n(),m=i||{};d.push(t(ww,jl(Ii,p,m,u)));var f=jl("aside",p,m,u);f&&d[s?"push":"unshift"](t(xw,{props:{right:s,verticalAlign:c}},f))}return t(r.tag,xr(o,{staticClass:"media"}),d)}}),BMediaAside:xw,BMediaBody:ww}}),jw=o.default.extend({created:function(){var t=this;ot&&(this.$_bv_documentHandlers_={},this.$once(ni,(function(){var e=t.$_bv_documentHandlers_||{};delete t.$_bv_documentHandlers_,$e(e).forEach((function(t){(e[t]||[]).forEach((function(e){return _l(document,t,e,si)}))}))})))},methods:{listenDocument:function(t,e,r){t?this.listenOnDocument(e,r):this.listenOffDocument(e,r)},listenOnDocument:function(t,e){this.$_bv_documentHandlers_&&me(t)&&pe(e)&&(this.$_bv_documentHandlers_[t]=this.$_bv_documentHandlers_[t]||[],ra(this.$_bv_documentHandlers_[t],e)||(this.$_bv_documentHandlers_[t].push(e),Tl(document,t,e,si)))},listenOffDocument:function(t,e){this.$_bv_documentHandlers_&&me(t)&&pe(e)&&(_l(document,t,e,si),this.$_bv_documentHandlers_[t]=(this.$_bv_documentHandlers_[t]||[]).filter((function(t){return t!==e})))}}}),Sw=o.default.extend({beforeCreate:function(){this.$_bv_windowHandlers_={}},beforeDestroy:function(){if(ot){var t=this.$_bv_windowHandlers_;delete this.$_bv_windowHandlers_,$e(t).forEach((function(e){(t[e]||[]).forEach((function(t){return _l(window,e,t,si)}))}))}},methods:{listenWindow:function(t,e,r){t?this.listenOnWindow(e,r):this.listenOffWindow(e,r)},listenOnWindow:function(t,e){ot&&this.$_bv_windowHandlers_&&me(t)&&pe(e)&&(this.$_bv_windowHandlers_[t]=this.$_bv_windowHandlers_[t]||[],ra(this.$_bv_windowHandlers_[t],e)||(this.$_bv_windowHandlers_[t].push(e),Tl(window,t,e,si)))},listenOffWindow:function(t,e){ot&&this.$_bv_windowHandlers_&&me(t)&&pe(e)&&(_l(window,t,e,si),this.$_bv_windowHandlers_[t]=(this.$_bv_windowHandlers_[t]||[]).filter((function(t){return t!==e})))}}}),Pw=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return t&&t.$options._scopeId||e},Tw=o.default.extend({computed:{scopedStyleAttrs:function(){var t,e,r=Pw(this.$parent);return r?("",(e=r)in(t={})?Object.defineProperty(t,e,{value:"",enumerable:!0,configurable:!0,writable:!0}):t[e]="",t):{}}}}),_w=o.default.extend({abstract:!0,name:"BVTransporterTarget",props:{nodes:fl(vi)},data:function(t){return{updatedNodes:t.nodes}},destroyed:function(){var t;(t=this.$el)&&t.parentNode&&t.parentNode.removeChild(t)},render:function(t){var e=this.updatedNodes,r=pe(e)?e({}):e;return(r=oa(r).filter(He))&&r.length>0&&!r[0].text?r[0]:t()}}),Cw={container:fl([oe,gi],"body"),disabled:fl(pi,!1),tag:fl(gi,"div")},$w=o.default.extend({name:"BVTransporter",mixins:[Sl],props:Cw,watch:{disabled:{immediate:!0,handler:function(t){t?this.unmountTarget():this.$nextTick(this.mountTarget)}}},created:function(){this.$_defaultFn=null,this.$_target=null},beforeMount:function(){this.mountTarget()},updated:function(){this.updateTarget()},beforeDestroy:function(){this.unmountTarget(),this.$_defaultFn=null},methods:{getContainer:function(){if(ot){var t=this.container;return me(t)?Ea(t):t}return null},mountTarget:function(){if(!this.$_target){var t=this.getContainer();if(t){var e=document.createElement("div");t.appendChild(e),this.$_target=new _w({el:e,parent:this,propsData:{nodes:oa(this.normalizeSlot())}})}}},updateTarget:function(){if(ot&&this.$_target){var t=this.$scopedSlots.default;this.disabled||(t&&this.$_defaultFn!==t?this.$_target.updatedNodes=t:t||(this.$_target.updatedNodes=this.$slots.default)),this.$_defaultFn=t}},unmountTarget:function(){this.$_target&&this.$_target.$destroy(),this.$_target=null}},render:function(t){if(this.disabled){var e=oa(this.normalizeSlot()).filter(He);if(e.length>0&&!e[0].text)return e[0]}return t()}});function Dw(t){return(Dw="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Ew(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function zw(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ew(Object(r),!0).forEach((function(e){Bw(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ew(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Bw(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Aw(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Iw(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function Fw(t,e,r){return(Fw="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,e,r){var o=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Vw(t)););return t}(t,e);if(o){var n=Object.getOwnPropertyDescriptor(o,e);return n.get?n.get.call(r):n.value}})(t,e,r||t)}function Lw(t,e){return(Lw=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function Mw(t,e){return!e||"object"!==Dw(e)&&"function"!=typeof e?Rw(t):e}function Rw(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Vw(t){return(Vw=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var Nw=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&Lw(t,e)}(a,t);var e,r,o,n,i=(o=a,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Vw(o);if(n){var r=Vw(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return Mw(this,t)});function a(t){var e,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Aw(this,a),e=i.call(this,t,r),Te(Rw(e),{trigger:{enumerable:!0,configurable:!1,writable:!1}}),e}return e=a,r=[{key:"Defaults",get:function(){return zw(zw({},Fw(Vw(a),"Defaults",this)),{},{trigger:null})}}],null&&Iw(e.prototype,null),r&&Iw(e,r),a}(Hf),Hw=new(o.default.extend({data:function(){return{modals:[],baseZIndex:null,scrollbarWidth:null,isBodyOverflowing:!1}},computed:{modalCount:function(){return this.modals.length},modalsAreOpen:function(){return this.modalCount>0}},watch:{modalCount:function(t,e){ot&&(this.getScrollbarWidth(),t>0&&0===e?(this.checkScrollbar(),this.setScrollbar(),Fa(document.body,"modal-open")):0===t&&e>0&&(this.resetScrollbar(),La(document.body,"modal-open")),Ra(document.body,"data-modal-open-count",String(t)))},modals:function(t){var e=this;this.checkScrollbar(),ka((function(){e.updateModals(t||[])}))}},methods:{registerModal:function(t){var e=this;t&&-1===this.modals.indexOf(t)&&(this.modals.push(t),t.$once(ni,(function(){e.unregisterModal(t)})))},unregisterModal:function(t){var e=this.modals.indexOf(t);e>-1&&(this.modals.splice(e,1),t._isBeingDestroyed||t._isDestroyed||this.resetModal(t))},getBaseZIndex:function(){if(ce(this.baseZIndex)&&ot){var t=document.createElement("div");Fa(t,"modal-backdrop"),Fa(t,"d-none"),Ua(t,"display","none"),document.body.appendChild(t),this.baseZIndex=la(Ya(t).zIndex,1040),document.body.removeChild(t)}return this.baseZIndex||1040},getScrollbarWidth:function(){if(ce(this.scrollbarWidth)&&ot){var t=document.createElement("div");Fa(t,"modal-scrollbar-measure"),document.body.appendChild(t),this.scrollbarWidth=qa(t).width-t.clientWidth,document.body.removeChild(t)}return this.scrollbarWidth||0},updateModals:function(t){var e=this,r=this.getBaseZIndex(),o=this.getScrollbarWidth();t.forEach((function(t,n){t.zIndex=r+n,t.scrollbarWidth=o,t.isTop=n===e.modals.length-1,t.isBodyOverflowing=e.isBodyOverflowing}))},resetModal:function(t){t&&(t.zIndex=this.getBaseZIndex(),t.isTop=!0,t.isBodyOverflowing=!1)},checkScrollbar:function(){var t=qa(document.body),e=t.left,r=t.right;this.isBodyOverflowing=e+r<window.innerWidth},setScrollbar:function(){var t=document.body;if(t._paddingChangedForModal=t._paddingChangedForModal||[],t._marginChangedForModal=t._marginChangedForModal||[],this.isBodyOverflowing){var e=this.scrollbarWidth;Da(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top").forEach((function(r){var o=Ga(r,"paddingRight")||"";Ra(r,"data-padding-right",o),Ua(r,"paddingRight","".concat(sa(Ya(r).paddingRight,0)+e,"px")),t._paddingChangedForModal.push(r)})),Da(".sticky-top").forEach((function(r){var o=Ga(r,"marginRight")||"";Ra(r,"data-margin-right",o),Ua(r,"marginRight","".concat(sa(Ya(r).marginRight,0)-e,"px")),t._marginChangedForModal.push(r)})),Da(".navbar-toggler").forEach((function(r){var o=Ga(r,"marginRight")||"";Ra(r,"data-margin-right",o),Ua(r,"marginRight","".concat(sa(Ya(r).marginRight,0)+e,"px")),t._marginChangedForModal.push(r)}));var r=Ga(t,"paddingRight")||"";Ra(t,"data-padding-right",r),Ua(t,"paddingRight","".concat(sa(Ya(t).paddingRight,0)+e,"px"))}},resetScrollbar:function(){var t=document.body;t._paddingChangedForModal&&t._paddingChangedForModal.forEach((function(t){Ha(t,"data-padding-right")&&(Ua(t,"paddingRight",Na(t,"data-padding-right")||""),Va(t,"data-padding-right"))})),t._marginChangedForModal&&t._marginChangedForModal.forEach((function(t){Ha(t,"data-margin-right")&&(Ua(t,"marginRight",Na(t,"data-margin-right")||""),Va(t,"data-margin-right"))})),t._paddingChangedForModal=null,t._marginChangedForModal=null,Ha(t,"data-padding-right")&&(Ua(t,"paddingRight",Na(t,"data-padding-right")||""),Va(t,"data-padding-right"))}}}));function Uw(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Ww(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Uw(Object(r),!0).forEach((function(e){Gw(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Uw(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Gw(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var qw=kl("visible",{type:pi,defaultValue:!1,event:Pn}),Yw=qw.mixin,Kw=qw.props,Xw=qw.prop,Jw=qw.event,Zw="FORCE",Qw="cancel",tk="headerclose",ek="ok",rk=[Qw,tk,ek],ok={subtree:!0,childList:!0,characterData:!0,attributes:!0,attributeFilter:["style","class"]},nk=vl(Ie(Ww(Ww(Ww({},np),Kw),{},{ariaLabel:fl(gi),autoFocusButton:fl(gi,null,(function(t){return de(t)||ra(rk,t)})),bodyBgVariant:fl(gi),bodyClass:fl(yi),bodyTextVariant:fl(gi),busy:fl(pi,!1),buttonSize:fl(gi),cancelDisabled:fl(pi,!1),cancelTitle:fl(gi,"Cancel"),cancelTitleHtml:fl(gi),cancelVariant:fl(gi,"secondary"),centered:fl(pi,!1),contentClass:fl(yi),dialogClass:fl(yi),footerBgVariant:fl(gi),footerBorderVariant:fl(gi),footerClass:fl(yi),footerTextVariant:fl(gi),headerBgVariant:fl(gi),headerBorderVariant:fl(gi),headerClass:fl(yi),headerCloseContent:fl(gi,"&times;"),headerCloseLabel:fl(gi,"Close"),headerCloseVariant:fl(gi),headerTextVariant:fl(gi),hideBackdrop:fl(pi,!1),hideFooter:fl(pi,!1),hideHeader:fl(pi,!1),hideHeaderClose:fl(pi,!1),ignoreEnforceFocusSelector:fl(wi),lazy:fl(pi,!1),modalClass:fl(yi),noCloseOnBackdrop:fl(pi,!1),noCloseOnEsc:fl(pi,!1),noEnforceFocus:fl(pi,!1),noFade:fl(pi,!1),noStacking:fl(pi,!1),okDisabled:fl(pi,!1),okOnly:fl(pi,!1),okTitle:fl(gi,"OK"),okTitleHtml:fl(gi),okVariant:fl(gi,"primary"),returnFocus:fl([oe,bi,gi]),scrollable:fl(pi,!1),size:fl(gi,"md"),static:fl(pi,!1),title:fl(gi),titleClass:fl(yi),titleHtml:fl(gi),titleSrOnly:fl(pi,!1),titleTag:fl(gi,"h5")})),No),ik=o.default.extend({name:No,mixins:[bc,ip,Yw,jw,hc,Sw,Sl,Tw],inheritAttrs:!1,props:nk,data:function(){return{isHidden:!0,isVisible:!1,isTransitioning:!1,isShow:!1,isBlock:!1,isOpening:!1,isClosing:!1,ignoreBackdropClick:!1,isModalOverflowing:!1,scrollbarWidth:0,zIndex:Hw.getBaseZIndex(),isTop:!0,isBodyOverflowing:!1}},computed:{modalId:function(){return this.safeId()},modalOuterId:function(){return this.safeId("__BV_modal_outer_")},modalHeaderId:function(){return this.safeId("__BV_modal_header_")},modalBodyId:function(){return this.safeId("__BV_modal_body_")},modalTitleId:function(){return this.safeId("__BV_modal_title_")},modalContentId:function(){return this.safeId("__BV_modal_content_")},modalFooterId:function(){return this.safeId("__BV_modal_footer_")},modalBackdropId:function(){return this.safeId("__BV_modal_backdrop_")},modalClasses:function(){return[{fade:!this.noFade,show:this.isShow},this.modalClass]},modalStyles:function(){var t="".concat(this.scrollbarWidth,"px");return{paddingLeft:!this.isBodyOverflowing&&this.isModalOverflowing?t:"",paddingRight:this.isBodyOverflowing&&!this.isModalOverflowing?t:"",display:this.isBlock?"block":"none"}},dialogClasses:function(){var t;return[(t={},Gw(t,"modal-".concat(this.size),this.size),Gw(t,"modal-dialog-centered",this.centered),Gw(t,"modal-dialog-scrollable",this.scrollable),t),this.dialogClass]},headerClasses:function(){var t;return[(t={},Gw(t,"bg-".concat(this.headerBgVariant),this.headerBgVariant),Gw(t,"text-".concat(this.headerTextVariant),this.headerTextVariant),Gw(t,"border-".concat(this.headerBorderVariant),this.headerBorderVariant),t),this.headerClass]},titleClasses:function(){return[{"sr-only":this.titleSrOnly},this.titleClass]},bodyClasses:function(){var t;return[(t={},Gw(t,"bg-".concat(this.bodyBgVariant),this.bodyBgVariant),Gw(t,"text-".concat(this.bodyTextVariant),this.bodyTextVariant),t),this.bodyClass]},footerClasses:function(){var t;return[(t={},Gw(t,"bg-".concat(this.footerBgVariant),this.footerBgVariant),Gw(t,"text-".concat(this.footerTextVariant),this.footerTextVariant),Gw(t,"border-".concat(this.footerBorderVariant),this.footerBorderVariant),t),this.footerClass]},modalOuterStyle:function(){return{position:"absolute",zIndex:this.zIndex}},slotScope:function(){return{cancel:this.onCancel,close:this.onClose,hide:this.hide,ok:this.onOk,visible:this.isVisible}},computeIgnoreEnforceFocusSelector:function(){return oa(this.ignoreEnforceFocusSelector).filter(He).join(",").trim()},computedAttrs:function(){return Ww(Ww(Ww({},this.static?{}:this.scopedStyleAttrs),this.bvAttrs),{},{id:this.modalOuterId})},computedModalAttrs:function(){var t=this.isVisible,e=this.ariaLabel;return{id:this.modalId,role:"dialog","aria-hidden":t?null:"true","aria-modal":t?"true":null,"aria-label":e,"aria-labelledby":this.hideHeader||e||!(this.hasNormalizedSlot(Gi)||this.titleHtml||this.title)?null:this.modalTitleId,"aria-describedby":this.modalBodyId}}},watch:Gw({},Xw,(function(t,e){t!==e&&this[t?"show":"hide"]()})),created:function(){this.$_observer=null,this.$_returnFocus=this.returnFocus||null},mounted:function(){this.zIndex=Hw.getBaseZIndex(),this.listenOnRoot(zl(No,ti),this.showHandler),this.listenOnRoot(zl(No,Nn),this.hideHandler),this.listenOnRoot(zl(No,oi),this.toggleHandler),this.listenOnRoot(El(No,ti),this.modalListener),!0===this[Xw]&&this.$nextTick(this.show)},beforeDestroy:function(){this.setObserver(!1),this.isVisible&&(this.isVisible=!1,this.isShow=!1,this.isTransitioning=!1)},methods:{setObserver:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,t&&(this.$_observer=ju(this.$refs.content,this.checkModalOverflow.bind(this),ok))},updateModel:function(t){t!==this[Xw]&&this.$emit(Jw,t)},buildEvent:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new Nw(t,Ww(Ww({cancelable:!1,target:this.$refs.modal||this.$el||null,relatedTarget:null,trigger:null},e),{},{vueTarget:this,componentId:this.modalId}))},show:function(){if(!this.isVisible&&!this.isOpening)if(this.isClosing)this.$once(Vn,this.show);else{this.isOpening=!0,this.$_returnFocus=this.$_returnFocus||this.getActiveElement();var t=this.buildEvent(ti,{cancelable:!0});if(this.emitEvent(t),t.defaultPrevented||this.isVisible)return this.isOpening=!1,void this.updateModel(!1);this.doShow()}},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(this.isVisible&&!this.isClosing){this.isClosing=!0;var e=this.buildEvent(Nn,{cancelable:t!==Zw,trigger:t||null});if(t===ek?this.$emit("ok",e):t===Qw?this.$emit(Sn,e):t===tk&&this.$emit(_n,e),this.emitEvent(e),e.defaultPrevented||!this.isVisible)return this.isClosing=!1,void this.updateModel(!0);this.setObserver(!1),this.isVisible=!1,this.updateModel(!1)}},toggle:function(t){t&&(this.$_returnFocus=t),this.isVisible?this.hide("toggle"):this.show()},getActiveElement:function(){var t=Sa(ot?[document.body]:[]);return t&&t.focus?t:null},doShow:function(){var t=this;Hw.modalsAreOpen&&this.noStacking?this.listenOnRootOnce(El(No,Vn),this.doShow):(Hw.registerModal(this),this.isHidden=!1,this.$nextTick((function(){t.isVisible=!0,t.isOpening=!1,t.updateModel(!0),t.$nextTick((function(){t.setObserver(!0)}))})))},onBeforeEnter:function(){this.isTransitioning=!0,this.setResizeEvent(!0)},onEnter:function(){var t=this;this.isBlock=!0,ka((function(){ka((function(){t.isShow=!0}))}))},onAfterEnter:function(){var t=this;this.checkModalOverflow(),this.isTransitioning=!1,ka((function(){t.emitEvent(t.buildEvent(ei)),t.setEnforceFocus(!0),t.$nextTick((function(){t.focusFirst()}))}))},onBeforeLeave:function(){this.isTransitioning=!0,this.setResizeEvent(!1),this.setEnforceFocus(!1)},onLeave:function(){this.isShow=!1},onAfterLeave:function(){var t=this;this.isBlock=!1,this.isTransitioning=!1,this.isModalOverflowing=!1,this.isHidden=!0,this.$nextTick((function(){t.isClosing=!1,Hw.unregisterModal(t),t.returnFocusTo(),t.emitEvent(t.buildEvent(Vn))}))},emitEvent:function(t){var e=t.type;this.emitOnRoot(El(No,e),t,t.componentId),this.$emit(e,t)},onDialogMousedown:function(){var t=this,e=this.$refs.modal;Tl(e,"mouseup",(function r(o){_l(e,"mouseup",r,si),o.target===e&&(t.ignoreBackdropClick=!0)}),si)},onClickOut:function(t){this.ignoreBackdropClick?this.ignoreBackdropClick=!1:this.isVisible&&!this.noCloseOnBackdrop&&Aa(document.body,t.target)&&(Aa(this.$refs.content,t.target)||this.hide("backdrop"))},onOk:function(){this.hide(ek)},onCancel:function(){this.hide(Qw)},onClose:function(){this.hide(tk)},onEsc:function(t){27===t.keyCode&&this.isVisible&&!this.noCloseOnEsc&&this.hide("esc")},focusHandler:function(t){var e=this.$refs.content,r=t.target;if(!(this.noEnforceFocus||!this.isTop||!this.isVisible||!e||document===r||Aa(e,r)||this.computeIgnoreEnforceFocusSelector&&Ba(this.computeIgnoreEnforceFocusSelector,r,!0))){var o=Za(this.$refs.content),n=this.$refs["bottom-trap"],i=this.$refs["top-trap"];if(n&&r===n){if(Qa(o[0]))return}else if(i&&r===i&&Qa(o[o.length-1]))return;Qa(e,{preventScroll:!0})}},setEnforceFocus:function(t){this.listenDocument(t,"focusin",this.focusHandler)},setResizeEvent:function(t){this.listenWindow(t,"resize",this.checkModalOverflow),this.listenWindow(t,"orientationchange",this.checkModalOverflow)},showHandler:function(t,e){t===this.modalId&&(this.$_returnFocus=e||this.getActiveElement(),this.show())},hideHandler:function(t){t===this.modalId&&this.hide("event")},toggleHandler:function(t,e){t===this.modalId&&this.toggle(e)},modalListener:function(t){this.noStacking&&t.vueTarget!==this&&this.hide()},focusFirst:function(){var t=this;ot&&ka((function(){var e=t.$refs.modal,r=t.$refs.content,o=t.getActiveElement();if(e&&r&&(!o||!Aa(r,o))){var n=t.$refs["ok-button"],i=t.$refs["cancel-button"],a=t.$refs["close-button"],l=t.autoFocusButton,s=l===ek&&n?n.$el||n:l===Qw&&i?i.$el||i:l===tk&&a?a.$el||a:r;Qa(s),s===r&&t.$nextTick((function(){e.scrollTop=0}))}}))},returnFocusTo:function(){var t=this.returnFocus||this.$_returnFocus||null;this.$_returnFocus=null,this.$nextTick((function(){(t=me(t)?Ea(t):t)&&(t=t.$el||t,Qa(t))}))},checkModalOverflow:function(){if(this.isVisible){var t=this.$refs.modal;this.isModalOverflowing=t.scrollHeight>document.documentElement.clientHeight}},makeModal:function(t){var e=t();if(!this.hideHeader){var r=this.normalizeSlot("modal-header",this.slotScope);if(!r){var o=t();this.hideHeaderClose||(o=t(Al,{props:{content:this.headerCloseContent,disabled:this.isTransitioning,ariaLabel:this.headerCloseLabel,textVariant:this.headerCloseVariant||this.headerTextVariant},on:{click:this.onClose},ref:"close-button"},[this.normalizeSlot("modal-header-close")])),r=[t(this.titleTag,{staticClass:"modal-title",class:this.titleClasses,attrs:{id:this.modalTitleId},domProps:this.hasNormalizedSlot(Gi)?{}:ld(this.titleHtml,this.title)},this.normalizeSlot(Gi,this.slotScope)),o]}e=t("header",{staticClass:"modal-header",class:this.headerClasses,attrs:{id:this.modalHeaderId},ref:"header"},[r])}var n=t("div",{staticClass:"modal-body",class:this.bodyClasses,attrs:{id:this.modalBodyId},ref:"body"},this.normalizeSlot(Ii,this.slotScope)),i=t();if(!this.hideFooter){var a=this.normalizeSlot("modal-footer",this.slotScope);if(!a){var l=t();this.okOnly||(l=t(Vc,{props:{variant:this.cancelVariant,size:this.buttonSize,disabled:this.cancelDisabled||this.busy||this.isTransitioning},domProps:this.hasNormalizedSlot(Ui)?{}:ld(this.cancelTitleHtml,this.cancelTitle),on:{click:this.onCancel},ref:"cancel-button"},this.normalizeSlot(Ui))),a=[l,t(Vc,{props:{variant:this.okVariant,size:this.buttonSize,disabled:this.okDisabled||this.busy||this.isTransitioning},domProps:this.hasNormalizedSlot(Wi)?{}:ld(this.okTitleHtml,this.okTitle),on:{click:this.onOk},ref:"ok-button"},this.normalizeSlot(Wi))]}i=t("footer",{staticClass:"modal-footer",class:this.footerClasses,attrs:{id:this.modalFooterId},ref:"footer"},[a])}var s=t("div",{staticClass:"modal-content",class:this.contentClass,attrs:{id:this.modalContentId,tabindex:"-1"},ref:"content"},[e,n,i]),c=t(),d=t();this.isVisible&&!this.noEnforceFocus&&(c=t("span",{attrs:{tabindex:"0"},ref:"top-trap"}),d=t("span",{attrs:{tabindex:"0"},ref:"bottom-trap"}));var p=t("div",{staticClass:"modal-dialog",class:this.dialogClasses,on:{mousedown:this.onDialogMousedown},ref:"dialog"},[c,s,d]),u=t("div",{staticClass:"modal",class:this.modalClasses,style:this.modalStyles,attrs:this.computedModalAttrs,on:{keydown:this.onEsc,click:this.onClickOut},directives:[{name:"show",value:this.isVisible}],ref:"modal"},[p]);u=t("transition",{props:{enterClass:"",enterToClass:"",enterActiveClass:"",leaveClass:"",leaveActiveClass:"",leaveToClass:""},on:{beforeEnter:this.onBeforeEnter,enter:this.onEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,leave:this.onLeave,afterLeave:this.onAfterLeave}},[u]);var m=t();return!this.hideBackdrop&&this.isVisible&&(m=t("div",{staticClass:"modal-backdrop",attrs:{id:this.modalBackdropId}},this.normalizeSlot("modal-backdrop"))),m=t(Hl,{props:{noFade:this.noFade}},[m]),t("div",{style:this.modalOuterStyle,attrs:this.computedAttrs,key:"modal-outer-".concat(this._uid)},[u,m])}},render:function(t){return this.static?this.lazy&&this.isHidden?t():this.makeModal(t):this.isHidden?t():t($w,[this.makeModal(t)])}}),ak=zl(No,ti),lk="__bv_modal_directive__",sk=function(t){var e=t.modifiers,r=void 0===e?{}:e,o=t.arg,n=t.value;return me(n)?n:me(o)?o:$e(r).reverse()[0]},ck=function(t){return t&&za(t,".dropdown-menu > li, li.nav-item")&&Ea("a, button",t)||t},dk=function(t){t&&"BUTTON"!==t.tagName&&(Ha(t,"role")||Ra(t,"role","button"),"A"===t.tagName||Ha(t,"tabindex")||Ra(t,"tabindex","0"))},pk=function(t){var e=t[lk]||{},r=e.trigger,o=e.handler;r&&o&&(_l(r,"click",o,li),_l(r,"keydown",o,li),_l(t,"click",o,li),_l(t,"keydown",o,li)),delete t[lk]},uk=function(t,e,r){var o=t[lk]||{},n=sk(e),i=ck(t);n===o.target&&i===o.trigger||(pk(t),function(t,e,r){var o=sk(e),n=ck(t);if(o&&n){var i=function(t){var e=t.currentTarget;if(!Ca(e)){var n=t.type,i=t.keyCode;"click"!==n&&("keydown"!==n||i!==nc&&i!==sc)||r.context.$root.$emit(ak,o,e)}};t[lk]={handler:i,target:o,trigger:n},dk(n),Tl(n,"click",i,li),"BUTTON"!==n.tagName&&"button"===Na(n,"role")&&Tl(n,"keydown",i,li)}}(t,e,r)),dk(i)},mk={inserted:uk,updated:function(){},componentUpdated:uk,unbind:pk};function fk(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function bk(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function hk(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?bk(Object(r),!0).forEach((function(e){gk(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):bk(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function gk(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function vk(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}var xk,yk="$bvModal",wk=["id"].concat(function(t){if(Array.isArray(t))return vk(t)}(xk=$e(Be(nk,["busy","lazy","noStacking","static","visible"])))||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(xk)||function(t,e){if(t){if("string"==typeof t)return vk(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?vk(t,e):void 0}}(xk)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),kk=function(){},Ok={msgBoxContent:"default",title:"modal-title",okTitle:"modal-ok",cancelTitle:"modal-cancel"},jk=function(t){return wk.reduce((function(e,r){return se(t[r])||(e[r]=t[r]),e}),{})},Sk=lr({components:{BModal:ik},directives:{VBModal:mk},plugins:{BVModalPlugin:lr({plugins:{plugin:function(t){var e=t.extend({name:"BMsgBox",extends:ik,destroyed:function(){this.$el&&this.$el.parentNode&&this.$el.parentNode.removeChild(this.$el)},mounted:function(){var t=this,e=function(){t.$nextTick((function(){ka((function(){t.$destroy()}))}))};this.$parent.$once(ii,e),this.$once(Vn,e),this.$router&&this.$route&&this.$once(ni,this.$watch("$router",e)),this.show()}}),r=function(t,r){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:kk;if(!Ke(yk)&&!Xe(yk)){var n=new e({parent:t,propsData:hk(hk(hk({},jk(nl(No))),{},{hideHeaderClose:!0,hideHeader:!(r.title||r.titleHtml)},Be(r,$e(Ok))),{},{lazy:!1,busy:!1,visible:!1,noStacking:!1,noEnforceFocus:!1})});return $e(Ok).forEach((function(t){se(r[t])||(n.$slots[Ok[t]]=oa(r[t]))})),new Promise((function(t,e){var r=!1;n.$once(ii,(function(){r||e(new Error("BootstrapVue MsgBox destroyed before resolve"))})),n.$on(Nn,(function(e){if(!e.defaultPrevented){var n=o(e);e.defaultPrevented||(r=!0,t(n))}}));var i=document.createElement("div");document.body.appendChild(i),n.$mount(i)}))}},o=function(t,e){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;if(e&&!Xe(yk)&&!Ke(yk)&&pe(n))return r(t,hk(hk({},jk(o)),{},{msgBoxContent:e}),n)},n=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),Se(this,{_vm:e,_root:e.$root}),Te(this,{_vm:{enumerable:!0,configurable:!1,writable:!1},_root:{enumerable:!0,configurable:!1,writable:!1}})}var e,r;return e=t,(r=[{key:"show",value:function(t){if(t&&this._root){for(var e,r=arguments.length,o=new Array(r>1?r-1:0),n=1;n<r;n++)o[n-1]=arguments[n];(e=this._root).$emit.apply(e,[zl(No,"show"),t].concat(o))}}},{key:"hide",value:function(t){if(t&&this._root){for(var e,r=arguments.length,o=new Array(r>1?r-1:0),n=1;n<r;n++)o[n-1]=arguments[n];(e=this._root).$emit.apply(e,[zl(No,"hide"),t].concat(o))}}},{key:"msgBoxOk",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=hk(hk({},e),{},{okOnly:!0,okDisabled:!1,hideFooter:!1,msgBoxContent:t});return o(this._vm,t,r,(function(){return!0}))}},{key:"msgBoxConfirm",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=hk(hk({},e),{},{okOnly:!1,okDisabled:!1,cancelDisabled:!1,hideFooter:!1});return o(this._vm,t,r,(function(t){var e=t.trigger;return"ok"===e||"cancel"!==e&&null}))}}])&&fk(e.prototype,r),t}();t.mixin({beforeCreate:function(){this._bv__modal=new n(this)}}),De(t.prototype,yk)||_e(t.prototype,yk,{get:function(){return this&&this._bv__modal||Ye('"'.concat(yk,'" must be accessed from a Vue instance "this" context.'),No),this._bv__modal}})}}})}});function Pk(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Tk=vl({align:fl(gi),cardHeader:fl(pi,!1),fill:fl(pi,!1),justified:fl(pi,!1),pills:fl(pi,!1),small:fl(pi,!1),tabs:fl(pi,!1),tag:fl(gi,"ul"),vertical:fl(pi,!1)},Ho),_k=o.default.extend({name:Ho,functional:!0,props:Tk,render:function(t,e){var r,o,n=e.props,i=e.data,a=e.children,l=n.tabs,s=n.pills,c=n.vertical,d=n.align,p=n.cardHeader;return t(n.tag,xr(i,{staticClass:"nav",class:(r={"nav-tabs":l,"nav-pills":s&&!l,"card-header-tabs":!c&&p&&l,"card-header-pills":!c&&p&&s&&!l,"flex-column":c,"nav-fill":!c&&n.fill,"nav-justified":!c&&n.justified},Pk(r,(o=d,"justify-content-".concat(o="left"===o?"start":"right"===o?"end":o)),!c&&d),Pk(r,"small",n.small),r)}),a)}});function Ck(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function $k(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ck(Object(r),!0).forEach((function(e){Dk(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ck(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Dk(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Ek=Be(Pc,["event","routerTag"]),zk=vl(Ie($k($k({},Ek),{},{linkAttrs:fl(bi,{}),linkClasses:fl(yi)})),Ko),Bk=o.default.extend({name:Ko,functional:!0,props:zk,render:function(t,e){var r=e.props,o=e.data,n=e.listeners,i=e.children;return t("li",xr(Be(o,["on"]),{staticClass:"nav-item"}),[t(Tc,{staticClass:"nav-link",class:r.linkClasses,attrs:r.linkAttrs,props:hl(Ek,r),on:n},i)])}}),Ak=o.default.extend({name:"BNavText",functional:!0,props:{},render:function(t,e){var r=e.data,o=e.children;return t("li",xr(r,{staticClass:"navbar-text"}),o)}});function Ik(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Fk(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ik(Object(r),!0).forEach((function(e){Lk(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ik(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Lk(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Mk=Be(Pb,["inline"]),Rk=vl(Ie(Fk(Fk({},Mk),{},{formClass:fl(yi)})),Yo),Vk=o.default.extend({name:Yo,functional:!0,props:Rk,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=e.listeners,a=t(Tb,{class:r.formClass,props:Fk(Fk({},hl(Mk,r)),{},{inline:!0}),attrs:o.attrs,on:i},n);return t("li",xr(Be(o,["attrs","on"]),{staticClass:"form-inline"}),[a])}});function Nk(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}function Hk(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Uk(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Hk(Object(r),!0).forEach((function(e){Wk(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Hk(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Wk(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Gk=vl(Ie(Uk(Uk({},np),ze(ob,[].concat(function(t){return function(t){if(Array.isArray(t))return Nk(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return Nk(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Nk(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}($e(Zf)),["html","lazy","menuClass","noCaret","role","text","toggleClass"])))),Xo),qk=o.default.extend({name:Xo,mixins:[ip,Qf,Sl],props:Gk,computed:{toggleId:function(){return this.safeId("_BV_toggle_")},dropdownClasses:function(){return[this.directionClass,this.boundaryClass,{show:this.visible}]},menuClasses:function(){return[this.menuClass,{"dropdown-menu-right":this.right,show:this.visible}]},toggleClasses:function(){return[this.toggleClass,{"dropdown-toggle-no-caret":this.noCaret}]}},render:function(t){var e=this.toggleId,r=this.visible,o=this.hide,n=t(Tc,{staticClass:"nav-link dropdown-toggle",class:this.toggleClasses,props:{href:"#".concat(this.id||""),disabled:this.disabled},attrs:{id:e,role:"button","aria-haspopup":"true","aria-expanded":r?"true":"false"},on:{mousedown:this.onMousedown,click:this.toggle,keydown:this.toggle},ref:"toggle"},[this.normalizeSlot([Bi,"text"])||t("span",{domProps:ld(this.html,this.text)})]),i=t("ul",{staticClass:"dropdown-menu",class:this.menuClasses,attrs:{tabindex:"-1","aria-labelledby":e},on:{keydown:this.onKeydown},ref:"menu"},!this.lazy||r?this.normalizeSlot(Ii,{hide:o}):[t()]);return t("li",{staticClass:"nav-item b-nav-dropdown dropdown",class:this.dropdownClasses,attrs:{id:this.safeId()}},[n,i])}}),Yk=lr({components:{BNav:_k,BNavItem:Bk,BNavText:Ak,BNavForm:Vk,BNavItemDropdown:qk,BNavItemDd:qk,BNavDropdown:qk,BNavDd:qk},plugins:{DropdownPlugin:Rb}});function Kk(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Xk=vl({fixed:fl(gi),print:fl(pi,!1),sticky:fl(pi,!1),tag:fl(gi,"nav"),toggleable:fl(ji,!1),type:fl(gi,"light"),variant:fl(gi)},Uo),Jk=o.default.extend({name:Uo,mixins:[Sl],provide:function(){return{bvNavbar:this}},props:Xk,computed:{breakpointClass:function(){var t=this.toggleable,e=il()[0],r=null;return t&&me(t)&&t!==e?r="navbar-expand-".concat(t):!1===t&&(r="navbar-expand"),r}},render:function(t){var e,r=this.tag,o=this.type,n=this.variant,i=this.fixed;return t(r,{staticClass:"navbar",class:[(e={"d-print":this.print,"sticky-top":this.sticky},Kk(e,"navbar-".concat(o),o),Kk(e,"bg-".concat(n),n),Kk(e,"fixed-".concat(i),i),e),this.breakpointClass],attrs:{role:Pa(r,"nav")?null:"navigation"}},[this.normalizeSlot()])}});function Zk(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Qk=vl(ze(Tk,["tag","fill","justified","align","small"]),Go),tO=o.default.extend({name:Go,functional:!0,props:Qk,render:function(t,e){var r,o,n=e.props,i=e.data,a=e.children,l=n.align;return t(n.tag,xr(i,{staticClass:"navbar-nav",class:(r={"nav-fill":n.fill,"nav-justified":n.justified},Zk(r,(o=l,"justify-content-".concat(o="left"===o?"start":"right"===o?"end":o)),l),Zk(r,"small",n.small),r)}),a)}});function eO(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function rO(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?eO(Object(r),!0).forEach((function(e){oO(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):eO(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function oO(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var nO=Be(Pc,["event","routerTag"]);nO.href.default=void 0,nO.to.default=void 0;var iO=vl(Ie(rO(rO({},nO),{},{tag:fl(gi,"div")})),Wo),aO=o.default.extend({name:Wo,functional:!0,props:iO,render:function(t,e){var r=e.props,o=e.data,n=e.children,i=r.to||r.href;return t(i?Tc:r.tag,xr(o,{staticClass:"navbar-brand",props:i?hl(nO,r):{}}),n)}}),lO="navbar-toggler",sO=El(Gr,"state"),cO=El(Gr,"sync-state"),dO=vl({disabled:fl(pi,!1),label:fl(gi,"Toggle navigation"),target:fl(wi,void 0,!0)},qo),pO=o.default.extend({name:qo,directives:{VBToggle:Bm},mixins:[hc,Sl],props:dO,data:function(){return{toggleState:!1}},created:function(){this.listenOnRoot(sO,this.handleStateEvt),this.listenOnRoot(cO,this.handleStateEvt)},methods:{onClick:function(t){this.disabled||this.$emit(Tn,t)},handleStateEvt:function(t,e){t===this.target&&(this.toggleState=e)}},render:function(t){var e=this.disabled;return t("button",{staticClass:lO,class:{disabled:e},directives:[{name:"VBToggle",value:this.target}],attrs:{type:"button",disabled:e,"aria-label":this.label},on:{click:this.onClick}},[this.normalizeSlot(Ii,{expanded:this.toggleState})||t("span",{staticClass:"".concat(lO,"-icon")})])}}),uO=lr({components:{BNavbar:Jk,BNavbarNav:tO,BNavbarBrand:aO,BNavbarToggle:pO,BNavToggle:pO},plugins:{NavPlugin:Yk,CollapsePlugin:Im,DropdownPlugin:Rb}});function mO(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var fO=vl({label:fl(gi),role:fl(gi,"status"),small:fl(pi,!1),tag:fl(gi,"span"),type:fl(gi,"border"),variant:fl(gi)},pn),bO=o.default.extend({name:pn,functional:!0,props:fO,render:function(t,e){var r,o=e.props,n=e.data,i=e.slots,a=e.scopedSlots,l=i(),s=jl(Ni,{},a||{},l)||o.label;return s&&(s=t("span",{staticClass:"sr-only"},s)),t(o.tag,xr(n,{attrs:{role:s?o.role||"status":null,"aria-hidden":s?null:"true"},class:(r={},mO(r,"spinner-".concat(o.type),o.type),mO(r,"spinner-".concat(o.type,"-sm"),o.small),mO(r,"text-".concat(o.variant),o.variant),r)}),[s||t()])}});function hO(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function gO(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?hO(Object(r),!0).forEach((function(e){vO(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):hO(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function vO(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var xO,yO={top:0,left:0,bottom:0,right:0},wO=vl({bgColor:fl(gi),blur:fl(gi,"2px"),fixed:fl(pi,!1),noCenter:fl(pi,!1),noFade:fl(pi,!1),noWrap:fl(pi,!1),opacity:fl(Ti,.85,(function(t){var e=sa(t,0);return e>=0&&e<=1})),overlayTag:fl(gi,"div"),rounded:fl(ji,!1),show:fl(pi,!1),spinnerSmall:fl(pi,!1),spinnerType:fl(gi,"border"),spinnerVariant:fl(gi),variant:fl(gi,"light"),wrapTag:fl(gi,"div"),zIndex:fl(Ti,10)},Jo),kO=lr({components:{BOverlay:o.default.extend({name:Jo,mixins:[Sl],props:wO,computed:{computedRounded:function(){var t=this.rounded;return!0===t||""===t?"rounded":t?"rounded-".concat(t):""},computedVariant:function(){var t=this.variant;return t&&!this.bgColor?"bg-".concat(t):""},slotScope:function(){return{spinnerType:this.spinnerType||null,spinnerVariant:this.spinnerVariant||null,spinnerSmall:this.spinnerSmall}}},methods:{defaultOverlayFn:function(t){var e=t.spinnerType,r=t.spinnerVariant,o=t.spinnerSmall;return this.$createElement(bO,{props:{type:e,variant:r,small:o}})}},render:function(t){var e=this,r=this.show,o=this.fixed,n=this.noFade,i=this.noWrap,a=this.slotScope,l=t();if(r){var s=t("div",{staticClass:"position-absolute",class:[this.computedVariant,this.computedRounded],style:gO(gO({},yO),{},{opacity:this.opacity,backgroundColor:this.bgColor||null,backdropFilter:this.blur?"blur(".concat(this.blur,")"):null})}),c=t("div",{staticClass:"position-absolute",style:this.noCenter?gO({},yO):{top:"50%",left:"50%",transform:"translateX(-50%) translateY(-50%)"}},[this.normalizeSlot("overlay",a)||this.defaultOverlayFn(a)]);l=t(this.overlayTag,{staticClass:"b-overlay",class:{"position-absolute":!i||i&&!o,"position-fixed":i&&o},style:gO(gO({},yO),{},{zIndex:this.zIndex||10}),on:{click:function(t){return e.$emit(Tn,t)}},key:"overlay"},[s,c])}return l=t(Hl,{props:{noFade:n,appear:!0},on:{"after-enter":function(){return e.$emit(ei)},"after-leave":function(){return e.$emit(Vn)}}},[l]),i?l:t(this.wrapTag,{staticClass:"b-overlay-wrap position-relative",attrs:{"aria-busy":r?"true":null}},i?[l]:[this.normalizeSlot(),l])}})}});function OO(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function jO(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?OO(Object(r),!0).forEach((function(e){SO(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):OO(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function SO(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var PO=kl("value",{type:Oi,defaultValue:null,validator:function(t){return!(!ce(t)&&la(t,0)<1&&(Ye('"v-model" value must be a number greater than "0"',Zo),1))}}),TO=PO.mixin,_O=PO.props,CO=PO.prop,$O=PO.event,DO=function(t){var e=la(t)||1;return e<1?5:e},EO=function(t,e){var r=la(t)||1;return r>e?e:r<1?1:r},zO=function(t){if(t.keyCode===sc)return $l(t,{immediatePropagation:!0}),t.currentTarget.click(),!1},BO=vl(Ie(jO(jO({},_O),{},{align:fl(gi,"left"),ariaLabel:fl(gi,"Pagination"),disabled:fl(pi,!1),ellipsisClass:fl(yi),ellipsisText:fl(gi,"…"),firstClass:fl(yi),firstNumber:fl(pi,!1),firstText:fl(gi,"«"),hideEllipsis:fl(pi,!1),hideGotoEndButtons:fl(pi,!1),labelFirstPage:fl(gi,"Go to first page"),labelLastPage:fl(gi,"Go to last page"),labelNextPage:fl(gi,"Go to next page"),labelPage:fl(Pi,"Go to page"),labelPrevPage:fl(gi,"Go to previous page"),lastClass:fl(yi),lastNumber:fl(pi,!1),lastText:fl(gi,"»"),limit:fl(Ti,5,(function(t){return!(la(t,0)<1&&(Ye('Prop "limit" must be a number greater than "0"',Zo),1))})),nextClass:fl(yi),nextText:fl(gi,""),pageClass:fl(yi),pills:fl(pi,!1),prevClass:fl(yi),prevText:fl(gi,""),size:fl(gi)})),"pagination"),AO=o.default.extend({mixins:[TO,Sl],props:BO,data:function(){var t=la(this[CO],0);return{currentPage:t=t>0?t:-1,localNumberOfPages:1,localLimit:5}},computed:{btnSize:function(){var t=this.size;return t?"pagination-".concat(t):""},alignment:function(){var t=this.align;return"center"===t?"justify-content-center":"end"===t||"right"===t?"justify-content-end":"fill"===t?"text-center":""},styleClass:function(){return this.pills?"b-pagination-pills":""},computedCurrentPage:function(){return EO(this.currentPage,this.localNumberOfPages)},paginationParams:function(){var t=this.localLimit,e=this.localNumberOfPages,r=this.computedCurrentPage,o=this.hideEllipsis,n=this.firstNumber,i=this.lastNumber,a=!1,l=!1,s=t,c=1;e<=t?s=e:r<t-1&&t>3?(o&&!i||(l=!0,s=t-(n?0:1)),s=rs(s,t)):e-r+2<t&&t>3?(o&&!n||(a=!0,s=t-(i?0:1)),c=e-s+1):(t>3&&(s=t-(o?0:2),a=!(o&&!n),l=!(o&&!i)),c=r-as(s/2)),c<1?(c=1,a=!1):c>e-s&&(c=e-s+1,l=!1),a&&n&&c<4&&(s+=2,c=1,a=!1);var d=c+s-1;return l&&i&&d>e-3&&(s+=d===e-2?2:3,l=!1),t<=3&&(n&&1===c?s=rs(s+1,e,t+1):i&&e===c+s-1&&(c=os(c-1,1),s=rs(e-c+1,e,t+1))),{showFirstDots:a,showLastDots:l,numberOfLinks:s=rs(s,e-c+1),startNumber:c}},pageList:function(){var t=this.paginationParams,e=t.numberOfLinks,r=t.startNumber,o=this.computedCurrentPage,n=function(t,e){return na(e,(function(e,r){return{number:t+r,classes:null}}))}(r,e);if(n.length>3){var i=o-r,a="bv-d-xs-down-none";if(0===i)for(var l=3;l<n.length;l++)n[l].classes=a;else if(i===n.length-1)for(var s=0;s<n.length-3;s++)n[s].classes=a;else{for(var c=0;c<i-1;c++)n[c].classes=a;for(var d=n.length-1;d>i+1;d--)n[d].classes=a}}return n}},watch:(xO={},SO(xO,CO,(function(t,e){t!==e&&(this.currentPage=EO(t,this.localNumberOfPages))})),SO(xO,"currentPage",(function(t,e){t!==e&&this.$emit($O,t>0?t:null)})),SO(xO,"limit",(function(t,e){t!==e&&(this.localLimit=DO(t))})),xO),created:function(){var t=this;this.localLimit=DO(this.limit),this.$nextTick((function(){t.currentPage=t.currentPage>t.localNumberOfPages?t.localNumberOfPages:t.currentPage}))},methods:{handleKeyNav:function(t){var e=t.keyCode,r=t.shiftKey;this.isNav||(e===ac||e===cc?($l(t,{propagation:!1}),r?this.focusFirst():this.focusPrev()):e!==lc&&e!==rc||($l(t,{propagation:!1}),r?this.focusLast():this.focusNext()))},getButtons:function(){return Da("button.page-link, a.page-link",this.$el).filter((function(t){return _a(t)}))},focusCurrent:function(){var t=this;this.$nextTick((function(){var e=t.getButtons().find((function(e){return la(Na(e,"aria-posinset"),0)===t.computedCurrentPage}));Qa(e)||t.focusFirst()}))},focusFirst:function(){var t=this;this.$nextTick((function(){var e=t.getButtons().find((function(t){return!Ca(t)}));Qa(e)}))},focusLast:function(){var t=this;this.$nextTick((function(){var e=t.getButtons().reverse().find((function(t){return!Ca(t)}));Qa(e)}))},focusPrev:function(){var t=this;this.$nextTick((function(){var e=t.getButtons(),r=e.indexOf(Sa());r>0&&!Ca(e[r-1])&&Qa(e[r-1])}))},focusNext:function(){var t=this;this.$nextTick((function(){var e=t.getButtons(),r=e.indexOf(Sa());r<e.length-1&&!Ca(e[r+1])&&Qa(e[r+1])}))}},render:function(t){var e=this,r=this.disabled,o=this.labelPage,n=this.ariaLabel,i=this.isNav,a=this.localNumberOfPages,l=this.computedCurrentPage,s=this.pageList.map((function(t){return t.number})),c=this.paginationParams,d=c.showFirstDots,p=c.showLastDots,u="fill"===this.align,m=[],f=function(t){return t===l},b=this.currentPage<1,h=function(o,n,l,s,c,d,p){var m=r||f(d)||b||o<1||o>a,h=o<1?1:o>a?a:o,g={disabled:m,page:h,index:h-1},v=e.normalizeSlot(l,g)||ba(s)||t(),x=t(m?"span":i?Tc:"button",{staticClass:"page-link",class:{"flex-grow-1":!i&&!m&&u},props:m||!i?{}:e.linkProps(o),attrs:{role:i?null:"menuitem",type:i||m?null:"button",tabindex:m||i?null:"-1","aria-label":n,"aria-controls":e.ariaControls||null,"aria-disabled":m?"true":null},on:m?{}:{"!click":function(t){e.onClick(t,o)},keydown:zO}},[v]);return t("li",{key:p,staticClass:"page-item",class:[{disabled:m,"flex-fill":u,"d-flex":u&&!i&&!m},c],attrs:{role:i?null:"presentation","aria-hidden":m?"true":null}},[x])},g=function(r){return t("li",{staticClass:"page-item",class:["disabled","bv-d-xs-down-none",u?"flex-fill":"",e.ellipsisClass],attrs:{role:"separator"},key:"ellipsis-".concat(r?"last":"first")},[t("span",{staticClass:"page-link"},[e.normalizeSlot("ellipsis-text")||ba(e.ellipsisText)||t()])])},v=function(n,l){var s=n.number,c=f(s)&&!b,d=r?null:c||b&&0===l?"0":"-1",p={role:i?null:"menuitemradio",type:i||r?null:"button","aria-disabled":r?"true":null,"aria-controls":e.ariaControls||null,"aria-label":yl(o)?o(s):"".concat(pe(o)?o():o," ").concat(s),"aria-checked":i?null:c?"true":"false","aria-current":i&&c?"page":null,"aria-posinset":i?null:s,"aria-setsize":i?null:a,tabindex:i?null:d},m=ba(e.makePage(s)),h={page:s,index:s-1,content:m,active:c,disabled:r},g=t(r?"span":i?Tc:"button",{props:r||!i?{}:e.linkProps(s),staticClass:"page-link",class:{"flex-grow-1":!i&&!r&&u},attrs:p,on:r?{}:{"!click":function(t){e.onClick(t,s)},keydown:zO}},[e.normalizeSlot("page",h)||m]);return t("li",{staticClass:"page-item",class:[{disabled:r,active:c,"flex-fill":u,"d-flex":u&&!i&&!r},n.classes,e.pageClass],attrs:{role:i?null:"presentation"},key:"page-".concat(s)},[g])},x=t();this.firstNumber||this.hideGotoEndButtons||(x=h(1,this.labelFirstPage,"first-text",this.firstText,this.firstClass,1,"pagination-goto-first")),m.push(x),m.push(h(l-1,this.labelPrevPage,"prev-text",this.prevText,this.prevClass,1,"pagination-goto-prev")),m.push(this.firstNumber&&1!==s[0]?v({number:1},0):t()),m.push(d?g(!1):t()),this.pageList.forEach((function(t,r){var o=d&&e.firstNumber&&1!==s[0]?1:0;m.push(v(t,r+o))})),m.push(p?g(!0):t()),m.push(this.lastNumber&&s[s.length-1]!==a?v({number:a},-1):t()),m.push(h(l+1,this.labelNextPage,"next-text",this.nextText,this.nextClass,a,"pagination-goto-next"));var y=t();this.lastNumber||this.hideGotoEndButtons||(y=h(a,this.labelLastPage,"last-text",this.lastText,this.lastClass,a,"pagination-goto-last")),m.push(y);var w=t("ul",{staticClass:"pagination",class:["b-pagination",this.btnSize,this.alignment,this.styleClass],attrs:{role:i?null:"menubar","aria-disabled":r?"true":"false","aria-label":i?null:n||null},on:i?{}:{keydown:this.handleKeyNav},ref:"ul"},m);return i?t("nav",{attrs:{"aria-disabled":r?"true":null,"aria-hidden":r?"true":"false","aria-label":i&&n||null}},[w]):w}});function IO(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function FO(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?IO(Object(r),!0).forEach((function(e){LO(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):IO(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function LO(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var MO=function(t){return os(la(t)||20,1)},RO=function(t){return os(la(t)||0,0)},VO=vl(Ie(FO(FO({},BO),{},{ariaControls:fl(gi),perPage:fl(Ti,20),totalRows:fl(Ti,0)})),Zo),NO=lr({components:{BPagination:o.default.extend({name:Zo,mixins:[AO],props:VO,computed:{numberOfPages:function(){var t=is(RO(this.totalRows)/MO(this.perPage));return t<1?1:t},pageSizeNumberOfPages:function(){return{perPage:MO(this.perPage),totalRows:RO(this.totalRows),numberOfPages:this.numberOfPages}}},watch:{pageSizeNumberOfPages:function(t,e){de(e)||(t.perPage!==e.perPage&&t.totalRows===e.totalRows||t.numberOfPages!==e.numberOfPages&&this.currentPage>t.numberOfPages)&&(this.currentPage=1),this.localNumberOfPages=t.numberOfPages}},created:function(){var t=this;this.localNumberOfPages=this.numberOfPages;var e=la(this[CO],0);e>0?this.currentPage=e:this.$nextTick((function(){t.currentPage=0}))},methods:{onClick:function(t,e){var r=this;if(e!==this.currentPage){var o=t.target,n=new Hf(Kn,{cancelable:!0,vueTarget:this,target:o});this.$emit(n.type,n,e),n.defaultPrevented||(this.currentPage=e,this.$emit(Pn,this.currentPage),this.$nextTick((function(){_a(o)&&r.$el.contains(o)?Qa(o):r.focusCurrent()})))}},makePage:function(t){return t},linkProps:function(){return{}}}})}});function HO(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function UO(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?HO(Object(r),!0).forEach((function(e){WO(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):HO(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function WO(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var GO=Be(Pc,["event","routerTag"]),qO=vl(Ie(UO(UO(UO({},BO),GO),{},{baseUrl:fl(gi,"/"),linkGen:fl(mi),noPageDetect:fl(pi,!1),numberOfPages:fl(Ti,1,(function(t){return!(la(t,0)<1&&(Ye('Prop "number-of-pages" must be a number greater than "0"',Qo),1))})),pageGen:fl(mi),pages:fl(di),useRouter:fl(pi,!1)})),Qo),YO=lr({components:{BPaginationNav:o.default.extend({name:Qo,mixins:[AO],props:qO,computed:{isNav:function(){return!0},computedValue:function(){var t=la(this.value,0);return t<1?null:t}},watch:{numberOfPages:function(){var t=this;this.$nextTick((function(){t.setNumberOfPages()}))},pages:function(){var t=this;this.$nextTick((function(){t.setNumberOfPages()}))}},created:function(){this.setNumberOfPages()},mounted:function(){var t=this;this.$router&&this.$watch("$route",(function(){t.$nextTick((function(){ka((function(){t.guessCurrentPage()}))}))}))},methods:{setNumberOfPages:function(){var t,e=this;he(this.pages)&&this.pages.length>0?this.localNumberOfPages=this.pages.length:this.localNumberOfPages=(t=this.numberOfPages,os(la(t,0),1)),this.$nextTick((function(){e.guessCurrentPage()}))},onClick:function(t,e){var r=this;if(e!==this.currentPage){var o=t.currentTarget||t.target,n=new Hf(Kn,{cancelable:!0,vueTarget:this,target:o});this.$emit(n.type,n,e),n.defaultPrevented||(ka((function(){r.currentPage=e,r.$emit(Pn,e)})),this.$nextTick((function(){tl(o)})))}},getPageInfo:function(t){if(!he(this.pages)||0===this.pages.length||se(this.pages[t-1])){var e="".concat(this.baseUrl).concat(t);return{link:this.useRouter?{path:e}:e,text:ba(t)}}var r=this.pages[t-1];if(ge(r)){var o=r.link;return{link:ge(o)?o:this.useRouter?{path:o}:o,text:ba(r.text||t)}}return{link:ba(r),text:ba(t)}},makePage:function(t){var e=this.pageGen,r=this.getPageInfo(t);return yl(e)?e(t,r):r.text},makeLink:function(t){var e=this.linkGen,r=this.getPageInfo(t);return yl(e)?e(t,r):r.link},linkProps:function(t){var e=hl(GO,this),r=this.makeLink(t);return this.useRouter||ge(r)?e.to=r:e.href=r,e},resolveLink:function(){var t,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";try{(t=document.createElement("a")).href=ws({to:e},"a","/","/"),document.body.appendChild(t);var r=t,o=r.pathname,n=r.hash,i=r.search;return document.body.removeChild(t),{path:o,hash:n,query:vs(i)}}catch(e){try{t&&t.parentNode&&t.parentNode.removeChild(t)}catch(t){}return{}}},resolveRoute:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";try{var e=this.$router.resolve(t,this.$route).route;return{path:e.path,hash:e.hash,query:e.query}}catch(t){return{}}},guessCurrentPage:function(){var t=this.$router,e=this.$route,r=this.computedValue;if(!this.noPageDetect&&!r&&(ot||!ot&&t))for(var o=t&&e?{path:e.path,hash:e.hash,query:e.query}:{},n=ot?window.location||document.location:null,i=n?{path:n.pathname,hash:n.hash,query:vs(n.search)}:{},a=1;!r&&a<=this.localNumberOfPages;a++){var l=this.makeLink(a);r=t&&(ge(l)||this.useRouter)?dc(this.resolveRoute(l),o)?a:null:ot?dc(this.resolveLink(l),i)?a:null:-1}this.currentPage=r>0?r:0}}})}}),KO={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left",TOPLEFT:"top",TOPRIGHT:"top",RIGHTTOP:"right",RIGHTBOTTOM:"right",BOTTOMLEFT:"bottom",BOTTOMRIGHT:"bottom",LEFTTOP:"left",LEFTBOTTOM:"left"},XO={AUTO:0,TOPLEFT:-1,TOP:0,TOPRIGHT:1,RIGHTTOP:-1,RIGHT:0,RIGHTBOTTOM:1,BOTTOMLEFT:-1,BOTTOM:0,BOTTOMRIGHT:1,LEFTTOP:-1,LEFT:0,LEFTBOTTOM:1},JO={arrowPadding:fl(Ti,6),boundary:fl([oe,gi],"scrollParent"),boundaryPadding:fl(Ti,5),fallbackPlacement:fl(wi,"flip"),offset:fl(Ti,0),placement:fl(gi,"top"),target:fl([oe,ne])},ZO=o.default.extend({name:"BVPopper",props:JO,data:function(){return{noFade:!1,localShow:!0,attachment:this.getAttachment(this.placement)}},computed:{templateType:function(){return"unknown"},popperConfig:function(){var t=this,e=this.placement;return{placement:this.getAttachment(e),modifiers:{offset:{offset:this.getOffset(e)},flip:{behavior:this.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{padding:this.boundaryPadding,boundariesElement:this.boundary}},onCreate:function(e){e.originalPlacement!==e.placement&&t.popperPlacementChange(e)},onUpdate:function(e){t.popperPlacementChange(e)}}}},created:function(){var t=this;this.$_popper=null,this.localShow=!0,this.$on(ti,(function(e){t.popperCreate(e)}));var e=function(){t.$nextTick((function(){ka((function(){t.$destroy()}))}))};this.$parent.$once(ii,e),this.$once(Vn,e)},beforeMount:function(){this.attachment=this.getAttachment(this.placement)},updated:function(){this.updatePopper()},beforeDestroy:function(){this.destroyPopper()},destroyed:function(){var t=this.$el;t&&t.parentNode&&t.parentNode.removeChild(t)},methods:{hide:function(){this.localShow=!1},getAttachment:function(t){return KO[String(t).toUpperCase()]||"auto"},getOffset:function(t){if(!this.offset){var e=this.$refs.arrow||Ea(".arrow",this.$el),r=sa(Ya(e).width,0)+sa(this.arrowPadding,0);switch(XO[String(t).toUpperCase()]||0){case 1:return"+50%p - ".concat(r,"px");case-1:return"-50%p + ".concat(r,"px");default:return 0}}return this.offset},popperCreate:function(t){this.destroyPopper(),this.$_popper=new Rf(this.target,t,this.popperConfig)},destroyPopper:function(){this.$_popper&&this.$_popper.destroy(),this.$_popper=null},updatePopper:function(){this.$_popper&&this.$_popper.scheduleUpdate()},popperPlacementChange:function(t){this.attachment=this.getAttachment(t.placement)},renderTemplate:function(t){return t("div")}},render:function(t){var e=this,r=this.noFade;return t(Hl,{props:{appear:!0,noFade:r},on:{beforeEnter:function(t){return e.$emit(ti,t)},afterEnter:function(t){return e.$emit(ei,t)},beforeLeave:function(t){return e.$emit(Nn,t)},afterLeave:function(t){return e.$emit(Vn,t)}}},[this.localShow?this.renderTemplate(t):t()])}});function QO(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function tj(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?QO(Object(r),!0).forEach((function(e){ej(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):QO(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function ej(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var rj={html:fl(pi,!1),id:fl(gi)},oj=o.default.extend({name:"BVTooltipTemplate",extends:ZO,mixins:[Tw],props:rj,data:function(){return{title:"",content:"",variant:null,customClass:null,interactive:!0}},computed:{templateType:function(){return"tooltip"},templateClasses:function(){var t,e=this.variant,r=this.attachment,o=this.templateType;return[(t={noninteractive:!this.interactive},ej(t,"b-".concat(o,"-").concat(e),e),ej(t,"bs-".concat(o,"-").concat(r),r),t),this.customClass]},templateAttributes:function(){var t=this.id;return tj(tj({},this.$parent.$parent.$attrs),{},{id:t,role:"tooltip",tabindex:"-1"},this.scopedStyleAttrs)},templateListeners:function(){var t=this;return{mouseenter:function(e){t.$emit(Wn,e)},mouseleave:function(e){t.$emit(Gn,e)},focusin:function(e){t.$emit(Ln,e)},focusout:function(e){t.$emit(Mn,e)}}}},methods:{renderTemplate:function(t){var e=this.title,r=pe(e)?e({}):e,o=this.html&&!pe(e)?{innerHTML:e}:{};return t("div",{staticClass:"tooltip b-tooltip",class:this.templateClasses,attrs:this.templateAttributes,on:this.templateListeners},[t("div",{staticClass:"arrow",ref:"arrow"}),t("div",{staticClass:"tooltip-inner",domProps:o},[r])])}}});function nj(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function ij(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?nj(Object(r),!0).forEach((function(e){aj(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):nj(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function aj(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var lj,sj,cj=".modal-content",dj=El(No,Vn),pj=[cj,".b-sidebar"].join(", "),uj="data-original-title",mj={title:"",content:"",variant:null,customClass:null,triggers:"",placement:"auto",fallbackPlacement:"flip",target:null,container:null,noFade:!1,boundary:"scrollParent",boundaryPadding:5,offset:0,delay:0,arrowPadding:6,interactive:!0,disabled:!1,id:null,html:!1},fj=o.default.extend({name:"BVTooltip",mixins:[hc],data:function(){return ij(ij({},mj),{},{activeTrigger:{hover:!1,click:!1,focus:!1},localShow:!1})},computed:{templateType:function(){return"tooltip"},computedId:function(){return this.id||"__bv_".concat(this.templateType,"_").concat(this._uid,"__")},computedDelay:function(){var t={show:0,hide:0};return ve(this.delay)?(t.show=os(la(this.delay.show,0),0),t.hide=os(la(this.delay.hide,0),0)):(fe(this.delay)||me(this.delay))&&(t.show=t.hide=os(la(this.delay,0),0)),t},computedTriggers:function(){return oa(this.triggers).filter(He).join(" ").trim().toLowerCase().split(/\s+/).sort()},isWithActiveTrigger:function(){for(var t in this.activeTrigger)if(this.activeTrigger[t])return!0;return!1},computedTemplateData:function(){return{title:this.title,content:this.content,variant:this.variant,customClass:this.customClass,noFade:this.noFade,interactive:this.interactive}}},watch:{computedTriggers:function(t,e){var r=this;dc(t,e)||this.$nextTick((function(){r.unListen(),e.forEach((function(e){ra(t,e)||r.activeTrigger[e]&&(r.activeTrigger[e]=!1)})),r.listen()}))},computedTemplateData:function(){this.handleTemplateUpdate()},title:function(t,e){t===e||t||this.hide()},disabled:function(t){t?this.disable():this.enable()}},created:function(){var t=this;this.$_tip=null,this.$_hoverTimeout=null,this.$_hoverState="",this.$_visibleInterval=null,this.$_enabled=!this.disabled,this.$_noop=yu.bind(this),this.$parent&&this.$parent.$once(ni,(function(){t.$nextTick((function(){ka((function(){t.$destroy()}))}))})),this.$nextTick((function(){var e=t.getTarget();e&&Aa(document.body,e)?(t.scopeId=Pw(t.$parent),t.listen()):Ye(me(t.target)?'Unable to find target element by ID "#'.concat(t.target,'" in document.'):"The provided target is no valid HTML element.",t.templateType)}))},updated:function(){this.$nextTick(this.handleTemplateUpdate)},deactivated:function(){this.forceHide()},beforeDestroy:function(){this.unListen(),this.setWhileOpenListeners(!1),this.clearHoverTimeout(),this.clearVisibilityInterval(),this.destroyTemplate(),this.$_noop=null},methods:{getTemplate:function(){return oj},updateData:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=!1;$e(mj).forEach((function(o){se(e[o])||t[o]===e[o]||(t[o]=e[o],"title"===o&&(r=!0))})),r&&this.localShow&&this.fixTitle()},createTemplateAndShow:function(){var t=this.getContainer(),e=this.getTemplate(),r=this.$_tip=new e({parent:this,propsData:{id:this.computedId,html:this.html,placement:this.placement,fallbackPlacement:this.fallbackPlacement,target:this.getPlacementTarget(),boundary:this.getBoundary(),offset:la(this.offset,0),arrowPadding:la(this.arrowPadding,0),boundaryPadding:la(this.boundaryPadding,0)}});this.handleTemplateUpdate(),r.$once(ti,this.onTemplateShow),r.$once(ei,this.onTemplateShown),r.$once(Nn,this.onTemplateHide),r.$once(Vn,this.onTemplateHidden),r.$once(ii,this.destroyTemplate),r.$on(Ln,this.handleEvent),r.$on(Mn,this.handleEvent),r.$on(Wn,this.handleEvent),r.$on(Gn,this.handleEvent),r.$mount(t.appendChild(document.createElement("div")))},hideTemplate:function(){this.$_tip&&this.$_tip.hide(),this.clearActiveTriggers(),this.$_hoverState=""},destroyTemplate:function(){this.setWhileOpenListeners(!1),this.clearHoverTimeout(),this.$_hoverState="",this.clearActiveTriggers(),this.localPlacementTarget=null;try{this.$_tip.$destroy()}catch(t){}this.$_tip=null,this.removeAriaDescribedby(),this.restoreTitle(),this.localShow=!1},getTemplateElement:function(){return this.$_tip?this.$_tip.$el:null},handleTemplateUpdate:function(){var t=this,e=this.$_tip;e&&["title","content","variant","customClass","noFade","interactive"].forEach((function(r){e[r]!==t[r]&&(e[r]=t[r])}))},show:function(){var t=this.getTarget();if(t&&Aa(document.body,t)&&_a(t)&&!this.dropdownOpen()&&(!de(this.title)&&""!==this.title||!de(this.content)&&""!==this.content)&&!this.$_tip&&!this.localShow){this.localShow=!0;var e=this.buildEvent(ti,{cancelable:!0});this.emitEvent(e),e.defaultPrevented?this.destroyTemplate():(this.fixTitle(),this.addAriaDescribedby(),this.createTemplateAndShow())}},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=this.getTemplateElement();if(e&&this.localShow){var r=this.buildEvent(Nn,{cancelable:!t});this.emitEvent(r),r.defaultPrevented||this.hideTemplate()}else this.restoreTitle()},forceHide:function(){this.getTemplateElement()&&this.localShow&&(this.setWhileOpenListeners(!1),this.clearHoverTimeout(),this.$_hoverState="",this.clearActiveTriggers(),this.$_tip&&(this.$_tip.noFade=!0),this.hide(!0))},enable:function(){this.$_enabled=!0,this.emitEvent(this.buildEvent(An))},disable:function(){this.$_enabled=!1,this.emitEvent(this.buildEvent(zn))},onTemplateShow:function(){this.setWhileOpenListeners(!0)},onTemplateShown:function(){var t=this.$_hoverState;this.$_hoverState="","out"===t&&this.leave(null),this.emitEvent(this.buildEvent(ei))},onTemplateHide:function(){this.setWhileOpenListeners(!1)},onTemplateHidden:function(){this.destroyTemplate(),this.emitEvent(this.buildEvent(Vn))},getTarget:function(){var t=this.target;return me(t)?t=Ia(t.replace(/^#/,"")):pe(t)?t=t():t&&(t=t.$el||t),ja(t)?t:null},getPlacementTarget:function(){return this.getTarget()},getTargetId:function(){var t=this.getTarget();return t&&t.id?t.id:null},getContainer:function(){var t=!!this.container&&(this.container.$el||this.container),e=document.body,r=this.getTarget();return!1===t?Ba(pj,r)||e:me(t)&&Ia(t.replace(/^#/,""))||e},getBoundary:function(){return this.boundary?this.boundary.$el||this.boundary:"scrollParent"},isInModal:function(){var t=this.getTarget();return t&&Ba(cj,t)},isDropdown:function(){var t=this.getTarget();return t&&Ma(t,"dropdown")},dropdownOpen:function(){var t=this.getTarget();return this.isDropdown()&&t&&Ea(".dropdown-menu.show",t)},clearHoverTimeout:function(){clearTimeout(this.$_hoverTimeout),this.$_hoverTimeout=null},clearVisibilityInterval:function(){clearInterval(this.$_visibleInterval),this.$_visibleInterval=null},clearActiveTriggers:function(){for(var t in this.activeTrigger)this.activeTrigger[t]=!1},addAriaDescribedby:function(){var t=this.getTarget(),e=Na(t,"aria-describedby")||"";e=e.split(/\s+/).concat(this.computedId).join(" ").trim(),Ra(t,"aria-describedby",e)},removeAriaDescribedby:function(){var t=this,e=this.getTarget(),r=Na(e,"aria-describedby")||"";(r=r.split(/\s+/).filter((function(e){return e!==t.computedId})).join(" ").trim())?Ra(e,"aria-describedby",r):Va(e,"aria-describedby")},fixTitle:function(){var t=this.getTarget();if(Ha(t,"title")){var e=Na(t,"title");Ra(t,"title",""),e&&Ra(t,uj,e)}},restoreTitle:function(){var t=this.getTarget();if(Ha(t,uj)){var e=Na(t,uj);Va(t,uj),e&&Ra(t,"title",e)}},buildEvent:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new Hf(t,ij({cancelable:!1,target:this.getTarget(),relatedTarget:this.getTemplateElement()||null,componentId:this.computedId,vueTarget:this},e))},emitEvent:function(t){var e=t.type;this.emitOnRoot(El(this.templateType,e),t),this.$emit(e,t)},listen:function(){var t=this,e=this.getTarget();e&&(this.setRootListener(!0),this.computedTriggers.forEach((function(r){"click"===r?Tl(e,"click",t.handleEvent,si):"focus"===r?(Tl(e,"focusin",t.handleEvent,si),Tl(e,"focusout",t.handleEvent,si)):"blur"===r?Tl(e,"focusout",t.handleEvent,si):"hover"===r&&(Tl(e,"mouseenter",t.handleEvent,si),Tl(e,"mouseleave",t.handleEvent,si))}),this))},unListen:function(){var t=this,e=this.getTarget();this.setRootListener(!1),["click","focusin","focusout","mouseenter","mouseleave"].forEach((function(r){e&&_l(e,r,t.handleEvent,si)}),this)},setRootListener:function(t){var e=this.$root;if(e){var r=t?"$on":"$off",o=this.templateType;e[r](zl(o,Nn),this.doHide),e[r](zl(o,ti),this.doShow),e[r](zl(o,En),this.doDisable),e[r](zl(o,Bn),this.doEnable)}},setWhileOpenListeners:function(t){this.setModalListener(t),this.setDropdownListener(t),this.visibleCheck(t),this.setOnTouchStartListener(t)},visibleCheck:function(t){var e=this;this.clearVisibilityInterval();var r=this.getTarget(),o=this.getTemplateElement();t&&(this.$_visibleInterval=setInterval((function(){!o||!e.localShow||r.parentNode&&_a(r)||e.forceHide()}),100))},setModalListener:function(t){this.isInModal()&&this.$root[t?"$on":"$off"](dj,this.forceHide)},setOnTouchStartListener:function(t){var e=this;"ontouchstart"in document.documentElement&&ea(document.body.children).forEach((function(r){Cl(t,r,"mouseover",e.$_noop)}))},setDropdownListener:function(t){var e=this.getTarget();e&&this.$root&&this.isDropdown&&e.__vue__&&e.__vue__[t?"$on":"$off"](ei,this.forceHide)},handleEvent:function(t){var e=this.getTarget();if(e&&!Ca(e)&&this.$_enabled&&!this.dropdownOpen()){var r=t.type,o=this.computedTriggers;if("click"===r&&ra(o,"click"))this.click(t);else if("mouseenter"===r&&ra(o,"hover"))this.enter(t);else if("focusin"===r&&ra(o,"focus"))this.enter(t);else if("focusout"===r&&(ra(o,"focus")||ra(o,"blur"))||"mouseleave"===r&&ra(o,"hover")){var n=this.getTemplateElement(),i=t.target,a=t.relatedTarget;if(n&&Aa(n,i)&&Aa(e,a)||n&&Aa(e,i)&&Aa(n,a)||n&&Aa(n,i)&&Aa(n,a)||Aa(e,i)&&Aa(e,a))return;this.leave(t)}}},doHide:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.forceHide()},doShow:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.show()},doDisable:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.disable()},doEnable:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.enable()},click:function(t){this.$_enabled&&!this.dropdownOpen()&&(Qa(t.currentTarget),this.activeTrigger.click=!this.activeTrigger.click,this.isWithActiveTrigger?this.enter(null):this.leave(null))},toggle:function(){this.$_enabled&&!this.dropdownOpen()&&(this.localShow?this.leave(null):this.enter(null))},enter:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;e&&(this.activeTrigger["focusin"===e.type?"focus":"hover"]=!0),this.localShow||"in"===this.$_hoverState?this.$_hoverState="in":(this.clearHoverTimeout(),this.$_hoverState="in",this.computedDelay.show?(this.fixTitle(),this.$_hoverTimeout=setTimeout((function(){"in"===t.$_hoverState?t.show():t.localShow||t.restoreTitle()}),this.computedDelay.show)):this.show())},leave:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;e&&(this.activeTrigger["focusout"===e.type?"focus":"hover"]=!1,"focusout"===e.type&&ra(this.computedTriggers,"blur")&&(this.activeTrigger.click=!1,this.activeTrigger.hover=!1)),this.isWithActiveTrigger||(this.clearHoverTimeout(),this.$_hoverState="out",this.computedDelay.hide?this.$_hoverTimeout=setTimeout((function(){"out"===t.$_hoverState&&t.hide()}),this.computedDelay.hide):this.hide())}}});function bj(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function hj(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var gj="disabled",vj="update:disabled",xj="show",yj=vl((hj(lj={boundary:fl([oe,bi,gi],"scrollParent"),boundaryPadding:fl(Ti,50),container:fl([oe,bi,gi]),customClass:fl(gi),delay:fl(_i,50)},gj,fl(pi,!1)),hj(lj,"fallbackPlacement",fl(wi,"flip")),hj(lj,"id",fl(gi)),hj(lj,"noFade",fl(pi,!1)),hj(lj,"noninteractive",fl(pi,!1)),hj(lj,"offset",fl(Ti,0)),hj(lj,"placement",fl(gi,"top")),hj(lj,xj,fl(pi,!1)),hj(lj,"target",fl([oe,ne,mi,bi,gi],void 0,!0)),hj(lj,"title",fl(gi)),hj(lj,"triggers",fl(wi,"hover focus")),hj(lj,"variant",fl(gi)),lj),jn),wj=o.default.extend({name:jn,mixins:[Sl],inheritAttrs:!1,props:yj,data:function(){return{localShow:this.show,localTitle:"",localContent:""}},computed:{templateData:function(){return function(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?bj(Object(r),!0).forEach((function(e){hj(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):bj(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}({title:this.localTitle,content:this.localContent,interactive:!this.noninteractive},ze(this.$props,["boundary","boundaryPadding","container","customClass","delay","fallbackPlacement","id","noFade","offset","placement","target","target","triggers","variant",gj]))},templateTitleContent:function(){return{title:this.title,content:this.content}}},watch:(sj={},hj(sj,xj,(function(t,e){t!==e&&t!==this.localShow&&this.$_toolpop&&(t?this.$_toolpop.show():this.$_toolpop.forceHide())})),hj(sj,gj,(function(t){t?this.doDisable():this.doEnable()})),hj(sj,"localShow",(function(t){this.$emit("update:show",t)})),hj(sj,"templateData",(function(){var t=this;this.$nextTick((function(){t.$_toolpop&&t.$_toolpop.updateData(t.templateData)}))})),hj(sj,"templateTitleContent",(function(){this.$nextTick(this.updateContent)})),sj),created:function(){this.$_toolpop=null},updated:function(){this.$nextTick(this.updateContent)},beforeDestroy:function(){this.$off(Yn,this.doOpen),this.$off(_n,this.doClose),this.$off(En,this.doDisable),this.$off(Bn,this.doEnable),this.$_toolpop&&(this.$_toolpop.$destroy(),this.$_toolpop=null)},mounted:function(){var t=this;this.$nextTick((function(){var e=t.getComponent();t.updateContent();var r=Pw(t)||Pw(t.$parent),o=t.$_toolpop=new e({parent:t,_scopeId:r||void 0});o.updateData(t.templateData),o.$on(ti,t.onShow),o.$on(ei,t.onShown),o.$on(Nn,t.onHide),o.$on(Vn,t.onHidden),o.$on(zn,t.onDisabled),o.$on(An,t.onEnabled),t.disabled&&t.doDisable(),t.$on(Yn,t.doOpen),t.$on(_n,t.doClose),t.$on(En,t.doDisable),t.$on(Bn,t.doEnable),t.localShow&&o.show()}))},methods:{getComponent:function(){return fj},updateContent:function(){this.setTitle(this.normalizeSlot()||this.title)},setTitle:function(t){t=de(t)?"":t,this.localTitle!==t&&(this.localTitle=t)},setContent:function(t){t=de(t)?"":t,this.localContent!==t&&(this.localContent=t)},onShow:function(t){this.$emit(ti,t),t&&(this.localShow=!t.defaultPrevented)},onShown:function(t){this.localShow=!0,this.$emit(ei,t)},onHide:function(t){this.$emit(Nn,t)},onHidden:function(t){this.$emit(Vn,t),this.localShow=!1},onDisabled:function(t){t&&t.type===zn&&(this.$emit(vj,!0),this.$emit(zn,t))},onEnabled:function(t){t&&t.type===An&&(this.$emit(vj,!1),this.$emit(An,t))},doOpen:function(){!this.localShow&&this.$_toolpop&&this.$_toolpop.show()},doClose:function(){this.localShow&&this.$_toolpop&&this.$_toolpop.hide()},doDisable:function(){this.$_toolpop&&this.$_toolpop.disable()},doEnable:function(){this.$_toolpop&&this.$_toolpop.enable()}},render:function(t){return t()}}),kj=o.default.extend({name:"BVPopoverTemplate",extends:oj,computed:{templateType:function(){return"popover"}},methods:{renderTemplate:function(t){var e=this.title,r=this.content,o=pe(e)?e({}):e,n=pe(r)?r({}):r,i=this.html&&!pe(e)?{innerHTML:e}:{},a=this.html&&!pe(r)?{innerHTML:r}:{};return t("div",{staticClass:"popover b-popover",class:this.templateClasses,attrs:this.templateAttributes,on:this.templateListeners},[t("div",{staticClass:"arrow",ref:"arrow"}),de(o)||""===o?t():t("h3",{staticClass:"popover-header",domProps:i},[o]),de(n)||""===n?t():t("div",{staticClass:"popover-body",domProps:a},[n])])}}}),Oj=o.default.extend({name:"BVPopover",extends:fj,computed:{templateType:function(){return"popover"}},methods:{getTemplate:function(){return kj}}});function jj(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Sj(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?jj(Object(r),!0).forEach((function(e){Pj(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):jj(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Pj(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Tj=vl(Ie(Sj(Sj({},yj),{},{content:fl(gi),placement:fl(gi,"right"),triggers:fl(wi,Tn)})),tn),_j=o.default.extend({name:tn,extends:wj,inheritAttrs:!1,props:Tj,methods:{getComponent:function(){return Oj},updateContent:function(){this.setContent(this.normalizeSlot()||this.content),this.setTitle(this.normalizeSlot(Qi)||this.title)}}});function Cj(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function $j(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Cj(Object(r),!0).forEach((function(e){Dj(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Cj(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Dj(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Ej="__BV_Popover__",zj={focus:!0,hover:!0,click:!0,blur:!0,manual:!0},Bj=/^html$/i,Aj=/^nofade$/i,Ij=/^(auto|top(left|right)?|bottom(left|right)?|left(top|bottom)?|right(top|bottom)?)$/i,Fj=/^(window|viewport|scrollParent)$/i,Lj=/^d\d+$/i,Mj=/^ds\d+$/i,Rj=/^dh\d+$/i,Vj=/^o-?\d+$/i,Nj=/^v-.+$/i,Hj=/\s+/,Uj=function(t,e,r){if(ot){var o=function(t,e){var r={title:void 0,content:void 0,trigger:"",placement:"right",fallbackPlacement:"flip",container:!1,animation:!0,offset:0,disabled:!1,id:null,html:!1,delay:nl(tn,"delay",50),boundary:String(nl(tn,"boundary","scrollParent")),boundaryPadding:la(nl(tn,"boundaryPadding",5),0),variant:nl(tn,"variant"),customClass:nl(tn,"customClass")};if(me(t.value)||fe(t.value)||pe(t.value)?r.content=t.value:ve(t.value)&&(r=$j($j({},r),t.value)),t.arg&&(r.container="#".concat(t.arg)),se(r.title)){var o=e.data||{};r.title=o.attrs&&!de(o.attrs.title)?o.attrs.title:void 0}ve(r.delay)||(r.delay={show:la(r.delay,0),hide:la(r.delay,0)}),$e(t.modifiers).forEach((function(t){if(Bj.test(t))r.html=!0;else if(Aj.test(t))r.animation=!1;else if(Ij.test(t))r.placement=t;else if(Fj.test(t))t="scrollparent"===t?"scrollParent":t,r.boundary=t;else if(Lj.test(t)){var e=la(t.slice(1),0);r.delay.show=e,r.delay.hide=e}else Mj.test(t)?r.delay.show=la(t.slice(2),0):Rj.test(t)?r.delay.hide=la(t.slice(2),0):Vj.test(t)?r.offset=la(t.slice(1),0):Nj.test(t)&&(r.variant=t.slice(2)||null)}));var n={};return oa(r.trigger||"").filter(He).join(" ").trim().toLowerCase().split(Hj).forEach((function(t){zj[t]&&(n[t]=!0)})),$e(t.modifiers).forEach((function(t){t=t.toLowerCase(),zj[t]&&(n[t]=!0)})),r.trigger=$e(n).join(" "),"blur"===r.trigger&&(r.trigger="focus"),r.trigger||(r.trigger="click"),r}(e,r);if(!t[Ej]){var n=r.context;t[Ej]=new Oj({parent:n,_scopeId:Pw(n,void 0)}),t[Ej].__bv_prev_data__={},t[Ej].$on(ti,(function(){var e={};pe(o.title)&&(e.title=o.title(t)),pe(o.content)&&(e.content=o.content(t)),$e(e).length>0&&t[Ej].updateData(e)}))}var i={title:o.title,content:o.content,triggers:o.trigger,placement:o.placement,fallbackPlacement:o.fallbackPlacement,variant:o.variant,customClass:o.customClass,container:o.container,boundary:o.boundary,delay:o.delay,offset:o.offset,noFade:!o.animation,id:o.id,disabled:o.disabled,html:o.html},a=t[Ej].__bv_prev_data__;if(t[Ej].__bv_prev_data__=i,!dc(i,a)){var l={target:t};$e(i).forEach((function(e){i[e]!==a[e]&&(l[e]="title"!==e&&"content"!==e||!pe(i[e])?i[e]:i[e](t))})),t[Ej].updateData(l)}}},Wj=lr({directives:{VBPopover:{bind:function(t,e,r){Uj(t,e,r)},componentUpdated:function(t,e,r){r.context.$nextTick((function(){Uj(t,e,r)}))},unbind:function(t){!function(t){t[Ej]&&(t[Ej].$destroy(),t[Ej]=null),delete t[Ej]}(t)}}}}),Gj=lr({components:{BPopover:_j},plugins:{VBPopoverPlugin:Wj}}),qj=vl({animated:fl(pi,null),label:fl(gi),labelHtml:fl(gi),max:fl(Ti,null),precision:fl(Ti,null),showProgress:fl(pi,null),showValue:fl(pi,null),striped:fl(pi,null),value:fl(Ti,0),variant:fl(gi)},rn),Yj=o.default.extend({name:rn,mixins:[Sl],inject:{bvProgress:{default:function(){return{}}}},props:qj,computed:{progressBarClasses:function(){var t=this.computedAnimated,e=this.computedVariant;return[e?"bg-".concat(e):"",this.computedStriped||t?"progress-bar-striped":"",t?"progress-bar-animated":""]},progressBarStyles:function(){return{width:this.computedValue/this.computedMax*100+"%"}},computedValue:function(){return sa(this.value,0)},computedMax:function(){var t=sa(this.max)||sa(this.bvProgress.max,0);return t>0?t:100},computedPrecision:function(){return os(la(this.precision,la(this.bvProgress.precision,0)),0)},computedProgress:function(){var t=this.computedPrecision,e=ls(10,t);return ca(100*e*this.computedValue/this.computedMax/e,t)},computedVariant:function(){return this.variant||this.bvProgress.variant},computedStriped:function(){return ue(this.striped)?this.striped:this.bvProgress.striped||!1},computedAnimated:function(){return ue(this.animated)?this.animated:this.bvProgress.animated||!1},computedShowProgress:function(){return ue(this.showProgress)?this.showProgress:this.bvProgress.showProgress||!1},computedShowValue:function(){return ue(this.showValue)?this.showValue:this.bvProgress.showValue||!1}},render:function(t){var e,r=this.label,o=this.labelHtml,n=this.computedValue,i=this.computedPrecision,a={};return this.hasNormalizedSlot()?e=this.normalizeSlot():r||o?a=ld(o,r):this.computedShowProgress?e=this.computedProgress:this.computedShowValue&&(e=ca(n,i)),t("div",{staticClass:"progress-bar",class:this.progressBarClasses,style:this.progressBarStyles,attrs:{role:"progressbar","aria-valuemin":"0","aria-valuemax":ba(this.computedMax),"aria-valuenow":ca(n,i)},domProps:a},e)}});function Kj(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function Xj(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Kj(Object(r),!0).forEach((function(e){Jj(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Kj(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Jj(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Zj,Qj=Be(qj,["label","labelHtml"]),tS=vl(Ie(Xj(Xj({},Qj),{},{animated:fl(pi,!1),height:fl(gi),max:fl(Ti,100),precision:fl(Ti,0),showProgress:fl(pi,!1),showValue:fl(pi,!1),striped:fl(pi,!1)})),en),eS=lr({components:{BProgress:o.default.extend({name:en,mixins:[Sl],provide:function(){return{bvProgress:this}},props:tS,computed:{progressHeight:function(){return{height:this.height||null}}},render:function(t){var e=this.normalizeSlot();return e||(e=t(Yj,{props:hl(Qj,this.$props)})),t("div",{staticClass:"progress",style:this.progressHeight},[e])}}),BProgressBar:Yj}});function rS(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function oS(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?rS(Object(r),!0).forEach((function(e){nS(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):rS(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function nS(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var iS="b-sidebar",aS=zl(Gr,"request-state"),lS=zl(Gr,"toggle"),sS=El(Gr,"state"),cS=El(Gr,"sync-state"),dS=kl("visible",{type:pi,defaultValue:!1,event:Pn}),pS=dS.mixin,uS=dS.props,mS=dS.prop,fS=dS.event,bS=vl(Ie(oS(oS(oS({},np),uS),{},{ariaLabel:fl(gi),ariaLabelledby:fl(gi),backdrop:fl(pi,!1),backdropVariant:fl(gi,"dark"),bgVariant:fl(gi,"light"),bodyClass:fl(yi),closeLabel:fl(gi),footerClass:fl(yi),headerClass:fl(yi),lazy:fl(pi,!1),noCloseOnBackdrop:fl(pi,!1),noCloseOnEsc:fl(pi,!1),noCloseOnRouteChange:fl(pi,!1),noEnforceFocus:fl(pi,!1),noHeader:fl(pi,!1),noHeaderClose:fl(pi,!1),noSlide:fl(pi,!1),right:fl(pi,!1),shadow:fl(ji,!1),sidebarClass:fl(yi),tag:fl(gi,"div"),textVariant:fl(gi,"dark"),title:fl(gi),width:fl(gi),zIndex:fl(Ti)})),nn),hS=function(t,e){return t("div",{staticClass:"".concat(iS,"-body"),class:e.bodyClass,key:"body"},[e.normalizeSlot(Ii,e.slotScope)])},gS=function(t,e){var r=e.normalizeSlot(Ri,e.slotScope);return r?t("footer",{staticClass:"".concat(iS,"-footer"),class:e.footerClass,key:"footer"},[r]):t()},vS=function(t,e){var r=function(t,e){if(e.noHeader)return t();var r=e.normalizeSlot(Vi,e.slotScope);if(!r){var o=function(t,e){var r=e.normalizeSlot(Qi,e.slotScope)||e.title;return r?t("strong",{attrs:{id:e.safeId("__title__")}},[r]):t("span")}(t,e),n=function(t,e){if(e.noHeaderClose)return t();var r=e.closeLabel,o=e.textVariant,n=e.hide;return t(Al,{props:{ariaLabel:r,textVariant:o},on:{click:n},ref:"close-button"},[e.normalizeSlot("header-close")||t(Ys)])}(t,e);r=e.right?[n,o]:[o,n]}return t("header",{staticClass:"".concat(iS,"-header"),class:e.headerClass,key:"header"},r)}(t,e);return e.lazy&&!e.isOpen?r:[r,hS(t,e),gS(t,e)]},xS=function(t,e){if(!e.backdrop)return t();var r=e.backdropVariant;return t("div",{directives:[{name:"show",value:e.localShow}],staticClass:"b-sidebar-backdrop",class:nS({},"bg-".concat(r),r),on:{click:e.onBackdropClick}})},yS=lr({components:{BSidebar:o.default.extend({name:nn,mixins:[bc,ip,pS,hc,Sl],inheritAttrs:!1,props:bS,data:function(){var t=!!this[mS];return{localShow:t,isOpen:t}},computed:{transitionProps:function(){return this.noSlide?{css:!0}:{css:!0,enterClass:"",enterActiveClass:"slide",enterToClass:"show",leaveClass:"show",leaveActiveClass:"slide",leaveToClass:""}},slotScope:function(){return{hide:this.hide,right:this.right,visible:this.localShow}},hasTitle:function(){var t=this.$scopedSlots,e=this.$slots;return!(this.noHeader||this.hasNormalizedSlot(Vi)||!this.normalizeSlot(Qi,this.slotScope,t,e)&&!this.title)},titleId:function(){return this.hasTitle?this.safeId("__title__"):null},computedAttrs:function(){return oS(oS({},this.bvAttrs),{},{id:this.safeId(),tabindex:"-1",role:"dialog","aria-modal":this.backdrop?"true":"false","aria-hidden":this.localShow?null:"true","aria-label":this.ariaLabel||null,"aria-labelledby":this.ariaLabelledby||this.titleId||null})}},watch:(Zj={},nS(Zj,mS,(function(t,e){t!==e&&(this.localShow=t)})),nS(Zj,"localShow",(function(t,e){t!==e&&(this.emitState(t),this.$emit(fS,t))})),nS(Zj,"$route",(function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.noCloseOnRouteChange||t.fullPath===e.fullPath||this.hide()})),Zj),created:function(){this.$_returnFocusEl=null},mounted:function(){var t=this;this.listenOnRoot(lS,this.handleToggle),this.listenOnRoot(aS,this.handleSync),this.$nextTick((function(){t.emitState(t.localShow)}))},activated:function(){this.emitSync()},beforeDestroy:function(){this.localShow=!1,this.$_returnFocusEl=null},methods:{hide:function(){this.localShow=!1},emitState:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.localShow;this.emitOnRoot(sS,this.safeId(),t)},emitSync:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.localShow;this.emitOnRoot(cS,this.safeId(),t)},handleToggle:function(t){t&&t===this.safeId()&&(this.localShow=!this.localShow)},handleSync:function(t){var e=this;t&&t===this.safeId()&&this.$nextTick((function(){e.emitSync(e.localShow)}))},onKeydown:function(t){var e=t.keyCode;!this.noCloseOnEsc&&27===e&&this.localShow&&this.hide()},onBackdropClick:function(){this.localShow&&!this.noCloseOnBackdrop&&this.hide()},onTopTrapFocus:function(){var t=Za(this.$refs.content);this.enforceFocus(t.reverse()[0])},onBottomTrapFocus:function(){var t=Za(this.$refs.content);this.enforceFocus(t[0])},onBeforeEnter:function(){this.$_returnFocusEl=Sa(ot?[document.body]:[]),this.isOpen=!0},onAfterEnter:function(t){Aa(t,Sa())||this.enforceFocus(t),this.$emit(ei)},onAfterLeave:function(){this.enforceFocus(this.$_returnFocusEl),this.$_returnFocusEl=null,this.isOpen=!1,this.$emit(Vn)},enforceFocus:function(t){this.noEnforceFocus||Qa(t)}},render:function(t){var e,r=this.bgVariant,o=this.width,n=this.textVariant,i=this.localShow,a=""===this.shadow||this.shadow,l=t(this.tag,{staticClass:iS,class:[(e={shadow:!0===a},nS(e,"shadow-".concat(a),a&&!0!==a),nS(e,"".concat(iS,"-right"),this.right),nS(e,"bg-".concat(r),r),nS(e,"text-".concat(n),n),e),this.sidebarClass],style:{width:o},attrs:this.computedAttrs,directives:[{name:"show",value:i}],ref:"content"},[vS(t,this)]);l=t("transition",{props:this.transitionProps,on:{beforeEnter:this.onBeforeEnter,afterEnter:this.onAfterEnter,afterLeave:this.onAfterLeave}},[l]);var s=t(Hl,{props:{noFade:this.noSlide}},[xS(t,this)]),c=t(),d=t();return this.backdrop&&i&&(c=t("div",{attrs:{tabindex:"0"},on:{focus:this.onTopTrapFocus}}),d=t("div",{attrs:{tabindex:"0"},on:{focus:this.onBottomTrapFocus}})),t("div",{staticClass:"b-sidebar-outer",style:{zIndex:this.zIndex},attrs:{tabindex:"-1"},on:{keydown:this.onKeydown}},[c,l,d,s])}})},plugins:{VBTogglePlugin:Am}});function wS(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var kS=vl({animation:fl(gi,"wave"),height:fl(gi),size:fl(gi),type:fl(gi,"text"),variant:fl(gi),width:fl(gi)},an),OS=o.default.extend({name:an,functional:!0,props:kS,render:function(t,e){var r,o=e.data,n=e.props,i=n.size,a=n.animation,l=n.variant;return t("div",xr(o,{staticClass:"b-skeleton",style:{width:i||n.width,height:i||n.height},class:(r={},wS(r,"b-skeleton-".concat(n.type),!0),wS(r,"b-skeleton-animate-".concat(a),a),wS(r,"bg-".concat(l),l),r)}))}});function jS(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function SS(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?jS(Object(r),!0).forEach((function(e){PS(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):jS(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function PS(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var TS=vl({animation:fl(gi,"wave"),icon:fl(gi),iconProps:fl(bi,{})},ln),_S=o.default.extend({name:ln,functional:!0,props:TS,render:function(t,e){var r=e.props,o=r.icon,n=r.animation,i=t(ec,{staticClass:"b-skeleton-icon",props:SS(SS({},r.iconProps),{},{icon:o})});return t("div",{staticClass:"b-skeleton-icon-wrapper position-relative d-inline-block overflow-hidden",class:PS({},"b-skeleton-animate-".concat(n),n)},[i])}}),CS=vl({animation:fl(gi),aspect:fl(gi,"16:9"),cardImg:fl(gi),height:fl(gi),noAspect:fl(pi,!1),variant:fl(gi),width:fl(gi)},sn),$S=o.default.extend({name:sn,functional:!0,props:CS,render:function(t,e){var r,o,n,i=e.props,a=i.aspect,l=i.width,s=i.height,c=i.animation,d=i.variant,p=i.cardImg,u=t(OS,{props:{type:"img",width:l,height:s,animation:c,variant:d},class:(r={},o="card-img-".concat(p),n=p,o in r?Object.defineProperty(r,o,{value:n,enumerable:!0,configurable:!0,writable:!0}):r[o]=n,r)});return i.noAspect?u:t(us,{props:{aspect:a}},[u])}}),DS=o.default.extend({methods:{hasListener:function(t){var e=this.$listeners||{},r=this._events||{};return!se(e[t])||he(r[t])&&r[t].length>0}}}),ES={stacked:fl(ji,!1)},zS=o.default.extend({props:ES,computed:{isStacked:function(){var t=this.stacked;return""===t||t},isStackedAlways:function(){return!0===this.isStacked},stackedTableClasses:function(){var t,e,r,o=this.isStackedAlways;return t={"b-table-stacked":o},e="b-table-stacked-".concat(this.stacked),r=!o&&this.isStacked,e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}}});function BS(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function AS(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?BS(Object(r),!0).forEach((function(e){IS(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):BS(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function IS(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var FS={bordered:fl(pi,!1),borderless:fl(pi,!1),captionTop:fl(pi,!1),dark:fl(pi,!1),fixed:fl(pi,!1),hover:fl(pi,!1),noBorderCollapse:fl(pi,!1),outlined:fl(pi,!1),responsive:fl(ji,!1),small:fl(pi,!1),stickyHeader:fl(ji,!1),striped:fl(pi,!1),tableClass:fl(yi),tableVariant:fl(gi)},LS=o.default.extend({mixins:[bc],provide:function(){return{bvTable:this}},inheritAttrs:!1,props:FS,computed:{isResponsive:function(){var t=this.responsive;return""===t||t},isStickyHeader:function(){var t=this.stickyHeader;return t=""===t||t,!this.isStacked&&t},wrapperClasses:function(){var t=this.isResponsive;return[this.isStickyHeader?"b-table-sticky-header":"",!0===t?"table-responsive":t?"table-responsive-".concat(this.responsive):""].filter(He)},wrapperStyles:function(){var t=this.isStickyHeader;return t&&!ue(t)?{maxHeight:t}:{}},tableClasses:function(){var t=this.hover,e=this.tableVariant;return t=this.isTableSimple?t:t&&this.computedItems.length>0&&!this.computedBusy,[this.tableClass,{"table-striped":this.striped,"table-hover":t,"table-dark":this.dark,"table-bordered":this.bordered,"table-borderless":this.borderless,"table-sm":this.small,border:this.outlined,"b-table-fixed":this.fixed,"b-table-caption-top":this.captionTop,"b-table-no-border-collapse":this.noBorderCollapse},e?"".concat(this.dark?"bg":"table","-").concat(e):"",this.stackedTableClasses,this.selectableTableClasses]},tableAttrs:function(){var t=this.computedItems,e=this.filteredItems,r=this.computedFields,o=this.selectableTableAttrs,n=this.isTableSimple?{}:{"aria-busy":this.computedBusy?"true":"false","aria-colcount":ba(r.length),"aria-describedby":this.bvAttrs["aria-describedby"]||this.$refs.caption?this.captionId:null};return AS(AS(AS({"aria-rowcount":t&&e&&e.length>t.length?ba(e.length):null},this.bvAttrs),{},{id:this.safeId(),role:"table"},n),o)}},render:function(t){var e=this.wrapperClasses,r=this.renderCaption,o=this.renderColgroup,n=this.renderThead,i=this.renderTbody,a=this.renderTfoot,l=[];this.isTableSimple?l.push(this.normalizeSlot()):(l.push(r?r():null),l.push(o?o():null),l.push(n?n():null),l.push(i?i():null),l.push(a?a():null));var s=t("table",{staticClass:"table b-table",class:this.tableClasses,attrs:this.tableAttrs,key:"b-table"},l.filter(He));return e.length>0?t("div",{class:e,style:this.wrapperStyles,key:"wrap"},[s]):s}});function MS(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function RS(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?MS(Object(r),!0).forEach((function(e){VS(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):MS(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function VS(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var NS=vl(Ie(RS(RS(RS({},np),ES),FS)),hn),HS=o.default.extend({name:hn,mixins:[bc,DS,ip,Sl,LS,zS],props:NS,computed:{isTableSimple:function(){return!0}}});function US(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function WS(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?US(Object(r),!0).forEach((function(e){GS(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):US(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function GS(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var qS=function(t){return t>0},YS=vl({animation:fl(gi),columns:fl(fi,5,qS),hideHeader:fl(pi,!1),rows:fl(fi,3,qS),showFooter:fl(pi,!1),tableProps:fl(bi,{})},cn),KS=o.default.extend({name:cn,functional:!0,props:YS,render:function(t,e){var r=e.props,o=r.animation,n=r.columns,i=t("th",[t(OS,{props:{animation:o}})]),a=t("tr",na(n,i)),l=t("td",[t(OS,{props:{width:"75%",animation:o}})]),s=t("tr",na(n,l)),c=t("tbody",na(r.rows,s)),d=r.hideHeader?t():t("thead",[a]),p=r.showFooter?t("tfoot",[a]):t();return t(HS,{props:WS({},r.tableProps)},[d,c,p])}}),XS=vl({loading:fl(pi,!1)},dn),JS=lr({components:{BSkeleton:OS,BSkeletonIcon:_S,BSkeletonImg:$S,BSkeletonTable:KS,BSkeletonWrapper:o.default.extend({name:dn,functional:!0,props:XS,render:function(t,e){var r=e.data,o=e.props,n=e.slots,i=e.scopedSlots,a=n(),l=i||{},s={};return o.loading?t("div",xr(r,{attrs:{role:"alert","aria-live":"polite","aria-busy":!0},staticClass:"b-skeleton-wrapper",key:"loading"}),jl("loading",s,l,a)):jl(Ii,s,l,a)}})}}),ZS=lr({components:{BSpinner:bO}});function QS(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function tP(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var eP="light",rP="dark",oP=vl({variant:fl(gi)},"BTr"),nP=o.default.extend({name:"BTr",mixins:[bc,gc,Sl],provide:function(){return{bvTableTr:this}},inject:{bvTableRowGroup:{default:function(){return{}}}},inheritAttrs:!1,props:oP,computed:{inTbody:function(){return this.bvTableRowGroup.isTbody},inThead:function(){return this.bvTableRowGroup.isThead},inTfoot:function(){return this.bvTableRowGroup.isTfoot},isDark:function(){return this.bvTableRowGroup.isDark},isStacked:function(){return this.bvTableRowGroup.isStacked},isResponsive:function(){return this.bvTableRowGroup.isResponsive},isStickyHeader:function(){return this.bvTableRowGroup.isStickyHeader},hasStickyHeader:function(){return!this.isStacked&&this.bvTableRowGroup.hasStickyHeader},tableVariant:function(){return this.bvTableRowGroup.tableVariant},headVariant:function(){return this.inThead?this.bvTableRowGroup.headVariant:null},footVariant:function(){return this.inTfoot?this.bvTableRowGroup.footVariant:null},isRowDark:function(){return this.headVariant!==eP&&this.footVariant!==eP&&(this.headVariant===rP||this.footVariant===rP||this.isDark)},trClasses:function(){var t=this.variant;return[t?"".concat(this.isRowDark?"bg":"table","-").concat(t):null]},trAttrs:function(){return function(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?QS(Object(r),!0).forEach((function(e){tP(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):QS(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}({role:"row"},this.bvAttrs)}},render:function(t){return t("tr",{class:this.trClasses,attrs:this.trAttrs,on:this.bvListeners},this.normalizeSlot())}}),iP={},aP=o.default.extend({props:iP,methods:{renderBottomRow:function(){var t=this.computedFields,e=this.stacked,r=this.tbodyTrClass,o=this.tbodyTrAttr,n=this.$createElement;return this.hasNormalizedSlot(zi)&&!0!==e&&""!==e?n(nP,{staticClass:"b-table-bottom-row",class:[pe(r)?r(null,"row-bottom"):r],attrs:pe(o)?o(null,"row-bottom"):o,key:"b-bottom-row"},this.normalizeSlot(zi,{columns:t.length,fields:t})):n()}}});function lP(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function sP(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?lP(Object(r),!0).forEach((function(e){cP(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):lP(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function cP(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var dP,pP,uP,mP=function(t){return(t=la(t,0))>0?t:null},fP=function(t){return de(t)||mP(t)>0},bP=vl({colspan:fl(Ti,null,fP),rowspan:fl(Ti,null,fP),stackedHeading:fl(gi),stickyColumn:fl(pi,!1),variant:fl(gi)},fn),hP=o.default.extend({name:fn,mixins:[bc,gc,Sl],inject:{bvTableTr:{default:function(){return{}}}},inheritAttrs:!1,props:bP,computed:{tag:function(){return"td"},inTbody:function(){return this.bvTableTr.inTbody},inThead:function(){return this.bvTableTr.inThead},inTfoot:function(){return this.bvTableTr.inTfoot},isDark:function(){return this.bvTableTr.isDark},isStacked:function(){return this.bvTableTr.isStacked},isStackedCell:function(){return this.inTbody&&this.isStacked},isResponsive:function(){return this.bvTableTr.isResponsive},isStickyHeader:function(){return this.bvTableTr.isStickyHeader},hasStickyHeader:function(){return this.bvTableTr.hasStickyHeader},isStickyColumn:function(){return!this.isStacked&&(this.isResponsive||this.hasStickyHeader)&&this.stickyColumn},rowVariant:function(){return this.bvTableTr.variant},headVariant:function(){return this.bvTableTr.headVariant},footVariant:function(){return this.bvTableTr.footVariant},tableVariant:function(){return this.bvTableTr.tableVariant},computedColspan:function(){return mP(this.colspan)},computedRowspan:function(){return mP(this.rowspan)},cellClasses:function(){var t=this.variant,e=this.headVariant,r=this.isStickyColumn;return(!t&&this.isStickyHeader&&!e||!t&&r&&this.inTfoot&&!this.footVariant||!t&&r&&this.inThead&&!e||!t&&r&&this.inTbody)&&(t=this.rowVariant||this.tableVariant||"b-table-default"),[t?"".concat(this.isDark?"bg":"table","-").concat(t):null,r?"b-table-sticky-column":null]},cellAttrs:function(){var t=this.stackedHeading,e=this.inThead||this.inTfoot,r=this.computedColspan,o=this.computedRowspan,n="cell",i=null;return e?(n="columnheader",i=r>0?"colspan":"col"):Pa(this.tag,"th")&&(n="rowheader",i=o>0?"rowgroup":"row"),sP(sP({colspan:r,rowspan:o,role:n,scope:i},this.bvAttrs),{},{"data-label":this.isStackedCell&&!de(t)?ba(t):null})}},render:function(t){var e=[this.normalizeSlot()];return t(this.tag,{class:this.cellClasses,attrs:this.cellAttrs,on:this.bvListeners},[this.isStackedCell?t("div",[e]):e])}}),gP=(dP={},pP="busy",uP=fl(pi,!1),pP in dP?Object.defineProperty(dP,pP,{value:uP,enumerable:!0,configurable:!0,writable:!0}):dP.busy=uP,dP),vP=o.default.extend({props:gP,data:function(){return{localBusy:!1}},computed:{computedBusy:function(){return this.busy||this.localBusy}},watch:{localBusy:function(t,e){t!==e&&this.$emit("update:busy",t)}},methods:{stopIfBusy:function(t){return!!this.computedBusy&&($l(t),!0)},renderBusy:function(){var t=this.tbodyTrClass,e=this.tbodyTrAttr,r=this.$createElement;return this.computedBusy&&this.hasNormalizedSlot(Ki)?r(nP,{staticClass:"b-table-busy-slot",class:[pe(t)?t(null,Ki):t],attrs:pe(e)?e(null,Ki):e,key:"table-busy-slot"},[r(hP,{props:{colspan:this.computedFields.length||null}},[this.normalizeSlot(Ki)])]):null}}}),xP={caption:fl(gi),captionHtml:fl(gi)},yP=o.default.extend({props:xP,computed:{captionId:function(){return this.isStacked?this.safeId("_caption_"):null}},methods:{renderCaption:function(){var t=this.caption,e=this.captionHtml,r=this.$createElement,o=r(),n=this.hasNormalizedSlot(Xi);return(n||t||e)&&(o=r("caption",{attrs:{id:this.captionId},domProps:n?{}:ld(e,t),key:"caption",ref:"caption"},this.normalizeSlot(Xi))),o}}}),wP={},kP=o.default.extend({methods:{renderColgroup:function(){var t=this.computedFields,e=this.$createElement,r=e();return this.hasNormalizedSlot(Ji)&&(r=e("colgroup",{key:"colgroup"},[this.normalizeSlot(Ji,{columns:t.length,fields:t})])),r}}}),OP={emptyFilteredHtml:fl(gi),emptyFilteredText:fl(gi,"There are no records matching your request"),emptyHtml:fl(gi),emptyText:fl(gi,"There are no records to show"),showEmpty:fl(pi,!1)},jP=o.default.extend({props:OP,methods:{renderEmpty:function(){var t=this.computedItems,e=this.$createElement,r=e();if(this.showEmpty&&(!t||0===t.length)&&(!this.computedBusy||!this.hasNormalizedSlot(Ki))){var o=this.computedFields,n=this.isFiltered,i=this.emptyText,a=this.emptyHtml,l=this.emptyFilteredText,s=this.emptyFilteredHtml,c=this.tbodyTrClass,d=this.tbodyTrAttr;(r=this.normalizeSlot(n?"emptyfiltered":Fi,{emptyFilteredHtml:s,emptyFilteredText:l,emptyHtml:a,emptyText:i,fields:o,items:t}))||(r=e("div",{class:["text-center","my-2"],domProps:n?ld(s,l):ld(a,i)})),r=e(hP,{props:{colspan:o.length||null}},[e("div",{attrs:{role:"alert","aria-live":"polite"}},[r])]),r=e(nP,{staticClass:"b-table-empty-row",class:[pe(c)?c(null,"row-empty"):c],attrs:pe(d)?d(null,"row-empty"):d,key:n?"b-empty-filtered-row":"b-empty-row"},[r])}return r}}}),SP=function t(e){return de(e)?"":ge(e)&&!xe(e)?$e(e).sort().map((function(r){return t(e[r])})).filter((function(t){return!!t})).join(" "):ba(e)};function PP(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function TP(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?PP(Object(r),!0).forEach((function(e){_P(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):PP(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function _P(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var CP="_cellVariants",$P="_rowVariant",DP="_showDetails",EP=[CP,$P,DP].reduce((function(t,e){return TP(TP({},t),{},_P({},e,!0))}),{}),zP=["a","a *","button","button *","input:not(.disabled):not([disabled])","select:not(.disabled):not([disabled])","textarea:not(.disabled):not([disabled])",'[role="link"]','[role="link"] *','[role="button"]','[role="button"] *',"[tabindex]:not(.disabled):not([disabled])"].join(","),BP=function(t,e,r){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},n=$e(o).reduce((function(e,r){var n=o[r],i=n.filterByFormatted,a=pe(i)?i:i?n.formatter:null;return pe(a)&&(e[r]=a(t[r],r,t)),e}),Ee(t)),i=$e(n).filter((function(t){return!(EP[t]||he(e)&&e.length>0&&ra(e,t)||he(r)&&r.length>0&&!ra(r,t))}));return ze(n,i)};function AP(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}var IP={filter:fl([].concat(function(t){return function(t){if(Array.isArray(t))return AP(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return AP(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?AP(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(yi),[hi])),filterDebounce:fl(Ti,0,(function(t){return gt.test(String(t))})),filterFunction:fl(mi),filterIgnoredFields:fl(di,[]),filterIncludedFields:fl(di,[])},FP=o.default.extend({props:IP,data:function(){return{isFiltered:!1,localFilter:this.filterSanitize(this.filter)}},computed:{computedFilterIgnored:function(){return oa(this.filterIgnoredFields||[]).filter(He)},computedFilterIncluded:function(){return oa(this.filterIncludedFields||[]).filter(He)},computedFilterDebounce:function(){var t=la(this.filterDebounce,0);return t>0&&Ye('Prop "filter-debounce" is deprecated. Use the debounce feature of "<b-form-input>" instead.',mn),t},localFiltering:function(){return!this.hasProvider||!!this.noProviderFiltering},filteredCheck:function(){return{filteredItems:this.filteredItems,localItems:this.localItems,localFilter:this.localFilter}},localFilterFn:function(){var t=this.filterFunction;return yl(t)?t:null},filteredItems:function(){var t=this.localItems,e=this.localFilter,r=this.localFiltering?this.filterFnFactory(this.localFilterFn,e)||this.defaultFilterFnFactory(e):null;return r&&t.length>0?t.filter(r):t}},watch:{computedFilterDebounce:function(t){!t&&this.$_filterTimer&&(this.clearFilterTimer(),this.localFilter=this.filterSanitize(this.filter))},filter:{deep:!0,handler:function(t){var e=this,r=this.computedFilterDebounce;this.clearFilterTimer(),r&&r>0?this.$_filterTimer=setTimeout((function(){e.localFilter=e.filterSanitize(t)}),r):this.localFilter=this.filterSanitize(t)}},filteredCheck:function(t){var e=t.filteredItems,r=t.localFilter,o=!1;r?dc(r,[])||dc(r,{})?o=!1:r&&(o=!0):o=!1,o&&this.$emit(In,e,e.length),this.isFiltered=o},isFiltered:function(t,e){if(!1===t&&!0===e){var r=this.localItems;this.$emit(In,r,r.length)}}},created:function(){var t=this;this.$_filterTimer=null,this.$nextTick((function(){t.isFiltered=Boolean(t.localFilter)}))},beforeDestroy:function(){this.clearFilterTimer()},methods:{clearFilterTimer:function(){clearTimeout(this.$_filterTimer),this.$_filterTimer=null},filterSanitize:function(t){return!this.localFiltering||this.localFilterFn||me(t)||we(t)?Ne(t):""},filterFnFactory:function(t,e){return t&&pe(t)&&e&&!dc(e,[])&&!dc(e,{})?function(r){return t(r,e)}:null},defaultFilterFnFactory:function(t){var e=this;if(!t||!me(t)&&!we(t))return null;var r=t;if(me(r)){var o=fa(t).replace(Tt,"\\s+");r=new RegExp(".*".concat(o,".*"),"i")}return function(t){return r.lastIndex=0,r.test((o=t,n=e.computedFilterIgnored,i=e.computedFilterIncluded,a=e.computedFieldsObj,ge(o)?SP(BP(o,n,i,a)):""));var o,n,i,a}}}});function LP(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function MP(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?LP(Object(r),!0).forEach((function(e){RP(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):LP(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function RP(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var VP=kl("value",{type:di,defaultValue:[]}),NP=VP.mixin,HP=VP.props,UP=VP.prop,WP=VP.event,GP=Ie(MP(MP({},HP),{},RP({fields:fl(di,null),items:fl(di,[]),primaryKey:fl(gi)},UP,fl(di,[])))),qP=o.default.extend({mixins:[NP],props:GP,data:function(){var t=this.items;return{localItems:he(t)?t.slice():[]}},computed:{computedFields:function(){return function(t,e){var r=[];if(he(t)&&t.filter(He).forEach((function(t){if(me(t))r.push({key:t,label:ua(t)});else if(ge(t)&&t.key&&me(t.key))r.push(Ee(t));else if(ge(t)&&1===$e(t).length){var e=$e(t)[0],o=function(t,e){var r=null;return me(e)?r={key:t,label:e}:pe(e)?r={key:t,formatter:e}:ge(e)?(r=Ee(e)).key=r.key||t:!1!==e&&(r={key:t}),r}(e,t[e]);o&&r.push(o)}})),0===r.length&&he(e)&&e.length>0){var o=e[0];$e(o).forEach((function(t){EP[t]||r.push({key:t,label:ua(t)})}))}var n={};return r.filter((function(t){return!n[t.key]&&(n[t.key]=!0,t.label=me(t.label)?t.label:ua(t.key),!0)}))}(this.fields,this.localItems)},computedFieldsObj:function(){var t=this.$parent;return this.computedFields.reduce((function(e,r){if(e[r.key]=Ee(r),r.formatter){var o=r.formatter;me(o)&&pe(t[o])?o=t[o]:pe(o)||(o=void 0),e[r.key].formatter=o}return e}),{})},computedItems:function(){return(this.paginatedItems||this.sortedItems||this.filteredItems||this.localItems||[]).slice()},context:function(){return{filter:this.localFilter,sortBy:this.localSortBy,sortDesc:this.localSortDesc,perPage:os(la(this.perPage,0),0),currentPage:os(la(this.currentPage,0),1),apiUrl:this.apiUrl}}},watch:{items:function(t){this.localItems=he(t)?t.slice():[]},computedItems:function(t,e){dc(t,e)||this.$emit(WP,t)},context:function(t,e){dc(t,e)||this.$emit($n,t)}},mounted:function(){this.$emit(WP,this.computedItems)},methods:{getFieldFormatter:function(t){var e=this.computedFieldsObj[t];return e?e.formatter:void 0}}}),YP={currentPage:fl(Ti,1),perPage:fl(Ti,0)},KP=o.default.extend({props:YP,computed:{localPaging:function(){return!this.hasProvider||!!this.noProviderPaging},paginatedItems:function(){var t=this.sortedItems||this.filteredItems||this.localItems||[],e=os(la(this.currentPage,1),1),r=os(la(this.perPage,0),0);return this.localPaging&&r&&(t=t.slice((e-1)*r,e*r)),t}}}),XP=El(mn,Jn),JP=zl(mn,"refresh"),ZP={apiUrl:fl(gi),items:fl(vi,[]),noProviderFiltering:fl(pi,!1),noProviderPaging:fl(pi,!1),noProviderSorting:fl(pi,!1)},QP=o.default.extend({mixins:[hc],props:ZP,computed:{hasProvider:function(){return pe(this.items)},providerTriggerContext:function(){var t={apiUrl:this.apiUrl,filter:null,sortBy:null,sortDesc:null,perPage:null,currentPage:null};return this.noProviderFiltering||(t.filter=this.localFilter),this.noProviderSorting||(t.sortBy=this.localSortBy,t.sortDesc=this.localSortDesc),this.noProviderPaging||(t.perPage=this.perPage,t.currentPage=this.currentPage),Ee(t)}},watch:{items:function(t){(this.hasProvider||pe(t))&&this.$nextTick(this._providerUpdate)},providerTriggerContext:function(t,e){dc(t,e)||this.$nextTick(this._providerUpdate)}},mounted:function(){var t=this;!this.hasProvider||this.localItems&&0!==this.localItems.length||this._providerUpdate(),this.listenOnRoot(JP,(function(e){e!==t.id&&e!==t||t.refresh()}))},methods:{refresh:function(){var t=this.items,e=this.refresh;this.$off(Jn,e),this.computedBusy?this.localBusy&&this.hasProvider&&this.$on(Jn,e):(this.clearSelected(),this.hasProvider?this.$nextTick(this._providerUpdate):this.localItems=he(t)?t.slice():[])},_providerSetLocal:function(t){this.localItems=he(t)?t.slice():[],this.localBusy=!1,this.$emit(Jn),this.id&&this.emitOnRoot(XP,this.id)},_providerUpdate:function(){var t=this;this.hasProvider&&(this.computedBusy?this.$nextTick(this.refresh):(this.localBusy=!0,this.$nextTick((function(){try{var e=t.items(t.context,t._providerSetLocal);!function(t){return!de(t)&&pe(t.then)&&pe(t.catch)}(e)?he(e)?t._providerSetLocal(e):2!==t.items.length&&(Ye("Provider function didn't request callback and did not return a promise or data.",mn),t.localBusy=!1):e.then((function(e){t._providerSetLocal(e)}))}catch(e){Ye("Provider function error [".concat(e.name,"] ").concat(e.message,"."),mn),t.localBusy=!1,t.$off(Jn,t.refresh)}}))))}}});function tT(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var eT,rT,oT=["range","multi","single"],nT={noSelectOnClick:fl(pi,!1),selectMode:fl(gi,"multi",(function(t){return ra(oT,t)})),selectable:fl(pi,!1),selectedVariant:fl(gi,"active")},iT=o.default.extend({props:nT,data:function(){return{selectedRows:[],selectedLastRow:-1}},computed:{isSelectable:function(){return this.selectable&&this.selectMode},hasSelectableRowClick:function(){return this.isSelectable&&!this.noSelectOnClick},supportsSelectableRows:function(){return!0},selectableHasSelection:function(){var t=this.selectedRows;return this.isSelectable&&t&&t.length>0&&t.some(He)},selectableIsMultiSelect:function(){return this.isSelectable&&ra(["range","multi"],this.selectMode)},selectableTableClasses:function(){var t,e=this.isSelectable;return tT(t={"b-table-selectable":e},"b-table-select-".concat(this.selectMode),e),tT(t,"b-table-selecting",this.selectableHasSelection),tT(t,"b-table-selectable-no-click",e&&!this.hasSelectableRowClick),t},selectableTableAttrs:function(){return{"aria-multiselectable":this.isSelectable?this.selectableIsMultiSelect?"true":"false":null}}},watch:{computedItems:function(t,e){var r=!1;if(this.isSelectable&&this.selectedRows.length>0){r=he(t)&&he(e)&&t.length===e.length;for(var o=0;r&&o<t.length;o++)r=dc(BP(t[o]),BP(e[o]))}r||this.clearSelected()},selectable:function(t){this.clearSelected(),this.setSelectionHandlers(t)},selectMode:function(){this.clearSelected()},hasSelectableRowClick:function(t){this.clearSelected(),this.setSelectionHandlers(!t)},selectedRows:function(t,e){var r=this;if(this.isSelectable&&!dc(t,e)){var o=[];t.forEach((function(t,e){t&&o.push(r.computedItems[e])})),this.$emit("row-selected",o)}}},beforeMount:function(){this.isSelectable&&this.setSelectionHandlers(!0)},methods:{selectRow:function(t){if(this.isSelectable&&fe(t)&&t>=0&&t<this.computedItems.length&&!this.isRowSelected(t)){var e=this.selectableIsMultiSelect?this.selectedRows.slice():[];e[t]=!0,this.selectedLastClicked=-1,this.selectedRows=e}},unselectRow:function(t){if(this.isSelectable&&fe(t)&&this.isRowSelected(t)){var e=this.selectedRows.slice();e[t]=!1,this.selectedLastClicked=-1,this.selectedRows=e}},selectAllRows:function(){var t=this.computedItems.length;this.isSelectable&&t>0&&(this.selectedLastClicked=-1,this.selectedRows=this.selectableIsMultiSelect?na(t,!0):[!0])},isRowSelected:function(t){return!(!fe(t)||!this.selectedRows[t])},clearSelected:function(){this.selectedLastClicked=-1,this.selectedRows=[]},selectableRowClasses:function(t){if(this.isSelectable&&this.isRowSelected(t)){var e=this.selectedVariant;return tT({"b-table-row-selected":!0},"".concat(this.dark?"bg":"table","-").concat(e),e)}return{}},selectableRowAttrs:function(t){return{"aria-selected":this.isSelectable?this.isRowSelected(t)?"true":"false":null}},setSelectionHandlers:function(t){var e=t&&!this.noSelectOnClick?"$on":"$off";this[e](Zn,this.selectionHandler),this[e](In,this.clearSelected),this[e]($n,this.clearSelected)},selectionHandler:function(t,e,r){if(this.isSelectable&&!this.noSelectOnClick){var o=this.selectMode,n=this.selectedLastRow,i=this.selectedRows.slice(),a=!i[e];if("single"===o)i=[];else if("range"===o)if(n>-1&&r.shiftKey){for(var l=rs(n,e);l<=os(n,e);l++)i[l]=!0;a=!0}else r.ctrlKey||r.metaKey||(i=[],a=!0),this.selectedLastRow=a?e:-1;i[e]=a,this.selectedRows=i}else this.clearSelected()}}}),aT=function(t,e){return t.map((function(t,e){return[e,t]})).sort(function(t,e){return this(t[1],e[1])||t[0]-e[0]}.bind(e)).map((function(t){return t[1]}))},lT=function(t){return de(t)?"":be(t)?sa(t,t):t};function sT(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function cT(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?sT(Object(r),!0).forEach((function(e){dT(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):sT(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function dT(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var pT="sortBy",uT="sortDesc",mT="asc",fT="desc",bT=[mT,fT,"last"],hT=(dT(eT={labelSortAsc:fl(gi,"Click to sort Ascending"),labelSortClear:fl(gi,"Click to clear sorting"),labelSortDesc:fl(gi,"Click to sort Descending"),noFooterSorting:fl(pi,!1),noLocalSorting:fl(pi,!1),noSortReset:fl(pi,!1)},pT,fl(gi)),dT(eT,"sortCompare",fl(mi)),dT(eT,"sortCompareLocale",fl(wi)),dT(eT,"sortCompareOptions",fl(bi,{numeric:!0})),dT(eT,uT,fl(pi,!1)),dT(eT,"sortDirection",fl(gi,mT,(function(t){return ra(bT,t)}))),dT(eT,"sortIconLeft",fl(pi,!1)),dT(eT,"sortNullLast",fl(pi,!1)),eT),gT=o.default.extend({props:hT,data:function(){return{localSortBy:this.sortBy||"",localSortDesc:this.sortDesc||!1}},computed:{localSorting:function(){return this.hasProvider?!!this.noProviderSorting:!this.noLocalSorting},isSortable:function(){return this.computedFields.some((function(t){return t.sortable}))},sortedItems:function(){var t=this.localSortBy,e=this.localSortDesc,r=this.sortCompareLocale,o=this.sortNullLast,n=this.sortCompare,i=this.localSorting,a=(this.filteredItems||this.localItems||[]).slice(),l=cT(cT({},this.sortCompareOptions),{},{usage:"sort"});if(t&&i){var s=(this.computedFieldsObj[t]||{}).sortByFormatted,c=pe(s)?s:s?this.getFieldFormatter(t):void 0;return aT(a,(function(i,a){var s=null;return pe(n)&&(s=n(i,a,t,e,c,l,r)),(de(s)||!1===s)&&(s=function(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=r.sortBy,n=void 0===o?null:o,i=r.formatter,a=void 0===i?null:i,l=r.locale,s=void 0===l?void 0:l,c=r.localeOptions,d=void 0===c?{}:c,p=r.nullLast,u=void 0!==p&&p,m=We(t,n,null),f=We(e,n,null);return pe(a)&&(m=a(m,n,t),f=a(f,n,e)),m=lT(m),f=lT(f),xe(m)&&xe(f)||fe(m)&&fe(f)?m<f?-1:m>f?1:0:u&&""===m&&""!==f?1:u&&""!==m&&""===f?-1:SP(m).localeCompare(SP(f),s,d)}(i,a,{sortBy:t,formatter:c,locale:r,localeOptions:l,nullLast:o})),(s||0)*(e?-1:1)}))}return a}},watch:(rT={isSortable:function(t){t?this.isSortable&&this.$on(Rn,this.handleSort):this.$off(Rn,this.handleSort)}},dT(rT,uT,(function(t){t!==this.localSortDesc&&(this.localSortDesc=t||!1)})),dT(rT,pT,(function(t){t!==this.localSortBy&&(this.localSortBy=t||"")})),dT(rT,"localSortDesc",(function(t,e){t!==e&&this.$emit("update:sortDesc",t)})),dT(rT,"localSortBy",(function(t,e){t!==e&&this.$emit("update:sortBy",t)})),rT),created:function(){this.isSortable&&this.$on(Rn,this.handleSort)},methods:{handleSort:function(t,e,r,o){var n=this;if(this.isSortable&&(!o||!this.noFooterSorting)){var i=!1,a=function(){var t=e.sortDirection||n.sortDirection;t===mT?n.localSortDesc=!1:t===fT&&(n.localSortDesc=!0)};if(e.sortable){var l=!this.localSorting&&e.sortKey?e.sortKey:t;this.localSortBy===l?this.localSortDesc=!this.localSortDesc:(this.localSortBy=l,a()),i=!0}else this.localSortBy&&!this.noSortReset&&(this.localSortBy="",a(),i=!0);i&&this.$emit("sort-changed",this.context)}},sortTheadThClasses:function(t,e,r){return{"b-table-sort-icon-left":e.sortable&&this.sortIconLeft&&!(r&&this.noFooterSorting)}},sortTheadThAttrs:function(t,e,r){if(!this.isSortable||r&&this.noFooterSorting)return{};var o=e.sortable;return{"aria-sort":o&&this.localSortBy===t?this.localSortDesc?"descending":"ascending":o?"none":null}},sortTheadThLabel:function(t,e,r){if(!this.isSortable||r&&this.noFooterSorting)return null;var o="";if(e.sortable)if(this.localSortBy===t)o=this.localSortDesc?this.labelSortAsc:this.labelSortDesc;else{o=this.localSortDesc?this.labelSortDesc:this.labelSortAsc;var n=this.sortDirection||e.sortDirection;n===mT?o=this.labelSortAsc:n===fT&&(o=this.labelSortDesc)}else this.noSortReset||(o=this.localSortBy?this.labelSortClear:"");return ha(o)||null}}});function vT(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function xT(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?vT(Object(r),!0).forEach((function(e){yT(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):vT(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function yT(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var wT=vl({tbodyTransitionHandlers:fl(bi),tbodyTransitionProps:fl(bi)},vn),kT=o.default.extend({name:vn,mixins:[bc,gc,Sl],provide:function(){return{bvTableRowGroup:this}},inject:{bvTable:{default:function(){return{}}}},inheritAttrs:!1,props:wT,computed:{isTbody:function(){return!0},isDark:function(){return this.bvTable.dark},isStacked:function(){return this.bvTable.isStacked},isResponsive:function(){return this.bvTable.isResponsive},isStickyHeader:function(){return!1},hasStickyHeader:function(){return!this.isStacked&&this.bvTable.stickyHeader},tableVariant:function(){return this.bvTable.tableVariant},isTransitionGroup:function(){return this.tbodyTransitionProps||this.tbodyTransitionHandlers},tbodyAttrs:function(){return xT({role:"rowgroup"},this.bvAttrs)},tbodyProps:function(){var t=this.tbodyTransitionProps;return t?xT(xT({},t),{},{tag:"tbody"}):{}}},render:function(t){var e={props:this.tbodyProps,attrs:this.tbodyAttrs};return this.isTransitionGroup?(e.on=this.tbodyTransitionHandlers||{},e.nativeOn=this.bvListeners):e.on=this.bvListeners,t(this.isTransitionGroup?"transition-group":"tbody",e,this.normalizeSlot())}}),OT=["TD","TH","TR"],jT=function(t){if(!t||!t.target)return!1;var e=t.target;if(e.disabled||-1!==OT.indexOf(e.tagName))return!1;if(Ba(".dropdown-menu",e))return!0;var r="LABEL"===e.tagName?e:Ba("label",e);if(r){var o=Na(r,"for"),n=o?Ia(o):Ea("input, select, textarea",r);if(n&&!n.disabled)return!0}return za(e,zP)},ST=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document,e=Ka();return!!(e&&""!==e.toString().trim()&&e.containsNode&&ja(t))&&e.containsNode(t,!0)},PT=vl(bP,"BTh"),TT=o.default.extend({name:"BTh",extends:hP,props:PT,computed:{tag:function(){return"th"}}});function _T(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function CT(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?_T(Object(r),!0).forEach((function(e){$T(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):_T(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function $T(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function DT(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}var ET={detailsTdClass:fl(yi),tbodyTrAttr:fl(Ci),tbodyTrClass:fl([].concat(function(t){return function(t){if(Array.isArray(t))return DT(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return DT(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?DT(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(yi),[mi]))},zT=o.default.extend({props:ET,methods:{getTdValues:function(t,e,r,o){var n=this.$parent;if(r){var i=We(t,e,"");return pe(r)?r(i,e,t):me(r)&&pe(n[r])?n[r](i,e,t):r}return o},getThValues:function(t,e,r,o,n){var i=this.$parent;if(r){var a=We(t,e,"");return pe(r)?r(a,e,t,o):me(r)&&pe(i[r])?i[r](a,e,t,o):r}return n},getFormattedValue:function(t,e){var r=e.key,o=this.getFieldFormatter(r),n=We(t,r,null);return pe(o)&&(n=o(n,r,t)),de(n)?"":n},toggleDetailsFactory:function(t,e){var r=this;return function(){t&&r.$set(e,DP,!e[DP])}},rowHovered:function(t){this.tbodyRowEvtStopped(t)||this.emitTbodyRowEvent("row-hovered",t)},rowUnhovered:function(t){this.tbodyRowEvtStopped(t)||this.emitTbodyRowEvent("row-unhovered",t)},renderTbodyRowCell:function(t,e,r,o){var n=this,i=this.isStacked,a=t.key,l=t.label,s=t.isRowHeader,c=this.$createElement,d=this.hasNormalizedSlot(Yi),p=this.getFormattedValue(r,t),u=!i&&(this.isResponsive||this.stickyHeader)&&t.stickyColumn,m=u?s?TT:hP:s?"th":"td",f=r[CP]&&r[CP][a]?r[CP][a]:t.variant||null,b={class:[t.class?t.class:"",this.getTdValues(r,a,t.tdClass,"")],props:{},attrs:CT({"aria-colindex":String(e+1)},s?this.getThValues(r,a,t.thAttr,"row",{}):this.getTdValues(r,a,t.tdAttr,{})),key:"row-".concat(o,"-cell-").concat(e,"-").concat(a)};u?b.props={stackedHeading:i?l:null,stickyColumn:!0,variant:f}:(b.attrs["data-label"]=i&&!de(l)?ba(l):null,b.attrs.role=s?"rowheader":"cell",b.attrs.scope=s?"row":null,f&&b.class.push("".concat(this.dark?"bg":"table","-").concat(f)));var h={item:r,index:o,field:t,unformatted:We(r,a,""),value:p,toggleDetails:this.toggleDetailsFactory(d,r),detailsShowing:Boolean(r[DP])};this.supportsSelectableRows&&(h.rowSelected=this.isRowSelected(o),h.selectRow=function(){return n.selectRow(o)},h.unselectRow=function(){return n.unselectRow(o)});var g=this.$_bodyFieldSlotNameCache[a],v=g?this.normalizeSlot(g,h):ba(p);return this.isStacked&&(v=[c("div",[v])]),c(m,b,[v])},renderTbodyRow:function(t,e){var r=this,o=this.computedFields,n=this.striped,i=this.primaryKey,a=this.currentPage,l=this.perPage,s=this.tbodyTrClass,c=this.tbodyTrAttr,d=this.$createElement,p=this.hasNormalizedSlot(Yi),u=t[DP]&&p,m=this.$listeners["row-clicked"]||this.hasSelectableRowClick,f=[],b=u?this.safeId("_details_".concat(e,"_")):null,h=o.map((function(o,n){return r.renderTbodyRowCell(o,n,t,e)})),g=null;a&&l&&l>0&&(g=String((a-1)*l+e+1));var v=ba(We(t,i))||null,x=v||ba(e),y=v?this.safeId("_row_".concat(v)):null,w=this.selectableRowClasses?this.selectableRowClasses(e):{},k=this.selectableRowAttrs?this.selectableRowAttrs(e):{},O=pe(s)?s(t,"row"):s,j=pe(c)?c(t,"row"):c;if(f.push(d(nP,{class:[O,w,u?"b-table-has-details":""],props:{variant:t[$P]||null},attrs:CT(CT({id:y},j),{},{tabindex:m?"0":null,"data-pk":v||null,"aria-details":b,"aria-owns":b,"aria-rowindex":g},k),on:{mouseenter:this.rowHovered,mouseleave:this.rowUnhovered},key:"__b-table-row-".concat(x,"__"),ref:"item-rows",refInFor:!0},h)),u){var S={item:t,index:e,fields:o,toggleDetails:this.toggleDetailsFactory(p,t)};this.supportsSelectableRows&&(S.rowSelected=this.isRowSelected(e),S.selectRow=function(){return r.selectRow(e)},S.unselectRow=function(){return r.unselectRow(e)});var P=d(hP,{props:{colspan:o.length},class:this.detailsTdClass},[this.normalizeSlot(Yi,S)]);n&&f.push(d("tr",{staticClass:"d-none",attrs:{"aria-hidden":"true",role:"presentation"},key:"__b-table-details-stripe__".concat(x)}));var T=pe(this.tbodyTrClass)?this.tbodyTrClass(t,Yi):this.tbodyTrClass,_=pe(this.tbodyTrAttr)?this.tbodyTrAttr(t,Yi):this.tbodyTrAttr;f.push(d(nP,{staticClass:"b-table-details",class:[T],props:{variant:t[$P]||null},attrs:CT(CT({},_),{},{id:b,tabindex:"-1"}),key:"__b-table-details__".concat(x)},[P]))}else p&&(f.push(d()),n&&f.push(d()));return f}}});function BT(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function AT(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?BT(Object(r),!0).forEach((function(e){IT(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):BT(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function IT(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var FT=function(t){return"cell(".concat(t||"",")")},LT=Ie(AT(AT(AT({},wT),ET),{},{tbodyClass:fl(yi)})),MT=o.default.extend({mixins:[zT],props:LT,beforeDestroy:function(){this.$_bodyFieldSlotNameCache=null},methods:{getTbodyTrs:function(){var t=this.$refs,e=t.tbody?t.tbody.$el||t.tbody:null,r=(t["item-rows"]||[]).map((function(t){return t.$el||t}));return e&&e.children&&e.children.length>0&&r&&r.length>0?ea(e.children).filter((function(t){return ra(r,t)})):[]},getTbodyTrIndex:function(t){if(!ja(t))return-1;var e="TR"===t.tagName?t:Ba("tr",t,!0);return e?this.getTbodyTrs().indexOf(e):-1},emitTbodyRowEvent:function(t,e){if(t&&this.hasListener(t)&&e&&e.target){var r=this.getTbodyTrIndex(e.target);if(r>-1){var o=this.computedItems[r];this.$emit(t,o,r,e)}}},tbodyRowEvtStopped:function(t){return this.stopIfBusy&&this.stopIfBusy(t)},onTbodyRowKeydown:function(t){var e=t.target,r=t.keyCode;if(!this.tbodyRowEvtStopped(t)&&"TR"===e.tagName&&Ta(e)&&0===e.tabIndex)if(ra([nc,sc],r))$l(t),this.onTBodyRowClicked(t);else if(ra([cc,rc,ic,oc],r)){var o=this.getTbodyTrIndex(e);if(o>-1){$l(t);var n=this.getTbodyTrs(),i=t.shiftKey;r===ic||i&&r===cc?Qa(n[0]):r===oc||i&&r===rc?Qa(n[n.length-1]):r===cc&&o>0?Qa(n[o-1]):r===rc&&o<n.length-1&&Qa(n[o+1])}}},onTBodyRowClicked:function(t){this.tbodyRowEvtStopped(t)||jT(t)||ST(this.$el)||this.emitTbodyRowEvent(Zn,t)},onTbodyRowMiddleMouseRowClicked:function(t){this.tbodyRowEvtStopped(t)||2!==t.which||this.emitTbodyRowEvent("row-middle-clicked",t)},onTbodyRowContextmenu:function(t){this.tbodyRowEvtStopped(t)||this.emitTbodyRowEvent("row-contextmenu",t)},onTbodyRowDblClicked:function(t){this.tbodyRowEvtStopped(t)||jT(t)||this.emitTbodyRowEvent("row-dblclicked",t)},renderTbody:function(){var t=this,e=this.computedItems,r=this.renderBusy,o=this.renderTopRow,n=this.renderEmpty,i=this.renderBottomRow,a=this.$createElement,l=this.hasListener(Zn)||this.hasSelectableRowClick,s=[],c=r?r():null;if(c)s.push(c);else{var d={},p=FT();p=this.hasNormalizedSlot(p)?p:null,this.computedFields.forEach((function(e){var r=e.key,o=FT(r),n=FT(r.toLowerCase());d[r]=t.hasNormalizedSlot(o)?o:t.hasNormalizedSlot(n)?n:p})),this.$_bodyFieldSlotNameCache=d,s.push(o?o():a()),e.forEach((function(e,r){s.push(t.renderTbodyRow(e,r))})),s.push(n?n():a()),s.push(i?i():a())}var u={auxclick:this.onTbodyRowMiddleMouseRowClicked,contextmenu:this.onTbodyRowContextmenu,dblclick:this.onTbodyRowDblClicked};return l&&(u.click=this.onTBodyRowClicked,u.keydown=this.onTbodyRowKeydown),a(kT,{class:this.tbodyClass||null,props:hl(wT,this.$props),on:u,ref:"tbody"},s)}}});function RT(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function VT(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?RT(Object(r),!0).forEach((function(e){NT(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):RT(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function NT(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var HT=vl({footVariant:fl(gi)},xn),UT=o.default.extend({name:xn,mixins:[bc,gc,Sl],provide:function(){return{bvTableRowGroup:this}},inject:{bvTable:{default:function(){return{}}}},inheritAttrs:!1,props:HT,computed:{isTfoot:function(){return!0},isDark:function(){return this.bvTable.dark},isStacked:function(){return this.bvTable.isStacked},isResponsive:function(){return this.bvTable.isResponsive},isStickyHeader:function(){return!1},hasStickyHeader:function(){return!this.isStacked&&this.bvTable.stickyHeader},tableVariant:function(){return this.bvTable.tableVariant},tfootClasses:function(){return[this.footVariant?"thead-".concat(this.footVariant):null]},tfootAttrs:function(){return VT(VT({},this.bvAttrs),{},{role:"rowgroup"})}},render:function(t){return t("tfoot",{class:this.tfootClasses,attrs:this.tfootAttrs,on:this.bvListeners},this.normalizeSlot())}}),WT={footClone:fl(pi,!1),footRowVariant:fl(gi),footVariant:fl(gi),tfootClass:fl(yi),tfootTrClass:fl(yi)},GT=o.default.extend({props:WT,methods:{renderTFootCustom:function(){var t=this.$createElement;return this.hasNormalizedSlot(Ai)?t(UT,{class:this.tfootClass||null,props:{footVariant:this.footVariant||this.headVariant||null},key:"bv-tfoot-custom"},this.normalizeSlot(Ai,{items:this.computedItems.slice(),fields:this.computedFields.slice(),columns:this.computedFields.length})):t()},renderTfoot:function(){return this.footClone?this.renderThead(!0):this.renderTFootCustom()}}});function qT(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function YT(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var KT=vl({headVariant:fl(gi)},yn),XT=o.default.extend({name:yn,mixins:[bc,gc,Sl],provide:function(){return{bvTableRowGroup:this}},inject:{bvTable:{default:function(){return{}}}},inheritAttrs:!1,props:KT,computed:{isThead:function(){return!0},isDark:function(){return this.bvTable.dark},isStacked:function(){return this.bvTable.isStacked},isResponsive:function(){return this.bvTable.isResponsive},isStickyHeader:function(){return!this.isStacked&&this.bvTable.stickyHeader},hasStickyHeader:function(){return!this.isStacked&&this.bvTable.stickyHeader},tableVariant:function(){return this.bvTable.tableVariant},theadClasses:function(){return[this.headVariant?"thead-".concat(this.headVariant):null]},theadAttrs:function(){return function(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?qT(Object(r),!0).forEach((function(e){YT(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):qT(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}({role:"rowgroup"},this.bvAttrs)}},render:function(t){return t("thead",{class:this.theadClasses,attrs:this.theadAttrs,on:this.bvListeners},this.normalizeSlot())}});function JT(t){return function(t){if(Array.isArray(t))return ZT(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return ZT(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?ZT(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ZT(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}function QT(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function t_(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?QT(Object(r),!0).forEach((function(e){e_(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):QT(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function e_(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var r_=function(t){return"head(".concat(t||"",")")},o_=function(t){return"foot(".concat(t||"",")")},n_={headRowVariant:fl(gi),headVariant:fl(gi),theadClass:fl(yi),theadTrClass:fl(yi)},i_=o.default.extend({props:n_,methods:{fieldClasses:function(t){return[t.class?t.class:"",t.thClass?t.thClass:""]},headClicked:function(t,e,r){this.stopIfBusy&&this.stopIfBusy(t)||jT(t)||ST(this.$el)||($l(t),this.$emit(Rn,e.key,e,t,r))},renderThead:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],r=this.computedFields,o=this.isSortable,n=this.isSelectable,i=this.headVariant,a=this.footVariant,l=this.headRowVariant,s=this.footRowVariant,c=this.$createElement;if(this.isStackedAlways||0===r.length)return c();var d=o||this.hasListener(Rn),p=n?this.selectAllRows:yu,u=n?this.clearSelected:yu,m=function(r,n){var i=r.label,a=r.labelHtml,l=r.variant,s=r.stickyColumn,m=r.key,f=null;r.label.trim()||r.headerTitle||(f=ua(r.key));var b={};d&&(b.click=function(o){t.headClicked(o,r,e)},b.keydown=function(o){var n=o.keyCode;n!==nc&&n!==sc||t.headClicked(o,r,e)});var h=o?t.sortTheadThAttrs(m,r,e):{},g=o?t.sortTheadThClasses(m,r,e):null,v=o?t.sortTheadThLabel(m,r,e):null,x={class:[t.fieldClasses(r),g],props:{variant:l,stickyColumn:s},style:r.thStyle||{},attrs:t_(t_({tabindex:d&&r.sortable?"0":null,abbr:r.headerAbbr||null,title:r.headerTitle||null,"aria-colindex":n+1,"aria-label":f},t.getThValues(null,m,r.thAttr,e?"foot":"head",{})),h),on:b,key:m},y=[r_(m),r_(m.toLowerCase()),r_()];e&&(y=[o_(m),o_(m.toLowerCase()),o_()].concat(JT(y)));var w={label:i,column:m,field:r,isFoot:e,selectAllRows:p,clearSelected:u},k=t.normalizeSlot(y,w)||c("div",{domProps:ld(a,i)}),O=v?c("span",{staticClass:"sr-only"}," (".concat(v,")")):null;return c(TT,x,[k,O].filter(He))},f=r.map(m).filter(He),b=[];if(e)b.push(c(nP,{class:this.tfootTrClass,props:{variant:de(s)?l:s}},f));else{var h={columns:r.length,fields:r,selectAllRows:p,clearSelected:u};b.push(this.normalizeSlot(Zi,h)||c()),b.push(c(nP,{class:this.theadTrClass,props:{variant:l}},f))}return c(e?UT:XT,{class:(e?this.tfootClass:this.theadClass)||null,props:e?{footVariant:a||i||null}:{headVariant:i||null},key:e?"bv-tfoot":"bv-thead"},b)}}}),a_=o.default.extend({methods:{renderTopRow:function(){var t=this.computedFields,e=this.stacked,r=this.tbodyTrClass,o=this.tbodyTrAttr,n=this.$createElement;return this.hasNormalizedSlot(ta)&&!0!==e&&""!==e?n(nP,{staticClass:"b-table-top-row",class:[pe(r)?r(null,"row-top"):r],attrs:pe(o)?o(null,"row-top"):o,key:"b-top-row"},[this.normalizeSlot(ta,{columns:t.length,fields:t})]):n()}}});function l_(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function s_(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?l_(Object(r),!0).forEach((function(e){c_(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):l_(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function c_(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var d_=vl(Ie(s_(s_(s_(s_(s_(s_(s_(s_(s_(s_(s_(s_(s_(s_(s_(s_(s_(s_({},np),iP),gP),xP),wP),OP),IP),GP),YP),ZP),nT),hT),ES),FS),LT),WT),n_),{})),mn),p_=o.default.extend({name:mn,mixins:[bc,DS,ip,Sl,qP,LS,zS,i_,GT,MT,zS,FP,gT,KP,yP,kP,iT,jP,a_,aP,vP,QP],props:d_});function u_(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function m_(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?u_(Object(r),!0).forEach((function(e){f_(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):u_(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function f_(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var b_,h_=vl(Ie(m_(m_(m_(m_(m_(m_(m_(m_(m_({},np),xP),wP),GP),ES),FS),LT),WT),n_)),bn),g_=lr({components:{BTable:p_},plugins:{TableLitePlugin:lr({components:{BTableLite:o.default.extend({name:bn,mixins:[bc,DS,ip,Sl,qP,LS,zS,i_,GT,MT,yP,kP],props:h_})}}),TableSimplePlugin:lr({components:{BTableSimple:HS,BTbody:kT,BThead:XT,BTfoot:UT,BTr:nP,BTd:hP,BTh:TT}})}});function v_(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function x_(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?v_(Object(r),!0).forEach((function(e){y_(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):v_(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function y_(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var w_,k_,O_=kl("value",{type:fi}),j_=O_.mixin,S_=O_.props,P_=O_.prop,T_=O_.event,__=function(t){return!t.disabled},C_=o.default.extend({name:"BVTabButton",inject:{bvTabs:{default:function(){return{}}}},props:{controls:fl(gi),id:fl(gi),noKeyNav:fl(pi,!1),posInSet:fl(fi),setSize:fl(fi),tab:fl(),tabIndex:fl(fi)},methods:{focus:function(){Qa(this.$refs.link)},handleEvt:function(t){if(!this.tab.disabled){var e=t.type,r=t.keyCode,o=t.shiftKey;"click"===e||"keydown"===e&&r===sc?($l(t),this.$emit(Tn,t)):"keydown"!==e||this.noKeyNav||(-1!==[cc,ac,ic].indexOf(r)?($l(t),o||r===ic?this.$emit(Fn,t):this.$emit(Xn,t)):-1!==[rc,lc,oc].indexOf(r)&&($l(t),o||r===oc?this.$emit(Un,t):this.$emit(qn,t)))}}},render:function(t){var e=this.id,r=this.tabIndex,o=this.setSize,n=this.posInSet,i=this.controls,a=this.handleEvt,l=this.tab,s=l.title,c=l.localActive,d=l.disabled,p=l.titleItemClass,u=l.titleLinkClass,m=l.titleLinkAttributes,f=t(Tc,{staticClass:"nav-link",class:[{active:c&&!d,disabled:d},u,c?this.bvTabs.activeNavItemClass:null],props:{disabled:d},attrs:x_(x_({},m),{},{id:e,role:"tab",tabindex:r,"aria-selected":c&&!d?"true":"false","aria-setsize":o,"aria-posinset":n,"aria-controls":i}),on:{click:a,keydown:a},ref:"link"},[this.tab.normalizeSlot(Qi)||s]);return t("li",{staticClass:"nav-item",class:[p],attrs:{role:"presentation"}},[f])}}),$_=Be(Tk,["tabs","isNavBar","cardHeader"]),D_=vl(Ie(x_(x_(x_(x_({},np),S_),$_),{},{activeNavItemClass:fl(yi),activeTabClass:fl(yi),card:fl(pi,!1),contentClass:fl(yi),end:fl(pi,!1),lazy:fl(pi,!1),navClass:fl(yi),navWrapperClass:fl(yi),noFade:fl(pi,!1),noKeyNav:fl(pi,!1),noNavStyle:fl(pi,!1),tag:fl(gi,"div")})),gn),E_=o.default.extend({name:gn,mixins:[ip,j_,Sl],provide:function(){return{bvTabs:this}},props:D_,data:function(){return{currentTab:la(this[P_],-1),tabs:[],registeredTabs:[]}},computed:{fade:function(){return!this.noFade},localNavClass:function(){var t=[];return this.card&&this.vertical&&t.push("card-header","h-100","border-bottom-0","rounded-0"),[].concat(t,[this.navClass])}},watch:(b_={},y_(b_,P_,(function(t,e){if(t!==e){t=la(t,-1),e=la(e,0);var r=this.tabs[t];r&&!r.disabled?this.activateTab(r):t<e?this.previousTab():this.nextTab()}})),y_(b_,"currentTab",(function(t){var e=-1;this.tabs.forEach((function(r,o){o!==t||r.disabled?r.localActive=!1:(r.localActive=!0,e=o)})),this.$emit(T_,e)})),y_(b_,"tabs",(function(t,e){var r=this;dc(t.map((function(t){return t._uid})),e.map((function(t){return t._uid})))||this.$nextTick((function(){r.$emit("changed",t.slice(),e.slice())}))})),y_(b_,"registeredTabs",(function(){this.updateTabs()})),b_),created:function(){this.$_observer=null},mounted:function(){this.setObserver(!0)},beforeDestroy:function(){this.setObserver(!1),this.tabs=[]},methods:{registerTab:function(t){ra(this.registeredTabs,t)||this.registeredTabs.push(t)},unregisterTab:function(t){this.registeredTabs=this.registeredTabs.slice().filter((function(e){return e!==t}))},setObserver:function(){var t=this,e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];if(this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,e){var r=function(){t.$nextTick((function(){ka((function(){t.updateTabs()}))}))};this.$_observer=ju(this.$refs.content,r,{childList:!0,subtree:!1,attributes:!0,attributeFilter:["id"]})}},getTabs:function(){var t=this.registeredTabs.filter((function(t){return 0===t.$children.filter((function(t){return t._isTab})).length})),e=[];if(ot&&t.length>0){var r=t.map((function(t){return"#".concat(t.safeId())})).join(", ");e=Da(r,this.$el).map((function(t){return t.id})).filter(He)}return aT(t,(function(t,r){return e.indexOf(t.safeId())-e.indexOf(r.safeId())}))},updateTabs:function(){var t=this.getTabs(),e=t.indexOf(t.slice().reverse().find((function(t){return t.localActive&&!t.disabled})));if(e<0){var r=this.currentTab;r>=t.length?e=t.indexOf(t.slice().reverse().find(__)):t[r]&&!t[r].disabled&&(e=r)}e<0&&(e=t.indexOf(t.find(__))),t.forEach((function(t,r){t.localActive=r===e})),this.tabs=t,this.currentTab=e},getButtonForTab:function(t){return(this.$refs.buttons||[]).find((function(e){return e.tab===t}))},updateButton:function(t){var e=this.getButtonForTab(t);e&&e.$forceUpdate&&e.$forceUpdate()},activateTab:function(t){var e=this.currentTab,r=this.tabs,o=!1;if(t){var n=r.indexOf(t);if(n!==e&&n>-1&&!t.disabled){var i=new Hf("activate-tab",{cancelable:!0,vueTarget:this,componentId:this.safeId()});this.$emit(i.type,n,e,i),i.defaultPrevented||(this.currentTab=n,o=!0)}}return o||this[P_]===e||this.$emit(T_,e),o},deactivateTab:function(t){return!!t&&this.activateTab(this.tabs.filter((function(e){return e!==t})).find(__))},focusButton:function(t){var e=this;this.$nextTick((function(){Qa(e.getButtonForTab(t))}))},emitTabClick:function(t,e){ye(e)&&t&&t.$emit&&!t.disabled&&t.$emit(Tn,e)},clickTab:function(t,e){this.activateTab(t),this.emitTabClick(t,e)},firstTab:function(t){var e=this.tabs.find(__);this.activateTab(e)&&t&&(this.focusButton(e),this.emitTabClick(e,t))},previousTab:function(t){var e=os(this.currentTab,0),r=this.tabs.slice(0,e).reverse().find(__);this.activateTab(r)&&t&&(this.focusButton(r),this.emitTabClick(r,t))},nextTab:function(t){var e=os(this.currentTab,-1),r=this.tabs.slice(e+1).find(__);this.activateTab(r)&&t&&(this.focusButton(r),this.emitTabClick(r,t))},lastTab:function(t){var e=this.tabs.slice().reverse().find(__);this.activateTab(e)&&t&&(this.focusButton(e),this.emitTabClick(e,t))}},render:function(t){var e=this,r=this.align,o=this.card,n=this.end,i=this.fill,a=this.firstTab,l=this.justified,s=this.lastTab,c=this.nextTab,d=this.noKeyNav,p=this.noNavStyle,u=this.pills,m=this.previousTab,f=this.small,b=this.tabs,h=this.vertical,g=b.find((function(t){return t.localActive&&!t.disabled})),v=b.find((function(t){return!t.disabled})),x=b.map((function(r,o){var n,i=r.safeId,l=null;return d||(l=-1,(r===g||!g&&r===v)&&(l=null)),t(C_,{props:{controls:i?i():null,id:r.controlledBy||(i?i("_BV_tab_button_"):null),noKeyNav:d,posInSet:o+1,setSize:b.length,tab:r,tabIndex:l},on:(n={},y_(n,Tn,(function(t){e.clickTab(r,t)})),y_(n,Fn,a),y_(n,Xn,m),y_(n,qn,c),y_(n,Un,s),n),key:r._uid||o,ref:"buttons",refInFor:!0})})),y=t(_k,{class:this.localNavClass,attrs:{role:"tablist",id:this.safeId("_BV_tab_controls_")},props:{fill:i,justified:l,align:r,tabs:!p&&!u,pills:!p&&u,vertical:h,small:f,cardHeader:o&&!h},ref:"nav"},[this.normalizeSlot("tabs-start")||t(),x,this.normalizeSlot("tabs-end")||t()]);y=t("div",{class:[{"card-header":o&&!h&&!n,"card-footer":o&&!h&&n,"col-auto":h},this.navWrapperClass],key:"bv-tabs-nav"},[y]);var w=this.normalizeSlot()||[],k=t();0===w.length&&(k=t("div",{class:["tab-pane","active",{"card-body":o}],key:"bv-empty-tab"},this.normalizeSlot(Fi)));var O=t("div",{staticClass:"tab-content",class:[{col:h},this.contentClass],attrs:{id:this.safeId("_BV_tab_container_")},key:"bv-content",ref:"content"},[w,k]);return t(this.tag,{staticClass:"tabs",class:{row:h,"no-gutters":h&&o},attrs:{id:this.safeId()}},[n?O:t(),y,n?t():O])}});function z_(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function B_(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?z_(Object(r),!0).forEach((function(e){A_(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):z_(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function A_(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var I_,F_="active",L_="update:active",M_=vl(Ie(B_(B_({},np),{},(A_(w_={},F_,fl(pi,!1)),A_(w_,"buttonId",fl(gi)),A_(w_,"disabled",fl(pi,!1)),A_(w_,"lazy",fl(pi,!1)),A_(w_,"noBody",fl(pi,!1)),A_(w_,"tag",fl(gi,"div")),A_(w_,"title",fl(gi)),A_(w_,"titleItemClass",fl(yi)),A_(w_,"titleLinkAttributes",fl(bi)),A_(w_,"titleLinkClass",fl(yi)),w_))),un),R_=lr({components:{BTabs:E_,BTab:o.default.extend({name:un,mixins:[ip,Sl],inject:{bvTabs:{default:function(){return{}}}},props:M_,data:function(){return{localActive:this.active&&!this.disabled}},computed:{_isTab:function(){return!0},tabClasses:function(){var t=this.localActive;return[{active:t,disabled:this.disabled,"card-body":this.bvTabs.card&&!this.noBody},t?this.bvTabs.activeTabClass:null]},controlledBy:function(){return this.buttonId||this.safeId("__BV_tab_button__")},computedNoFade:function(){return!this.bvTabs.fade},computedLazy:function(){return this.bvTabs.lazy||this.lazy}},watch:(k_={},A_(k_,F_,(function(t,e){t!==e&&(t?this.activate():this.deactivate()||this.$emit(L_,this.localActive))})),A_(k_,"disabled",(function(t,e){if(t!==e){var r=this.bvTabs.firstTab;t&&this.localActive&&r&&(this.localActive=!1,r())}})),A_(k_,"localActive",(function(t){this.$emit(L_,t)})),k_),mounted:function(){this.registerTab()},updated:function(){var t=this.bvTabs.updateButton;t&&this.hasNormalizedSlot(Qi)&&t(this)},beforeDestroy:function(){this.unregisterTab()},methods:{registerTab:function(){var t=this.bvTabs.registerTab;t&&t(this)},unregisterTab:function(){var t=this.bvTabs.unregisterTab;t&&t(this)},activate:function(){var t=this.bvTabs.activateTab;return!(!t||this.disabled)&&t(this)},deactivate:function(){var t=this.bvTabs.deactivateTab;return!(!t||!this.localActive)&&t(this)}},render:function(t){var e=this.localActive,r=t(this.tag,{staticClass:"tab-pane",class:this.tabClasses,directives:[{name:"show",value:e}],attrs:{role:"tabpanel",id:this.safeId(),"aria-hidden":e?"false":"true","aria-labelledby":this.controlledBy||null},ref:"panel"},[e||!this.computedLazy?this.normalizeSlot():t()]);return t(Hl,{props:{mode:"out-in",noFade:this.computedNoFade}},[r])}})}}),V_=lr({components:{BTime:vy}}),N_=r(2433),H_=o.default.extend({mixins:[Sl],data:function(){return{name:"b-toaster"}},methods:{onAfterEnter:function(t){var e=this;ka((function(){La(t,"".concat(e.name,"-enter-to"))}))}},render:function(t){return t("transition-group",{props:{tag:"div",name:this.name},on:{afterEnter:this.onAfterEnter}},this.normalizeSlot())}}),U_=vl({ariaAtomic:fl(gi),ariaLive:fl(gi),name:fl(gi,void 0,!0),role:fl(gi)},On),W_=o.default.extend({name:On,mixins:[hc],props:U_,data:function(){return{doRender:!1,dead:!1,staticName:this.name}},beforeMount:function(){var t=this,e=this.name;this.staticName=e,N_.Df.hasTarget(e)?(Ye('A "<portal-target>" with name "'.concat(e,'" already exists in the document.'),On),this.dead=!0):(this.doRender=!0,this.$once(ni,(function(){t.emitOnRoot(El(On,Dn),e)})))},destroyed:function(){var t=this.$el;t&&t.parentNode&&t.parentNode.removeChild(t)},render:function(t){var e=t("div",{class:["d-none",{"b-dead-toaster":this.dead}]});if(this.doRender){var r=t(N_.YC,{staticClass:"b-toaster-slot",props:{name:this.staticName,multiple:!0,tag:"div",slim:!1,transition:H_}});e=t("div",{staticClass:"b-toaster",class:[this.staticName],attrs:{id:this.staticName,role:this.role||null,"aria-live":this.ariaLive,"aria-atomic":this.ariaAtomic}},[r])}return e}});function G_(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function q_(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?G_(Object(r),!0).forEach((function(e){Y_(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):G_(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Y_(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var K_=kl("visible",{type:pi,defaultValue:!1,event:Pn}),X_=K_.mixin,J_=K_.props,Z_=K_.prop,Q_=K_.event,tC=ze(Pc,["href","to"]),eC=vl(Ie(q_(q_(q_(q_({},np),J_),tC),{},{appendToast:fl(pi,!1),autoHideDelay:fl(Ti,5e3),bodyClass:fl(yi),headerClass:fl(yi),isStatus:fl(pi,!1),noAutoHide:fl(pi,!1),noCloseButton:fl(pi,!1),noFade:fl(pi,!1),noHoverPause:fl(pi,!1),solid:fl(pi,!1),static:fl(pi,!1),title:fl(gi),toastClass:fl(yi),toaster:fl(gi,"b-toaster-top-right"),variant:fl(gi)})),kn),rC=o.default.extend({name:kn,mixins:[bc,ip,X_,hc,Sl,Tw],inheritAttrs:!1,props:eC,data:function(){return{isMounted:!1,doRender:!1,localShow:!1,isTransitioning:!1,isHiding:!1,order:0,dismissStarted:0,resumeDismiss:0}},computed:{toastClasses:function(){var t=this.appendToast,e=this.variant;return Y_({"b-toast-solid":this.solid,"b-toast-append":t,"b-toast-prepend":!t},"b-toast-".concat(e),e)},slotScope:function(){return{hide:this.hide}},computedDuration:function(){return os(la(this.autoHideDelay,0),1e3)},computedToaster:function(){return String(this.toaster)},transitionHandlers:function(){return{beforeEnter:this.onBeforeEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,afterLeave:this.onAfterLeave}},computedAttrs:function(){return q_(q_({},this.bvAttrs),{},{id:this.safeId(),tabindex:"0"})}},watch:(I_={},Y_(I_,Z_,(function(t){this[t?"show":"hide"]()})),Y_(I_,"localShow",(function(t){t!==this[Z_]&&this.$emit(Q_,t)})),Y_(I_,"toaster",(function(){this.$nextTick(this.ensureToaster)})),Y_(I_,"static",(function(t){t&&this.localShow&&this.ensureToaster()})),I_),created:function(){this.$_dismissTimer=null},mounted:function(){var t=this;this.isMounted=!0,this.$nextTick((function(){t[Z_]&&ka((function(){t.show()}))})),this.listenOnRoot(zl(kn,ti),(function(e){e===t.safeId()&&t.show()})),this.listenOnRoot(zl(kn,Nn),(function(e){e&&e!==t.safeId()||t.hide()})),this.listenOnRoot(El(On,Dn),(function(e){e===t.computedToaster&&t.hide()}))},beforeDestroy:function(){this.clearDismissTimer()},methods:{show:function(){var t=this;if(!this.localShow){this.ensureToaster();var e=this.buildEvent(ti);this.emitEvent(e),this.dismissStarted=this.resumeDismiss=0,this.order=Date.now()*(this.appendToast?1:-1),this.isHiding=!1,this.doRender=!0,this.$nextTick((function(){ka((function(){t.localShow=!0}))}))}},hide:function(){var t=this;if(this.localShow){var e=this.buildEvent(Nn);this.emitEvent(e),this.setHoverHandler(!1),this.dismissStarted=this.resumeDismiss=0,this.clearDismissTimer(),this.isHiding=!0,ka((function(){t.localShow=!1}))}},buildEvent:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new Hf(t,q_(q_({cancelable:!1,target:this.$el||null,relatedTarget:null},e),{},{vueTarget:this,componentId:this.safeId()}))},emitEvent:function(t){var e=t.type;this.emitOnRoot(El(kn,e),t),this.$emit(e,t)},ensureToaster:function(){if(!this.static){var t=this.computedToaster;if(!N_.Df.hasTarget(t)){var e=document.createElement("div");document.body.appendChild(e),new W_({parent:this.$root,propsData:{name:t}}).$mount(e)}}},startDismissTimer:function(){this.clearDismissTimer(),this.noAutoHide||(this.$_dismissTimer=setTimeout(this.hide,this.resumeDismiss||this.computedDuration),this.dismissStarted=Date.now(),this.resumeDismiss=0)},clearDismissTimer:function(){clearTimeout(this.$_dismissTimer),this.$_dismissTimer=null},setHoverHandler:function(t){var e=this.$refs["b-toast"];Cl(t,e,"mouseenter",this.onPause,si),Cl(t,e,"mouseleave",this.onUnPause,si)},onPause:function(){if(!this.noAutoHide&&!this.noHoverPause&&this.$_dismissTimer&&!this.resumeDismiss){var t=Date.now()-this.dismissStarted;t>0&&(this.clearDismissTimer(),this.resumeDismiss=os(this.computedDuration-t,1e3))}},onUnPause:function(){this.noAutoHide||this.noHoverPause||!this.resumeDismiss?this.resumeDismiss=this.dismissStarted=0:this.startDismissTimer()},onLinkClick:function(){var t=this;this.$nextTick((function(){ka((function(){t.hide()}))}))},onBeforeEnter:function(){this.isTransitioning=!0},onAfterEnter:function(){this.isTransitioning=!1;var t=this.buildEvent(ei);this.emitEvent(t),this.startDismissTimer(),this.setHoverHandler(!0)},onBeforeLeave:function(){this.isTransitioning=!0},onAfterLeave:function(){this.isTransitioning=!1,this.order=0,this.resumeDismiss=this.dismissStarted=0;var t=this.buildEvent(Vn);this.emitEvent(t),this.doRender=!1},makeToast:function(t){var e=this,r=this.title,o=this.slotScope,n=xs(this),i=[],a=this.normalizeSlot("toast-title",o);a?i.push(a):r&&i.push(t("strong",{staticClass:"mr-2"},r)),this.noCloseButton||i.push(t(Al,{staticClass:"ml-auto mb-1",on:{click:function(){e.hide()}}}));var l=t();i.length>0&&(l=t("header",{staticClass:"toast-header",class:this.headerClass},i));var s=t(n?Tc:"div",{staticClass:"toast-body",class:this.bodyClass,props:n?hl(tC,this):{},on:n?{click:this.onLinkClick}:{}},this.normalizeSlot(Ii,o));return t("div",{staticClass:"toast",class:this.toastClass,attrs:this.computedAttrs,key:"toast-".concat(this._uid),ref:"toast"},[l,s])}},render:function(t){if(!this.doRender||!this.isMounted)return t();var e=this.order,r=this.static,o=this.isHiding,n=this.isStatus,i="b-toast-".concat(this._uid),a=t("div",{staticClass:"b-toast",class:this.toastClasses,attrs:q_(q_({},r?{}:this.scopedStyleAttrs),{},{id:this.safeId("_toast_outer"),role:o?null:n?"status":"alert","aria-live":o?null:n?"polite":"assertive","aria-atomic":o?null:"true"}),key:i,ref:"b-toast"},[t(Hl,{props:{noFade:this.noFade},on:this.transitionHandlers},[this.localShow?this.makeToast(t):t()])]);return t(N_.h_,{props:{name:i,to:this.computedToaster,order:e,slim:!0,disabled:r}},[a])}});function oC(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function nC(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function iC(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?nC(Object(r),!0).forEach((function(e){aC(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):nC(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function aC(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function lC(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,o=new Array(e);r<e;r++)o[r]=t[r];return o}var sC="$bvToast",cC=["id"].concat(function(t){return function(t){if(Array.isArray(t))return lC(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return lC(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?lC(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}($e(Be(eC,["static","visible"])))),dC={toastContent:"default",title:"toast-title"},pC=function(t){return cC.reduce((function(e,r){return se(t[r])||(e[r]=t[r]),e}),{})},uC=lr({components:{BToast:rC,BToaster:W_},plugins:{BVToastPlugin:lr({plugins:{plugin:function(t){var e=t.extend({name:"BVToastPop",extends:rC,destroyed:function(){var t=this.$el;t&&t.parentNode&&t.parentNode.removeChild(t)},mounted:function(){var t=this,e=function(){t.localShow=!1,t.doRender=!1,t.$nextTick((function(){t.$nextTick((function(){ka((function(){t.$destroy()}))}))}))};this.$parent.$once(ii,e),this.$once(Vn,e),this.listenOnRoot(El(On,Dn),(function(r){r===t.toaster&&e()}))}}),r=function(t,r){if(!Ke(sC)){var o=new e({parent:r,propsData:iC(iC(iC({},pC(nl(kn))),Be(t,$e(dC))),{},{static:!1,visible:!0})});$e(dC).forEach((function(e){var n=t[e];se(n)||("title"===e&&me(n)&&(n=[r.$createElement("strong",{class:"mr-2"},n)]),o.$slots[dC[e]]=oa(n))}));var n=document.createElement("div");document.body.appendChild(n),o.$mount(n)}},o=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),Se(this,{_vm:e,_root:e.$root}),Te(this,{_vm:{enumerable:!0,configurable:!1,writable:!1},_root:{enumerable:!0,configurable:!1,writable:!1}})}var e,o;return e=t,(o=[{key:"toast",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t&&!Ke(sC)&&r(iC(iC({},pC(e)),{},{toastContent:t}),this._vm)}},{key:"show",value:function(t){t&&this._root.$emit(zl(kn,ti),t)}},{key:"hide",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;this._root.$emit(zl(kn,Nn),t)}}])&&oC(e.prototype,o),t}();t.mixin({beforeCreate:function(){this._bv__toast=new o(this)}}),De(t.prototype,sC)||_e(t.prototype,sC,{get:function(){return this&&this._bv__toast||Ye('"'.concat(sC,'" must be accessed from a Vue instance "this" context.'),kn),this._bv__toast}})}}})}});function mC(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function fC(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?mC(Object(r),!0).forEach((function(e){bC(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):mC(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function bC(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var hC="__BV_Tooltip__",gC={focus:!0,hover:!0,click:!0,blur:!0,manual:!0},vC=/^html$/i,xC=/^noninteractive$/i,yC=/^nofade$/i,wC=/^(auto|top(left|right)?|bottom(left|right)?|left(top|bottom)?|right(top|bottom)?)$/i,kC=/^(window|viewport|scrollParent)$/i,OC=/^d\d+$/i,jC=/^ds\d+$/i,SC=/^dh\d+$/i,PC=/^o-?\d+$/i,TC=/^v-.+$/i,_C=/\s+/,CC=function(t,e,r){if(ot){var o=function(t,e){var r={title:void 0,trigger:"",placement:"top",fallbackPlacement:"flip",container:!1,animation:!0,offset:0,id:null,html:!1,interactive:!0,disabled:!1,delay:nl(jn,"delay",50),boundary:String(nl(jn,"boundary","scrollParent")),boundaryPadding:la(nl(jn,"boundaryPadding",5),0),variant:nl(jn,"variant"),customClass:nl(jn,"customClass")};if(me(t.value)||fe(t.value)||pe(t.value)?r.title=t.value:ve(t.value)&&(r=fC(fC({},r),t.value)),se(r.title)){var o=e.data||{};r.title=o.attrs&&!de(o.attrs.title)?o.attrs.title:void 0}ve(r.delay)||(r.delay={show:la(r.delay,0),hide:la(r.delay,0)}),t.arg&&(r.container="#".concat(t.arg)),$e(t.modifiers).forEach((function(t){if(vC.test(t))r.html=!0;else if(xC.test(t))r.interactive=!1;else if(yC.test(t))r.animation=!1;else if(wC.test(t))r.placement=t;else if(kC.test(t))t="scrollparent"===t?"scrollParent":t,r.boundary=t;else if(OC.test(t)){var e=la(t.slice(1),0);r.delay.show=e,r.delay.hide=e}else jC.test(t)?r.delay.show=la(t.slice(2),0):SC.test(t)?r.delay.hide=la(t.slice(2),0):PC.test(t)?r.offset=la(t.slice(1),0):TC.test(t)&&(r.variant=t.slice(2)||null)}));var n={};return oa(r.trigger||"").filter(He).join(" ").trim().toLowerCase().split(_C).forEach((function(t){gC[t]&&(n[t]=!0)})),$e(t.modifiers).forEach((function(t){t=t.toLowerCase(),gC[t]&&(n[t]=!0)})),r.trigger=$e(n).join(" "),"blur"===r.trigger&&(r.trigger="focus"),r.trigger||(r.trigger="hover focus"),r}(e,r);if(!t[hC]){var n=r.context;t[hC]=new fj({parent:n,_scopeId:Pw(n,void 0)}),t[hC].__bv_prev_data__={},t[hC].$on(ti,(function(){pe(o.title)&&t[hC].updateData({title:o.title(t)})}))}var i={title:o.title,triggers:o.trigger,placement:o.placement,fallbackPlacement:o.fallbackPlacement,variant:o.variant,customClass:o.customClass,container:o.container,boundary:o.boundary,delay:o.delay,offset:o.offset,noFade:!o.animation,id:o.id,interactive:o.interactive,disabled:o.disabled,html:o.html},a=t[hC].__bv_prev_data__;if(t[hC].__bv_prev_data__=i,!dc(i,a)){var l={target:t};$e(i).forEach((function(e){i[e]!==a[e]&&(l[e]="title"===e&&pe(i[e])?i[e](t):i[e])})),t[hC].updateData(l)}}},$C=lr({directives:{VBTooltip:{bind:function(t,e,r){CC(t,e,r)},componentUpdated:function(t,e,r){r.context.$nextTick((function(){CC(t,e,r)}))},unbind:function(t){!function(t){t[hC]&&(t[hC].$destroy(),t[hC]=null),delete t[hC]}(t)}}}}),DC=lr({plugins:{AlertPlugin:es,AspectPlugin:ms,AvatarPlugin:Zc,BadgePlugin:id,BreadcrumbPlugin:xd,ButtonPlugin:yd,ButtonGroupPlugin:Pd,ButtonToolbarPlugin:$d,CalendarPlugin:hp,CardPlugin:xu,CarouselPlugin:Uu,CollapsePlugin:Im,DropdownPlugin:Rb,EmbedPlugin:Hb,FormPlugin:lh,FormCheckboxPlugin:ig,FormDatepickerPlugin:$g,FormFilePlugin:Wg,FormGroupPlugin:sv,FormInputPlugin:_v,FormRadioPlugin:Dv,FormRatingPlugin:Wv,FormSelectPlugin:bx,FormSpinbuttonPlugin:Tx,FormTagsPlugin:Xx,FormTextareaPlugin:oy,FormTimepickerPlugin:Dy,ImagePlugin:Ey,InputGroupPlugin:Yy,JumbotronPlugin:Qy,LayoutPlugin:lw,LinkPlugin:sw,ListGroupPlugin:gw,MediaPlugin:Ow,ModalPlugin:Sk,NavPlugin:Yk,NavbarPlugin:uO,OverlayPlugin:kO,PaginationPlugin:NO,PaginationNavPlugin:YO,PopoverPlugin:Gj,ProgressPlugin:eS,SidebarPlugin:yS,SkeletonPlugin:JS,SpinnerPlugin:ZS,TablePlugin:g_,TabsPlugin:R_,TimePlugin:V_,ToastPlugin:uC,TooltipPlugin:lr({components:{BTooltip:wj},plugins:{VBTooltipPlugin:$C}})}}),EC=lr({directives:{VBHover:dg}}),zC=lr({directives:{VBModal:mk}});function BC(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,o)}return r}function AC(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?BC(Object(r),!0).forEach((function(e){IC(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):BC(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function IC(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function FC(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}var LC="active",MC=".nav-link",RC=".nav-item",VC=".list-group-item",NC=".dropdown-item",HC=El("BVScrollspy","activate"),UC="position",WC={element:"body",offset:10,method:"auto",throttle:75},GC={element:"(string|element|component)",offset:"number",method:"string",throttle:"number"},qC=["webkitTransitionEnd","transitionend","otransitionend","oTransitionEnd"],YC=function(t){return function(t){return Object.prototype.toString.call(t)}(t).match(/\s([a-zA-Z]+)/)[1].toLowerCase()},KC=function(){function t(e,r,o){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.$el=e,this.$scroller=null,this.$selector=[MC,VC,NC].join(","),this.$offsets=[],this.$targets=[],this.$activeTarget=null,this.$scrollHeight=0,this.$resizeTimeout=null,this.$scrollerObserver=null,this.$targetsObserver=null,this.$root=o||null,this.$config=null,this.updateConfig(r)}var e,r,o;return e=t,o=[{key:"Name",get:function(){return"v-b-scrollspy"}},{key:"Default",get:function(){return WC}},{key:"DefaultType",get:function(){return GC}}],(r=[{key:"updateConfig",value:function(t,e){this.$scroller&&(this.unlisten(),this.$scroller=null);var r=AC(AC({},this.constructor.Default),t);if(e&&(this.$root=e),function(t,e,r){for(var o in r)if(De(r,o)){var n=r[o],i=e[o],a=i&&ja(i)?"element":YC(i);a=i&&i._isVue?"component":a,new RegExp(n).test(a)||Ye("".concat(t,': Option "').concat(o,'" provided type "').concat(a,'" but expected type "').concat(n,'"'))}}(this.constructor.Name,r,this.constructor.DefaultType),this.$config=r,this.$root){var o=this;this.$root.$nextTick((function(){o.listen()}))}else this.listen()}},{key:"dispose",value:function(){this.unlisten(),clearTimeout(this.$resizeTimeout),this.$resizeTimeout=null,this.$el=null,this.$config=null,this.$scroller=null,this.$selector=null,this.$offsets=null,this.$targets=null,this.$activeTarget=null,this.$scrollHeight=null}},{key:"listen",value:function(){var t=this,e=this.getScroller();e&&"BODY"!==e.tagName&&Tl(e,"scroll",this,si),Tl(window,"scroll",this,si),Tl(window,"resize",this,si),Tl(window,"orientationchange",this,si),qC.forEach((function(e){Tl(window,e,t,si)})),this.setObservers(!0),this.handleEvent("refresh")}},{key:"unlisten",value:function(){var t=this,e=this.getScroller();this.setObservers(!1),e&&"BODY"!==e.tagName&&_l(e,"scroll",this,si),_l(window,"scroll",this,si),_l(window,"resize",this,si),_l(window,"orientationchange",this,si),qC.forEach((function(e){_l(window,e,t,si)}))}},{key:"setObservers",value:function(t){var e=this;this.$scrollerObserver&&this.$scrollerObserver.disconnect(),this.$targetsObserver&&this.$targetsObserver.disconnect(),this.$scrollerObserver=null,this.$targetsObserver=null,t&&(this.$targetsObserver=ju(this.$el,(function(){e.handleEvent("mutation")}),{subtree:!0,childList:!0,attributes:!0,attributeFilter:["href"]}),this.$scrollerObserver=ju(this.getScroller(),(function(){e.handleEvent("mutation")}),{subtree:!0,childList:!0,characterData:!0,attributes:!0,attributeFilter:["id","style","class"]}))}},{key:"handleEvent",value:function(t){var e=me(t)?t:t.type,r=this;"scroll"===e?(this.$scrollerObserver||this.listen(),this.process()):/(resize|orientationchange|mutation|refresh)/.test(e)&&(r.$resizeTimeout||(r.$resizeTimeout=setTimeout((function(){r.refresh(),r.process(),r.$resizeTimeout=null}),r.$config.throttle)))}},{key:"refresh",value:function(){var t=this,e=this.getScroller();if(e){var r=e!==e.window?UC:"offset",o="auto"===this.$config.method?r:this.$config.method,n=o===UC?Ja:Xa,i=o===UC?this.getScrollTop():0;return this.$offsets=[],this.$targets=[],this.$scrollHeight=this.getScrollHeight(),Da(this.$selector,this.$el).map((function(t){return Na(t,"href")})).filter((function(t){return t&&Ft.test(t||"")})).map((function(t){var r=t.replace(Ft,"$1").trim();if(!r)return null;var o=Ea(r,e);return o&&_a(o)?{offset:la(n(o).top,0)+i,target:r}:null})).filter(He).sort((function(t,e){return t.offset-e.offset})).reduce((function(e,r){return e[r.target]||(t.$offsets.push(r.offset),t.$targets.push(r.target),e[r.target]=!0),e}),{}),this}}},{key:"process",value:function(){var t=this.getScrollTop()+this.$config.offset,e=this.getScrollHeight(),r=this.$config.offset+e-this.getOffsetHeight();if(this.$scrollHeight!==e&&this.refresh(),t>=r){var o=this.$targets[this.$targets.length-1];this.$activeTarget!==o&&this.activate(o)}else{if(this.$activeTarget&&t<this.$offsets[0]&&this.$offsets[0]>0)return this.$activeTarget=null,void this.clear();for(var n=this.$offsets.length;n--;)this.$activeTarget!==this.$targets[n]&&t>=this.$offsets[n]&&(se(this.$offsets[n+1])||t<this.$offsets[n+1])&&this.activate(this.$targets[n])}}},{key:"getScroller",value:function(){if(this.$scroller)return this.$scroller;var t=this.$config.element;return t?(ja(t.$el)?t=t.$el:me(t)&&(t=Ea(t)),t?(this.$scroller="BODY"===t.tagName?window:t,this.$scroller):null):null}},{key:"getScrollTop",value:function(){var t=this.getScroller();return t===window?t.pageYOffset:t.scrollTop}},{key:"getScrollHeight",value:function(){return this.getScroller().scrollHeight||os(document.body.scrollHeight,document.documentElement.scrollHeight)}},{key:"getOffsetHeight",value:function(){var t=this.getScroller();return t===window?window.innerHeight:qa(t).height}},{key:"activate",value:function(t){var e=this;this.$activeTarget=t,this.clear();var r=Da(this.$selector.split(",").map((function(e){return"".concat(e,'[href$="').concat(t,'"]')})).join(","),this.$el);r.forEach((function(t){if(Ma(t,"dropdown-item")){var r=Ba(".dropdown, .dropup",t);r&&e.setActiveState(Ea(".dropdown-toggle",r),!0),e.setActiveState(t,!0)}else{e.setActiveState(t,!0),za(t.parentElement,RC)&&e.setActiveState(t.parentElement,!0);for(var o=t;o;){var n=(o=Ba(".nav, .list-group",o))?o.previousElementSibling:null;n&&za(n,"".concat(MC,", ").concat(VC))&&e.setActiveState(n,!0),n&&za(n,RC)&&(e.setActiveState(Ea(MC,n),!0),e.setActiveState(n,!0))}}})),r&&r.length>0&&this.$root&&this.$root.$emit(HC,t,r)}},{key:"clear",value:function(){var t=this;Da("".concat(this.$selector,", ").concat(RC),this.$el).filter((function(t){return Ma(t,LC)})).forEach((function(e){return t.setActiveState(e,!1)}))}},{key:"setActiveState",value:function(t,e){t&&(e?Fa(t,LC):La(t,LC))}}])&&FC(e.prototype,r),o&&FC(e,o),t}(),XC="__BV_ScrollSpy__",JC=/^\d+$/,ZC=/^(auto|position|offset)$/,QC=function(t,e,r){if(ot){var o=function(t){var e={};return t.arg&&(e.element="#".concat(t.arg)),$e(t.modifiers).forEach((function(t){JC.test(t)?e.offset=la(t,0):ZC.test(t)&&(e.method=t)})),me(t.value)?e.element=t.value:fe(t.value)?e.offset=ss(t.value):ge(t.value)&&$e(t.value).filter((function(t){return!!KC.DefaultType[t]})).forEach((function(r){e[r]=t.value[r]})),e}(e);t[XC]?t[XC].updateConfig(o,r.context.$root):t[XC]=new KC(t,o,r.context.$root)}};const t$={install:ar({plugins:{componentsPlugin:DC,directivesPlugin:lr({plugins:{VBHoverPlugin:EC,VBModalPlugin:zC,VBPopoverPlugin:Wj,VBScrollspyPlugin:lr({directives:{VBScrollspy:{bind:function(t,e,r){QC(t,e,r)},inserted:function(t,e,r){QC(t,e,r)},update:function(t,e,r){e.value!==e.oldValue&&QC(t,e,r)},componentUpdated:function(t,e,r){e.value!==e.oldValue&&QC(t,e,r)},unbind:function(t){!function(t){t[XC]&&(t[XC].dispose(),t[XC]=null,delete t[XC])}(t)}}}}),VBTogglePlugin:Am,VBTooltipPlugin:$C,VBVisiblePlugin:lr({directives:{VBVisible:ou}})}})}}),NAME:"BootstrapVue"};var e$=r(3379),r$=r.n(e$),o$=r(7795),n$=r.n(o$),i$=r(569),a$=r.n(i$),l$=r(3565),s$=r.n(l$),c$=r(9216),d$=r.n(c$),p$=r(4589),u$=r.n(p$),m$=r(3622),f$={};f$.styleTagTransform=u$(),f$.setAttributes=s$(),f$.insert=a$().bind(null,"head"),f$.domAPI=n$(),f$.insertStyleElement=d$(),r$()(m$.Z,f$),m$.Z&&m$.Z.locals&&m$.Z.locals;var b$=r(401),h$={};h$.styleTagTransform=u$(),h$.setAttributes=s$(),h$.insert=a$().bind(null,"head"),h$.domAPI=n$(),h$.insertStyleElement=d$(),r$()(b$.Z,h$),b$.Z&&b$.Z.locals&&b$.Z.locals;var g$=r(1821),v$={};v$.styleTagTransform=u$(),v$.setAttributes=s$(),v$.insert=a$().bind(null,"head"),v$.domAPI=n$(),v$.insertStyleElement=d$(),r$()(g$.Z,v$),g$.Z&&g$.Z.locals&&g$.Z.locals;var x$=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r("div",{attrs:{id:"app"}},[r("b-navbar",{attrs:{toggleable:"lg",type:"dark",variant:"primary"}},[r("b-navbar-brand",{attrs:{href:"#"},on:{click:t.newSecret}},[r("i",{staticClass:"fas fa-user-secret"}),t._v(" OTS - One Time Secrets\n ")]),t._v(" "),r("b-navbar-toggle",{attrs:{target:"nav-collapse"}}),t._v(" "),r("b-collapse",{attrs:{id:"nav-collapse","is-nav":""}},[r("b-navbar-nav",{staticClass:"ml-auto"},[r("b-nav-item",{on:{click:function(e){t.explanationShown=!t.explanationShown}}},[r("i",{staticClass:"fas fa-question"}),t._v(" "+t._s(t.$t("btn-show-explanation"))+"\n ")]),t._v(" "),r("b-nav-item",{on:{click:t.newSecret}},[r("i",{staticClass:"fas fa-plus"}),t._v(" "+t._s(t.$t("btn-new-secret"))+"\n ")])],1)],1)],1),t._v(" "),r("b-container",{staticClass:"mt-4"},[r("b-row",{staticClass:"justify-content-center"},[r("b-col",{attrs:{md:"8"}},[r("b-alert",{attrs:{variant:"danger",dismissible:""},domProps:{innerHTML:t._s(t.error)},model:{value:t.showError,callback:function(e){t.showError=e},expression:"showError"}})],1)],1),t._v(" "),r("b-row",[r("b-col",[t.explanationShown?r("b-card",{staticClass:"mb-3",attrs:{"border-variant":"primary","header-bg-variant":"primary","header-text-variant":"white"}},[r("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-explanation"))},slot:"header"}),t._v(" "),r("ul",t._l(t.$t("items-explanation"),(function(e){return r("li",[t._v("\n "+t._s(e)+"\n ")])})),0)]):t._e(),t._v(" "),"create"!=t.mode||t.secretId?t._e():r("b-card",{attrs:{"border-variant":"primary","header-bg-variant":"primary","header-text-variant":"white"}},[r("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-new-secret"))},slot:"header"}),t._v(" "),r("b-form-group",{attrs:{label:t.$t("label-secret-data")}},[r("b-form-textarea",{attrs:{id:"secret","max-rows":"25",rows:"5"},model:{value:t.secret,callback:function(e){t.secret=e},expression:"secret"}})],1),t._v(" "),r("b-button",{attrs:{variant:"success"},on:{click:t.createSecret}},[t._v("\n "+t._s(t.$t("btn-create-secret"))+"\n ")])],1),t._v(" "),"create"==t.mode&&t.secretId?r("b-card",{attrs:{"border-variant":"success","header-bg-variant":"success","header-text-variant":"white"}},[r("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-secret-created"))},slot:"header"}),t._v(" "),r("p",{domProps:{innerHTML:t._s(t.$t("text-pre-url"))}}),t._v(" "),r("b-form-group",[r("b-form-input",{ref:"secretUrl",attrs:{value:t.secretUrl,readonly:""},on:{focus:function(e){return t.$refs.secretUrl.select()}}})],1),t._v(" "),r("p",{domProps:{innerHTML:t._s(t.$t("text-burn-hint"))}})],1):t._e(),t._v(" "),"view"==t.mode?r("b-card",{attrs:{"border-variant":"primary","header-bg-variant":"primary","header-text-variant":"white"}},[r("span",{attrs:{slot:"header"},domProps:{innerHTML:t._s(t.$t("title-reading-secret"))},slot:"header"}),t._v(" "),t.secret?[r("b-form-group",[r("b-form-textarea",{attrs:{"max-rows":"25",readonly:"",rows:"5",value:t.secret}})],1),t._v(" "),r("p",{domProps:{innerHTML:t._s(t.$t("text-hint-burned"))}})]:[r("p",{domProps:{innerHTML:t._s(t.$t("text-pre-reveal-hint"))}}),t._v(" "),r("b-button",{attrs:{variant:"success"},on:{click:t.requestSecret}},[t._v("\n "+t._s(t.$t("btn-reveal-secret"))+"\n ")])]],2):t._e()],1)],1),t._v(" "),r("b-row",{staticClass:"mt-5"},[r("b-col",{staticClass:"footer"},[t._v("\n "+t._s(t.$t("text-powered-by"))+" "),r("a",{attrs:{href:"https://github.com/Luzifer/ots"}},[r("i",{staticClass:"fab fa-github"}),t._v(" Luzifer/OTS")]),t._v(" "+t._s(t.$root.version)+"\n ")])],1)],1)],1)};x$._withStripped=!0;var y$=r(9669),w$=r.n(y$),k$=r(5281),O$=r.n(k$);const j$={name:"App",data:function(){return{error:"",explanationShown:!1,mode:"create",secret:"",securePassword:"",secretId:"",showError:!1}},computed:{secretUrl:function(){return[window.location.href,encodeURIComponent([this.secretId,this.securePassword].join("|"))].join("#")}},mounted:function(){window.onhashchange=this.hashLoad,this.hashLoad()},methods:{createSecret:function(){var t=this;this.securePassword=Math.random().toString(36).substring(2);var e=O$().enc(this.secret,this.securePassword);return w$().post("api/create",{secret:e}).then((function(e){t.secretId=e.data.secret_id,t.secret="",window.setTimeout((function(){return t.$refs.secretUrl.focus()}),100)})).catch((function(e){switch(e.response.status){case 404:t.secretId="foobar";break;default:t.error=t.$t("alert-something-went-wrong"),t.showError=!0}})),!1},hashLoad:function(){var t=decodeURIComponent(window.location.hash);if(0!==t.length){var e=t.substring(1).split("|");2===e.length&&(this.securePassword=e[1]),this.secretId=e[0],this.mode="view"}},newSecret:function(){location.href=location.href.split("#")[0]},requestSecret:function(){var t=this;w$().get("api/get/".concat(this.secretId)).then((function(e){var r=e.data.secret;t.securePassword&&(r=O$().dec(r,t.securePassword)),t.secret=r})).catch((function(e){switch(e.response.status){case 404:t.error=t.$t("alert-secret-not-found"),t.showError=!0;break;default:t.error=t.$t("alert-something-went-wrong"),t.showError=!0}}))}}};var S$=r(4503),P$={};P$.styleTagTransform=u$(),P$.setAttributes=s$(),P$.insert=a$().bind(null,"head"),P$.domAPI=n$(),P$.insertStyleElement=d$(),r$()(S$.Z,P$),S$.Z&&S$.Z.locals&&S$.Z.locals;var T$=function(t,e,r,o,n,i,a,l){var s,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=[],c._compiled=!0),s)if(c.functional){c._injectStyles=s;var d=c.render;c.render=function(t,e){return s.call(e),d(t,e)}}else{var p=c.beforeCreate;c.beforeCreate=p?[].concat(p,s):[s]}return{exports:t,options:c}}(j$,x$);T$.options.__file="app.vue";const _$=T$.exports,C$={de:JSON.parse('{"alert-secret-not-found":"Das ist nicht das Secret, was du suchst&hellip; - Falls du diesen Link noch nicht selbst geöffnet hast, könnte das Secret kompromittiert sein, da jemand anderes den Link geöffnet haben könnte.","alert-something-went-wrong":"Irgendwas ging schief. Entschuldigung&hellip;","btn-create-secret":"Secret erstellen!","btn-new-secret":"Neues Secret","btn-reveal-secret":"Zeig mir das Secret!","btn-show-explanation":"Wie funktioniert das?","items-explanation":["Du gibst ein Secret auf dieser Seite ein","Dein Browser verschlüsselt das Secret mit einem generierten Passwort","Nur das verschlüsselte Secret wird an den Server geschickt (das Passwort oder das Secret im Klartext werden niemals übertragen!)","Der Server speichert das verschlüsselte Secret für eine Weile","Du gibst die angezeigte URL, welche die ID und das Passwort des Secrets enthält, an den Empfänger","Der Empfänger kann das Secret einmalig abrufen: Funktioniert das nicht, könnte jemand anderes es abgerufen haben!","Wenn das verschlüsselte Secret das erste Mal abgerufen wurde, wird es automatisch vom Server gelöscht"],"label-secret-data":"Inhalt des Secrets:","text-burn-hint":"Bitte rufe die URL nicht selbst auf, da das Secret dadurch zerstört würde. Gib sie einfach weiter!","text-hint-burned":"<strong>Achtung:</strong> Du kannst das nur einmal ansehen! Sobald du die Seite neu lädst, ist das Secret verschwunden, also besser direkt kopieren und sicher abspeichern&hellip;","text-powered-by":"Läuft mit","text-pre-reveal-hint":"Um das Secret anzuzeigen klicke diesen Button aber denk dran, dass das Secret nur einmal angezeigt und dabei gelöscht wird.","text-pre-url":"Dein Secret wurde angelegt und unter folgender URL gespeichert:","title-explanation":"So funktioniert es&hellip;","title-new-secret":"Erstelle ein neues Secret","title-reading-secret":"Secret auslesen&hellip;","title-secret-created":"Secret erstellt!"}'),en:JSON.parse('{"alert-secret-not-found":"This is not the secret you are looking for&hellip; - If you expected the secret to be here it might be comprimised as someone else might have opened the link already.","alert-something-went-wrong":"Something went wrong. I\'m very sorry about this&hellip;","btn-create-secret":"Create the secret!","btn-new-secret":"New Secret","btn-reveal-secret":"Show me the secret!","btn-show-explanation":"How does this work?","items-explanation":["You enter a secret into the field on this page","Your browser encrypts the secret using a generated password","Only the encrypted secret is sent to the server (neither the plain secret nor the password are ever sent!)","The server stores the encrypted secret for a certain time","You pass the displayed URL containing the ID and the decryption password to the recipient","The recipient can view the secret exactly once: If they can\'t, the secret might have been viewed by someone else!","After the encrypted secret has been retrieved once, it is deleted from the server"],"label-secret-data":"Secret data:","text-burn-hint":"Please remember not to go to this URL yourself as that would destroy the secret. Just pass it to someone else!","text-hint-burned":"<strong>Attention:</strong> You\'re only seeing this once. As soon as you reload the page the secret will be gone so maybe copy it now&hellip;","text-powered-by":"Powered by","text-pre-reveal-hint":"To reveal the secret click this button but be aware doing so will destroy the secret. You can only view it once!","text-pre-url":"Your secret was created and stored using this URL:","title-explanation":"This is how it works&hellip;","title-new-secret":"Create a new secret","title-reading-secret":"Reading your secret&hellip;","title-secret-created":"Secret created!"}'),fr:JSON.parse('{"alert-secret-not-found":"Ce secret n\'est pas celui que vous cherchez&hellip; - Si vous comptiez trouvez ce secret ici, il a pu être compromis car quelqu\'un a probablement déjà ouvert le lien.","alert-something-went-wrong":"Un problème est survenu. Nous en sommes désolés&hellip;","btn-create-secret":"Créer le secret!","btn-new-secret":"Nouveau secret","btn-reveal-secret":"Voir le secret!","btn-show-explanation":"Comment ça fonctionne?","items-explanation":["Vous saisissez le secret dans un champ sur cette page","Votre navigateur chiffre le secret en utilisant un mot de passe généré","Seul le secret chiffré est envoyé au serveur (ni le secret en clair, ni le mot de passe ne sont envoyés!)","Le serveur stocke le secret chiffré pendant un certain temps","Vous fournissez l\'URL affichée contenant l\'identifiant et le mot de passe de déchiffrage au destinataire","Le destintaire ne peut voir le secret qu\'une fois: si cela ne fonctionne pas, c\'est que le secret a été consulté par quelqu\'un d\'autre!","Dès que le secret chiffré a été récupéré, il est supprimé du serveur"],"label-secret-data":"Données secrètes:","text-burn-hint":"Attention de ne pas ouvrir cette URL vous-même, cela détruirait le secret. Fournissez-la à quelqu\'un d\'autre!","text-hint-burned":"<strong>Attention:</strong> Vous ne pouvez consulter ce contenu qu\'une fois. Le secret sera détruit dès que vous rechargez la page, donc copiez le maintenant&hellip;","text-powered-by":"Propulsé par","text-pre-reveal-hint":"Pour afficher le secret, cliquez sur ce bouton, mais soyez conscient que cela le détruira. Vous ne pouvez l\'afficher qu\'une fois!","text-pre-url":"Votre secret a été créé et stocké à cette URL:","title-explanation":"Voici comment ça fonctionne&hellip;","title-new-secret":"Créer un nouveau secret","title-reading-secret":"Lecture du secret&hellip;","title-secret-created":"Secret créé!"}'),lv:JSON.parse('{"alert-secret-not-found":"<strong>Ziņa nav atrasta!</strong>&hellip; - Ja ievadītā saite ir pareiza, tad ir beidzies ziņas glabāšanas laiks, vai arī tā jau vienreiz ir atvērta.","alert-something-went-wrong":"Neparedzēta sistēmas kļūda. Atvainojiet par sagādātajām neērtībām&hellip;","btn-create-secret":"Šifrēt ziņu!","btn-new-secret":"Jauna ziņa","btn-reveal-secret":"Atvērt ziņu!","btn-show-explanation":"Kā tas strādā?","items-explanation":["Tu ievadi ziņu ievades laukā","Pārlūks nošifrē ziņu ar uzģenerētu paroli","Tikai šifrētā ziņa tiek nosūtīta serverim (nešifrētā ziņa un parole sūtīta netiek!)","Serveris noteiktu laiku glabā šifrēto ziņu","Tu nodod URL ar ziņas ID un atšifrēšanas paroli saņēmējam","Saņēmējs var atvērt ziņu tikai vienreiz: ja tas neizdodas, iespējams, ziņu jau atvēris kāds cits!","Kad ziņa tiek atvērta pirmo reizi, tā no servera tiek dzēsta"],"label-secret-data":"Ziņa:","text-burn-hint":"Lūdzu atceries neatvērt saiti pats, jo tad ziņa tiks dzēsta. Nodod saiti ziņas saņēmējam!","text-hint-burned":"<strong>Uzmanību:</strong> Ziņa tiek parādīta tikai vienu reizi. Līdzko lapa tiks pārlādēta, ziņa būs neatgriezeniski zaudēta, tāpēc nepieciešamības gadījumā nokopē to tagad&hellip;","text-powered-by":"Darbina","text-pre-reveal-hint":"Lai parādītu ziņu nospied šo pogu, bet rēķinies ar to, ka pēc apskates ziņa vairs nebūs pieejama. To var atvērt tikai vienreiz!","text-pre-url":"Ziņa ir nošifrēta un ir atverama šajā adresē:","title-explanation":"Tā tas strādā&hellip;","title-new-secret":"Šifrēt ziņu","title-reading-secret":"Atver ziņu&hellip;","title-secret-created":"Ziņa nošifrēta!"}'),nl:JSON.parse('{"alert-secret-not-found":"De gegevens die je zocht bestaan niet (meer)&hellip; - Als je hier informatie verwachtte dan is de link mogelijk al door iemand anders bekeken!","alert-something-went-wrong":"Er ging iets verkeerd, sorry&hellip;","btn-create-secret":"Nieuwe vertrouwelijke info aanmaken!","btn-new-secret":"Nieuw","btn-reveal-secret":"Toon mij de vertrouwelijke info!","btn-show-explanation":"Hoe werkt dit?","items-explanation":["Je vult vertrouwelijke informatie in op deze pagina.","Je browser versleutelt de ingevulde tekst via een automatisch gegenereerd wachtwoord.","Alleen de versleutelde data wordt naar de server gestuurd. (De leesbare versie of het wachtwoord worden nooit verstuurd!)","De server slaat de versleutelde data gedurende een beperkte periode op.","Je geeft de URL met identificatie en het gegenereerde wachtwoord aan de ontvanger.","De ontvanger kan de vertrouwelijke informatie exact eenmaal bekijken: indien het niet lukt heeft mogelijk iemand anders de info gezien!","De versleutelde data wordt van de server gewist van zodra de ontvanger het bekeken heeft."],"label-secret-data":"Vertrouwelijke info:","text-burn-hint":"Bezoek de URL niet zelf: je kan deze slechts eenmaal gebruiken. Geef de URL aan de ontvanger.","text-hint-burned":"<strong>Opgelet:</strong> Je ziet deze informatie alleen nu. Je kan het niet meer opnieuw opvragen als je de pagina verlaat.","text-powered-by":"Mogelijk gemaakt door","text-pre-reveal-hint":"Gebruik deze knop om de vertrouwelijke info op te halen. Let op: Je kan dit slechts eenmaal doen!","text-pre-url":"Je vertrouwelijke informatie kan opgevraagd worden via deze URL:","title-explanation":"Dit is hoe het werkt&hellip;","title-new-secret":"Nieuwe vertrouwelijke info opslaan","title-reading-secret":"Vertrouwelijke info lezen&hellip;","title-secret-created":"Vertrouwelijke info opgeslaan!"}')};o.default.use(t$),o.default.use(J);var $$=new J({locale,fallbackLocale:"en",messages:C$});new o.default({el:"#app",components:{app:_$},data:{version},i18n:$$,render:function(t){return t("app")}})},401:(t,e,r)=>{"use strict";r.d(e,{Z:()=>y});var o=r(3645),n=r.n(o),i=r(1667),a=r.n(i),l=new URL(r(6803),r.b),s=new URL(r(9566),r.b),c=new URL(r(2952),r.b),d=new URL(r(9052),r.b),p=new URL(r(8776),r.b),u=new URL(r(134),r.b),m=n()((function(t){return t[1]})),f=a()(l),b=a()(s),h=a()(c),g=a()(d),v=a()(p),x=a()(u);m.push([t.id,'/*!\n * BootstrapVue Custom CSS (https://bootstrap-vue.org)\n */.bv-no-focus-ring:focus{outline:none}@media (max-width: 575.98px){.bv-d-xs-down-none{display:none !important}}@media (max-width: 767.98px){.bv-d-sm-down-none{display:none !important}}@media (max-width: 991.98px){.bv-d-md-down-none{display:none !important}}@media (max-width: 1199.98px){.bv-d-lg-down-none{display:none !important}}.bv-d-xl-down-none{display:none !important}.form-control.focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.form-control.focus.is-valid{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.form-control.focus.is-invalid{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.b-avatar{display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;flex-shrink:0;width:2.5rem;height:2.5rem;font-size:inherit;font-weight:400;line-height:1;max-width:100%;max-height:auto;text-align:center;overflow:visible;position:relative;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}.b-avatar:focus{outline:0}.b-avatar.btn,.b-avatar[href]{padding:0;border:0}.b-avatar.btn .b-avatar-img img,.b-avatar[href] .b-avatar-img img{transition:-webkit-transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out}.b-avatar.btn:not(:disabled):not(.disabled),.b-avatar[href]:not(:disabled):not(.disabled){cursor:pointer}.b-avatar.btn:not(:disabled):not(.disabled):hover .b-avatar-img img,.b-avatar[href]:not(:disabled):not(.disabled):hover .b-avatar-img img{-webkit-transform:scale(1.15);transform:scale(1.15)}.b-avatar.disabled,.b-avatar:disabled,.b-avatar[disabled]{opacity:0.65;pointer-events:none}.b-avatar .b-avatar-custom,.b-avatar .b-avatar-text,.b-avatar .b-avatar-img{border-radius:inherit;width:100%;height:100%;overflow:hidden;display:flex;justify-content:center;align-items:center;-webkit-mask-image:radial-gradient(white, black);mask-image:radial-gradient(white, black)}.b-avatar .b-avatar-text{text-transform:uppercase;white-space:nowrap}.b-avatar[href]{text-decoration:none}.b-avatar>.b-icon{width:60%;height:auto;max-width:100%}.b-avatar .b-avatar-img img{width:100%;height:100%;max-height:auto;border-radius:inherit;-o-object-fit:cover;object-fit:cover}.b-avatar .b-avatar-badge{position:absolute;min-height:1.5em;min-width:1.5em;padding:0.25em;line-height:1;border-radius:10em;font-size:70%;font-weight:700;z-index:1}.b-avatar-sm{width:1.5rem;height:1.5rem}.b-avatar-sm .b-avatar-text{font-size:calc(0.6rem)}.b-avatar-sm .b-avatar-badge{font-size:calc(0.42rem)}.b-avatar-lg{width:3.5rem;height:3.5rem}.b-avatar-lg .b-avatar-text{font-size:calc(1.4rem)}.b-avatar-lg .b-avatar-badge{font-size:calc(0.98rem)}.b-avatar-group .b-avatar-group-inner{display:flex;flex-wrap:wrap}.b-avatar-group .b-avatar{border:1px solid #dee2e6}.b-avatar-group a.b-avatar:hover:not(.disabled):not(disabled),.b-avatar-group .btn.b-avatar:hover:not(.disabled):not(disabled){z-index:1}.b-calendar{display:inline-flex}.b-calendar .b-calendar-inner{min-width:250px}.b-calendar .b-calendar-header,.b-calendar .b-calendar-nav{margin-bottom:0.25rem}.b-calendar .b-calendar-nav .btn{padding:0.25rem}.b-calendar output{padding:0.25rem;font-size:80%}.b-calendar output.readonly{background-color:#e9ecef;opacity:1}.b-calendar .b-calendar-footer{margin-top:0.5rem}.b-calendar .b-calendar-grid{padding:0;margin:0;overflow:hidden}.b-calendar .b-calendar-grid .row{flex-wrap:nowrap}.b-calendar .b-calendar-grid-caption{padding:0.25rem}.b-calendar .b-calendar-grid-body .col[data-date] .btn{width:32px;height:32px;font-size:14px;line-height:1;margin:3px auto;padding:9px 0}.b-calendar .btn:disabled,.b-calendar .btn.disabled,.b-calendar .btn[aria-disabled=true]{cursor:default;pointer-events:none}.card-img-left{border-top-left-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-img-right{border-top-right-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.dropdown:not(.dropleft) .dropdown-toggle.dropdown-toggle-no-caret::after{display:none !important}.dropdown.dropleft .dropdown-toggle.dropdown-toggle-no-caret::before{display:none !important}.dropdown .dropdown-menu:focus{outline:none}.b-dropdown-form{display:inline-block;padding:0.25rem 1.5rem;width:100%;clear:both;font-weight:400}.b-dropdown-form:focus{outline:1px dotted !important;outline:5px auto -webkit-focus-ring-color !important}.b-dropdown-form.disabled,.b-dropdown-form:disabled{outline:0 !important;color:#6c757d;pointer-events:none}.b-dropdown-text{display:inline-block;padding:0.25rem 1.5rem;margin-bottom:0;width:100%;clear:both;font-weight:lighter}.custom-checkbox.b-custom-control-lg,.input-group-lg .custom-checkbox{font-size:1.25rem;line-height:1.5;padding-left:1.875rem}.custom-checkbox.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-checkbox .custom-control-label::before{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;border-radius:0.3rem}.custom-checkbox.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-checkbox .custom-control-label::after{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;background-size:50% 50%}.custom-checkbox.b-custom-control-sm,.input-group-sm .custom-checkbox{font-size:0.875rem;line-height:1.5;padding-left:1.3125rem}.custom-checkbox.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-checkbox .custom-control-label::before{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;border-radius:0.2rem}.custom-checkbox.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-checkbox .custom-control-label::after{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;background-size:50% 50%}.custom-switch.b-custom-control-lg,.input-group-lg .custom-switch{padding-left:2.8125rem}.custom-switch.b-custom-control-lg .custom-control-label,.input-group-lg .custom-switch .custom-control-label{font-size:1.25rem;line-height:1.5}.custom-switch.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-switch .custom-control-label::before{top:0.3125rem;height:1.25rem;left:-2.8125rem;width:2.1875rem;border-radius:0.625rem}.custom-switch.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-switch .custom-control-label::after{top:calc( 0.3125rem + 2px);left:calc( -2.8125rem + 2px);width:calc( 1.25rem - 4px);height:calc( 1.25rem - 4px);border-radius:0.625rem;background-size:50% 50%}.custom-switch.b-custom-control-lg .custom-control-input:checked ~ .custom-control-label::after,.input-group-lg .custom-switch .custom-control-input:checked ~ .custom-control-label::after{-webkit-transform:translateX(0.9375rem);transform:translateX(0.9375rem)}.custom-switch.b-custom-control-sm,.input-group-sm .custom-switch{padding-left:1.96875rem}.custom-switch.b-custom-control-sm .custom-control-label,.input-group-sm .custom-switch .custom-control-label{font-size:0.875rem;line-height:1.5}.custom-switch.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-switch .custom-control-label::before{top:0.21875rem;left:-1.96875rem;width:1.53125rem;height:0.875rem;border-radius:0.4375rem}.custom-switch.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-switch .custom-control-label::after{top:calc( 0.21875rem + 2px);left:calc( -1.96875rem + 2px);width:calc( 0.875rem - 4px);height:calc( 0.875rem - 4px);border-radius:0.4375rem;background-size:50% 50%}.custom-switch.b-custom-control-sm .custom-control-input:checked ~ .custom-control-label::after,.input-group-sm .custom-switch .custom-control-input:checked ~ .custom-control-label::after{-webkit-transform:translateX(0.65625rem);transform:translateX(0.65625rem)}.input-group>.input-group-prepend>.btn-group>.btn,.input-group>.input-group-append:not(:last-child)>.btn-group>.btn,.input-group>.input-group-append:last-child>.btn-group:not(:last-child):not(.dropdown-toggle)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn-group>.btn,.input-group>.input-group-prepend:not(:first-child)>.btn-group>.btn,.input-group>.input-group-prepend:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.b-form-btn-label-control.form-control{display:flex;align-items:stretch;height:auto;padding:0;background-image:none}.input-group .b-form-btn-label-control.form-control{padding:0}[dir=rtl] .b-form-btn-label-control.form-control,.b-form-btn-label-control.form-control[dir=rtl]{flex-direction:row-reverse}[dir=rtl] .b-form-btn-label-control.form-control>label,.b-form-btn-label-control.form-control[dir=rtl]>label{text-align:right}.b-form-btn-label-control.form-control>.btn{line-height:1;font-size:inherit;box-shadow:none !important;border:0}.b-form-btn-label-control.form-control>.btn:disabled{pointer-events:none}.b-form-btn-label-control.form-control.is-valid>.btn{color:#28a745}.b-form-btn-label-control.form-control.is-invalid>.btn{color:#dc3545}.b-form-btn-label-control.form-control>.dropdown-menu{padding:0.5rem}.b-form-btn-label-control.form-control>.form-control{height:auto;min-height:calc(calc(1.5em + 0.75rem + 2px) - 2px);padding-left:0.25rem;margin:0;border:0;outline:0;background:transparent;word-break:break-word;font-size:inherit;white-space:normal;cursor:pointer}.b-form-btn-label-control.form-control>.form-control.form-control-sm{min-height:calc(calc(1.5em + 0.5rem + 2px) - 2px)}.b-form-btn-label-control.form-control>.form-control.form-control-lg{min-height:calc(calc(1.5em + 1rem + 2px) - 2px)}.input-group.input-group-sm .b-form-btn-label-control.form-control>.form-control{min-height:calc(calc(1.5em + 0.5rem + 2px) - 2px);padding-top:0.25rem;padding-bottom:0.25rem}.input-group.input-group-lg .b-form-btn-label-control.form-control>.form-control{min-height:calc(calc(1.5em + 1rem + 2px) - 2px);padding-top:0.5rem;padding-bottom:0.5rem}.b-form-btn-label-control.form-control[aria-disabled=true],.b-form-btn-label-control.form-control[aria-readonly=true]{background-color:#e9ecef;opacity:1}.b-form-btn-label-control.form-control[aria-disabled=true]{pointer-events:none}.b-form-btn-label-control.form-control[aria-disabled=true]>label{cursor:default}.b-form-btn-label-control.btn-group>.dropdown-menu{padding:0.5rem}.custom-file-label{white-space:nowrap;overflow-x:hidden}.b-custom-control-lg.custom-file,.b-custom-control-lg .custom-file-input,.b-custom-control-lg .custom-file-label,.input-group-lg.custom-file,.input-group-lg .custom-file-input,.input-group-lg .custom-file-label{font-size:1.25rem;height:calc(1.5em + 1rem + 2px)}.b-custom-control-lg .custom-file-label,.b-custom-control-lg .custom-file-label:after,.input-group-lg .custom-file-label,.input-group-lg .custom-file-label:after{padding:0.5rem 1rem;line-height:1.5}.b-custom-control-lg .custom-file-label,.input-group-lg .custom-file-label{border-radius:0.3rem}.b-custom-control-lg .custom-file-label::after,.input-group-lg .custom-file-label::after{font-size:inherit;height:calc( 1.5em + 1rem);border-radius:0 0.3rem 0.3rem 0}.b-custom-control-sm.custom-file,.b-custom-control-sm .custom-file-input,.b-custom-control-sm .custom-file-label,.input-group-sm.custom-file,.input-group-sm .custom-file-input,.input-group-sm .custom-file-label{font-size:0.875rem;height:calc(1.5em + 0.5rem + 2px)}.b-custom-control-sm .custom-file-label,.b-custom-control-sm .custom-file-label:after,.input-group-sm .custom-file-label,.input-group-sm .custom-file-label:after{padding:0.25rem 0.5rem;line-height:1.5}.b-custom-control-sm .custom-file-label,.input-group-sm .custom-file-label{border-radius:0.2rem}.b-custom-control-sm .custom-file-label::after,.input-group-sm .custom-file-label::after{font-size:inherit;height:calc( 1.5em + 0.5rem);border-radius:0 0.2rem 0.2rem 0}.was-validated .form-control:invalid,.was-validated .form-control:valid,.form-control.is-invalid,.form-control.is-valid{background-position:right calc(0.375em + 0.1875rem) center}input[type=color].form-control{height:calc(1.5em + 0.75rem + 2px);padding:0.125rem 0.25rem}input[type=color].form-control.form-control-sm,.input-group-sm input[type=color].form-control{height:calc(1.5em + 0.5rem + 2px);padding:0.125rem 0.25rem}input[type=color].form-control.form-control-lg,.input-group-lg input[type=color].form-control{height:calc(1.5em + 1rem + 2px);padding:0.125rem 0.25rem}input[type=color].form-control:disabled{background-color:#adb5bd;opacity:0.65}.input-group>.custom-range{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-range+.form-control,.input-group>.custom-range+.form-control-plaintext,.input-group>.custom-range+.custom-select,.input-group>.custom-range+.custom-range,.input-group>.custom-range+.custom-file{margin-left:-1px}.input-group>.form-control+.custom-range,.input-group>.form-control-plaintext+.custom-range,.input-group>.custom-select+.custom-range,.input-group>.custom-range+.custom-range,.input-group>.custom-file+.custom-range{margin-left:-1px}.input-group>.custom-range:focus{z-index:3}.input-group>.custom-range:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-range:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-range{height:calc(1.5em + 0.75rem + 2px);padding:0 0.75rem;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;height:calc(1.5em + 0.75rem + 2px);border-radius:0.25rem;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.input-group>.custom-range{transition:none}}.input-group>.custom-range:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.input-group>.custom-range:disabled,.input-group>.custom-range[readonly]{background-color:#e9ecef}.input-group-lg>.custom-range{height:calc(1.5em + 1rem + 2px);padding:0 1rem;border-radius:0.3rem}.input-group-sm>.custom-range{height:calc(1.5em + 0.5rem + 2px);padding:0 0.5rem;border-radius:0.2rem}.was-validated .input-group .custom-range:valid,.input-group .custom-range.is-valid{border-color:#28a745}.was-validated .input-group .custom-range:valid:focus,.input-group .custom-range.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .custom-range:valid:focus::-webkit-slider-thumb,.custom-range.is-valid:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac}.was-validated .custom-range:valid:focus::-moz-range-thumb,.custom-range.is-valid:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac}.was-validated .custom-range:valid:focus::-ms-thumb,.custom-range.is-valid:focus::-ms-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac}.was-validated .custom-range:valid::-webkit-slider-thumb,.custom-range.is-valid::-webkit-slider-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-webkit-slider-thumb:active,.custom-range.is-valid::-webkit-slider-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-webkit-slider-runnable-track,.custom-range.is-valid::-webkit-slider-runnable-track{background-color:rgba(40,167,69,0.35)}.was-validated .custom-range:valid::-moz-range-thumb,.custom-range.is-valid::-moz-range-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-moz-range-thumb:active,.custom-range.is-valid::-moz-range-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-moz-range-track,.custom-range.is-valid::-moz-range-track{background:rgba(40,167,69,0.35)}.was-validated .custom-range:valid ~ .valid-feedback,.was-validated .custom-range:valid ~ .valid-tooltip,.custom-range.is-valid ~ .valid-feedback,.custom-range.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-range:valid::-ms-thumb,.custom-range.is-valid::-ms-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-ms-thumb:active,.custom-range.is-valid::-ms-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-ms-track-lower,.custom-range.is-valid::-ms-track-lower{background:rgba(40,167,69,0.35)}.was-validated .custom-range:valid::-ms-track-upper,.custom-range.is-valid::-ms-track-upper{background:rgba(40,167,69,0.35)}.was-validated .input-group .custom-range:invalid,.input-group .custom-range.is-invalid{border-color:#dc3545}.was-validated .input-group .custom-range:invalid:focus,.input-group .custom-range.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .custom-range:invalid:focus::-webkit-slider-thumb,.custom-range.is-invalid:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1}.was-validated .custom-range:invalid:focus::-moz-range-thumb,.custom-range.is-invalid:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1}.was-validated .custom-range:invalid:focus::-ms-thumb,.custom-range.is-invalid:focus::-ms-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1}.was-validated .custom-range:invalid::-webkit-slider-thumb,.custom-range.is-invalid::-webkit-slider-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-webkit-slider-thumb:active,.custom-range.is-invalid::-webkit-slider-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-webkit-slider-runnable-track,.custom-range.is-invalid::-webkit-slider-runnable-track{background-color:rgba(220,53,69,0.35)}.was-validated .custom-range:invalid::-moz-range-thumb,.custom-range.is-invalid::-moz-range-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-moz-range-thumb:active,.custom-range.is-invalid::-moz-range-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-moz-range-track,.custom-range.is-invalid::-moz-range-track{background:rgba(220,53,69,0.35)}.was-validated .custom-range:invalid ~ .invalid-feedback,.was-validated .custom-range:invalid ~ .invalid-tooltip,.custom-range.is-invalid ~ .invalid-feedback,.custom-range.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-range:invalid::-ms-thumb,.custom-range.is-invalid::-ms-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-ms-thumb:active,.custom-range.is-invalid::-ms-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-ms-track-lower,.custom-range.is-invalid::-ms-track-lower{background:rgba(220,53,69,0.35)}.was-validated .custom-range:invalid::-ms-track-upper,.custom-range.is-invalid::-ms-track-upper{background:rgba(220,53,69,0.35)}.custom-radio.b-custom-control-lg,.input-group-lg .custom-radio{font-size:1.25rem;line-height:1.5;padding-left:1.875rem}.custom-radio.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-radio .custom-control-label::before{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;border-radius:50%}.custom-radio.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-radio .custom-control-label::after{top:0.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;background:no-repeat 50%/50% 50%}.custom-radio.b-custom-control-sm,.input-group-sm .custom-radio{font-size:0.875rem;line-height:1.5;padding-left:1.3125rem}.custom-radio.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-radio .custom-control-label::before{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;border-radius:50%}.custom-radio.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-radio .custom-control-label::after{top:0.21875rem;left:-1.3125rem;width:0.875rem;height:0.875rem;background:no-repeat 50%/50% 50%}.b-rating{text-align:center}.b-rating.d-inline-flex{width:auto}.b-rating .b-rating-star,.b-rating .b-rating-value{padding:0 0.25em}.b-rating .b-rating-value{min-width:2.5em}.b-rating .b-rating-star{display:inline-flex;justify-content:center;outline:0}.b-rating .b-rating-star .b-rating-icon{display:inline-flex;transition:all 0.15s ease-in-out}.b-rating.disabled,.b-rating:disabled{background-color:#e9ecef;color:#6c757d}.b-rating:not(.disabled):not(.readonly) .b-rating-star{cursor:pointer}.b-rating:not(.disabled):not(.readonly):focus:not(:hover) .b-rating-star.focused .b-rating-icon,.b-rating:not(.disabled):not(.readonly) .b-rating-star:hover .b-rating-icon{-webkit-transform:scale(1.5);transform:scale(1.5)}.b-rating[dir=rtl] .b-rating-star-half{-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.b-form-spinbutton{text-align:center;overflow:hidden;background-image:none;padding:0}[dir=rtl] .b-form-spinbutton:not(.flex-column),.b-form-spinbutton[dir=rtl]:not(.flex-column){flex-direction:row-reverse}.b-form-spinbutton output{font-size:inherit;outline:0;border:0;background-color:transparent;width:auto;margin:0;padding:0 0.25rem}.b-form-spinbutton output>div,.b-form-spinbutton output>bdi{display:block;min-width:2.25em;height:1.5em}.b-form-spinbutton.flex-column{height:auto;width:auto}.b-form-spinbutton.flex-column output{margin:0 0.25rem;padding:0.25rem 0}.b-form-spinbutton:not(.d-inline-flex):not(.flex-column){output-width:100%}.b-form-spinbutton.d-inline-flex:not(.flex-column){width:auto}.b-form-spinbutton .btn{line-height:1;box-shadow:none !important}.b-form-spinbutton .btn:disabled{pointer-events:none}.b-form-spinbutton .btn:hover:not(:disabled)>div>.b-icon{-webkit-transform:scale(1.25);transform:scale(1.25)}.b-form-spinbutton.disabled,.b-form-spinbutton.readonly{background-color:#e9ecef}.b-form-spinbutton.disabled{pointer-events:none}.b-form-tags .b-form-tags-list{margin-top:-0.25rem}.b-form-tags .b-form-tags-list .b-from-tags-field,.b-form-tags .b-form-tags-list .b-form-tag{margin-top:0.25rem}.b-form-tags.focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.b-form-tags.focus.is-valid{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.b-form-tags.focus.is-invalid{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.b-form-tags.disabled{background-color:#e9ecef}.b-form-tag{font-size:75%;font-weight:normal;line-height:1.5;margin-right:0.25rem}.b-form-tag.disabled{opacity:0.75}.b-form-tag>button.b-form-tag-remove{color:inherit;font-size:125%;line-height:1;float:none;margin-left:0.25rem}.form-control-sm .b-form-tag{line-height:1.5}.form-control-lg .b-form-tag{line-height:1.5}.media-aside{display:flex;margin-right:1rem}.media-aside-right{margin-right:0;margin-left:1rem}.modal-backdrop{opacity:0.5}.b-pagination-pills .page-item .page-link{border-radius:50rem !important;margin-left:0.25rem;line-height:1}.b-pagination-pills .page-item:first-child .page-link{margin-left:0}.popover.b-popover{display:block;opacity:1;outline:0}.popover.b-popover.fade:not(.show){opacity:0}.popover.b-popover.show{opacity:1}.b-popover-primary.popover{background-color:#cce5ff;border-color:#b8daff}.b-popover-primary.bs-popover-top>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#b8daff}.b-popover-primary.bs-popover-top>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#cce5ff}.b-popover-primary.bs-popover-right>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#b8daff}.b-popover-primary.bs-popover-right>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#cce5ff}.b-popover-primary.bs-popover-bottom>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#b8daff}.b-popover-primary.bs-popover-bottom>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#bdddff}.b-popover-primary.bs-popover-bottom .popover-header::before,.b-popover-primary.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#bdddff}.b-popover-primary.bs-popover-left>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#b8daff}.b-popover-primary.bs-popover-left>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#cce5ff}.b-popover-primary .popover-header{color:#212529;background-color:#bdddff;border-bottom-color:#a3d0ff}.b-popover-primary .popover-body{color:#004085}.b-popover-secondary.popover{background-color:#e2e3e5;border-color:#d6d8db}.b-popover-secondary.bs-popover-top>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#d6d8db}.b-popover-secondary.bs-popover-top>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#e2e3e5}.b-popover-secondary.bs-popover-right>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#d6d8db}.b-popover-secondary.bs-popover-right>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#e2e3e5}.b-popover-secondary.bs-popover-bottom>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#d6d8db}.b-popover-secondary.bs-popover-bottom>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#dadbde}.b-popover-secondary.bs-popover-bottom .popover-header::before,.b-popover-secondary.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#dadbde}.b-popover-secondary.bs-popover-left>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#d6d8db}.b-popover-secondary.bs-popover-left>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#e2e3e5}.b-popover-secondary .popover-header{color:#212529;background-color:#dadbde;border-bottom-color:#ccced2}.b-popover-secondary .popover-body{color:#383d41}.b-popover-success.popover{background-color:#d4edda;border-color:#c3e6cb}.b-popover-success.bs-popover-top>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#c3e6cb}.b-popover-success.bs-popover-top>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#d4edda}.b-popover-success.bs-popover-right>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#c3e6cb}.b-popover-success.bs-popover-right>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#d4edda}.b-popover-success.bs-popover-bottom>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#c3e6cb}.b-popover-success.bs-popover-bottom>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#c9e8d1}.b-popover-success.bs-popover-bottom .popover-header::before,.b-popover-success.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#c9e8d1}.b-popover-success.bs-popover-left>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#c3e6cb}.b-popover-success.bs-popover-left>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#d4edda}.b-popover-success .popover-header{color:#212529;background-color:#c9e8d1;border-bottom-color:#b7e1c1}.b-popover-success .popover-body{color:#155724}.b-popover-info.popover{background-color:#d1ecf1;border-color:#bee5eb}.b-popover-info.bs-popover-top>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#bee5eb}.b-popover-info.bs-popover-top>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#d1ecf1}.b-popover-info.bs-popover-right>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#bee5eb}.b-popover-info.bs-popover-right>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#d1ecf1}.b-popover-info.bs-popover-bottom>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#bee5eb}.b-popover-info.bs-popover-bottom>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#c5e7ed}.b-popover-info.bs-popover-bottom .popover-header::before,.b-popover-info.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#c5e7ed}.b-popover-info.bs-popover-left>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#bee5eb}.b-popover-info.bs-popover-left>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#d1ecf1}.b-popover-info .popover-header{color:#212529;background-color:#c5e7ed;border-bottom-color:#b2dfe7}.b-popover-info .popover-body{color:#0c5460}.b-popover-warning.popover{background-color:#fff3cd;border-color:#ffeeba}.b-popover-warning.bs-popover-top>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#ffeeba}.b-popover-warning.bs-popover-top>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#fff3cd}.b-popover-warning.bs-popover-right>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#ffeeba}.b-popover-warning.bs-popover-right>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#fff3cd}.b-popover-warning.bs-popover-bottom>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#ffeeba}.b-popover-warning.bs-popover-bottom>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#ffefbe}.b-popover-warning.bs-popover-bottom .popover-header::before,.b-popover-warning.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#ffefbe}.b-popover-warning.bs-popover-left>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#ffeeba}.b-popover-warning.bs-popover-left>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#fff3cd}.b-popover-warning .popover-header{color:#212529;background-color:#ffefbe;border-bottom-color:#ffe9a4}.b-popover-warning .popover-body{color:#856404}.b-popover-danger.popover{background-color:#f8d7da;border-color:#f5c6cb}.b-popover-danger.bs-popover-top>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#f5c6cb}.b-popover-danger.bs-popover-top>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#f8d7da}.b-popover-danger.bs-popover-right>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#f5c6cb}.b-popover-danger.bs-popover-right>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#f8d7da}.b-popover-danger.bs-popover-bottom>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#f5c6cb}.b-popover-danger.bs-popover-bottom>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#f6cace}.b-popover-danger.bs-popover-bottom .popover-header::before,.b-popover-danger.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#f6cace}.b-popover-danger.bs-popover-left>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#f5c6cb}.b-popover-danger.bs-popover-left>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#f8d7da}.b-popover-danger .popover-header{color:#212529;background-color:#f6cace;border-bottom-color:#f2b4ba}.b-popover-danger .popover-body{color:#721c24}.b-popover-light.popover{background-color:#fefefe;border-color:#fdfdfe}.b-popover-light.bs-popover-top>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#fdfdfe}.b-popover-light.bs-popover-top>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#fefefe}.b-popover-light.bs-popover-right>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#fdfdfe}.b-popover-light.bs-popover-right>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#fefefe}.b-popover-light.bs-popover-bottom>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#fdfdfe}.b-popover-light.bs-popover-bottom>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#f6f6f6}.b-popover-light.bs-popover-bottom .popover-header::before,.b-popover-light.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#f6f6f6}.b-popover-light.bs-popover-left>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#fdfdfe}.b-popover-light.bs-popover-left>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#fefefe}.b-popover-light .popover-header{color:#212529;background-color:#f6f6f6;border-bottom-color:#eaeaea}.b-popover-light .popover-body{color:#818182}.b-popover-dark.popover{background-color:#d6d8d9;border-color:#c6c8ca}.b-popover-dark.bs-popover-top>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#c6c8ca}.b-popover-dark.bs-popover-top>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#d6d8d9}.b-popover-dark.bs-popover-right>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#c6c8ca}.b-popover-dark.bs-popover-right>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#d6d8d9}.b-popover-dark.bs-popover-bottom>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#c6c8ca}.b-popover-dark.bs-popover-bottom>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#ced0d2}.b-popover-dark.bs-popover-bottom .popover-header::before,.b-popover-dark.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#ced0d2}.b-popover-dark.bs-popover-left>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#c6c8ca}.b-popover-dark.bs-popover-left>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#d6d8d9}.b-popover-dark .popover-header{color:#212529;background-color:#ced0d2;border-bottom-color:#c1c4c5}.b-popover-dark .popover-body{color:#1b1e21}.b-sidebar-outer{position:fixed;top:0;left:0;right:0;height:0;overflow:visible;z-index:calc(1030 + 5)}.b-sidebar-backdrop{position:fixed;top:0;left:0;z-index:-1;width:100vw;height:100vh;opacity:0.6}.b-sidebar{display:flex;flex-direction:column;position:fixed;top:0;width:320px;max-width:100%;height:100vh;max-height:100%;margin:0;outline:0;-webkit-transform:translateX(0);transform:translateX(0)}.b-sidebar.slide{transition:-webkit-transform 0.3s ease-in-out;transition:transform 0.3s ease-in-out;transition:transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out}@media (prefers-reduced-motion: reduce){.b-sidebar.slide{transition:none}}.b-sidebar:not(.b-sidebar-right){left:0;right:auto}.b-sidebar:not(.b-sidebar-right).slide:not(.show){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.b-sidebar:not(.b-sidebar-right)>.b-sidebar-header .close{margin-left:auto}.b-sidebar.b-sidebar-right{left:auto;right:0}.b-sidebar.b-sidebar-right.slide:not(.show){-webkit-transform:translateX(100%);transform:translateX(100%)}.b-sidebar.b-sidebar-right>.b-sidebar-header .close{margin-right:auto}.b-sidebar>.b-sidebar-header{font-size:1.5rem;padding:0.5rem 1rem;display:flex;flex-direction:row;flex-grow:0;align-items:center}[dir=rtl] .b-sidebar>.b-sidebar-header{flex-direction:row-reverse}.b-sidebar>.b-sidebar-header .close{float:none;font-size:1.5rem}.b-sidebar>.b-sidebar-body{flex-grow:1;height:100%;overflow-y:auto}.b-sidebar>.b-sidebar-footer{flex-grow:0}.b-skeleton-wrapper{cursor:wait}.b-skeleton{position:relative;overflow:hidden;background-color:rgba(0,0,0,0.12);cursor:wait;-webkit-mask-image:radial-gradient(white, black);mask-image:radial-gradient(white, black)}.b-skeleton::before{content:" "}.b-skeleton-text{height:1rem;margin-bottom:0.25rem;border-radius:0.25rem}.b-skeleton-button{width:75px;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5;border-radius:0.25rem}.b-skeleton-avatar{width:2.5em;height:2.5em;border-radius:50%}.b-skeleton-input{height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;line-height:1.5;border:#ced4da solid 1px;border-radius:0.25rem}.b-skeleton-icon-wrapper svg{color:rgba(0,0,0,0.12)}.b-skeleton-img{height:100%;width:100%}.b-skeleton-animate-wave::after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;background:linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);-webkit-animation:b-skeleton-animate-wave 1.75s linear infinite;animation:b-skeleton-animate-wave 1.75s linear infinite}@media (prefers-reduced-motion: reduce){.b-skeleton-animate-wave::after{background:none;-webkit-animation:none;animation:none}}@-webkit-keyframes b-skeleton-animate-wave{from{-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes b-skeleton-animate-wave{from{-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}.b-skeleton-animate-fade{-webkit-animation:b-skeleton-animate-fade 0.875s ease-in-out alternate infinite;animation:b-skeleton-animate-fade 0.875s ease-in-out alternate infinite}@media (prefers-reduced-motion: reduce){.b-skeleton-animate-fade{-webkit-animation:none;animation:none}}@-webkit-keyframes b-skeleton-animate-fade{0%{opacity:1}100%{opacity:0.4}}@keyframes b-skeleton-animate-fade{0%{opacity:1}100%{opacity:0.4}}.b-skeleton-animate-throb{-webkit-animation:b-skeleton-animate-throb 0.875s ease-in alternate infinite;animation:b-skeleton-animate-throb 0.875s ease-in alternate infinite}@media (prefers-reduced-motion: reduce){.b-skeleton-animate-throb{-webkit-animation:none;animation:none}}@-webkit-keyframes b-skeleton-animate-throb{0%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.975);transform:scale(0.975)}}@keyframes b-skeleton-animate-throb{0%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.975);transform:scale(0.975)}}.table.b-table.b-table-fixed{table-layout:fixed}.table.b-table.b-table-no-border-collapse{border-collapse:separate;border-spacing:0}.table.b-table[aria-busy=true]{opacity:0.55}.table.b-table>tbody>tr.b-table-details>td{border-top:none !important}.table.b-table>caption{caption-side:bottom}.table.b-table.b-table-caption-top>caption{caption-side:top !important}.table.b-table>tbody>.table-active,.table.b-table>tbody>.table-active>th,.table.b-table>tbody>.table-active>td{background-color:rgba(0,0,0,0.075)}.table.b-table.table-hover>tbody>tr.table-active:hover td,.table.b-table.table-hover>tbody>tr.table-active:hover th{color:#212529;background-image:linear-gradient(rgba(0,0,0,0.075), rgba(0,0,0,0.075));background-repeat:no-repeat}.table.b-table>tbody>.bg-active,.table.b-table>tbody>.bg-active>th,.table.b-table>tbody>.bg-active>td{background-color:rgba(255,255,255,0.075) !important}.table.b-table.table-hover.table-dark>tbody>tr.bg-active:hover td,.table.b-table.table-hover.table-dark>tbody>tr.bg-active:hover th{color:#fff;background-image:linear-gradient(rgba(255,255,255,0.075), rgba(255,255,255,0.075));background-repeat:no-repeat}.b-table-sticky-header,.table-responsive,[class*=table-responsive-]{margin-bottom:1rem}.b-table-sticky-header>.table,.table-responsive>.table,[class*=table-responsive-]>.table{margin-bottom:0}.b-table-sticky-header{overflow-y:auto;max-height:300px}@media print{.b-table-sticky-header{overflow-y:visible !important;max-height:none !important}}@supports (position: -webkit-sticky) or (position: sticky){.b-table-sticky-header>.table.b-table>thead>tr>th{position:-webkit-sticky;position:sticky;top:0;z-index:2}.b-table-sticky-header>.table.b-table>thead>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tbody>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tfoot>tr>.b-table-sticky-column,.table-responsive>.table.b-table>thead>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tbody>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tfoot>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>thead>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tbody>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tfoot>tr>.b-table-sticky-column{position:-webkit-sticky;position:sticky;left:0}.b-table-sticky-header>.table.b-table>thead>tr>.b-table-sticky-column,.table-responsive>.table.b-table>thead>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>thead>tr>.b-table-sticky-column{z-index:5}.b-table-sticky-header>.table.b-table>tbody>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tfoot>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tbody>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tfoot>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tbody>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tfoot>tr>.b-table-sticky-column{z-index:2}.table.b-table>thead>tr>.table-b-table-default,.table.b-table>tbody>tr>.table-b-table-default,.table.b-table>tfoot>tr>.table-b-table-default{color:#212529;background-color:#fff}.table.b-table.table-dark>thead>tr>.bg-b-table-default,.table.b-table.table-dark>tbody>tr>.bg-b-table-default,.table.b-table.table-dark>tfoot>tr>.bg-b-table-default{color:#fff;background-color:#343a40}.table.b-table.table-striped>tbody>tr:nth-of-type(odd)>.table-b-table-default{background-image:linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05));background-repeat:no-repeat}.table.b-table.table-striped.table-dark>tbody>tr:nth-of-type(odd)>.bg-b-table-default{background-image:linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05));background-repeat:no-repeat}.table.b-table.table-hover>tbody>tr:hover>.table-b-table-default{color:#212529;background-image:linear-gradient(rgba(0,0,0,0.075), rgba(0,0,0,0.075));background-repeat:no-repeat}.table.b-table.table-hover.table-dark>tbody>tr:hover>.bg-b-table-default{color:#fff;background-image:linear-gradient(rgba(255,255,255,0.075), rgba(255,255,255,0.075));background-repeat:no-repeat}}.table.b-table>thead>tr>[aria-sort],.table.b-table>tfoot>tr>[aria-sort]{cursor:pointer;background-image:none;background-repeat:no-repeat;background-size:0.65em 1em}.table.b-table>thead>tr>[aria-sort]:not(.b-table-sort-icon-left),.table.b-table>tfoot>tr>[aria-sort]:not(.b-table-sort-icon-left){background-position:right calc(0.75rem / 2) center;padding-right:calc(0.75rem + 0.65em)}.table.b-table>thead>tr>[aria-sort].b-table-sort-icon-left,.table.b-table>tfoot>tr>[aria-sort].b-table-sort-icon-left{background-position:left calc(0.75rem / 2) center;padding-left:calc(0.75rem + 0.65em)}.table.b-table>thead>tr>[aria-sort=none],.table.b-table>tfoot>tr>[aria-sort=none]{background-image:url('+f+")}.table.b-table>thead>tr>[aria-sort=ascending],.table.b-table>tfoot>tr>[aria-sort=ascending]{background-image:url("+b+")}.table.b-table>thead>tr>[aria-sort=descending],.table.b-table>tfoot>tr>[aria-sort=descending]{background-image:url("+h+")}.table.b-table.table-dark>thead>tr>[aria-sort=none],.table.b-table.table-dark>tfoot>tr>[aria-sort=none],.table.b-table>.thead-dark>tr>[aria-sort=none]{background-image:url("+g+")}.table.b-table.table-dark>thead>tr>[aria-sort=ascending],.table.b-table.table-dark>tfoot>tr>[aria-sort=ascending],.table.b-table>.thead-dark>tr>[aria-sort=ascending]{background-image:url("+v+")}.table.b-table.table-dark>thead>tr>[aria-sort=descending],.table.b-table.table-dark>tfoot>tr>[aria-sort=descending],.table.b-table>.thead-dark>tr>[aria-sort=descending]{background-image:url("+x+")}.table.b-table>thead>tr>.table-dark[aria-sort=none],.table.b-table>tfoot>tr>.table-dark[aria-sort=none]{background-image:url("+g+")}.table.b-table>thead>tr>.table-dark[aria-sort=ascending],.table.b-table>tfoot>tr>.table-dark[aria-sort=ascending]{background-image:url("+v+")}.table.b-table>thead>tr>.table-dark[aria-sort=descending],.table.b-table>tfoot>tr>.table-dark[aria-sort=descending]{background-image:url("+x+')}.table.b-table.table-sm>thead>tr>[aria-sort]:not(.b-table-sort-icon-left),.table.b-table.table-sm>tfoot>tr>[aria-sort]:not(.b-table-sort-icon-left){background-position:right calc(0.3rem / 2) center;padding-right:calc(0.3rem + 0.65em)}.table.b-table.table-sm>thead>tr>[aria-sort].b-table-sort-icon-left,.table.b-table.table-sm>tfoot>tr>[aria-sort].b-table-sort-icon-left{background-position:left calc(0.3rem / 2) center;padding-left:calc(0.3rem + 0.65em)}.table.b-table.b-table-selectable:not(.b-table-selectable-no-click)>tbody>tr{cursor:pointer}.table.b-table.b-table-selectable:not(.b-table-selectable-no-click).b-table-selecting.b-table-select-range>tbody>tr{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media (max-width: 575.98px){.table.b-table.b-table-stacked-sm{display:block;width:100%}.table.b-table.b-table-stacked-sm>caption,.table.b-table.b-table-stacked-sm>tbody,.table.b-table.b-table-stacked-sm>tbody>tr,.table.b-table.b-table-stacked-sm>tbody>tr>td,.table.b-table.b-table-stacked-sm>tbody>tr>th{display:block}.table.b-table.b-table-stacked-sm>thead,.table.b-table.b-table-stacked-sm>tfoot{display:none}.table.b-table.b-table-stacked-sm>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-sm>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-sm>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-sm>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-sm>caption{caption-side:top !important}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-sm>tbody>tr.top-row,.table.b-table.b-table-stacked-sm>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-sm>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-sm>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-sm>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width: 767.98px){.table.b-table.b-table-stacked-md{display:block;width:100%}.table.b-table.b-table-stacked-md>caption,.table.b-table.b-table-stacked-md>tbody,.table.b-table.b-table-stacked-md>tbody>tr,.table.b-table.b-table-stacked-md>tbody>tr>td,.table.b-table.b-table-stacked-md>tbody>tr>th{display:block}.table.b-table.b-table-stacked-md>thead,.table.b-table.b-table-stacked-md>tfoot{display:none}.table.b-table.b-table-stacked-md>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-md>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-md>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-md>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-md>caption{caption-side:top !important}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-md>tbody>tr.top-row,.table.b-table.b-table-stacked-md>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-md>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-md>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-md>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width: 991.98px){.table.b-table.b-table-stacked-lg{display:block;width:100%}.table.b-table.b-table-stacked-lg>caption,.table.b-table.b-table-stacked-lg>tbody,.table.b-table.b-table-stacked-lg>tbody>tr,.table.b-table.b-table-stacked-lg>tbody>tr>td,.table.b-table.b-table-stacked-lg>tbody>tr>th{display:block}.table.b-table.b-table-stacked-lg>thead,.table.b-table.b-table-stacked-lg>tfoot{display:none}.table.b-table.b-table-stacked-lg>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-lg>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-lg>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-lg>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-lg>caption{caption-side:top !important}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-lg>tbody>tr.top-row,.table.b-table.b-table-stacked-lg>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-lg>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-lg>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-lg>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width: 1199.98px){.table.b-table.b-table-stacked-xl{display:block;width:100%}.table.b-table.b-table-stacked-xl>caption,.table.b-table.b-table-stacked-xl>tbody,.table.b-table.b-table-stacked-xl>tbody>tr,.table.b-table.b-table-stacked-xl>tbody>tr>td,.table.b-table.b-table-stacked-xl>tbody>tr>th{display:block}.table.b-table.b-table-stacked-xl>thead,.table.b-table.b-table-stacked-xl>tfoot{display:none}.table.b-table.b-table-stacked-xl>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-xl>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-xl>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-xl>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-xl>caption{caption-side:top !important}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-xl>tbody>tr.top-row,.table.b-table.b-table-stacked-xl>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-xl>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-xl>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-xl>tbody>tr>[rowspan]+th{border-top-width:3px}}.table.b-table.b-table-stacked{display:block;width:100%}.table.b-table.b-table-stacked>caption,.table.b-table.b-table-stacked>tbody,.table.b-table.b-table-stacked>tbody>tr,.table.b-table.b-table-stacked>tbody>tr>td,.table.b-table.b-table-stacked>tbody>tr>th{display:block}.table.b-table.b-table-stacked>thead,.table.b-table.b-table-stacked>tfoot{display:none}.table.b-table.b-table-stacked>thead>tr.b-table-top-row,.table.b-table.b-table-stacked>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked>caption{caption-side:top !important}.table.b-table.b-table-stacked>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked>tbody>tr.top-row,.table.b-table.b-table-stacked>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked>tbody>tr>[rowspan]+th{border-top-width:3px}.b-time{min-width:150px}.b-time[aria-disabled=true] output,.b-time[aria-readonly=true] output,.b-time output.disabled{background-color:#e9ecef;opacity:1}.b-time[aria-disabled=true] output{pointer-events:none}[dir=rtl] .b-time>.d-flex:not(.flex-column){flex-direction:row-reverse}.b-time .b-time-header{margin-bottom:0.5rem}.b-time .b-time-header output{padding:0.25rem;font-size:80%}.b-time .b-time-footer{margin-top:0.5rem}.b-time .b-time-ampm{margin-left:0.5rem}.b-toast{display:block;position:relative;max-width:350px;-webkit-backface-visibility:hidden;backface-visibility:hidden;background-clip:padding-box;z-index:1;border-radius:0.25rem}.b-toast .toast{background-color:rgba(255,255,255,0.85)}.b-toast:not(:last-child){margin-bottom:0.75rem}.b-toast.b-toast-solid .toast{background-color:white}.b-toast .toast{opacity:1}.b-toast .toast.fade:not(.show){opacity:0}.b-toast .toast .toast-body{display:block}.b-toast-primary .toast{background-color:rgba(230,242,255,0.85);border-color:rgba(184,218,255,0.85);color:#004085}.b-toast-primary .toast .toast-header{color:#004085;background-color:rgba(204,229,255,0.85);border-bottom-color:rgba(184,218,255,0.85)}.b-toast-primary.b-toast-solid .toast{background-color:#e6f2ff}.b-toast-secondary .toast{background-color:rgba(239,240,241,0.85);border-color:rgba(214,216,219,0.85);color:#383d41}.b-toast-secondary .toast .toast-header{color:#383d41;background-color:rgba(226,227,229,0.85);border-bottom-color:rgba(214,216,219,0.85)}.b-toast-secondary.b-toast-solid .toast{background-color:#eff0f1}.b-toast-success .toast{background-color:rgba(230,245,233,0.85);border-color:rgba(195,230,203,0.85);color:#155724}.b-toast-success .toast .toast-header{color:#155724;background-color:rgba(212,237,218,0.85);border-bottom-color:rgba(195,230,203,0.85)}.b-toast-success.b-toast-solid .toast{background-color:#e6f5e9}.b-toast-info .toast{background-color:rgba(229,244,247,0.85);border-color:rgba(190,229,235,0.85);color:#0c5460}.b-toast-info .toast .toast-header{color:#0c5460;background-color:rgba(209,236,241,0.85);border-bottom-color:rgba(190,229,235,0.85)}.b-toast-info.b-toast-solid .toast{background-color:#e5f4f7}.b-toast-warning .toast{background-color:rgba(255,249,231,0.85);border-color:rgba(255,238,186,0.85);color:#856404}.b-toast-warning .toast .toast-header{color:#856404;background-color:rgba(255,243,205,0.85);border-bottom-color:rgba(255,238,186,0.85)}.b-toast-warning.b-toast-solid .toast{background-color:#fff9e7}.b-toast-danger .toast{background-color:rgba(252,237,238,0.85);border-color:rgba(245,198,203,0.85);color:#721c24}.b-toast-danger .toast .toast-header{color:#721c24;background-color:rgba(248,215,218,0.85);border-bottom-color:rgba(245,198,203,0.85)}.b-toast-danger.b-toast-solid .toast{background-color:#fcedee}.b-toast-light .toast{background-color:rgba(255,255,255,0.85);border-color:rgba(253,253,254,0.85);color:#818182}.b-toast-light .toast .toast-header{color:#818182;background-color:rgba(254,254,254,0.85);border-bottom-color:rgba(253,253,254,0.85)}.b-toast-light.b-toast-solid .toast{background-color:white}.b-toast-dark .toast{background-color:rgba(227,229,229,0.85);border-color:rgba(198,200,202,0.85);color:#1b1e21}.b-toast-dark .toast .toast-header{color:#1b1e21;background-color:rgba(214,216,217,0.85);border-bottom-color:rgba(198,200,202,0.85)}.b-toast-dark.b-toast-solid .toast{background-color:#e3e5e5}.b-toaster{z-index:1100}.b-toaster .b-toaster-slot{position:relative;display:block}.b-toaster .b-toaster-slot:empty{display:none !important}.b-toaster.b-toaster-top-right,.b-toaster.b-toaster-top-left,.b-toaster.b-toaster-top-center,.b-toaster.b-toaster-top-full,.b-toaster.b-toaster-bottom-right,.b-toaster.b-toaster-bottom-left,.b-toaster.b-toaster-bottom-center,.b-toaster.b-toaster-bottom-full{position:fixed;left:0.5rem;right:0.5rem;margin:0;padding:0;height:0;overflow:visible}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-full .b-toaster-slot,.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{position:absolute;max-width:350px;width:100%;left:0;right:0;padding:0;margin:0}.b-toaster.b-toaster-top-full .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{width:100%;max-width:100%}.b-toaster.b-toaster-top-full .b-toaster-slot .b-toast,.b-toaster.b-toaster-top-full .b-toaster-slot .toast,.b-toaster.b-toaster-bottom-full .b-toaster-slot .b-toast,.b-toaster.b-toaster-bottom-full .b-toaster-slot .toast{width:100%;max-width:100%}.b-toaster.b-toaster-top-right,.b-toaster.b-toaster-top-left,.b-toaster.b-toaster-top-center,.b-toaster.b-toaster-top-full{top:0}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-full .b-toaster-slot{top:0.5rem}.b-toaster.b-toaster-bottom-right,.b-toaster.b-toaster-bottom-left,.b-toaster.b-toaster-bottom-center,.b-toaster.b-toaster-bottom-full{bottom:0}.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{bottom:0.5rem}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot{margin-left:auto}.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot{margin-right:auto}.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-right .b-toast.b-toaster-move,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-move,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-move,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-move{transition:-webkit-transform 0.175s;transition:transform 0.175s;transition:transform 0.175s, -webkit-transform 0.175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active .toast.fade{transition-delay:0.175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active{position:absolute;transition-delay:0.175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active .toast.fade{transition-delay:0s}.tooltip.b-tooltip{display:block;opacity:0.9;outline:0}.tooltip.b-tooltip.fade:not(.show){opacity:0}.tooltip.b-tooltip.show{opacity:0.9}.tooltip.b-tooltip.noninteractive{pointer-events:none}.tooltip.b-tooltip .arrow{margin:0 0.25rem}.tooltip.b-tooltip.bs-tooltip-right .arrow,.tooltip.b-tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.bs-tooltip-left .arrow,.tooltip.b-tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow{margin:0.25rem 0}.tooltip.b-tooltip-primary.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#007bff}.tooltip.b-tooltip-primary .tooltip-inner{color:#fff;background-color:#007bff}.tooltip.b-tooltip-secondary.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#6c757d}.tooltip.b-tooltip-secondary .tooltip-inner{color:#fff;background-color:#6c757d}.tooltip.b-tooltip-success.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#28a745}.tooltip.b-tooltip-success .tooltip-inner{color:#fff;background-color:#28a745}.tooltip.b-tooltip-info.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#17a2b8}.tooltip.b-tooltip-info .tooltip-inner{color:#fff;background-color:#17a2b8}.tooltip.b-tooltip-warning.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#ffc107}.tooltip.b-tooltip-warning .tooltip-inner{color:#212529;background-color:#ffc107}.tooltip.b-tooltip-danger.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#dc3545}.tooltip.b-tooltip-danger .tooltip-inner{color:#fff;background-color:#dc3545}.tooltip.b-tooltip-light.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#f8f9fa}.tooltip.b-tooltip-light .tooltip-inner{color:#212529;background-color:#f8f9fa}.tooltip.b-tooltip-dark.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#343a40}.tooltip.b-tooltip-dark .tooltip-inner{color:#fff;background-color:#343a40}.b-icon.bi{display:inline-block;overflow:visible;vertical-align:-0.15em}.b-icon.b-icon-animation-cylon,.b-icon.b-iconstack .b-icon-animation-cylon>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon;animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-cylon,.b-icon.b-iconstack .b-icon-animation-cylon>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-cylon-vertical,.b-icon.b-iconstack .b-icon-animation-cylon-vertical>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon-vertical;animation:0.75s infinite ease-in-out alternate b-icon-animation-cylon-vertical}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-cylon-vertical,.b-icon.b-iconstack .b-icon-animation-cylon-vertical>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-fade,.b-icon.b-iconstack .b-icon-animation-fade>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-fade;animation:0.75s infinite ease-in-out alternate b-icon-animation-fade}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-fade,.b-icon.b-iconstack .b-icon-animation-fade>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin,.b-icon.b-iconstack .b-icon-animation-spin>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:2s infinite linear normal b-icon-animation-spin;animation:2s infinite linear normal b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin,.b-icon.b-iconstack .b-icon-animation-spin>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-reverse,.b-icon.b-iconstack .b-icon-animation-spin-reverse>g{-webkit-transform-origin:center;transform-origin:center;animation:2s infinite linear reverse b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-reverse,.b-icon.b-iconstack .b-icon-animation-spin-reverse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-pulse,.b-icon.b-iconstack .b-icon-animation-spin-pulse>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:1s infinite steps(8) normal b-icon-animation-spin;animation:1s infinite steps(8) normal b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-pulse,.b-icon.b-iconstack .b-icon-animation-spin-pulse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-reverse-pulse,.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse>g{-webkit-transform-origin:center;transform-origin:center;animation:1s infinite steps(8) reverse b-icon-animation-spin}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-reverse-pulse,.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-throb,.b-icon.b-iconstack .b-icon-animation-throb>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:0.75s infinite ease-in-out alternate b-icon-animation-throb;animation:0.75s infinite ease-in-out alternate b-icon-animation-throb}@media (prefers-reduced-motion: reduce){.b-icon.b-icon-animation-throb,.b-icon.b-iconstack .b-icon-animation-throb>g{-webkit-animation:none;animation:none}}@-webkit-keyframes b-icon-animation-cylon{0%{-webkit-transform:translateX(-25%);transform:translateX(-25%)}100%{-webkit-transform:translateX(25%);transform:translateX(25%)}}@keyframes b-icon-animation-cylon{0%{-webkit-transform:translateX(-25%);transform:translateX(-25%)}100%{-webkit-transform:translateX(25%);transform:translateX(25%)}}@-webkit-keyframes b-icon-animation-cylon-vertical{0%{-webkit-transform:translateY(25%);transform:translateY(25%)}100%{-webkit-transform:translateY(-25%);transform:translateY(-25%)}}@keyframes b-icon-animation-cylon-vertical{0%{-webkit-transform:translateY(25%);transform:translateY(25%)}100%{-webkit-transform:translateY(-25%);transform:translateY(-25%)}}@-webkit-keyframes b-icon-animation-fade{0%{opacity:0.1}100%{opacity:1}}@keyframes b-icon-animation-fade{0%{opacity:0.1}100%{opacity:1}}@-webkit-keyframes b-icon-animation-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes b-icon-animation-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes b-icon-animation-throb{0%{opacity:0.5;-webkit-transform:scale(0.5);transform:scale(0.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes b-icon-animation-throb{0%{opacity:0.5;-webkit-transform:scale(0.5);transform:scale(0.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.btn .b-icon.bi,.nav-link .b-icon.bi,.dropdown-toggle .b-icon.bi,.dropdown-item .b-icon.bi,.input-group-text .b-icon.bi{font-size:125%;vertical-align:text-bottom}\n',""]);const y=m},3622:(t,e,r)=>{"use strict";r.d(e,{Z:()=>_});var o=r(3645),n=r.n(o),i=r(1667),a=r.n(i),l=new URL(r(7211),r.b),s=new URL(r(4576),r.b),c=new URL(r(1024),r.b),d=new URL(r(9653),r.b),p=new URL(r(4231),r.b),u=new URL(r(7263),r.b),m=new URL(r(1380),r.b),f=new URL(r(9242),r.b),b=new URL(r(4104),r.b),h=new URL(r(9700),r.b),g=n()((function(t){return t[1]})),v=a()(l),x=a()(s),y=a()(c),w=a()(d),k=a()(p),O=a()(u),j=a()(m),S=a()(f),P=a()(b),T=a()(h);g.push([t.id,'/*!\n * Bootstrap v4.6.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:0.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role="button"]{cursor:pointer}select{word-wrap:normal}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:none}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:0.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.5rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.75rem}h4,.h4{font-size:1.5rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:0.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:0.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\\2014\\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:0.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:0.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:0.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-sm,.container-md,.container-lg,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container,.container-sm{max-width:540px}}@media (min-width: 768px){.container,.container-sm,.container-md{max-width:720px}}@media (min-width: 992px){.container,.container-sm,.container-md,.container-lg{max-width:960px}}@media (min-width: 1200px){.container,.container-sm,.container-md,.container-lg,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width: 576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width: 768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width: 992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width: 1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:0.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm th,.table-sm td{padding:0.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered th,.table-bordered td{border:1px solid #dee2e6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#b8daff}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#d6d8db}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>th,.table-success>td{background-color:#c3e6cb}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>th,.table-info>td{background-color:#bee5eb}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:#fdfdfe}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>th,.table-dark>td{background-color:#c6c8ca}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0.25rem;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:0.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:0.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:0.3rem;margin-left:-1.25rem}.form-check-input[disabled] ~ .form-check-label,.form-check-input:disabled ~ .form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,0.9);border-radius:0.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*="col-"]>.valid-tooltip{left:5px}.was-validated :valid ~ .valid-feedback,.was-validated :valid ~ .valid-tooltip,.is-valid ~ .valid-feedback,.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#28a745;padding-right:calc(1.5em + 0.75rem);background-image:url('+v+");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#28a745;padding-right:calc(0.75em + 2.3125rem);background:url("+x+") right 0.75rem center/8px 10px no-repeat,#fff url("+v+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#28a745}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label{color:#28a745}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label{border-color:#28a745}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#28a745;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:0.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*="col-"]>.invalid-tooltip{left:5px}.was-validated :invalid ~ .invalid-feedback,.was-validated :invalid ~ .invalid-tooltip,.is-invalid ~ .invalid-feedback,.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + 0.75rem);background-image:url('+y+");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc3545;padding-right:calc(0.75em + 2.3125rem);background:url("+x+") right 0.75rem center/8px 10px no-repeat,#fff url("+y+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.btn.disabled,.btn:disabled{opacity:0.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 0.2rem rgba(38,143,255,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(38,143,255,0.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 0.2rem rgba(130,138,145,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(130,138,145,0.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning:focus,.btn-warning.focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 0.2rem rgba(222,170,12,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(222,170,12,0.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light:focus,.btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 0.2rem rgba(216,217,219,0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(216,217,219,0.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 0.2rem rgba(82,88,93,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(82,88,93,0.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 0.2rem rgba(0,123,255,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(0,123,255,0.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 0.2rem rgba(108,117,125,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(108,117,125,0.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 0.2rem rgba(248,249,250,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(248,249,250,0.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 0.2rem rgba(52,58,64,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(52,58,64,0.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline}.btn-link:disabled,.btn-link.disabled{color:#6c757d;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}.btn-sm,.btn-group-sm>.btn{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:0.5rem 0;margin:0.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:0.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:0.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:0.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.form-control:not(:last-child),.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-prepend,.input-group-append{display:-ms-flexbox;display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:0.25rem}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input[disabled] ~ .custom-control-label,.custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.custom-control-input[disabled] ~ .custom-control-label::before,.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:0.25rem}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url('+w+")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("+k+")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("+O+")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}.custom-switch .custom-control-label::after{top:calc(0.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:0.5rem;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;-webkit-transform:translateX(0.75rem);transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("+x+') right 0.75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#80bdff;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-file-input[disabled] ~ .custom-file-label,.custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:0.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 0.25rem 0.25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(0,123,255,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:0.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:0.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill>.nav-link,.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:0.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:0.3125rem;padding-bottom:0.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:0.25rem 0.75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url('+j+")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,0.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,0.5);border-color:rgba(255,255,255,0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("+S+')}.navbar-dark .navbar-text{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:0.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:0.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-footer{padding:0.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(0.25rem - 1px)}.card-img,.card-img-top,.card-img-bottom{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:0.75rem}@media (min-width: 576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:0.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:0.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0.25rem}.page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}.page-item:last-child .page-link{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0.3rem;border-bottom-left-radius:0.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0.3rem;border-bottom-right-radius:0.3rem}.pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0.2rem;border-bottom-left-radius:0.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0.2rem;border-bottom-right-radius:0.2rem}.badge{display:inline-block;padding:0.25em 0.4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#0062cc}a.badge-primary:focus,a.badge-primary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(0,123,255,0.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#545b62}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(108,117,125,0.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#1e7e34}a.badge-success:focus,a.badge-success.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#117a8b}a.badge-info:focus,a.badge-info.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:hover,a.badge-warning:focus{color:#212529;background-color:#d39e00}a.badge-warning:focus,a.badge-warning.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#bd2130}a.badge-danger:focus,a.badge-danger.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:hover,a.badge-light:focus{color:#212529;background-color:#dae0e5}a.badge-light:focus,a.badge-light.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(248,249,250,0.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#1d2124}a.badge-dark:focus,a.badge-dark.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(52,58,64,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:0.3rem}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:0.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:0.75rem;background-color:#e9ecef;border-radius:0.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:0.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:0.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:0.25rem}.toast:not(:last-child){margin-bottom:0.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.toast-body{padding:0.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:0.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:0.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:0.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(0.3rem - 1px);border-bottom-left-radius:calc(0.3rem - 1px)}.modal-footer>*{margin:0.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:0.9}.tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:0.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 0.4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:0.4rem;height:0.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:0.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 0.4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:0.4rem;height:0.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:0.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 0.3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:0.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:0.5rem 0.5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:0.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:0.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:0.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#fff}.popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:0.5rem 0.75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s 0.6s}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:0.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}.carousel-control-prev-icon{background-image:url('+P+")}.carousel-control-next-icon{background-image:url("+T+')}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.bg-primary{background-color:#007bff !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#0062cc !important}.bg-secondary{background-color:#6c757d !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#545b62 !important}.bg-success{background-color:#28a745 !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#1e7e34 !important}.bg-info{background-color:#17a2b8 !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#117a8b !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#bd2130 !important}.bg-light{background-color:#f8f9fa !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#dae0e5 !important}.bg-dark{background-color:#343a40 !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#1d2124 !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:1px solid #dee2e6 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-right{border-right:1px solid #dee2e6 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-left{border-left:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#007bff !important}.border-secondary{border-color:#6c757d !important}.border-success{border-color:#28a745 !important}.border-info{border-color:#17a2b8 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#343a40 !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:0.2rem !important}.rounded{border-radius:0.25rem !important}.rounded-top{border-top-left-radius:0.25rem !important;border-top-right-radius:0.25rem !important}.rounded-right{border-top-right-radius:0.25rem !important;border-bottom-right-radius:0.25rem !important}.rounded-bottom{border-bottom-right-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-left{border-top-left-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-lg{border-radius:0.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:-ms-flexbox !important;display:flex !important}.d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:-ms-flexbox !important;display:flex !important}.d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:-ms-flexbox !important;display:flex !important}.d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:-ms-flexbox !important;display:flex !important}.d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:-ms-flexbox !important;display:flex !important}.d-print-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-center{-ms-flex-align:center !important;align-items:center !important}.align-items-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-sm-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-sm-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-sm-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-sm-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-sm-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-sm-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-sm-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-sm-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-sm-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-sm-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-sm-center{-ms-flex-align:center !important;align-items:center !important}.align-items-sm-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-sm-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-md-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-md-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-md-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-md-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-md-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-md-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-md-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-md-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-md-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-md-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-md-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-md-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-md-center{-ms-flex-align:center !important;align-items:center !important}.align-items-md-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-md-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-lg-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-lg-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-lg-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-lg-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-lg-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-lg-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-lg-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-lg-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-lg-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-lg-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-lg-center{-ms-flex-align:center !important;align-items:center !important}.align-items-lg-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-lg-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-xl-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-xl-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xl-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xl-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-xl-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xl-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xl-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xl-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-xl-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xl-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xl-center{-ms-flex-align:center !important;align-items:center !important}.align-items-xl-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xl-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;user-select:all !important}.user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;-ms-user-select:auto !important;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:-webkit-sticky !important;position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: -webkit-sticky) or (position: sticky){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{box-shadow:none !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:0.25rem !important}.mt-1,.my-1{margin-top:0.25rem !important}.mr-1,.mx-1{margin-right:0.25rem !important}.mb-1,.my-1{margin-bottom:0.25rem !important}.ml-1,.mx-1{margin-left:0.25rem !important}.m-2{margin:0.5rem !important}.mt-2,.my-2{margin-top:0.5rem !important}.mr-2,.mx-2{margin-right:0.5rem !important}.mb-2,.my-2{margin-bottom:0.5rem !important}.ml-2,.mx-2{margin-left:0.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:0.25rem !important}.pt-1,.py-1{padding-top:0.25rem !important}.pr-1,.px-1{padding-right:0.25rem !important}.pb-1,.py-1{padding-bottom:0.25rem !important}.pl-1,.px-1{padding-left:0.25rem !important}.p-2{padding:0.5rem !important}.pt-2,.py-2{padding-top:0.5rem !important}.pr-2,.px-2{padding-right:0.5rem !important}.pb-2,.py-2{padding-bottom:0.5rem !important}.pl-2,.px-2{padding-left:0.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-0.25rem !important}.mt-n1,.my-n1{margin-top:-0.25rem !important}.mr-n1,.mx-n1{margin-right:-0.25rem !important}.mb-n1,.my-n1{margin-bottom:-0.25rem !important}.ml-n1,.mx-n1{margin-left:-0.25rem !important}.m-n2{margin:-0.5rem !important}.mt-n2,.my-n2{margin-top:-0.5rem !important}.mr-n2,.mx-n2{margin-right:-0.5rem !important}.mb-n2,.my-n2{margin-bottom:-0.5rem !important}.ml-n2,.mx-n2{margin-left:-0.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:0.25rem !important}.mt-sm-1,.my-sm-1{margin-top:0.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:0.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:0.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:0.25rem !important}.m-sm-2{margin:0.5rem !important}.mt-sm-2,.my-sm-2{margin-top:0.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:0.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:0.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:0.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:0.25rem !important}.pt-sm-1,.py-sm-1{padding-top:0.25rem !important}.pr-sm-1,.px-sm-1{padding-right:0.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:0.25rem !important}.pl-sm-1,.px-sm-1{padding-left:0.25rem !important}.p-sm-2{padding:0.5rem !important}.pt-sm-2,.py-sm-2{padding-top:0.5rem !important}.pr-sm-2,.px-sm-2{padding-right:0.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:0.5rem !important}.pl-sm-2,.px-sm-2{padding-left:0.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-0.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-0.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-0.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-0.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-0.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:0.25rem !important}.mt-md-1,.my-md-1{margin-top:0.25rem !important}.mr-md-1,.mx-md-1{margin-right:0.25rem !important}.mb-md-1,.my-md-1{margin-bottom:0.25rem !important}.ml-md-1,.mx-md-1{margin-left:0.25rem !important}.m-md-2{margin:0.5rem !important}.mt-md-2,.my-md-2{margin-top:0.5rem !important}.mr-md-2,.mx-md-2{margin-right:0.5rem !important}.mb-md-2,.my-md-2{margin-bottom:0.5rem !important}.ml-md-2,.mx-md-2{margin-left:0.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:0.25rem !important}.pt-md-1,.py-md-1{padding-top:0.25rem !important}.pr-md-1,.px-md-1{padding-right:0.25rem !important}.pb-md-1,.py-md-1{padding-bottom:0.25rem !important}.pl-md-1,.px-md-1{padding-left:0.25rem !important}.p-md-2{padding:0.5rem !important}.pt-md-2,.py-md-2{padding-top:0.5rem !important}.pr-md-2,.px-md-2{padding-right:0.5rem !important}.pb-md-2,.py-md-2{padding-bottom:0.5rem !important}.pl-md-2,.px-md-2{padding-left:0.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-0.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-0.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-0.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-0.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-0.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-0.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-0.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-0.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:0.25rem !important}.mt-lg-1,.my-lg-1{margin-top:0.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:0.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:0.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:0.25rem !important}.m-lg-2{margin:0.5rem !important}.mt-lg-2,.my-lg-2{margin-top:0.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:0.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:0.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:0.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:0.25rem !important}.pt-lg-1,.py-lg-1{padding-top:0.25rem !important}.pr-lg-1,.px-lg-1{padding-right:0.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:0.25rem !important}.pl-lg-1,.px-lg-1{padding-left:0.25rem !important}.p-lg-2{padding:0.5rem !important}.pt-lg-2,.py-lg-2{padding-top:0.5rem !important}.pr-lg-2,.px-lg-2{padding-right:0.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:0.5rem !important}.pl-lg-2,.px-lg-2{padding-left:0.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-0.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-0.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-0.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-0.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-0.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:0.25rem !important}.mt-xl-1,.my-xl-1{margin-top:0.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:0.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:0.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:0.25rem !important}.m-xl-2{margin:0.5rem !important}.mt-xl-2,.my-xl-2{margin-top:0.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:0.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:0.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:0.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:0.25rem !important}.pt-xl-1,.py-xl-1{padding-top:0.25rem !important}.pr-xl-1,.px-xl-1{padding-right:0.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:0.25rem !important}.pl-xl-1,.px-xl-1{padding-left:0.25rem !important}.p-xl-2{padding:0.5rem !important}.pt-xl-2,.py-xl-2{padding-top:0.5rem !important}.pr-xl-2,.px-xl-2{padding-right:0.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:0.5rem !important}.pl-xl-2,.px-xl-2{padding-left:0.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-0.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-0.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-0.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-0.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-0.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#007bff !important}a.text-primary:hover,a.text-primary:focus{color:#0056b3 !important}.text-secondary{color:#6c757d !important}a.text-secondary:hover,a.text-secondary:focus{color:#494f54 !important}.text-success{color:#28a745 !important}a.text-success:hover,a.text-success:focus{color:#19692c !important}.text-info{color:#17a2b8 !important}a.text-info:hover,a.text-info:focus{color:#0f6674 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#a71d2a !important}.text-light{color:#f8f9fa !important}a.text-light:hover,a.text-light:focus{color:#cbd3da !important}.text-dark{color:#343a40 !important}a.text-dark:hover,a.text-dark:focus{color:#121416 !important}.text-body{color:#212529 !important}.text-muted{color:#6c757d !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;word-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}\n',""]);const _=g},1821:(t,e,r)=>{"use strict";r.d(e,{Z:()=>_});var o=r(3645),n=r.n(o),i=r(1667),a=r.n(i),l=new URL(r(1387),r.b),s=new URL(r(4576),r.b),c=new URL(r(8624),r.b),d=new URL(r(9653),r.b),p=new URL(r(4231),r.b),u=new URL(r(7263),r.b),m=new URL(r(1380),r.b),f=new URL(r(9859),r.b),b=new URL(r(4104),r.b),h=new URL(r(9700),r.b),g=n()((function(t){return t[1]}));g.push([t.id,"@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap);"]);var v=a()(l),x=a()(s),y=a()(c),w=a()(d),k=a()(p),O=a()(u),j=a()(m),S=a()(f),P=a()(b),T=a()(h);g.push([t.id,'/*!\n * Bootswatch v4.6.0\n * Homepage: https://bootswatch.com\n * Copyright 2012-2021 Thomas Park\n * Licensed under MIT\n * Based on Bootstrap\n*//*!\n * Bootstrap v4.6.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */:root{--blue: #2c3e50;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #e74c3c;--orange: #fd7e14;--yellow: #f39c12;--green: #18bc9c;--teal: #20c997;--cyan: #3498db;--white: #fff;--gray: #95a5a6;--gray-dark: #343a40;--primary: #2c3e50;--secondary: #95a5a6;--success: #18bc9c;--info: #3498db;--warning: #f39c12;--danger: #e74c3c;--light: #ecf0f1;--dark: #7b8a8b;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-size:0.9375rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#18bc9c;text-decoration:none;background-color:transparent}a:hover{color:#0f7864;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#95a5a6;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:0.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role="button"]{cursor:pointer}select{word-wrap:normal}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:none}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:0.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:3rem}h2,.h2{font-size:2.5rem}h3,.h3{font-size:2rem}h4,.h4{font-size:1.40625rem}h5,.h5{font-size:1.171875rem}h6,.h6{font-size:0.9375rem}.lead{font-size:1.171875rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:0.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:0.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.171875rem}.blockquote-footer{display:block;font-size:80%;color:#95a5a6}.blockquote-footer::before{content:"\\2014\\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:0.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:0.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:0.5rem;line-height:1}.figure-caption{font-size:90%;color:#95a5a6}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-sm,.container-md,.container-lg,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container,.container-sm{max-width:540px}}@media (min-width: 768px){.container,.container-sm,.container-md{max-width:720px}}@media (min-width: 992px){.container,.container-sm,.container-md,.container-lg{max-width:960px}}@media (min-width: 1200px){.container,.container-sm,.container-md,.container-lg,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width: 576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width: 768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width: 992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width: 1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:0.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm th,.table-sm td{padding:0.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered th,.table-bordered td{border:1px solid #dee2e6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:#ecf0f1}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#c4c9ce}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#919ba4}.table-hover .table-primary:hover{background-color:#b6bcc2}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#b6bcc2}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#e1e6e6}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#c8d0d1}.table-hover .table-secondary:hover{background-color:#d3dada}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#d3dada}.table-success,.table-success>th,.table-success>td{background-color:#beece3}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#87dccc}.table-hover .table-success:hover{background-color:#aae6db}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#aae6db}.table-info,.table-info>th,.table-info>td{background-color:#c6e2f5}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#95c9ec}.table-hover .table-info:hover{background-color:#b0d7f1}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#b0d7f1}.table-warning,.table-warning>th,.table-warning>td{background-color:#fce3bd}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#f9cc84}.table-hover .table-warning:hover{background-color:#fbd9a5}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#fbd9a5}.table-danger,.table-danger>th,.table-danger>td{background-color:#f8cdc8}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#f3a29a}.table-hover .table-danger:hover{background-color:#f5b8b1}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f5b8b1}.table-light,.table-light>th,.table-light>td{background-color:#fafbfb}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#f5f7f8}.table-hover .table-light:hover{background-color:#ecf0f0}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ecf0f0}.table-dark,.table-dark>th,.table-dark>td{background-color:#dadedf}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#bac2c3}.table-hover .table-dark:hover{background-color:#ccd2d3}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#ccd2d3}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#7b8a8b;background-color:#ecf0f1;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#7b8a8b;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0.25rem;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #7b8a8b}.form-control:focus{color:#7b8a8b;background-color:#fff;border-color:#597ea2;outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.form-control::-webkit-input-placeholder{color:#95a5a6;opacity:1}.form-control::-moz-placeholder{color:#95a5a6;opacity:1}.form-control:-ms-input-placeholder{color:#95a5a6;opacity:1}.form-control::-ms-input-placeholder{color:#95a5a6;opacity:1}.form-control::placeholder{color:#95a5a6;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#ecf0f1;opacity:1}input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#7b8a8b;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.171875rem;line-height:1.5}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.825rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:0.375rem 0;margin-bottom:0;font-size:0.9375rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:0.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:0.3rem;margin-left:-1.25rem}.form-check-input[disabled] ~ .form-check-label,.form-check-input:disabled ~ .form-check-label{color:#95a5a6}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#18bc9c}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.825rem;line-height:1.5;color:#fff;background-color:rgba(24,188,156,0.9);border-radius:0.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*="col-"]>.valid-tooltip{left:5px}.was-validated :valid ~ .valid-feedback,.was-validated :valid ~ .valid-tooltip,.is-valid ~ .valid-feedback,.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#18bc9c;padding-right:calc(1.5em + 0.75rem);background-image:url('+v+");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#18bc9c;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#18bc9c;padding-right:calc(0.75em + 2.3125rem);background:url("+x+") right 0.75rem center/8px 10px no-repeat,#fff url("+v+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#18bc9c;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#18bc9c}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label{color:#18bc9c}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before{border-color:#18bc9c}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#24e3be;background-color:#24e3be}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#18bc9c}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label{border-color:#18bc9c}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#18bc9c;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.25)}.invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#e74c3c}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.825rem;line-height:1.5;color:#fff;background-color:rgba(231,76,60,0.9);border-radius:0.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*="col-"]>.invalid-tooltip{left:5px}.was-validated :invalid ~ .invalid-feedback,.was-validated :invalid ~ .invalid-tooltip,.is-invalid ~ .invalid-feedback,.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#e74c3c;padding-right:calc(1.5em + 0.75rem);background-image:url('+y+");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#e74c3c;padding-right:calc(0.75em + 2.3125rem);background:url("+x+") right 0.75rem center/8px 10px no-repeat,#fff url("+y+') center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#e74c3c}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label{color:#e74c3c}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#e74c3c}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#ed7669;background-color:#ed7669}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#e74c3c}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label{border-color:#e74c3c}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#e74c3c;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:0.375rem 0.75rem;font-size:0.9375rem;line-height:1.5;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.btn.disabled,.btn:disabled{opacity:0.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#2c3e50;border-color:#2c3e50}.btn-primary:hover{color:#fff;background-color:#1e2b37;border-color:#1a252f}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#1e2b37;border-color:#1a252f;box-shadow:0 0 0 0.2rem rgba(76,91,106,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#2c3e50;border-color:#2c3e50}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#1a252f;border-color:#151e27}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(76,91,106,0.5)}.btn-secondary{color:#fff;background-color:#95a5a6;border-color:#95a5a6}.btn-secondary:hover{color:#fff;background-color:#809395;border-color:#798d8f}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#809395;border-color:#798d8f;box-shadow:0 0 0 0.2rem rgba(165,179,179,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#95a5a6;border-color:#95a5a6}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#798d8f;border-color:#738789}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(165,179,179,0.5)}.btn-success{color:#fff;background-color:#18bc9c;border-color:#18bc9c}.btn-success:hover{color:#fff;background-color:#149a80;border-color:#128f76}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#149a80;border-color:#128f76;box-shadow:0 0 0 0.2rem rgba(59,198,171,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#18bc9c;border-color:#18bc9c}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#128f76;border-color:#11836d}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(59,198,171,0.5)}.btn-info{color:#fff;background-color:#3498db;border-color:#3498db}.btn-info:hover{color:#fff;background-color:#2384c6;border-color:#217dbb}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#2384c6;border-color:#217dbb;box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#3498db;border-color:#3498db}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#217dbb;border-color:#1f76b0}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5)}.btn-warning{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-warning:hover{color:#fff;background-color:#d4860b;border-color:#c87f0a}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#d4860b;border-color:#c87f0a;box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#c87f0a;border-color:#bc770a}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5)}.btn-danger{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-danger:hover{color:#fff;background-color:#e12e1c;border-color:#d62c1a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#e12e1c;border-color:#d62c1a;box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#d62c1a;border-color:#ca2a19}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5)}.btn-light{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}.btn-light:hover{color:#212529;background-color:#d6dfe1;border-color:#cfd9db}.btn-light:focus,.btn-light.focus{color:#212529;background-color:#d6dfe1;border-color:#cfd9db;box-shadow:0 0 0 0.2rem rgba(206,210,211,0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#cfd9db;border-color:#c7d3d6}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(206,210,211,0.5)}.btn-dark{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}.btn-dark:hover{color:#fff;background-color:#697677;border-color:#636f70}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#697677;border-color:#636f70;box-shadow:0 0 0 0.2rem rgba(143,156,156,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#636f70;border-color:#5d696a}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(143,156,156,0.5)}.btn-outline-primary{color:#2c3e50;border-color:#2c3e50}.btn-outline-primary:hover{color:#fff;background-color:#2c3e50;border-color:#2c3e50}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 0.2rem rgba(44,62,80,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#2c3e50;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#2c3e50;border-color:#2c3e50}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(44,62,80,0.5)}.btn-outline-secondary{color:#95a5a6;border-color:#95a5a6}.btn-outline-secondary:hover{color:#fff;background-color:#95a5a6;border-color:#95a5a6}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 0.2rem rgba(149,165,166,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#95a5a6;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#95a5a6;border-color:#95a5a6}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(149,165,166,0.5)}.btn-outline-success{color:#18bc9c;border-color:#18bc9c}.btn-outline-success:hover{color:#fff;background-color:#18bc9c;border-color:#18bc9c}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 0.2rem rgba(24,188,156,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#18bc9c;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#18bc9c;border-color:#18bc9c}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(24,188,156,0.5)}.btn-outline-info{color:#3498db;border-color:#3498db}.btn-outline-info:hover{color:#fff;background-color:#3498db;border-color:#3498db}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#3498db;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#3498db;border-color:#3498db}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}.btn-outline-warning{color:#f39c12;border-color:#f39c12}.btn-outline-warning:hover{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#f39c12;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}.btn-outline-danger{color:#e74c3c;border-color:#e74c3c}.btn-outline-danger:hover{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#e74c3c;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}.btn-outline-light{color:#ecf0f1;border-color:#ecf0f1}.btn-outline-light:hover{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 0.2rem rgba(236,240,241,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#ecf0f1;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#ecf0f1;border-color:#ecf0f1}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(236,240,241,0.5)}.btn-outline-dark{color:#7b8a8b;border-color:#7b8a8b}.btn-outline-dark:hover{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 0.2rem rgba(123,138,139,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#7b8a8b;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#7b8a8b;border-color:#7b8a8b}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 0.2rem rgba(123,138,139,0.5)}.btn-link{font-weight:400;color:#18bc9c;text-decoration:none}.btn-link:hover{color:#0f7864;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline}.btn-link:disabled,.btn-link.disabled{color:#95a5a6;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}.btn-sm,.btn-group-sm>.btn{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:0.5rem 0;margin:0.125rem 0 0;font-size:0.9375rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:0.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:0.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:0.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #ecf0f1}.dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#7b8a8b;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#fff;text-decoration:none;background-color:#2c3e50}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#2c3e50}.dropdown-item.disabled,.dropdown-item:disabled{color:#b4bcc2;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.825rem;color:#95a5a6;white-space:nowrap}.dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#7b8a8b}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.form-control:not(:last-child),.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-prepend,.input-group-append{display:-ms-flexbox;display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#7b8a8b;text-align:center;white-space:nowrap;background-color:#ecf0f1;border:1px solid #ced4da;border-radius:0.25rem}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5;border-radius:0.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.40625rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.203125rem;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#2c3e50;background-color:#2c3e50}.custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#597ea2}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#7997b5;border-color:#7997b5}.custom-control-input[disabled] ~ .custom-control-label,.custom-control-input:disabled ~ .custom-control-label{color:#95a5a6}.custom-control-input[disabled] ~ .custom-control-label::before,.custom-control-input:disabled ~ .custom-control-label::before{background-color:#ecf0f1}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:0.203125rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#b4bcc2 solid 1px}.custom-control-label::after{position:absolute;top:0.203125rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50% / 50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:0.25rem}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url('+w+")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#2c3e50;background-color:#2c3e50}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("+k+")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("+O+")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}.custom-switch .custom-control-label::after{top:calc(0.203125rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#b4bcc2;border-radius:0.5rem;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;-webkit-transform:translateX(0.75rem);transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(44,62,80,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#7b8a8b;vertical-align:middle;background:#fff url("+x+') right 0.75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#597ea2;outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-select:focus::-ms-value{color:#7b8a8b;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}.custom-select:disabled{color:#95a5a6;background-color:#ecf0f1}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #7b8a8b}.custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.825rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.171875rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#597ea2;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-file-input[disabled] ~ .custom-file-label,.custom-file-input:disabled ~ .custom-file-label{background-color:#ecf0f1}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#7b8a8b;background-color:#fff;border:1px solid #ced4da;border-radius:0.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#7b8a8b;content:"Browse";background-color:#ecf0f1;border-left:inherit;border-radius:0 0.25rem 0.25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(44,62,80,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#2c3e50;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#7997b5}.custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#2c3e50;border:0;border-radius:1rem;-moz-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#7997b5}.custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#2c3e50;border:0;border-radius:1rem;-ms-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#7997b5}.custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#b4bcc2}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#b4bcc2}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#b4bcc2}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:0.5rem 2rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#95a5a6;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #ecf0f1}.nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#ecf0f1 #ecf0f1 #ecf0f1}.nav-tabs .nav-link.disabled{color:#95a5a6;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#7b8a8b;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:0.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#2c3e50}.nav-fill>.nav-link,.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:0.324219rem;padding-bottom:0.324219rem;margin-right:1rem;font-size:1.171875rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:0.25rem 0.75rem;font-size:1.171875rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50% / 100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url('+j+")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:#fff}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:#18bc9c}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:#fff;border-color:rgba(255,255,255,0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("+S+')}.navbar-dark .navbar-text{color:#fff}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:0.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:0.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-footer{padding:0.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(0.25rem - 1px)}.card-img,.card-img-top,.card-img-bottom{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:0.75rem}@media (min-width: 576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#ecf0f1;border-radius:0.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:0.5rem;color:#95a5a6;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#95a5a6}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0.25rem}.page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:0;line-height:1.25;color:#fff;background-color:#18bc9c;border:0 solid transparent}.page-link:hover{z-index:2;color:#fff;text-decoration:none;background-color:#0f7864;border-color:transparent}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}.page-item:last-child .page-link{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0f7864;border-color:transparent}.page-item.disabled .page-link{color:#ecf0f1;pointer-events:none;cursor:auto;background-color:#3be6c4;border-color:transparent}.pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.171875rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0.3rem;border-bottom-left-radius:0.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0.3rem;border-bottom-right-radius:0.3rem}.pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.825rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0.2rem;border-bottom-left-radius:0.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0.2rem;border-bottom-right-radius:0.2rem}.badge{display:inline-block;padding:0.25em 0.4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#2c3e50}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#1a252f}a.badge-primary:focus,a.badge-primary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(44,62,80,0.5)}.badge-secondary{color:#fff;background-color:#95a5a6}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#798d8f}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(149,165,166,0.5)}.badge-success{color:#fff;background-color:#18bc9c}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#128f76}a.badge-success:focus,a.badge-success.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(24,188,156,0.5)}.badge-info{color:#fff;background-color:#3498db}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#217dbb}a.badge-info:focus,a.badge-info.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}.badge-warning{color:#fff;background-color:#f39c12}a.badge-warning:hover,a.badge-warning:focus{color:#fff;background-color:#c87f0a}a.badge-warning:focus,a.badge-warning.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}.badge-danger{color:#fff;background-color:#e74c3c}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#d62c1a}a.badge-danger:focus,a.badge-danger.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}.badge-light{color:#212529;background-color:#ecf0f1}a.badge-light:hover,a.badge-light:focus{color:#212529;background-color:#cfd9db}a.badge-light:focus,a.badge-light.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(236,240,241,0.5)}.badge-dark{color:#fff;background-color:#7b8a8b}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#636f70}a.badge-dark:focus,a.badge-dark.focus{outline:0;box-shadow:0 0 0 0.2rem rgba(123,138,139,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#ecf0f1;border-radius:0.3rem}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3.90625rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:0.75rem 1.25rem;color:inherit}.alert-primary{color:#17202a;background-color:#d5d8dc;border-color:#c4c9ce}.alert-primary hr{border-top-color:#b6bcc2}.alert-primary .alert-link{color:#050709}.alert-secondary{color:#4d5656;background-color:#eaeded;border-color:#e1e6e6}.alert-secondary hr{border-top-color:#d3dada}.alert-secondary .alert-link{color:#353b3b}.alert-success{color:#0c6251;background-color:#d1f2eb;border-color:#beece3}.alert-success hr{border-top-color:#aae6db}.alert-success .alert-link{color:#06352b}.alert-info{color:#1b4f72;background-color:#d6eaf8;border-color:#c6e2f5}.alert-info hr{border-top-color:#b0d7f1}.alert-info .alert-link{color:#113249}.alert-warning{color:#7e5109;background-color:#fdebd0;border-color:#fce3bd}.alert-warning hr{border-top-color:#fbd9a5}.alert-warning .alert-link{color:#4e3206}.alert-danger{color:#78281f;background-color:#fadbd8;border-color:#f8cdc8}.alert-danger hr{border-top-color:#f5b8b1}.alert-danger .alert-link{color:#4f1a15}.alert-light{color:#7b7d7d;background-color:#fbfcfc;border-color:#fafbfb}.alert-light hr{border-top-color:#ecf0f0}.alert-light .alert-link{color:#626363}.alert-dark{color:#404848;background-color:#e5e8e8;border-color:#dadedf}.alert-dark hr{border-top-color:#ccd2d3}.alert-dark .alert-link{color:#282d2d}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:0.703125rem;background-color:#ecf0f1;border-radius:0.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#2c3e50;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion: reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:0.25rem}.list-group-item-action{width:100%;color:#7b8a8b;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#7b8a8b;text-decoration:none;background-color:#ecf0f1}.list-group-item-action:active{color:#212529;background-color:#ecf0f1}.list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#95a5a6;pointer-events:none;background-color:#ecf0f1}.list-group-item.active{z-index:2;color:#fff;background-color:#2c3e50;border-color:#2c3e50}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#17202a;background-color:#c4c9ce}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#17202a;background-color:#b6bcc2}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#17202a;border-color:#17202a}.list-group-item-secondary{color:#4d5656;background-color:#e1e6e6}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#4d5656;background-color:#d3dada}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#4d5656;border-color:#4d5656}.list-group-item-success{color:#0c6251;background-color:#beece3}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#0c6251;background-color:#aae6db}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0c6251;border-color:#0c6251}.list-group-item-info{color:#1b4f72;background-color:#c6e2f5}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#1b4f72;background-color:#b0d7f1}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#1b4f72;border-color:#1b4f72}.list-group-item-warning{color:#7e5109;background-color:#fce3bd}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#7e5109;background-color:#fbd9a5}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#7e5109;border-color:#7e5109}.list-group-item-danger{color:#78281f;background-color:#f8cdc8}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#78281f;background-color:#f5b8b1}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#78281f;border-color:#78281f}.list-group-item-light{color:#7b7d7d;background-color:#fafbfb}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#7b7d7d;background-color:#ecf0f0}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#7b7d7d;border-color:#7b7d7d}.list-group-item-dark{color:#404848;background-color:#dadedf}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#404848;background-color:#ccd2d3}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#404848;border-color:#404848}.close{float:right;font-size:1.40625rem;font-weight:700;line-height:1;color:#fff;text-shadow:none;opacity:.5}.close:hover{color:#fff;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:0.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:0.25rem}.toast:not(:last-child){margin-bottom:0.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#95a5a6;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.toast-body{padding:0.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:0.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:0.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:0.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(0.3rem - 1px);border-bottom-left-radius:calc(0.3rem - 1px)}.modal-footer>*{margin:0.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.825rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:0.9}.tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:0.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 0.4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:0.4rem;height:0.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:0.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 0.4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:0.4rem;height:0.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:0.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.825rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 0.3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:0.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:0.5rem 0.5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:0.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:0.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:0.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#fff}.popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:0.9375rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:0.5rem 0.75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s 0.6s}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:0.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50% / 100% 100% no-repeat}.carousel-control-prev-icon{background-image:url('+P+")}.carousel-control-next-icon{background-image:url("+T+')}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.bg-primary{background-color:#2c3e50 !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#1a252f !important}.bg-secondary{background-color:#95a5a6 !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#798d8f !important}.bg-success{background-color:#18bc9c !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#128f76 !important}.bg-info{background-color:#3498db !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#217dbb !important}.bg-warning{background-color:#f39c12 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#c87f0a !important}.bg-danger{background-color:#e74c3c !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#d62c1a !important}.bg-light{background-color:#ecf0f1 !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#cfd9db !important}.bg-dark{background-color:#7b8a8b !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#636f70 !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:1px solid #dee2e6 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-right{border-right:1px solid #dee2e6 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-left{border-left:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#2c3e50 !important}.border-secondary{border-color:#95a5a6 !important}.border-success{border-color:#18bc9c !important}.border-info{border-color:#3498db !important}.border-warning{border-color:#f39c12 !important}.border-danger{border-color:#e74c3c !important}.border-light{border-color:#ecf0f1 !important}.border-dark{border-color:#7b8a8b !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:0.2rem !important}.rounded{border-radius:0.25rem !important}.rounded-top{border-top-left-radius:0.25rem !important;border-top-right-radius:0.25rem !important}.rounded-right{border-top-right-radius:0.25rem !important;border-bottom-right-radius:0.25rem !important}.rounded-bottom{border-bottom-right-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-left{border-top-left-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-lg{border-radius:0.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:-ms-flexbox !important;display:flex !important}.d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:-ms-flexbox !important;display:flex !important}.d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:-ms-flexbox !important;display:flex !important}.d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:-ms-flexbox !important;display:flex !important}.d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:-ms-flexbox !important;display:flex !important}.d-print-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-center{-ms-flex-align:center !important;align-items:center !important}.align-items-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-sm-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-sm-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-sm-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-sm-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-sm-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-sm-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-sm-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-sm-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-sm-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-sm-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-sm-center{-ms-flex-align:center !important;align-items:center !important}.align-items-sm-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-sm-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-md-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-md-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-md-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-md-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-md-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-md-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-md-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-md-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-md-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-md-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-md-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-md-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-md-center{-ms-flex-align:center !important;align-items:center !important}.align-items-md-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-md-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-lg-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-lg-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-lg-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-lg-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-lg-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-lg-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-lg-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-lg-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-lg-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-lg-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-lg-center{-ms-flex-align:center !important;align-items:center !important}.align-items-lg-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-lg-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{-ms-flex-direction:row !important;flex-direction:row !important}.flex-xl-column{-ms-flex-direction:column !important;flex-direction:column !important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-xl-fill{-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xl-grow-0{-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xl-grow-1{-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-xl-start{-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xl-end{-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xl-center{-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xl-between{-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-xl-start{-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xl-end{-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xl-center{-ms-flex-align:center !important;align-items:center !important}.align-items-xl-baseline{-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xl-stretch{-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;user-select:all !important}.user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;-ms-user-select:auto !important;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:-webkit-sticky !important;position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: -webkit-sticky) or (position: sticky){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{box-shadow:none !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:0.25rem !important}.mt-1,.my-1{margin-top:0.25rem !important}.mr-1,.mx-1{margin-right:0.25rem !important}.mb-1,.my-1{margin-bottom:0.25rem !important}.ml-1,.mx-1{margin-left:0.25rem !important}.m-2{margin:0.5rem !important}.mt-2,.my-2{margin-top:0.5rem !important}.mr-2,.mx-2{margin-right:0.5rem !important}.mb-2,.my-2{margin-bottom:0.5rem !important}.ml-2,.mx-2{margin-left:0.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:0.25rem !important}.pt-1,.py-1{padding-top:0.25rem !important}.pr-1,.px-1{padding-right:0.25rem !important}.pb-1,.py-1{padding-bottom:0.25rem !important}.pl-1,.px-1{padding-left:0.25rem !important}.p-2{padding:0.5rem !important}.pt-2,.py-2{padding-top:0.5rem !important}.pr-2,.px-2{padding-right:0.5rem !important}.pb-2,.py-2{padding-bottom:0.5rem !important}.pl-2,.px-2{padding-left:0.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-0.25rem !important}.mt-n1,.my-n1{margin-top:-0.25rem !important}.mr-n1,.mx-n1{margin-right:-0.25rem !important}.mb-n1,.my-n1{margin-bottom:-0.25rem !important}.ml-n1,.mx-n1{margin-left:-0.25rem !important}.m-n2{margin:-0.5rem !important}.mt-n2,.my-n2{margin-top:-0.5rem !important}.mr-n2,.mx-n2{margin-right:-0.5rem !important}.mb-n2,.my-n2{margin-bottom:-0.5rem !important}.ml-n2,.mx-n2{margin-left:-0.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:0.25rem !important}.mt-sm-1,.my-sm-1{margin-top:0.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:0.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:0.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:0.25rem !important}.m-sm-2{margin:0.5rem !important}.mt-sm-2,.my-sm-2{margin-top:0.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:0.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:0.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:0.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:0.25rem !important}.pt-sm-1,.py-sm-1{padding-top:0.25rem !important}.pr-sm-1,.px-sm-1{padding-right:0.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:0.25rem !important}.pl-sm-1,.px-sm-1{padding-left:0.25rem !important}.p-sm-2{padding:0.5rem !important}.pt-sm-2,.py-sm-2{padding-top:0.5rem !important}.pr-sm-2,.px-sm-2{padding-right:0.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:0.5rem !important}.pl-sm-2,.px-sm-2{padding-left:0.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-0.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-0.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-0.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-0.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-0.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:0.25rem !important}.mt-md-1,.my-md-1{margin-top:0.25rem !important}.mr-md-1,.mx-md-1{margin-right:0.25rem !important}.mb-md-1,.my-md-1{margin-bottom:0.25rem !important}.ml-md-1,.mx-md-1{margin-left:0.25rem !important}.m-md-2{margin:0.5rem !important}.mt-md-2,.my-md-2{margin-top:0.5rem !important}.mr-md-2,.mx-md-2{margin-right:0.5rem !important}.mb-md-2,.my-md-2{margin-bottom:0.5rem !important}.ml-md-2,.mx-md-2{margin-left:0.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:0.25rem !important}.pt-md-1,.py-md-1{padding-top:0.25rem !important}.pr-md-1,.px-md-1{padding-right:0.25rem !important}.pb-md-1,.py-md-1{padding-bottom:0.25rem !important}.pl-md-1,.px-md-1{padding-left:0.25rem !important}.p-md-2{padding:0.5rem !important}.pt-md-2,.py-md-2{padding-top:0.5rem !important}.pr-md-2,.px-md-2{padding-right:0.5rem !important}.pb-md-2,.py-md-2{padding-bottom:0.5rem !important}.pl-md-2,.px-md-2{padding-left:0.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-0.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-0.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-0.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-0.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-0.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-0.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-0.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-0.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:0.25rem !important}.mt-lg-1,.my-lg-1{margin-top:0.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:0.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:0.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:0.25rem !important}.m-lg-2{margin:0.5rem !important}.mt-lg-2,.my-lg-2{margin-top:0.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:0.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:0.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:0.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:0.25rem !important}.pt-lg-1,.py-lg-1{padding-top:0.25rem !important}.pr-lg-1,.px-lg-1{padding-right:0.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:0.25rem !important}.pl-lg-1,.px-lg-1{padding-left:0.25rem !important}.p-lg-2{padding:0.5rem !important}.pt-lg-2,.py-lg-2{padding-top:0.5rem !important}.pr-lg-2,.px-lg-2{padding-right:0.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:0.5rem !important}.pl-lg-2,.px-lg-2{padding-left:0.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-0.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-0.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-0.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-0.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-0.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:0.25rem !important}.mt-xl-1,.my-xl-1{margin-top:0.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:0.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:0.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:0.25rem !important}.m-xl-2{margin:0.5rem !important}.mt-xl-2,.my-xl-2{margin-top:0.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:0.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:0.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:0.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:0.25rem !important}.pt-xl-1,.py-xl-1{padding-top:0.25rem !important}.pr-xl-1,.px-xl-1{padding-right:0.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:0.25rem !important}.pl-xl-1,.px-xl-1{padding-left:0.25rem !important}.p-xl-2{padding:0.5rem !important}.pt-xl-2,.py-xl-2{padding-top:0.5rem !important}.pr-xl-2,.px-xl-2{padding-right:0.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:0.5rem !important}.pl-xl-2,.px-xl-2{padding-left:0.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-0.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-0.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-0.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-0.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-0.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#2c3e50 !important}a.text-primary:hover,a.text-primary:focus{color:#11181f !important}.text-secondary{color:#95a5a6 !important}a.text-secondary:hover,a.text-secondary:focus{color:#6d8082 !important}.text-success{color:#18bc9c !important}a.text-success:hover,a.text-success:focus{color:#0f7864 !important}.text-info{color:#3498db !important}a.text-info:hover,a.text-info:focus{color:#1d6fa5 !important}.text-warning{color:#f39c12 !important}a.text-warning:hover,a.text-warning:focus{color:#b06f09 !important}.text-danger{color:#e74c3c !important}a.text-danger:hover,a.text-danger:focus{color:#bf2718 !important}.text-light{color:#ecf0f1 !important}a.text-light:hover,a.text-light:focus{color:#c0cdd1 !important}.text-dark{color:#7b8a8b !important}a.text-dark:hover,a.text-dark:focus{color:#576263 !important}.text-body{color:#212529 !important}.text-muted{color:#95a5a6 !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;word-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #b4bcc2;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}.bg-primary .navbar-nav .active>.nav-link{color:#18bc9c !important}.bg-dark.navbar-dark .navbar-nav .nav-link:focus,.bg-dark.navbar-dark .navbar-nav .nav-link:hover,.bg-dark.navbar-dark .navbar-nav .active>.nav-link{color:#2c3e50 !important}.btn-secondary,.btn-secondary:hover,.btn-warning,.btn-warning:hover{color:#fff}.table-primary,.table-secondary,.table-success,.table-info,.table-warning,.table-danger{color:#fff}.table-primary,.table-primary>th,.table-primary>td{background-color:#2c3e50}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#95a5a6}.table-light,.table-light>th,.table-light>td{background-color:#ecf0f1}.table-dark,.table-dark>th,.table-dark>td{background-color:#7b8a8b}.table-success,.table-success>th,.table-success>td{background-color:#18bc9c}.table-info,.table-info>th,.table-info>td{background-color:#3498db}.table-danger,.table-danger>th,.table-danger>td{background-color:#e74c3c}.table-warning,.table-warning>th,.table-warning>td{background-color:#f39c12}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-primary:hover,.table-hover .table-primary:hover>th,.table-hover .table-primary:hover>td{background-color:#233140}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>th,.table-hover .table-secondary:hover>td{background-color:#87999a}.table-hover .table-light:hover,.table-hover .table-light:hover>th,.table-hover .table-light:hover>td{background-color:#dde4e6}.table-hover .table-dark:hover,.table-hover .table-dark:hover>th,.table-hover .table-dark:hover>td{background-color:#6f7d7e}.table-hover .table-success:hover,.table-hover .table-success:hover>th,.table-hover .table-success:hover>td{background-color:#15a589}.table-hover .table-info:hover,.table-hover .table-info:hover>th,.table-hover .table-info:hover>td{background-color:#258cd1}.table-hover .table-danger:hover,.table-hover .table-danger:hover>th,.table-hover .table-danger:hover>td{background-color:#e43725}.table-hover .table-warning:hover,.table-hover .table-warning:hover>th,.table-hover .table-warning:hover>td{background-color:#e08e0b}.table-hover .table-active:hover,.table-hover .table-active:hover>th,.table-hover .table-active:hover>td{background-color:rgba(0,0,0,0.075)}.nav-tabs .nav-link.active,.nav-tabs .nav-link.active:focus,.nav-tabs .nav-link.active:hover,.nav-tabs .nav-item.open .nav-link,.nav-tabs .nav-item.open .nav-link:focus,.nav-tabs .nav-item.open .nav-link:hover{color:#2c3e50}.pagination a:hover{text-decoration:none}.close{text-decoration:none;opacity:.4}.close:hover,.close:focus{opacity:1}.badge-secondary,.badge-warning{color:#fff}.alert{border:none;color:#fff}.alert a,.alert .alert-link{color:#fff;text-decoration:underline}.alert-primary{background-color:#2c3e50}.alert-secondary{background-color:#95a5a6}.alert-success{background-color:#18bc9c}.alert-info{background-color:#3498db}.alert-warning{background-color:#f39c12}.alert-danger{background-color:#e74c3c}.alert-light{background-color:#ecf0f1}.alert-dark{background-color:#7b8a8b}.alert-light,.alert-light a,.alert-light .alert-link{color:#212529}.modal .close,.toast .close{color:#000}.modal .close:not(:disabled):not(.disabled):hover,.modal .close:not(:disabled):not(.disabled):focus,.toast .close:not(:disabled):not(.disabled):hover,.toast .close:not(:disabled):not(.disabled):focus{color:#000}\n',""]);const _=g},4503:(t,e,r)=>{"use strict";r.d(e,{Z:()=>i});var o=r(3645),n=r.n(o)()((function(t){return t[1]}));n.push([t.id,"textarea{font-family:monospace}.footer{color:#2f2f2f;font-size:0.9em;text-align:center}\n",""]);const i=n},3645:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var r=t(e);return e[2]?"@media ".concat(e[2]," {").concat(r,"}"):r})).join("")},e.i=function(t,r,o){"string"==typeof t&&(t=[[null,t,""]]);var n={};if(o)for(var i=0;i<this.length;i++){var a=this[i][0];null!=a&&(n[a]=!0)}for(var l=0;l<t.length;l++){var s=[].concat(t[l]);o&&n[s[0]]||(r&&(s[2]?s[2]="".concat(r," and ").concat(s[2]):s[2]=r),e.push(s))}},e}},1667:t=>{"use strict";t.exports=function(t,e){return e||(e={}),t?(t=String(t.__esModule?t.default:t),/^['"].*['"]$/.test(t)&&(t=t.slice(1,-1)),e.hash&&(t+=e.hash),/["'() \t\n]|(%20)/.test(t)||e.needQuotes?'"'.concat(t.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):t):t}},5281:function(t){t.exports=function(){"use strict";var t,e,r,o,n=14,i=8,a=!1,l=function(t){var e,r,o=[];for(t.length<16&&(o=[e=16-t.length,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e]),r=0;r<t.length;r++)o[r]=t[r];return o},s=function(t,e){var r,o,n="";if(e){if((r=t[15])>16)throw"Decryption error: Maybe bad key";if(16===r)return"";for(o=0;o<16-r;o++)n+=String.fromCharCode(t[o])}else for(o=0;o<16;o++)n+=String.fromCharCode(t[o]);return n},c=function(t,e){var r,o=[];for(e||(t=function(t){try{return unescape(encodeURIComponent(t))}catch(t){throw"Error on UTF-8 encode"}}(t)),r=0;r<t.length;r++)o[r]=t.charCodeAt(r);return o},d=function(t,e){var r,o=n>=12?3:2,a=[],l=[],s=t.concat(e);for(a[0]=A(s),l=a[0],r=1;r<o;r++)a[r]=A(a[r-1].concat(s)),l=l.concat(a[r]);return{key:l.slice(0,4*i),iv:l.slice(4*i,4*i+16)}},p=function(t,e,r){e=y(e);var o,n=Math.ceil(t.length/16),i=[],a=[];for(o=0;o<n;o++)i[o]=l(t.slice(16*o,16*o+16));for(t.length%16==0&&(i.push([16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16]),n++),o=0;o<i.length;o++)i[o]=x(i[o],0===o?r:a[o-1]),a[o]=m(i[o],e);return a},u=function(t,e,r,o){e=y(e);var n,i=t.length/16,a=[],l=[],c="";for(n=0;n<i;n++)a.push(t.slice(16*n,16*(n+1)));for(n=a.length-1;n>=0;n--)l[n]=f(a[n],e),l[n]=x(l[n],0===n?r:a[n-1]);for(n=0;n<i-1;n++)c+=s(l[n],!1);return c+=s(l[n],!0),o?c:function(t){try{return decodeURIComponent(escape(t))}catch(t){throw"Bad Key"}}(c)},m=function(t,e){a=!1;var r,o=v(t,e,0);for(r=1;r<n+1;r++)o=b(o),o=h(o),r<n&&(o=g(o)),o=v(o,e,r);return o},f=function(t,e){a=!0;var r,o=v(t,e,n);for(r=n-1;r>-1;r--)o=h(o),o=b(o),o=v(o,e,r),r>0&&(o=g(o));return o},b=function(t){var e,r=a?T:P,o=[];for(e=0;e<16;e++)o[e]=r[t[e]];return o},h=function(t){var e,r=[],o=a?[0,13,10,7,4,1,14,11,8,5,2,15,12,9,6,3]:[0,5,10,15,4,9,14,3,8,13,2,7,12,1,6,11];for(e=0;e<16;e++)r[e]=t[o[e]];return r},g=function(t){var e,r=[];if(a)for(e=0;e<4;e++)r[4*e]=B[t[4*e]]^E[t[1+4*e]]^z[t[2+4*e]]^D[t[3+4*e]],r[1+4*e]=D[t[4*e]]^B[t[1+4*e]]^E[t[2+4*e]]^z[t[3+4*e]],r[2+4*e]=z[t[4*e]]^D[t[1+4*e]]^B[t[2+4*e]]^E[t[3+4*e]],r[3+4*e]=E[t[4*e]]^z[t[1+4*e]]^D[t[2+4*e]]^B[t[3+4*e]];else for(e=0;e<4;e++)r[4*e]=C[t[4*e]]^$[t[1+4*e]]^t[2+4*e]^t[3+4*e],r[1+4*e]=t[4*e]^C[t[1+4*e]]^$[t[2+4*e]]^t[3+4*e],r[2+4*e]=t[4*e]^t[1+4*e]^C[t[2+4*e]]^$[t[3+4*e]],r[3+4*e]=$[t[4*e]]^t[1+4*e]^t[2+4*e]^C[t[3+4*e]];return r},v=function(t,e,r){var o,n=[];for(o=0;o<16;o++)n[o]=t[o]^e[r][o];return n},x=function(t,e){var r,o=[];for(r=0;r<16;r++)o[r]=t[r]^e[r];return o},y=function(t){var e,r,o,a,l=[],s=[],c=[];for(e=0;e<i;e++)r=[t[4*e],t[4*e+1],t[4*e+2],t[4*e+3]],l[e]=r;for(e=i;e<4*(n+1);e++){for(l[e]=[],o=0;o<4;o++)s[o]=l[e-1][o];for(e%i==0?(s=w(k(s)))[0]^=_[e/i-1]:i>6&&e%i==4&&(s=w(s)),o=0;o<4;o++)l[e][o]=l[e-i][o]^s[o]}for(e=0;e<n+1;e++)for(c[e]=[],a=0;a<4;a++)c[e].push(l[4*e+a][0],l[4*e+a][1],l[4*e+a][2],l[4*e+a][3]);return c},w=function(t){for(var e=0;e<4;e++)t[e]=P[t[e]];return t},k=function(t){var e,r=t[0];for(e=0;e<3;e++)t[e]=t[e+1];return t[3]=r,t},O=function(t,e){var r,o=[];for(r=0;r<t.length;r+=e)o[r/e]=parseInt(t.substr(r,e),16);return o},j=function(t,e){var r,o;for(o=0,r=0;r<8;r++)o=1==(1&e)?o^t:o,t=t>127?283^t<<1:t<<1,e>>>=1;return o},S=function(t){var e,r=[];for(e=0;e<256;e++)r[e]=j(t,e);return r},P=O("637c777bf26b6fc53001672bfed7ab76ca82c97dfa5947f0add4a2af9ca472c0b7fd9326363ff7cc34a5e5f171d8311504c723c31896059a071280e2eb27b27509832c1a1b6e5aa0523bd6b329e32f8453d100ed20fcb15b6acbbe394a4c58cfd0efaafb434d338545f9027f503c9fa851a3408f929d38f5bcb6da2110fff3d2cd0c13ec5f974417c4a77e3d645d197360814fdc222a908846eeb814de5e0bdbe0323a0a4906245cc2d3ac629195e479e7c8376d8dd54ea96c56f4ea657aae08ba78252e1ca6b4c6e8dd741f4bbd8b8a703eb5664803f60e613557b986c11d9ee1f8981169d98e949b1e87e9ce5528df8ca1890dbfe6426841992d0fb054bb16",2),T=function(t){var e,r=[];for(e=0;e<t.length;e++)r[t[e]]=e;return r}(P),_=O("01020408102040801b366cd8ab4d9a2f5ebc63c697356ad4b37dfaefc591",2),C=S(2),$=S(3),D=S(9),E=S(11),z=S(13),B=S(14),A=function(t){function e(t,e){return t<<e|t>>>32-e}function r(t,e){var r,o,n,i,a;return n=2147483648&t,i=2147483648&e,a=(1073741823&t)+(1073741823&e),(r=1073741824&t)&(o=1073741824&e)?2147483648^a^n^i:r|o?1073741824&a?3221225472^a^n^i:1073741824^a^n^i:a^n^i}function o(t,o,n,i,a,l,s){return t=r(t,r(r(function(t,e,r){return t&e|~t&r}(o,n,i),a),s)),r(e(t,l),o)}function n(t,o,n,i,a,l,s){return t=r(t,r(r(function(t,e,r){return t&r|e&~r}(o,n,i),a),s)),r(e(t,l),o)}function i(t,o,n,i,a,l,s){return t=r(t,r(r(function(t,e,r){return t^e^r}(o,n,i),a),s)),r(e(t,l),o)}function a(t,o,n,i,a,l,s){return t=r(t,r(r(function(t,e,r){return e^(t|~r)}(o,n,i),a),s)),r(e(t,l),o)}function l(t){var e,r,o=[];for(r=0;r<=3;r++)e=t>>>8*r&255,o=o.concat(e);return o}var s,c,d,p,u,m,f,b,h,g,v=O("67452301efcdab8998badcfe10325476d76aa478e8c7b756242070dbc1bdceeef57c0faf4787c62aa8304613fd469501698098d88b44f7afffff5bb1895cd7be6b901122fd987193a679438e49b40821f61e2562c040b340265e5a51e9b6c7aad62f105d02441453d8a1e681e7d3fbc821e1cde6c33707d6f4d50d87455a14eda9e3e905fcefa3f8676f02d98d2a4c8afffa39428771f6816d9d6122fde5380ca4beea444bdecfa9f6bb4b60bebfbc70289b7ec6eaa127fad4ef308504881d05d9d4d039e6db99e51fa27cf8c4ac5665f4292244432aff97ab9423a7fc93a039655b59c38f0ccc92ffeff47d85845dd16fa87e4ffe2ce6e0a30143144e0811a1f7537e82bd3af2352ad7d2bbeb86d391",8);for(g=function(t){for(var e,r=t.length,o=r+8,n=16*((o-o%64)/64+1),i=[],a=0,l=0;l<r;)a=l%4*8,i[e=(l-l%4)/4]=i[e]|t[l]<<a,l++;return a=l%4*8,i[e=(l-l%4)/4]=i[e]|128<<a,i[n-2]=r<<3,i[n-1]=r>>>29,i}(t),m=v[0],f=v[1],b=v[2],h=v[3],s=0;s<g.length;s+=16)c=m,d=f,p=b,u=h,m=o(m,f,b,h,g[s+0],7,v[4]),h=o(h,m,f,b,g[s+1],12,v[5]),b=o(b,h,m,f,g[s+2],17,v[6]),f=o(f,b,h,m,g[s+3],22,v[7]),m=o(m,f,b,h,g[s+4],7,v[8]),h=o(h,m,f,b,g[s+5],12,v[9]),b=o(b,h,m,f,g[s+6],17,v[10]),f=o(f,b,h,m,g[s+7],22,v[11]),m=o(m,f,b,h,g[s+8],7,v[12]),h=o(h,m,f,b,g[s+9],12,v[13]),b=o(b,h,m,f,g[s+10],17,v[14]),f=o(f,b,h,m,g[s+11],22,v[15]),m=o(m,f,b,h,g[s+12],7,v[16]),h=o(h,m,f,b,g[s+13],12,v[17]),b=o(b,h,m,f,g[s+14],17,v[18]),m=n(m,f=o(f,b,h,m,g[s+15],22,v[19]),b,h,g[s+1],5,v[20]),h=n(h,m,f,b,g[s+6],9,v[21]),b=n(b,h,m,f,g[s+11],14,v[22]),f=n(f,b,h,m,g[s+0],20,v[23]),m=n(m,f,b,h,g[s+5],5,v[24]),h=n(h,m,f,b,g[s+10],9,v[25]),b=n(b,h,m,f,g[s+15],14,v[26]),f=n(f,b,h,m,g[s+4],20,v[27]),m=n(m,f,b,h,g[s+9],5,v[28]),h=n(h,m,f,b,g[s+14],9,v[29]),b=n(b,h,m,f,g[s+3],14,v[30]),f=n(f,b,h,m,g[s+8],20,v[31]),m=n(m,f,b,h,g[s+13],5,v[32]),h=n(h,m,f,b,g[s+2],9,v[33]),b=n(b,h,m,f,g[s+7],14,v[34]),m=i(m,f=n(f,b,h,m,g[s+12],20,v[35]),b,h,g[s+5],4,v[36]),h=i(h,m,f,b,g[s+8],11,v[37]),b=i(b,h,m,f,g[s+11],16,v[38]),f=i(f,b,h,m,g[s+14],23,v[39]),m=i(m,f,b,h,g[s+1],4,v[40]),h=i(h,m,f,b,g[s+4],11,v[41]),b=i(b,h,m,f,g[s+7],16,v[42]),f=i(f,b,h,m,g[s+10],23,v[43]),m=i(m,f,b,h,g[s+13],4,v[44]),h=i(h,m,f,b,g[s+0],11,v[45]),b=i(b,h,m,f,g[s+3],16,v[46]),f=i(f,b,h,m,g[s+6],23,v[47]),m=i(m,f,b,h,g[s+9],4,v[48]),h=i(h,m,f,b,g[s+12],11,v[49]),b=i(b,h,m,f,g[s+15],16,v[50]),m=a(m,f=i(f,b,h,m,g[s+2],23,v[51]),b,h,g[s+0],6,v[52]),h=a(h,m,f,b,g[s+7],10,v[53]),b=a(b,h,m,f,g[s+14],15,v[54]),f=a(f,b,h,m,g[s+5],21,v[55]),m=a(m,f,b,h,g[s+12],6,v[56]),h=a(h,m,f,b,g[s+3],10,v[57]),b=a(b,h,m,f,g[s+10],15,v[58]),f=a(f,b,h,m,g[s+1],21,v[59]),m=a(m,f,b,h,g[s+8],6,v[60]),h=a(h,m,f,b,g[s+15],10,v[61]),b=a(b,h,m,f,g[s+6],15,v[62]),f=a(f,b,h,m,g[s+13],21,v[63]),m=a(m,f,b,h,g[s+4],6,v[64]),h=a(h,m,f,b,g[s+11],10,v[65]),b=a(b,h,m,f,g[s+2],15,v[66]),f=a(f,b,h,m,g[s+9],21,v[67]),m=r(m,c),f=r(f,d),b=r(b,p),h=r(h,u);return l(m).concat(l(f),l(b),l(h))},I=(e=(t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/").split(""),r=function(t,r){var o,n,i=[],a="";for(Math.floor(16*t.length/3),o=0;o<16*t.length;o++)i.push(t[Math.floor(o/16)][o%16]);for(o=0;o<i.length;o+=3)a+=e[i[o]>>2],a+=e[(3&i[o])<<4|i[o+1]>>4],void 0!==i[o+1]?a+=e[(15&i[o+1])<<2|i[o+2]>>6]:a+="=",void 0!==i[o+2]?a+=e[63&i[o+2]]:a+="=";for(n=a.slice(0,64)+"\n",o=1;o<Math.ceil(a.length/64);o++)n+=a.slice(64*o,64*o+64)+(Math.ceil(a.length/64)===o+1?"":"\n");return n},o=function(e){e=e.replace(/\n/g,"");var r,o=[],n=[],i=[];for(r=0;r<e.length;r+=4)n[0]=t.indexOf(e.charAt(r)),n[1]=t.indexOf(e.charAt(r+1)),n[2]=t.indexOf(e.charAt(r+2)),n[3]=t.indexOf(e.charAt(r+3)),i[0]=n[0]<<2|n[1]>>4,i[1]=(15&n[1])<<4|n[2]>>2,i[2]=(3&n[2])<<6|n[3],o.push(i[0],i[1],i[2]);return o.slice(0,o.length-o.length%16)},"function"==typeof Array.indexOf&&(t=e),{encode:r,decode:o});return{size:function(t){switch(t){case 128:n=10,i=4;break;case 192:n=12,i=6;break;case 256:n=14,i=8;break;default:throw"Invalid Key Size Specified:"+t}},h2a:function(t){var e=[];return t.replace(/(..)/g,(function(t){e.push(parseInt(t,16))})),e},expandKey:y,encryptBlock:m,decryptBlock:f,Decrypt:a,s2a:c,rawEncrypt:p,rawDecrypt:u,dec:function(t,e,r){var o=I.decode(t),n=o.slice(8,16),i=d(c(e,r),n),a=i.key,l=i.iv;return o=o.slice(16,o.length),u(o,a,l,r)},openSSLKey:d,a2h:function(t){var e,r="";for(e=0;e<t.length;e++)r+=(t[e]<16?"0":"")+t[e].toString(16);return r},enc:function(t,e,r){var o,n=function(t){var e,r=[];for(e=0;e<t;e++)r=r.concat(Math.floor(256*Math.random()));return r}(8),i=d(c(e,r),n),a=i.key,l=i.iv,s=[[83,97,108,116,101,100,95,95].concat(n)];return t=c(t,r),o=p(t,a,l),o=s.concat(o),I.encode(o)},Hash:{MD5:A},Base64:I}}()},2433:(t,e,r)=>{"use strict";var o,n=(o=r(144))&&"object"==typeof o&&"default"in o?o.default:o;function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var a="undefined"!=typeof window;function l(t,e){return e.reduce((function(e,r){return t.hasOwnProperty(r)&&(e[r]=t[r]),e}),{})}var s={},c={},d={},p=new(n.extend({data:function(){return{transports:s,targets:c,sources:d,trackInstances:a}},methods:{open:function(t){if(a){var e=t.to,r=t.from,o=t.passengers,l=t.order,s=void 0===l?1/0:l;if(e&&r&&o){var c,d={to:e,from:r,passengers:(c=o,Array.isArray(c)||"object"===i(c)?Object.freeze(c):c),order:s};-1===Object.keys(this.transports).indexOf(e)&&n.set(this.transports,e,[]);var p,u=this.$_getTransportIndex(d),m=this.transports[e].slice(0);-1===u?m.push(d):m[u]=d,this.transports[e]=(p=function(t,e){return t.order-e.order},m.map((function(t,e){return[e,t]})).sort((function(t,e){return p(t[1],e[1])||t[0]-e[0]})).map((function(t){return t[1]})))}}},close:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=t.to,o=t.from;if(r&&(o||!1!==e)&&this.transports[r])if(e)this.transports[r]=[];else{var n=this.$_getTransportIndex(t);if(n>=0){var i=this.transports[r].slice(0);i.splice(n,1),this.transports[r]=i}}},registerTarget:function(t,e,r){a&&(this.trackInstances&&!r&&this.targets[t]&&console.warn("[portal-vue]: Target ".concat(t," already exists")),this.$set(this.targets,t,Object.freeze([e])))},unregisterTarget:function(t){this.$delete(this.targets,t)},registerSource:function(t,e,r){a&&(this.trackInstances&&!r&&this.sources[t]&&console.warn("[portal-vue]: source ".concat(t," already exists")),this.$set(this.sources,t,Object.freeze([e])))},unregisterSource:function(t){this.$delete(this.sources,t)},hasTarget:function(t){return!(!this.targets[t]||!this.targets[t][0])},hasSource:function(t){return!(!this.sources[t]||!this.sources[t][0])},hasContentFor:function(t){return!!this.transports[t]&&!!this.transports[t].length},$_getTransportIndex:function(t){var e=t.to,r=t.from;for(var o in this.transports[e])if(this.transports[e][o].from===r)return+o;return-1}}}))(s),u=1,m=n.extend({name:"portal",props:{disabled:{type:Boolean},name:{type:String,default:function(){return String(u++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}}},created:function(){var t=this;this.$nextTick((function(){p.registerSource(t.name,t)}))},mounted:function(){this.disabled||this.sendUpdate()},updated:function(){this.disabled?this.clear():this.sendUpdate()},beforeDestroy:function(){p.unregisterSource(this.name),this.clear()},watch:{to:function(t,e){e&&e!==t&&this.clear(e),this.sendUpdate()}},methods:{clear:function(t){var e={from:this.name,to:t||this.to};p.close(e)},normalizeSlots:function(){return this.$scopedSlots.default?[this.$scopedSlots.default]:this.$slots.default},normalizeOwnChildren:function(t){return"function"==typeof t?t(this.slotProps):t},sendUpdate:function(){var t,e=this.normalizeSlots();if(e){var r={from:this.name,to:this.to,passengers:(t=e,function(t){if(Array.isArray(t)){for(var e=0,r=new Array(t.length);e<t.length;e++)r[e]=t[e];return r}}(t)||function(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()),order:this.order};p.open(r)}else this.clear()}},render:function(t){var e=this.$slots.default||this.$scopedSlots.default||[],r=this.tag;return e&&this.disabled?e.length<=1&&this.slim?this.normalizeOwnChildren(e)[0]:t(r,[this.normalizeOwnChildren(e)]):this.slim?t():t(r,{class:{"v-portal":!0},style:{display:"none"},key:"v-portal-placeholder"})}}),f=n.extend({name:"portalTarget",props:{multiple:{type:Boolean,default:!1},name:{type:String,required:!0},slim:{type:Boolean,default:!1},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},data:function(){return{transports:p.transports,firstRender:!0}},created:function(){var t=this;this.$nextTick((function(){p.registerTarget(t.name,t)}))},watch:{ownTransports:function(){this.$emit("change",this.children().length>0)},name:function(t,e){p.unregisterTarget(e),p.registerTarget(t,this)}},mounted:function(){var t=this;this.transition&&this.$nextTick((function(){t.firstRender=!1}))},beforeDestroy:function(){p.unregisterTarget(this.name)},computed:{ownTransports:function(){var t=this.transports[this.name]||[];return this.multiple?t:0===t.length?[]:[t[t.length-1]]},passengers:function(){return function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return t.reduce((function(t,r){var o=r.passengers[0],n="function"==typeof o?o(e):r.passengers;return t.concat(n)}),[])}(this.ownTransports,this.slotProps)}},methods:{children:function(){return 0!==this.passengers.length?this.passengers:this.$scopedSlots.default?this.$scopedSlots.default(this.slotProps):this.$slots.default||[]},noWrapper:function(){var t=this.slim&&!this.transition;return t&&this.children().length>1&&console.warn("[portal-vue]: PortalTarget with `slim` option received more than one child element."),t}},render:function(t){var e=this.noWrapper(),r=this.children(),o=this.transition||this.tag;return e?r[0]:this.slim&&!o?t():t(o,{props:{tag:this.transition&&this.tag?this.tag:void 0},class:{"vue-portal-target":!0}},r)}}),b=0,h=["disabled","name","order","slim","slotProps","tag","to"],g=["multiple","transition"];n.extend({name:"MountingPortal",inheritAttrs:!1,props:{append:{type:[Boolean,String]},bail:{type:Boolean},mountTo:{type:String,required:!0},disabled:{type:Boolean},name:{type:String,default:function(){return"mounted_"+String(b++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}},multiple:{type:Boolean,default:!1},targetSlim:{type:Boolean},targetSlotProps:{type:Object,default:function(){return{}}},targetTag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},created:function(){if("undefined"!=typeof document){var t=document.querySelector(this.mountTo);if(t){var e=this.$props;if(p.targets[e.name])e.bail?console.warn("[portal-vue]: Target ".concat(e.name," is already mounted.\n Aborting because 'bail: true' is set")):this.portalTarget=p.targets[e.name];else{var r=e.append;if(r){var o="string"==typeof r?r:"DIV",n=document.createElement(o);t.appendChild(n),t=n}var i=l(this.$props,g);i.slim=this.targetSlim,i.tag=this.targetTag,i.slotProps=this.targetSlotProps,i.name=this.to,this.portalTarget=new f({el:t,parent:this.$parent||this,propsData:i})}}else console.error("[portal-vue]: Mount Point '".concat(this.mountTo,"' not found in document"))}},beforeDestroy:function(){var t=this.portalTarget;if(this.append){var e=t.$el;e.parentNode.removeChild(e)}t.$destroy()},render:function(t){if(!this.portalTarget)return console.warn("[portal-vue] Target wasn't mounted"),t();if(!this.$scopedSlots.manual){var e=l(this.$props,h);return t(m,{props:e,attrs:this.$attrs,on:this.$listeners,scopedSlots:this.$scopedSlots},this.$slots.default)}var r=this.$scopedSlots.manual({to:this.to});return Array.isArray(r)&&(r=r[0]),r||t()}});e.h_=m,e.YC=f,e.Df=p},3379:t=>{"use strict";var e=[];function r(t){for(var r=-1,o=0;o<e.length;o++)if(e[o].identifier===t){r=o;break}return r}function o(t,o){for(var i={},a=[],l=0;l<t.length;l++){var s=t[l],c=o.base?s[0]+o.base:s[0],d=i[c]||0,p="".concat(c," ").concat(d);i[c]=d+1;var u=r(p),m={css:s[1],media:s[2],sourceMap:s[3]};-1!==u?(e[u].references++,e[u].updater(m)):e.push({identifier:p,updater:n(m,o),references:1}),a.push(p)}return a}function n(t,e){var r=e.domAPI(e);return r.update(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;r.update(t=e)}else r.remove()}}t.exports=function(t,n){var i=o(t=t||[],n=n||{});return function(t){t=t||[];for(var a=0;a<i.length;a++){var l=r(i[a]);e[l].references--}for(var s=o(t,n),c=0;c<i.length;c++){var d=r(i[c]);0===e[d].references&&(e[d].updater(),e.splice(d,1))}i=s}}},569:t=>{"use strict";var e={};t.exports=function(t,r){var o=function(t){if(void 0===e[t]){var r=document.querySelector(t);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(t){r=null}e[t]=r}return e[t]}(t);if(!o)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");o.appendChild(r)}},9216:t=>{"use strict";t.exports=function(t){var e=document.createElement("style");return t.setAttributes(e,t.attributes),t.insert(e),e}},3565:(t,e,r)=>{"use strict";t.exports=function(t){var e=r.nc;e&&t.setAttribute("nonce",e)}},7795:t=>{"use strict";t.exports=function(t){var e=t.insertStyleElement(t);return{update:function(r){!function(t,e,r){var o=r.css,n=r.media,i=r.sourceMap;n?t.setAttribute("media",n):t.removeAttribute("media"),i&&"undefined"!=typeof btoa&&(o+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),e.styleTagTransform(o,t)}(e,t,r)},remove:function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(e)}}}},4589:t=>{"use strict";t.exports=function(t,e){if(e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}},144:(t,e,r)=>{"use strict";r.r(e),r.d(e,{default:()=>An});var o=Object.freeze({});function n(t){return null==t}function i(t){return null!=t}function a(t){return!0===t}function l(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function s(t){return null!==t&&"object"==typeof t}var c=Object.prototype.toString;function d(t){return"[object Object]"===c.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function u(t){return i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function m(t){return null==t?"":Array.isArray(t)||d(t)&&t.toString===c?JSON.stringify(t,null,2):String(t)}function f(t){var e=parseFloat(t);return isNaN(e)?t:e}function b(t,e){for(var r=Object.create(null),o=t.split(","),n=0;n<o.length;n++)r[o[n]]=!0;return e?function(t){return r[t.toLowerCase()]}:function(t){return r[t]}}b("slot,component",!0);var h=b("key,ref,slot,slot-scope,is");function g(t,e){if(t.length){var r=t.indexOf(e);if(r>-1)return t.splice(r,1)}}var v=Object.prototype.hasOwnProperty;function x(t,e){return v.call(t,e)}function y(t){var e=Object.create(null);return function(r){return e[r]||(e[r]=t(r))}}var w=/-(\w)/g,k=y((function(t){return t.replace(w,(function(t,e){return e?e.toUpperCase():""}))})),O=y((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),j=/\B([A-Z])/g,S=y((function(t){return t.replace(j,"-$1").toLowerCase()})),P=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function r(r){var o=arguments.length;return o?o>1?t.apply(e,arguments):t.call(e,r):t.call(e)}return r._length=t.length,r};function T(t,e){e=e||0;for(var r=t.length-e,o=new Array(r);r--;)o[r]=t[r+e];return o}function _(t,e){for(var r in e)t[r]=e[r];return t}function C(t){for(var e={},r=0;r<t.length;r++)t[r]&&_(e,t[r]);return e}function $(t,e,r){}var D=function(t,e,r){return!1},E=function(t){return t};function z(t,e){if(t===e)return!0;var r=s(t),o=s(e);if(!r||!o)return!r&&!o&&String(t)===String(e);try{var n=Array.isArray(t),i=Array.isArray(e);if(n&&i)return t.length===e.length&&t.every((function(t,r){return z(t,e[r])}));if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(n||i)return!1;var a=Object.keys(t),l=Object.keys(e);return a.length===l.length&&a.every((function(r){return z(t[r],e[r])}))}catch(t){return!1}}function B(t,e){for(var r=0;r<t.length;r++)if(z(t[r],e))return r;return-1}function A(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}var I="data-server-rendered",F=["component","directive","filter"],L=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch"],M={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:D,isReservedAttr:D,isUnknownElement:D,getTagNamespace:$,parsePlatformTagName:E,mustUseProp:D,async:!0,_lifecycleHooks:L};function R(t,e,r,o){Object.defineProperty(t,e,{value:r,enumerable:!!o,writable:!0,configurable:!0})}var V,N=new RegExp("[^"+/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/.source+".$_\\d]"),H="__proto__"in{},U="undefined"!=typeof window,W="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,G=W&&WXEnvironment.platform.toLowerCase(),q=U&&window.navigator.userAgent.toLowerCase(),Y=q&&/msie|trident/.test(q),K=q&&q.indexOf("msie 9.0")>0,X=q&&q.indexOf("edge/")>0,J=(q&&q.indexOf("android"),q&&/iphone|ipad|ipod|ios/.test(q)||"ios"===G),Z=(q&&/chrome\/\d+/.test(q),q&&/phantomjs/.test(q),q&&q.match(/firefox\/(\d+)/)),Q={}.watch,tt=!1;if(U)try{var et={};Object.defineProperty(et,"passive",{get:function(){tt=!0}}),window.addEventListener("test-passive",null,et)}catch(t){}var rt=function(){return void 0===V&&(V=!U&&!W&&void 0!==r.g&&r.g.process&&"server"===r.g.process.env.VUE_ENV),V},ot=U&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function nt(t){return"function"==typeof t&&/native code/.test(t.toString())}var it,at="undefined"!=typeof Symbol&&nt(Symbol)&&"undefined"!=typeof Reflect&&nt(Reflect.ownKeys);it="undefined"!=typeof Set&&nt(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 lt=$,st=0,ct=function(){this.id=st++,this.subs=[]};ct.prototype.addSub=function(t){this.subs.push(t)},ct.prototype.removeSub=function(t){g(this.subs,t)},ct.prototype.depend=function(){ct.target&&ct.target.addDep(this)},ct.prototype.notify=function(){for(var t=this.subs.slice(),e=0,r=t.length;e<r;e++)t[e].update()},ct.target=null;var dt=[];function pt(t){dt.push(t),ct.target=t}function ut(){dt.pop(),ct.target=dt[dt.length-1]}var mt=function(t,e,r,o,n,i,a,l){this.tag=t,this.data=e,this.children=r,this.text=o,this.elm=n,this.ns=void 0,this.context=i,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=l,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},ft={child:{configurable:!0}};ft.child.get=function(){return this.componentInstance},Object.defineProperties(mt.prototype,ft);var bt=function(t){void 0===t&&(t="");var e=new mt;return e.text=t,e.isComment=!0,e};function ht(t){return new mt(void 0,void 0,void 0,String(t))}function gt(t){var e=new mt(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var vt=Array.prototype,xt=Object.create(vt);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(t){var e=vt[t];R(xt,t,(function(){for(var r=[],o=arguments.length;o--;)r[o]=arguments[o];var n,i=e.apply(this,r),a=this.__ob__;switch(t){case"push":case"unshift":n=r;break;case"splice":n=r.slice(2)}return n&&a.observeArray(n),a.dep.notify(),i}))}));var yt=Object.getOwnPropertyNames(xt),wt=!0;function kt(t){wt=t}var Ot=function(t){this.value=t,this.dep=new ct,this.vmCount=0,R(t,"__ob__",this),Array.isArray(t)?(H?function(t,e){t.__proto__=e}(t,xt):function(t,e,r){for(var o=0,n=r.length;o<n;o++){var i=r[o];R(t,i,e[i])}}(t,xt,yt),this.observeArray(t)):this.walk(t)};function jt(t,e){var r;if(s(t)&&!(t instanceof mt))return x(t,"__ob__")&&t.__ob__ instanceof Ot?r=t.__ob__:wt&&!rt()&&(Array.isArray(t)||d(t))&&Object.isExtensible(t)&&!t._isVue&&(r=new Ot(t)),e&&r&&r.vmCount++,r}function St(t,e,r,o,n){var i=new ct,a=Object.getOwnPropertyDescriptor(t,e);if(!a||!1!==a.configurable){var l=a&&a.get,s=a&&a.set;l&&!s||2!==arguments.length||(r=t[e]);var c=!n&&jt(r);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=l?l.call(t):r;return ct.target&&(i.depend(),c&&(c.dep.depend(),Array.isArray(e)&&_t(e))),e},set:function(e){var o=l?l.call(t):r;e===o||e!=e&&o!=o||l&&!s||(s?s.call(t,e):r=e,c=!n&&jt(e),i.notify())}})}}function Pt(t,e,r){if(Array.isArray(t)&&p(e))return t.length=Math.max(t.length,e),t.splice(e,1,r),r;if(e in t&&!(e in Object.prototype))return t[e]=r,r;var o=t.__ob__;return t._isVue||o&&o.vmCount?r:o?(St(o.value,e,r),o.dep.notify(),r):(t[e]=r,r)}function Tt(t,e){if(Array.isArray(t)&&p(e))t.splice(e,1);else{var r=t.__ob__;t._isVue||r&&r.vmCount||x(t,e)&&(delete t[e],r&&r.dep.notify())}}function _t(t){for(var e=void 0,r=0,o=t.length;r<o;r++)(e=t[r])&&e.__ob__&&e.__ob__.dep.depend(),Array.isArray(e)&&_t(e)}Ot.prototype.walk=function(t){for(var e=Object.keys(t),r=0;r<e.length;r++)St(t,e[r])},Ot.prototype.observeArray=function(t){for(var e=0,r=t.length;e<r;e++)jt(t[e])};var Ct=M.optionMergeStrategies;function $t(t,e){if(!e)return t;for(var r,o,n,i=at?Reflect.ownKeys(e):Object.keys(e),a=0;a<i.length;a++)"__ob__"!==(r=i[a])&&(o=t[r],n=e[r],x(t,r)?o!==n&&d(o)&&d(n)&&$t(o,n):Pt(t,r,n));return t}function Dt(t,e,r){return r?function(){var o="function"==typeof e?e.call(r,r):e,n="function"==typeof t?t.call(r,r):t;return o?$t(o,n):n}:e?t?function(){return $t("function"==typeof e?e.call(this,this):e,"function"==typeof t?t.call(this,this):t)}:e:t}function Et(t,e){var r=e?t?t.concat(e):Array.isArray(e)?e:[e]:t;return r?function(t){for(var e=[],r=0;r<t.length;r++)-1===e.indexOf(t[r])&&e.push(t[r]);return e}(r):r}function zt(t,e,r,o){var n=Object.create(t||null);return e?_(n,e):n}Ct.data=function(t,e,r){return r?Dt(t,e,r):e&&"function"!=typeof e?t:Dt(t,e)},L.forEach((function(t){Ct[t]=Et})),F.forEach((function(t){Ct[t+"s"]=zt})),Ct.watch=function(t,e,r,o){if(t===Q&&(t=void 0),e===Q&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var n={};for(var i in _(n,t),e){var a=n[i],l=e[i];a&&!Array.isArray(a)&&(a=[a]),n[i]=a?a.concat(l):Array.isArray(l)?l:[l]}return n},Ct.props=Ct.methods=Ct.inject=Ct.computed=function(t,e,r,o){if(!t)return e;var n=Object.create(null);return _(n,t),e&&_(n,e),n},Ct.provide=Dt;var Bt=function(t,e){return void 0===e?t:e};function At(t,e,r){if("function"==typeof e&&(e=e.options),function(t,e){var r=t.props;if(r){var o,n,i={};if(Array.isArray(r))for(o=r.length;o--;)"string"==typeof(n=r[o])&&(i[k(n)]={type:null});else if(d(r))for(var a in r)n=r[a],i[k(a)]=d(n)?n:{type:n};t.props=i}}(e),function(t,e){var r=t.inject;if(r){var o=t.inject={};if(Array.isArray(r))for(var n=0;n<r.length;n++)o[r[n]]={from:r[n]};else if(d(r))for(var i in r){var a=r[i];o[i]=d(a)?_({from:i},a):{from:a}}}}(e),function(t){var e=t.directives;if(e)for(var r in e){var o=e[r];"function"==typeof o&&(e[r]={bind:o,update:o})}}(e),!e._base&&(e.extends&&(t=At(t,e.extends,r)),e.mixins))for(var o=0,n=e.mixins.length;o<n;o++)t=At(t,e.mixins[o],r);var i,a={};for(i in t)l(i);for(i in e)x(t,i)||l(i);function l(o){var n=Ct[o]||Bt;a[o]=n(t[o],e[o],r,o)}return a}function It(t,e,r,o){if("string"==typeof r){var n=t[e];if(x(n,r))return n[r];var i=k(r);if(x(n,i))return n[i];var a=O(i);return x(n,a)?n[a]:n[r]||n[i]||n[a]}}function Ft(t,e,r,o){var n=e[t],i=!x(r,t),a=r[t],l=Vt(Boolean,n.type);if(l>-1)if(i&&!x(n,"default"))a=!1;else if(""===a||a===S(t)){var s=Vt(String,n.type);(s<0||l<s)&&(a=!0)}if(void 0===a){a=function(t,e,r){if(x(e,"default")){var o=e.default;return t&&t.$options.propsData&&void 0===t.$options.propsData[r]&&void 0!==t._props[r]?t._props[r]:"function"==typeof o&&"Function"!==Mt(e.type)?o.call(t):o}}(o,n,t);var c=wt;kt(!0),jt(a),kt(c)}return a}var Lt=/^\s*function (\w+)/;function Mt(t){var e=t&&t.toString().match(Lt);return e?e[1]:""}function Rt(t,e){return Mt(t)===Mt(e)}function Vt(t,e){if(!Array.isArray(e))return Rt(e,t)?0:-1;for(var r=0,o=e.length;r<o;r++)if(Rt(e[r],t))return r;return-1}function Nt(t,e,r){pt();try{if(e)for(var o=e;o=o.$parent;){var n=o.$options.errorCaptured;if(n)for(var i=0;i<n.length;i++)try{if(!1===n[i].call(o,t,e,r))return}catch(t){Ut(t,o,"errorCaptured hook")}}Ut(t,e,r)}finally{ut()}}function Ht(t,e,r,o,n){var i;try{(i=r?t.apply(e,r):t.call(e))&&!i._isVue&&u(i)&&!i._handled&&(i.catch((function(t){return Nt(t,o,n+" (Promise/async)")})),i._handled=!0)}catch(t){Nt(t,o,n)}return i}function Ut(t,e,r){if(M.errorHandler)try{return M.errorHandler.call(null,t,e,r)}catch(e){e!==t&&Wt(e)}Wt(t)}function Wt(t,e,r){if(!U&&!W||"undefined"==typeof console)throw t;console.error(t)}var Gt,qt=!1,Yt=[],Kt=!1;function Xt(){Kt=!1;var t=Yt.slice(0);Yt.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!=typeof Promise&&nt(Promise)){var Jt=Promise.resolve();Gt=function(){Jt.then(Xt),J&&setTimeout($)},qt=!0}else if(Y||"undefined"==typeof MutationObserver||!nt(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())Gt="undefined"!=typeof setImmediate&&nt(setImmediate)?function(){setImmediate(Xt)}:function(){setTimeout(Xt,0)};else{var Zt=1,Qt=new MutationObserver(Xt),te=document.createTextNode(String(Zt));Qt.observe(te,{characterData:!0}),Gt=function(){Zt=(Zt+1)%2,te.data=String(Zt)},qt=!0}function ee(t,e){var r;if(Yt.push((function(){if(t)try{t.call(e)}catch(t){Nt(t,e,"nextTick")}else r&&r(e)})),Kt||(Kt=!0,Gt()),!t&&"undefined"!=typeof Promise)return new Promise((function(t){r=t}))}var re=new it;function oe(t){ne(t,re),re.clear()}function ne(t,e){var r,o,n=Array.isArray(t);if(!(!n&&!s(t)||Object.isFrozen(t)||t instanceof mt)){if(t.__ob__){var i=t.__ob__.dep.id;if(e.has(i))return;e.add(i)}if(n)for(r=t.length;r--;)ne(t[r],e);else for(r=(o=Object.keys(t)).length;r--;)ne(t[o[r]],e)}}var ie=y((function(t){var e="&"===t.charAt(0),r="~"===(t=e?t.slice(1):t).charAt(0),o="!"===(t=r?t.slice(1):t).charAt(0);return{name:t=o?t.slice(1):t,once:r,capture:o,passive:e}}));function ae(t,e){function r(){var t=arguments,o=r.fns;if(!Array.isArray(o))return Ht(o,null,arguments,e,"v-on handler");for(var n=o.slice(),i=0;i<n.length;i++)Ht(n[i],null,t,e,"v-on handler")}return r.fns=t,r}function le(t,e,r,o,i,l){var s,c,d,p;for(s in t)c=t[s],d=e[s],p=ie(s),n(c)||(n(d)?(n(c.fns)&&(c=t[s]=ae(c,l)),a(p.once)&&(c=t[s]=i(p.name,c,p.capture)),r(p.name,c,p.capture,p.passive,p.params)):c!==d&&(d.fns=c,t[s]=d));for(s in e)n(t[s])&&o((p=ie(s)).name,e[s],p.capture)}function se(t,e,r){var o;t instanceof mt&&(t=t.data.hook||(t.data.hook={}));var l=t[e];function s(){r.apply(this,arguments),g(o.fns,s)}n(l)?o=ae([s]):i(l.fns)&&a(l.merged)?(o=l).fns.push(s):o=ae([l,s]),o.merged=!0,t[e]=o}function ce(t,e,r,o,n){if(i(e)){if(x(e,r))return t[r]=e[r],n||delete e[r],!0;if(x(e,o))return t[r]=e[o],n||delete e[o],!0}return!1}function de(t){return l(t)?[ht(t)]:Array.isArray(t)?ue(t):void 0}function pe(t){return i(t)&&i(t.text)&&!1===t.isComment}function ue(t,e){var r,o,s,c,d=[];for(r=0;r<t.length;r++)n(o=t[r])||"boolean"==typeof o||(c=d[s=d.length-1],Array.isArray(o)?o.length>0&&(pe((o=ue(o,(e||"")+"_"+r))[0])&&pe(c)&&(d[s]=ht(c.text+o[0].text),o.shift()),d.push.apply(d,o)):l(o)?pe(c)?d[s]=ht(c.text+o):""!==o&&d.push(ht(o)):pe(o)&&pe(c)?d[s]=ht(c.text+o.text):(a(t._isVList)&&i(o.tag)&&n(o.key)&&i(e)&&(o.key="__vlist"+e+"_"+r+"__"),d.push(o)));return d}function me(t,e){if(t){for(var r=Object.create(null),o=at?Reflect.ownKeys(t):Object.keys(t),n=0;n<o.length;n++){var i=o[n];if("__ob__"!==i){for(var a=t[i].from,l=e;l;){if(l._provided&&x(l._provided,a)){r[i]=l._provided[a];break}l=l.$parent}if(!l&&"default"in t[i]){var s=t[i].default;r[i]="function"==typeof s?s.call(e):s}}}return r}}function fe(t,e){if(!t||!t.length)return{};for(var r={},o=0,n=t.length;o<n;o++){var i=t[o],a=i.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,i.context!==e&&i.fnContext!==e||!a||null==a.slot)(r.default||(r.default=[])).push(i);else{var l=a.slot,s=r[l]||(r[l]=[]);"template"===i.tag?s.push.apply(s,i.children||[]):s.push(i)}}for(var c in r)r[c].every(be)&&delete r[c];return r}function be(t){return t.isComment&&!t.asyncFactory||" "===t.text}function he(t){return t.isComment&&t.asyncFactory}function ge(t,e,r){var n,i=Object.keys(e).length>0,a=t?!!t.$stable:!i,l=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&r&&r!==o&&l===r.$key&&!i&&!r.$hasNormal)return r;for(var s in n={},t)t[s]&&"$"!==s[0]&&(n[s]=ve(e,s,t[s]))}else n={};for(var c in e)c in n||(n[c]=xe(e,c));return t&&Object.isExtensible(t)&&(t._normalized=n),R(n,"$stable",a),R(n,"$key",l),R(n,"$hasNormal",i),n}function ve(t,e,r){var o=function(){var t=arguments.length?r.apply(null,arguments):r({}),e=(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:de(t))&&t[0];return t&&(!e||1===t.length&&e.isComment&&!he(e))?void 0:t};return r.proxy&&Object.defineProperty(t,e,{get:o,enumerable:!0,configurable:!0}),o}function xe(t,e){return function(){return t[e]}}function ye(t,e){var r,o,n,a,l;if(Array.isArray(t)||"string"==typeof t)for(r=new Array(t.length),o=0,n=t.length;o<n;o++)r[o]=e(t[o],o);else if("number"==typeof t)for(r=new Array(t),o=0;o<t;o++)r[o]=e(o+1,o);else if(s(t))if(at&&t[Symbol.iterator]){r=[];for(var c=t[Symbol.iterator](),d=c.next();!d.done;)r.push(e(d.value,r.length)),d=c.next()}else for(a=Object.keys(t),r=new Array(a.length),o=0,n=a.length;o<n;o++)l=a[o],r[o]=e(t[l],l,o);return i(r)||(r=[]),r._isVList=!0,r}function we(t,e,r,o){var n,i=this.$scopedSlots[t];i?(r=r||{},o&&(r=_(_({},o),r)),n=i(r)||("function"==typeof e?e():e)):n=this.$slots[t]||("function"==typeof e?e():e);var a=r&&r.slot;return a?this.$createElement("template",{slot:a},n):n}function ke(t){return It(this.$options,"filters",t)||E}function Oe(t,e){return Array.isArray(t)?-1===t.indexOf(e):t!==e}function je(t,e,r,o,n){var i=M.keyCodes[e]||r;return n&&o&&!M.keyCodes[e]?Oe(n,o):i?Oe(i,t):o?S(o)!==e:void 0===t}function Se(t,e,r,o,n){if(r&&s(r)){var i;Array.isArray(r)&&(r=C(r));var a=function(a){if("class"===a||"style"===a||h(a))i=t;else{var l=t.attrs&&t.attrs.type;i=o||M.mustUseProp(e,l,a)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var s=k(a),c=S(a);s in i||c in i||(i[a]=r[a],n&&((t.on||(t.on={}))["update:"+a]=function(t){r[a]=t}))};for(var l in r)a(l)}return t}function Pe(t,e){var r=this._staticTrees||(this._staticTrees=[]),o=r[t];return o&&!e||_e(o=r[t]=this.$options.staticRenderFns[t].call(this._renderProxy,null,this),"__static__"+t,!1),o}function Te(t,e,r){return _e(t,"__once__"+e+(r?"_"+r:""),!0),t}function _e(t,e,r){if(Array.isArray(t))for(var o=0;o<t.length;o++)t[o]&&"string"!=typeof t[o]&&Ce(t[o],e+"_"+o,r);else Ce(t,e,r)}function Ce(t,e,r){t.isStatic=!0,t.key=e,t.isOnce=r}function $e(t,e){if(e&&d(e)){var r=t.on=t.on?_({},t.on):{};for(var o in e){var n=r[o],i=e[o];r[o]=n?[].concat(n,i):i}}return t}function De(t,e,r,o){e=e||{$stable:!r};for(var n=0;n<t.length;n++){var i=t[n];Array.isArray(i)?De(i,e,r):i&&(i.proxy&&(i.fn.proxy=!0),e[i.key]=i.fn)}return o&&(e.$key=o),e}function Ee(t,e){for(var r=0;r<e.length;r+=2){var o=e[r];"string"==typeof o&&o&&(t[e[r]]=e[r+1])}return t}function ze(t,e){return"string"==typeof t?e+t:t}function Be(t){t._o=Te,t._n=f,t._s=m,t._l=ye,t._t=we,t._q=z,t._i=B,t._m=Pe,t._f=ke,t._k=je,t._b=Se,t._v=ht,t._e=bt,t._u=De,t._g=$e,t._d=Ee,t._p=ze}function Ae(t,e,r,n,i){var l,s=this,c=i.options;x(n,"_uid")?(l=Object.create(n))._original=n:(l=n,n=n._original);var d=a(c._compiled),p=!d;this.data=t,this.props=e,this.children=r,this.parent=n,this.listeners=t.on||o,this.injections=me(c.inject,n),this.slots=function(){return s.$slots||ge(t.scopedSlots,s.$slots=fe(r,n)),s.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return ge(t.scopedSlots,this.slots())}}),d&&(this.$options=c,this.$slots=this.slots(),this.$scopedSlots=ge(t.scopedSlots,this.$slots)),c._scopeId?this._c=function(t,e,r,o){var i=Ne(l,t,e,r,o,p);return i&&!Array.isArray(i)&&(i.fnScopeId=c._scopeId,i.fnContext=n),i}:this._c=function(t,e,r,o){return Ne(l,t,e,r,o,p)}}function Ie(t,e,r,o,n){var i=gt(t);return i.fnContext=r,i.fnOptions=o,e.slot&&((i.data||(i.data={})).slot=e.slot),i}function Fe(t,e){for(var r in e)t[k(r)]=e[r]}Be(Ae.prototype);var Le={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var r=t;Le.prepatch(r,r)}else(t.componentInstance=function(t,e){var r={_isComponent:!0,_parentVnode:t,parent:e},o=t.data.inlineTemplate;return i(o)&&(r.render=o.render,r.staticRenderFns=o.staticRenderFns),new t.componentOptions.Ctor(r)}(t,Ze)).$mount(e?t.elm:void 0,e)},prepatch:function(t,e){var r=e.componentOptions;!function(t,e,r,n,i){var a=n.data.scopedSlots,l=t.$scopedSlots,s=!!(a&&!a.$stable||l!==o&&!l.$stable||a&&t.$scopedSlots.$key!==a.$key||!a&&t.$scopedSlots.$key),c=!!(i||t.$options._renderChildren||s);if(t.$options._parentVnode=n,t.$vnode=n,t._vnode&&(t._vnode.parent=n),t.$options._renderChildren=i,t.$attrs=n.data.attrs||o,t.$listeners=r||o,e&&t.$options.props){kt(!1);for(var d=t._props,p=t.$options._propKeys||[],u=0;u<p.length;u++){var m=p[u],f=t.$options.props;d[m]=Ft(m,f,e,t)}kt(!0),t.$options.propsData=e}r=r||o;var b=t.$options._parentListeners;t.$options._parentListeners=r,Je(t,r,b),c&&(t.$slots=fe(i,n.context),t.$forceUpdate())}(e.componentInstance=t.componentInstance,r.propsData,r.listeners,e,r.children)},insert:function(t){var e,r=t.context,o=t.componentInstance;o._isMounted||(o._isMounted=!0,or(o,"mounted")),t.data.keepAlive&&(r._isMounted?((e=o)._inactive=!1,ir.push(e)):er(o,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?rr(e,!0):e.$destroy())}},Me=Object.keys(Le);function Re(t,e,r,l,c){if(!n(t)){var d=r.$options._base;if(s(t)&&(t=d.extend(t)),"function"==typeof t){var p;if(n(t.cid)&&void 0===(t=function(t,e){if(a(t.error)&&i(t.errorComp))return t.errorComp;if(i(t.resolved))return t.resolved;var r=We;if(r&&i(t.owners)&&-1===t.owners.indexOf(r)&&t.owners.push(r),a(t.loading)&&i(t.loadingComp))return t.loadingComp;if(r&&!i(t.owners)){var o=t.owners=[r],l=!0,c=null,d=null;r.$on("hook:destroyed",(function(){return g(o,r)}));var p=function(t){for(var e=0,r=o.length;e<r;e++)o[e].$forceUpdate();t&&(o.length=0,null!==c&&(clearTimeout(c),c=null),null!==d&&(clearTimeout(d),d=null))},m=A((function(r){t.resolved=Ge(r,e),l?o.length=0:p(!0)})),f=A((function(e){i(t.errorComp)&&(t.error=!0,p(!0))})),b=t(m,f);return s(b)&&(u(b)?n(t.resolved)&&b.then(m,f):u(b.component)&&(b.component.then(m,f),i(b.error)&&(t.errorComp=Ge(b.error,e)),i(b.loading)&&(t.loadingComp=Ge(b.loading,e),0===b.delay?t.loading=!0:c=setTimeout((function(){c=null,n(t.resolved)&&n(t.error)&&(t.loading=!0,p(!1))}),b.delay||200)),i(b.timeout)&&(d=setTimeout((function(){d=null,n(t.resolved)&&f(null)}),b.timeout)))),l=!1,t.loading?t.loadingComp:t.resolved}}(p=t,d)))return function(t,e,r,o,n){var i=bt();return i.asyncFactory=t,i.asyncMeta={data:e,context:r,children:o,tag:n},i}(p,e,r,l,c);e=e||{},jr(t),i(e.model)&&function(t,e){var r=t.model&&t.model.prop||"value",o=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[r]=e.model.value;var n=e.on||(e.on={}),a=n[o],l=e.model.callback;i(a)?(Array.isArray(a)?-1===a.indexOf(l):a!==l)&&(n[o]=[l].concat(a)):n[o]=l}(t.options,e);var m=function(t,e,r){var o=e.options.props;if(!n(o)){var a={},l=t.attrs,s=t.props;if(i(l)||i(s))for(var c in o){var d=S(c);ce(a,s,c,d,!0)||ce(a,l,c,d,!1)}return a}}(e,t);if(a(t.options.functional))return function(t,e,r,n,a){var l=t.options,s={},c=l.props;if(i(c))for(var d in c)s[d]=Ft(d,c,e||o);else i(r.attrs)&&Fe(s,r.attrs),i(r.props)&&Fe(s,r.props);var p=new Ae(r,s,a,n,t),u=l.render.call(null,p._c,p);if(u instanceof mt)return Ie(u,r,p.parent,l);if(Array.isArray(u)){for(var m=de(u)||[],f=new Array(m.length),b=0;b<m.length;b++)f[b]=Ie(m[b],r,p.parent,l);return f}}(t,m,e,r,l);var f=e.on;if(e.on=e.nativeOn,a(t.options.abstract)){var b=e.slot;e={},b&&(e.slot=b)}!function(t){for(var e=t.hook||(t.hook={}),r=0;r<Me.length;r++){var o=Me[r],n=e[o],i=Le[o];n===i||n&&n._merged||(e[o]=n?Ve(i,n):i)}}(e);var h=t.options.name||c;return new mt("vue-component-"+t.cid+(h?"-"+h:""),e,void 0,void 0,void 0,r,{Ctor:t,propsData:m,listeners:f,tag:c,children:l},p)}}}function Ve(t,e){var r=function(r,o){t(r,o),e(r,o)};return r._merged=!0,r}function Ne(t,e,r,o,n,c){return(Array.isArray(r)||l(r))&&(n=o,o=r,r=void 0),a(c)&&(n=2),function(t,e,r,o,n){if(i(r)&&i(r.__ob__))return bt();if(i(r)&&i(r.is)&&(e=r.is),!e)return bt();var a,l,c;(Array.isArray(o)&&"function"==typeof o[0]&&((r=r||{}).scopedSlots={default:o[0]},o.length=0),2===n?o=de(o):1===n&&(o=function(t){for(var e=0;e<t.length;e++)if(Array.isArray(t[e]))return Array.prototype.concat.apply([],t);return t}(o)),"string"==typeof e)?(l=t.$vnode&&t.$vnode.ns||M.getTagNamespace(e),a=M.isReservedTag(e)?new mt(M.parsePlatformTagName(e),r,o,void 0,void 0,t):r&&r.pre||!i(c=It(t.$options,"components",e))?new mt(e,r,o,void 0,void 0,t):Re(c,r,t,o,e)):a=Re(e,r,t,o);return Array.isArray(a)?a:i(a)?(i(l)&&He(a,l),i(r)&&function(t){s(t.style)&&oe(t.style),s(t.class)&&oe(t.class)}(r),a):bt()}(t,e,r,o,n)}function He(t,e,r){if(t.ns=e,"foreignObject"===t.tag&&(e=void 0,r=!0),i(t.children))for(var o=0,l=t.children.length;o<l;o++){var s=t.children[o];i(s.tag)&&(n(s.ns)||a(r)&&"svg"!==s.tag)&&He(s,e,r)}}var Ue,We=null;function Ge(t,e){return(t.__esModule||at&&"Module"===t[Symbol.toStringTag])&&(t=t.default),s(t)?e.extend(t):t}function qe(t){if(Array.isArray(t))for(var e=0;e<t.length;e++){var r=t[e];if(i(r)&&(i(r.componentOptions)||he(r)))return r}}function Ye(t,e){Ue.$on(t,e)}function Ke(t,e){Ue.$off(t,e)}function Xe(t,e){var r=Ue;return function o(){var n=e.apply(null,arguments);null!==n&&r.$off(t,o)}}function Je(t,e,r){Ue=t,le(e,r||{},Ye,Ke,Xe,t),Ue=void 0}var Ze=null;function Qe(t){var e=Ze;return Ze=t,function(){Ze=e}}function tr(t){for(;t&&(t=t.$parent);)if(t._inactive)return!0;return!1}function er(t,e){if(e){if(t._directInactive=!1,tr(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var r=0;r<t.$children.length;r++)er(t.$children[r]);or(t,"activated")}}function rr(t,e){if(!(e&&(t._directInactive=!0,tr(t))||t._inactive)){t._inactive=!0;for(var r=0;r<t.$children.length;r++)rr(t.$children[r]);or(t,"deactivated")}}function or(t,e){pt();var r=t.$options[e],o=e+" hook";if(r)for(var n=0,i=r.length;n<i;n++)Ht(r[n],t,null,t,o);t._hasHookEvent&&t.$emit("hook:"+e),ut()}var nr=[],ir=[],ar={},lr=!1,sr=!1,cr=0,dr=0,pr=Date.now;if(U&&!Y){var ur=window.performance;ur&&"function"==typeof ur.now&&pr()>document.createEvent("Event").timeStamp&&(pr=function(){return ur.now()})}function mr(){var t,e;for(dr=pr(),sr=!0,nr.sort((function(t,e){return t.id-e.id})),cr=0;cr<nr.length;cr++)(t=nr[cr]).before&&t.before(),e=t.id,ar[e]=null,t.run();var r=ir.slice(),o=nr.slice();cr=nr.length=ir.length=0,ar={},lr=sr=!1,function(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,er(t[e],!0)}(r),function(t){for(var e=t.length;e--;){var r=t[e],o=r.vm;o._watcher===r&&o._isMounted&&!o._isDestroyed&&or(o,"updated")}}(o),ot&&M.devtools&&ot.emit("flush")}var fr=0,br=function(t,e,r,o,n){this.vm=t,n&&(t._watcher=this),t._watchers.push(this),o?(this.deep=!!o.deep,this.user=!!o.user,this.lazy=!!o.lazy,this.sync=!!o.sync,this.before=o.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=r,this.id=++fr,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new it,this.newDepIds=new it,this.expression="","function"==typeof e?this.getter=e:(this.getter=function(t){if(!N.test(t)){var e=t.split(".");return function(t){for(var r=0;r<e.length;r++){if(!t)return;t=t[e[r]]}return t}}}(e),this.getter||(this.getter=$)),this.value=this.lazy?void 0:this.get()};br.prototype.get=function(){var t;pt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;Nt(t,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&oe(t),ut(),this.cleanupDeps()}return t},br.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))},br.prototype.cleanupDeps=function(){for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var r=this.depIds;this.depIds=this.newDepIds,this.newDepIds=r,this.newDepIds.clear(),r=this.deps,this.deps=this.newDeps,this.newDeps=r,this.newDeps.length=0},br.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(t){var e=t.id;if(null==ar[e]){if(ar[e]=!0,sr){for(var r=nr.length-1;r>cr&&nr[r].id>t.id;)r--;nr.splice(r+1,0,t)}else nr.push(t);lr||(lr=!0,ee(mr))}}(this)},br.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||s(t)||this.deep){var e=this.value;if(this.value=t,this.user){var r='callback for watcher "'+this.expression+'"';Ht(this.cb,this.vm,[t,e],this.vm,r)}else this.cb.call(this.vm,t,e)}}},br.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},br.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},br.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var hr={enumerable:!0,configurable:!0,get:$,set:$};function gr(t,e,r){hr.get=function(){return this[e][r]},hr.set=function(t){this[e][r]=t},Object.defineProperty(t,r,hr)}var vr={lazy:!0};function xr(t,e,r){var o=!rt();"function"==typeof r?(hr.get=o?yr(e):wr(r),hr.set=$):(hr.get=r.get?o&&!1!==r.cache?yr(e):wr(r.get):$,hr.set=r.set||$),Object.defineProperty(t,e,hr)}function yr(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),ct.target&&e.depend(),e.value}}function wr(t){return function(){return t.call(this,this)}}function kr(t,e,r,o){return d(r)&&(o=r,r=r.handler),"string"==typeof r&&(r=t[r]),t.$watch(e,r,o)}var Or=0;function jr(t){var e=t.options;if(t.super){var r=jr(t.super);if(r!==t.superOptions){t.superOptions=r;var o=function(t){var e,r=t.options,o=t.sealedOptions;for(var n in r)r[n]!==o[n]&&(e||(e={}),e[n]=r[n]);return e}(t);o&&_(t.extendOptions,o),(e=t.options=At(r,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function Sr(t){this._init(t)}function Pr(t){return t&&(t.Ctor.options.name||t.tag)}function Tr(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(r=t,!("[object RegExp]"!==c.call(r))&&t.test(e));var r}function _r(t,e){var r=t.cache,o=t.keys,n=t._vnode;for(var i in r){var a=r[i];if(a){var l=a.name;l&&!e(l)&&Cr(r,i,o,n)}}}function Cr(t,e,r,o){var n=t[e];!n||o&&n.tag===o.tag||n.componentInstance.$destroy(),t[e]=null,g(r,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=Or++,e._isVue=!0,t&&t._isComponent?function(t,e){var r=t.$options=Object.create(t.constructor.options),o=e._parentVnode;r.parent=e.parent,r._parentVnode=o;var n=o.componentOptions;r.propsData=n.propsData,r._parentListeners=n.listeners,r._renderChildren=n.children,r._componentTag=n.tag,e.render&&(r.render=e.render,r.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=At(jr(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,r=e.parent;if(r&&!e.abstract){for(;r.$options.abstract&&r.$parent;)r=r.$parent;r.$children.push(t)}t.$parent=r,t.$root=r?r.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Je(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,r=t.$vnode=e._parentVnode,n=r&&r.context;t.$slots=fe(e._renderChildren,n),t.$scopedSlots=o,t._c=function(e,r,o,n){return Ne(t,e,r,o,n,!1)},t.$createElement=function(e,r,o,n){return Ne(t,e,r,o,n,!0)};var i=r&&r.data;St(t,"$attrs",i&&i.attrs||o,null,!0),St(t,"$listeners",e._parentListeners||o,null,!0)}(e),or(e,"beforeCreate"),function(t){var e=me(t.$options.inject,t);e&&(kt(!1),Object.keys(e).forEach((function(r){St(t,r,e[r])})),kt(!0))}(e),function(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var r=t.$options.propsData||{},o=t._props={},n=t.$options._propKeys=[];t.$parent&&kt(!1);var i=function(i){n.push(i);var a=Ft(i,e,r,t);St(o,i,a),i in t||gr(t,"_props",i)};for(var a in e)i(a);kt(!0)}(t,e.props),e.methods&&function(t,e){for(var r in t.$options.props,e)t[r]="function"!=typeof e[r]?$:P(e[r],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;d(e=t._data="function"==typeof e?function(t,e){pt();try{return t.call(e,e)}catch(t){return Nt(t,e,"data()"),{}}finally{ut()}}(e,t):e||{})||(e={});for(var r,o=Object.keys(e),n=t.$options.props,i=(t.$options.methods,o.length);i--;){var a=o[i];n&&x(n,a)||(r=void 0,36===(r=(a+"").charCodeAt(0))||95===r)||gr(t,"_data",a)}jt(e,!0)}(t):jt(t._data={},!0),e.computed&&function(t,e){var r=t._computedWatchers=Object.create(null),o=rt();for(var n in e){var i=e[n],a="function"==typeof i?i:i.get;o||(r[n]=new br(t,a||$,$,vr)),n in t||xr(t,n,i)}}(t,e.computed),e.watch&&e.watch!==Q&&function(t,e){for(var r in e){var o=e[r];if(Array.isArray(o))for(var n=0;n<o.length;n++)kr(t,r,o[n]);else kr(t,r,o)}}(t,e.watch)}(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),or(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(Sr),function(t){Object.defineProperty(t.prototype,"$data",{get:function(){return this._data}}),Object.defineProperty(t.prototype,"$props",{get:function(){return this._props}}),t.prototype.$set=Pt,t.prototype.$delete=Tt,t.prototype.$watch=function(t,e,r){var o=this;if(d(e))return kr(o,t,e,r);(r=r||{}).user=!0;var n=new br(o,t,e,r);if(r.immediate){var i='callback for immediate watcher "'+n.expression+'"';pt(),Ht(e,o,[n.value],o,i),ut()}return function(){n.teardown()}}}(Sr),function(t){var e=/^hook:/;t.prototype.$on=function(t,r){var o=this;if(Array.isArray(t))for(var n=0,i=t.length;n<i;n++)o.$on(t[n],r);else(o._events[t]||(o._events[t]=[])).push(r),e.test(t)&&(o._hasHookEvent=!0);return o},t.prototype.$once=function(t,e){var r=this;function o(){r.$off(t,o),e.apply(r,arguments)}return o.fn=e,r.$on(t,o),r},t.prototype.$off=function(t,e){var r=this;if(!arguments.length)return r._events=Object.create(null),r;if(Array.isArray(t)){for(var o=0,n=t.length;o<n;o++)r.$off(t[o],e);return r}var i,a=r._events[t];if(!a)return r;if(!e)return r._events[t]=null,r;for(var l=a.length;l--;)if((i=a[l])===e||i.fn===e){a.splice(l,1);break}return r},t.prototype.$emit=function(t){var e=this,r=e._events[t];if(r){r=r.length>1?T(r):r;for(var o=T(arguments,1),n='event handler for "'+t+'"',i=0,a=r.length;i<a;i++)Ht(r[i],e,o,e,n)}return e}}(Sr),function(t){t.prototype._update=function(t,e){var r=this,o=r.$el,n=r._vnode,i=Qe(r);r._vnode=t,r.$el=n?r.__patch__(n,t):r.__patch__(r.$el,t,e,!1),i(),o&&(o.__vue__=null),r.$el&&(r.$el.__vue__=r),r.$vnode&&r.$parent&&r.$vnode===r.$parent._vnode&&(r.$parent.$el=r.$el)},t.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){or(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||g(e.$children,t),t._watcher&&t._watcher.teardown();for(var r=t._watchers.length;r--;)t._watchers[r].teardown();t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),or(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}(Sr),function(t){Be(t.prototype),t.prototype.$nextTick=function(t){return ee(t,this)},t.prototype._render=function(){var t,e=this,r=e.$options,o=r.render,n=r._parentVnode;n&&(e.$scopedSlots=ge(n.data.scopedSlots,e.$slots,e.$scopedSlots)),e.$vnode=n;try{We=e,t=o.call(e._renderProxy,e.$createElement)}catch(r){Nt(r,e,"render"),t=e._vnode}finally{We=null}return Array.isArray(t)&&1===t.length&&(t=t[0]),t instanceof mt||(t=bt()),t.parent=n,t}}(Sr);var $r=[String,RegExp,Array],Dr={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:$r,exclude:$r,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,r=t.keys,o=t.vnodeToCache,n=t.keyToCache;if(o){var i=o.tag,a=o.componentInstance,l=o.componentOptions;e[n]={name:Pr(l),tag:i,componentInstance:a},r.push(n),this.max&&r.length>parseInt(this.max)&&Cr(e,r[0],r,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Cr(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",(function(e){_r(t,(function(t){return Tr(e,t)}))})),this.$watch("exclude",(function(e){_r(t,(function(t){return!Tr(e,t)}))}))},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=qe(t),r=e&&e.componentOptions;if(r){var o=Pr(r),n=this.include,i=this.exclude;if(n&&(!o||!Tr(n,o))||i&&o&&Tr(i,o))return e;var a=this.cache,l=this.keys,s=null==e.key?r.Ctor.cid+(r.tag?"::"+r.tag:""):e.key;a[s]?(e.componentInstance=a[s].componentInstance,g(l,s),l.push(s)):(this.vnodeToCache=e,this.keyToCache=s),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return M}};Object.defineProperty(t,"config",e),t.util={warn:lt,extend:_,mergeOptions:At,defineReactive:St},t.set=Pt,t.delete=Tt,t.nextTick=ee,t.observable=function(t){return jt(t),t},t.options=Object.create(null),F.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,_(t.options.components,Dr),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var r=T(arguments,1);return r.unshift(this),"function"==typeof t.install?t.install.apply(t,r):"function"==typeof t&&t.apply(null,r),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=At(this.options,t),this}}(t),function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var r=this,o=r.cid,n=t._Ctor||(t._Ctor={});if(n[o])return n[o];var i=t.name||r.options.name,a=function(t){this._init(t)};return(a.prototype=Object.create(r.prototype)).constructor=a,a.cid=e++,a.options=At(r.options,t),a.super=r,a.options.props&&function(t){var e=t.options.props;for(var r in e)gr(t.prototype,"_props",r)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var r in e)xr(t.prototype,r,e[r])}(a),a.extend=r.extend,a.mixin=r.mixin,a.use=r.use,F.forEach((function(t){a[t]=r[t]})),i&&(a.options.components[i]=a),a.superOptions=r.options,a.extendOptions=t,a.sealedOptions=_({},a.options),n[o]=a,a}}(t),function(t){F.forEach((function(e){t[e]=function(t,r){return r?("component"===e&&d(r)&&(r.name=r.name||t,r=this.options._base.extend(r)),"directive"===e&&"function"==typeof r&&(r={bind:r,update:r}),this.options[e+"s"][t]=r,r):this.options[e+"s"][t]}}))}(t)}(Sr),Object.defineProperty(Sr.prototype,"$isServer",{get:rt}),Object.defineProperty(Sr.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Sr,"FunctionalRenderContext",{value:Ae}),Sr.version="2.6.14";var Er=b("style,class"),zr=b("input,textarea,option,select,progress"),Br=b("contenteditable,draggable,spellcheck"),Ar=b("events,caret,typing,plaintext-only"),Ir=b("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,truespeed,typemustmatch,visible"),Fr="http://www.w3.org/1999/xlink",Lr=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Mr=function(t){return Lr(t)?t.slice(6,t.length):""},Rr=function(t){return null==t||!1===t};function Vr(t,e){return{staticClass:Nr(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function Nr(t,e){return t?e?t+" "+e:t:e||""}function Hr(t){return Array.isArray(t)?function(t){for(var e,r="",o=0,n=t.length;o<n;o++)i(e=Hr(t[o]))&&""!==e&&(r&&(r+=" "),r+=e);return r}(t):s(t)?function(t){var e="";for(var r in t)t[r]&&(e&&(e+=" "),e+=r);return e}(t):"string"==typeof t?t:""}var Ur={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Wr=b("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Gr=b("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignobject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),qr=function(t){return Wr(t)||Gr(t)},Yr=Object.create(null),Kr=b("text,number,password,search,email,tel,url"),Xr=Object.freeze({createElement:function(t,e){var r=document.createElement(t);return"select"!==t||e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&r.setAttribute("multiple","multiple"),r},createElementNS:function(t,e){return document.createElementNS(Ur[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,r){t.insertBefore(e,r)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setStyleScope:function(t,e){t.setAttribute(e,"")}}),Jr={create:function(t,e){Zr(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Zr(t,!0),Zr(e))},destroy:function(t){Zr(t,!0)}};function Zr(t,e){var r=t.data.ref;if(i(r)){var o=t.context,n=t.componentInstance||t.elm,a=o.$refs;e?Array.isArray(a[r])?g(a[r],n):a[r]===n&&(a[r]=void 0):t.data.refInFor?Array.isArray(a[r])?a[r].indexOf(n)<0&&a[r].push(n):a[r]=[n]:a[r]=n}}var Qr=new mt("",{},[]),to=["create","activate","update","remove","destroy"];function eo(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&i(t.data)===i(e.data)&&function(t,e){if("input"!==t.tag)return!0;var r,o=i(r=t.data)&&i(r=r.attrs)&&r.type,n=i(r=e.data)&&i(r=r.attrs)&&r.type;return o===n||Kr(o)&&Kr(n)}(t,e)||a(t.isAsyncPlaceholder)&&n(e.asyncFactory.error))}function ro(t,e,r){var o,n,a={};for(o=e;o<=r;++o)i(n=t[o].key)&&(a[n]=o);return a}var oo={create:no,update:no,destroy:function(t){no(t,Qr)}};function no(t,e){(t.data.directives||e.data.directives)&&function(t,e){var r,o,n,i=t===Qr,a=e===Qr,l=ao(t.data.directives,t.context),s=ao(e.data.directives,e.context),c=[],d=[];for(r in s)o=l[r],n=s[r],o?(n.oldValue=o.value,n.oldArg=o.arg,so(n,"update",e,t),n.def&&n.def.componentUpdated&&d.push(n)):(so(n,"bind",e,t),n.def&&n.def.inserted&&c.push(n));if(c.length){var p=function(){for(var r=0;r<c.length;r++)so(c[r],"inserted",e,t)};i?se(e,"insert",p):p()}if(d.length&&se(e,"postpatch",(function(){for(var r=0;r<d.length;r++)so(d[r],"componentUpdated",e,t)})),!i)for(r in l)s[r]||so(l[r],"unbind",t,t,a)}(t,e)}var io=Object.create(null);function ao(t,e){var r,o,n=Object.create(null);if(!t)return n;for(r=0;r<t.length;r++)(o=t[r]).modifiers||(o.modifiers=io),n[lo(o)]=o,o.def=It(e.$options,"directives",o.name);return n}function lo(t){return t.rawName||t.name+"."+Object.keys(t.modifiers||{}).join(".")}function so(t,e,r,o,n){var i=t.def&&t.def[e];if(i)try{i(r.elm,t,r,o,n)}catch(o){Nt(o,r.context,"directive "+t.name+" "+e+" hook")}}var co=[Jr,oo];function po(t,e){var r=e.componentOptions;if(!(i(r)&&!1===r.Ctor.options.inheritAttrs||n(t.data.attrs)&&n(e.data.attrs))){var o,a,l=e.elm,s=t.data.attrs||{},c=e.data.attrs||{};for(o in i(c.__ob__)&&(c=e.data.attrs=_({},c)),c)a=c[o],s[o]!==a&&uo(l,o,a,e.data.pre);for(o in(Y||X)&&c.value!==s.value&&uo(l,"value",c.value),s)n(c[o])&&(Lr(o)?l.removeAttributeNS(Fr,Mr(o)):Br(o)||l.removeAttribute(o))}}function uo(t,e,r,o){o||t.tagName.indexOf("-")>-1?mo(t,e,r):Ir(e)?Rr(r)?t.removeAttribute(e):(r="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,r)):Br(e)?t.setAttribute(e,function(t,e){return Rr(e)||"false"===e?"false":"contenteditable"===t&&Ar(e)?e:"true"}(e,r)):Lr(e)?Rr(r)?t.removeAttributeNS(Fr,Mr(e)):t.setAttributeNS(Fr,e,r):mo(t,e,r)}function mo(t,e,r){if(Rr(r))t.removeAttribute(e);else{if(Y&&!K&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==r&&!t.__ieph){var o=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",o)};t.addEventListener("input",o),t.__ieph=!0}t.setAttribute(e,r)}}var fo={create:po,update:po};function bo(t,e){var r=e.elm,o=e.data,a=t.data;if(!(n(o.staticClass)&&n(o.class)&&(n(a)||n(a.staticClass)&&n(a.class)))){var l=function(t){for(var e=t.data,r=t,o=t;i(o.componentInstance);)(o=o.componentInstance._vnode)&&o.data&&(e=Vr(o.data,e));for(;i(r=r.parent);)r&&r.data&&(e=Vr(e,r.data));return n=e.staticClass,a=e.class,i(n)||i(a)?Nr(n,Hr(a)):"";var n,a}(e),s=r._transitionClasses;i(s)&&(l=Nr(l,Hr(s))),l!==r._prevClass&&(r.setAttribute("class",l),r._prevClass=l)}}var ho,go={create:bo,update:bo};function vo(t,e,r){var o=ho;return function n(){var i=e.apply(null,arguments);null!==i&&wo(t,n,r,o)}}var xo=qt&&!(Z&&Number(Z[1])<=53);function yo(t,e,r,o){if(xo){var n=dr,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=n||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}ho.addEventListener(t,e,tt?{capture:r,passive:o}:r)}function wo(t,e,r,o){(o||ho).removeEventListener(t,e._wrapper||e,r)}function ko(t,e){if(!n(t.data.on)||!n(e.data.on)){var r=e.data.on||{},o=t.data.on||{};ho=e.elm,function(t){if(i(t.__r)){var e=Y?"change":"input";t[e]=[].concat(t.__r,t[e]||[]),delete t.__r}i(t.__c)&&(t.change=[].concat(t.__c,t.change||[]),delete t.__c)}(r),le(r,o,yo,wo,vo,e.context),ho=void 0}}var Oo,jo={create:ko,update:ko};function So(t,e){if(!n(t.data.domProps)||!n(e.data.domProps)){var r,o,a=e.elm,l=t.data.domProps||{},s=e.data.domProps||{};for(r in i(s.__ob__)&&(s=e.data.domProps=_({},s)),l)r in s||(a[r]="");for(r in s){if(o=s[r],"textContent"===r||"innerHTML"===r){if(e.children&&(e.children.length=0),o===l[r])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===r&&"PROGRESS"!==a.tagName){a._value=o;var c=n(o)?"":String(o);Po(a,c)&&(a.value=c)}else if("innerHTML"===r&&Gr(a.tagName)&&n(a.innerHTML)){(Oo=Oo||document.createElement("div")).innerHTML="<svg>"+o+"</svg>";for(var d=Oo.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;d.firstChild;)a.appendChild(d.firstChild)}else if(o!==l[r])try{a[r]=o}catch(t){}}}}function Po(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var r=!0;try{r=document.activeElement!==t}catch(t){}return r&&t.value!==e}(t,e)||function(t,e){var r=t.value,o=t._vModifiers;if(i(o)){if(o.number)return f(r)!==f(e);if(o.trim)return r.trim()!==e.trim()}return r!==e}(t,e))}var To={create:So,update:So},_o=y((function(t){var e={},r=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var o=t.split(r);o.length>1&&(e[o[0].trim()]=o[1].trim())}})),e}));function Co(t){var e=$o(t.style);return t.staticStyle?_(t.staticStyle,e):e}function $o(t){return Array.isArray(t)?C(t):"string"==typeof t?_o(t):t}var Do,Eo=/^--/,zo=/\s*!important$/,Bo=function(t,e,r){if(Eo.test(e))t.style.setProperty(e,r);else if(zo.test(r))t.style.setProperty(S(e),r.replace(zo,""),"important");else{var o=Io(e);if(Array.isArray(r))for(var n=0,i=r.length;n<i;n++)t.style[o]=r[n];else t.style[o]=r}},Ao=["Webkit","Moz","ms"],Io=y((function(t){if(Do=Do||document.createElement("div").style,"filter"!==(t=k(t))&&t in Do)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),r=0;r<Ao.length;r++){var o=Ao[r]+e;if(o in Do)return o}}));function Fo(t,e){var r=e.data,o=t.data;if(!(n(r.staticStyle)&&n(r.style)&&n(o.staticStyle)&&n(o.style))){var a,l,s=e.elm,c=o.staticStyle,d=o.normalizedStyle||o.style||{},p=c||d,u=$o(e.data.style)||{};e.data.normalizedStyle=i(u.__ob__)?_({},u):u;var m=function(t,e){for(var r,o={},n=t;n.componentInstance;)(n=n.componentInstance._vnode)&&n.data&&(r=Co(n.data))&&_(o,r);(r=Co(t.data))&&_(o,r);for(var i=t;i=i.parent;)i.data&&(r=Co(i.data))&&_(o,r);return o}(e);for(l in p)n(m[l])&&Bo(s,l,"");for(l in m)(a=m[l])!==p[l]&&Bo(s,l,null==a?"":a)}}var Lo={create:Fo,update:Fo},Mo=/\s+/;function Ro(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Mo).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var r=" "+(t.getAttribute("class")||"")+" ";r.indexOf(" "+e+" ")<0&&t.setAttribute("class",(r+e).trim())}}function Vo(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Mo).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var r=" "+(t.getAttribute("class")||"")+" ",o=" "+e+" ";r.indexOf(o)>=0;)r=r.replace(o," ");(r=r.trim())?t.setAttribute("class",r):t.removeAttribute("class")}}function No(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&_(e,Ho(t.name||"v")),_(e,t),e}return"string"==typeof t?Ho(t):void 0}}var Ho=y((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"}})),Uo=U&&!K,Wo="transition",Go="animation",qo="transition",Yo="transitionend",Ko="animation",Xo="animationend";Uo&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(qo="WebkitTransition",Yo="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Ko="WebkitAnimation",Xo="webkitAnimationEnd"));var Jo=U?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Zo(t){Jo((function(){Jo(t)}))}function Qo(t,e){var r=t._transitionClasses||(t._transitionClasses=[]);r.indexOf(e)<0&&(r.push(e),Ro(t,e))}function tn(t,e){t._transitionClasses&&g(t._transitionClasses,e),Vo(t,e)}function en(t,e,r){var o=on(t,e),n=o.type,i=o.timeout,a=o.propCount;if(!n)return r();var l=n===Wo?Yo:Xo,s=0,c=function(){t.removeEventListener(l,d),r()},d=function(e){e.target===t&&++s>=a&&c()};setTimeout((function(){s<a&&c()}),i+1),t.addEventListener(l,d)}var rn=/\b(transform|all)(,|$)/;function on(t,e){var r,o=window.getComputedStyle(t),n=(o[qo+"Delay"]||"").split(", "),i=(o[qo+"Duration"]||"").split(", "),a=nn(n,i),l=(o[Ko+"Delay"]||"").split(", "),s=(o[Ko+"Duration"]||"").split(", "),c=nn(l,s),d=0,p=0;return e===Wo?a>0&&(r=Wo,d=a,p=i.length):e===Go?c>0&&(r=Go,d=c,p=s.length):p=(r=(d=Math.max(a,c))>0?a>c?Wo:Go:null)?r===Wo?i.length:s.length:0,{type:r,timeout:d,propCount:p,hasTransform:r===Wo&&rn.test(o[qo+"Property"])}}function nn(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.apply(null,e.map((function(e,r){return an(e)+an(t[r])})))}function an(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function ln(t,e){var r=t.elm;i(r._leaveCb)&&(r._leaveCb.cancelled=!0,r._leaveCb());var o=No(t.data.transition);if(!n(o)&&!i(r._enterCb)&&1===r.nodeType){for(var a=o.css,l=o.type,c=o.enterClass,d=o.enterToClass,p=o.enterActiveClass,u=o.appearClass,m=o.appearToClass,b=o.appearActiveClass,h=o.beforeEnter,g=o.enter,v=o.afterEnter,x=o.enterCancelled,y=o.beforeAppear,w=o.appear,k=o.afterAppear,O=o.appearCancelled,j=o.duration,S=Ze,P=Ze.$vnode;P&&P.parent;)S=P.context,P=P.parent;var T=!S._isMounted||!t.isRootInsert;if(!T||w||""===w){var _=T&&u?u:c,C=T&&b?b:p,$=T&&m?m:d,D=T&&y||h,E=T&&"function"==typeof w?w:g,z=T&&k||v,B=T&&O||x,I=f(s(j)?j.enter:j),F=!1!==a&&!K,L=dn(E),M=r._enterCb=A((function(){F&&(tn(r,$),tn(r,C)),M.cancelled?(F&&tn(r,_),B&&B(r)):z&&z(r),r._enterCb=null}));t.data.show||se(t,"insert",(function(){var e=r.parentNode,o=e&&e._pending&&e._pending[t.key];o&&o.tag===t.tag&&o.elm._leaveCb&&o.elm._leaveCb(),E&&E(r,M)})),D&&D(r),F&&(Qo(r,_),Qo(r,C),Zo((function(){tn(r,_),M.cancelled||(Qo(r,$),L||(cn(I)?setTimeout(M,I):en(r,l,M)))}))),t.data.show&&(e&&e(),E&&E(r,M)),F||L||M()}}}function sn(t,e){var r=t.elm;i(r._enterCb)&&(r._enterCb.cancelled=!0,r._enterCb());var o=No(t.data.transition);if(n(o)||1!==r.nodeType)return e();if(!i(r._leaveCb)){var a=o.css,l=o.type,c=o.leaveClass,d=o.leaveToClass,p=o.leaveActiveClass,u=o.beforeLeave,m=o.leave,b=o.afterLeave,h=o.leaveCancelled,g=o.delayLeave,v=o.duration,x=!1!==a&&!K,y=dn(m),w=f(s(v)?v.leave:v),k=r._leaveCb=A((function(){r.parentNode&&r.parentNode._pending&&(r.parentNode._pending[t.key]=null),x&&(tn(r,d),tn(r,p)),k.cancelled?(x&&tn(r,c),h&&h(r)):(e(),b&&b(r)),r._leaveCb=null}));g?g(O):O()}function O(){k.cancelled||(!t.data.show&&r.parentNode&&((r.parentNode._pending||(r.parentNode._pending={}))[t.key]=t),u&&u(r),x&&(Qo(r,c),Qo(r,p),Zo((function(){tn(r,c),k.cancelled||(Qo(r,d),y||(cn(w)?setTimeout(k,w):en(r,l,k)))}))),m&&m(r,k),x||y||k())}}function cn(t){return"number"==typeof t&&!isNaN(t)}function dn(t){if(n(t))return!1;var e=t.fns;return i(e)?dn(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function pn(t,e){!0!==e.data.show&&ln(e)}var un=function(t){var e,r,o={},s=t.modules,c=t.nodeOps;for(e=0;e<to.length;++e)for(o[to[e]]=[],r=0;r<s.length;++r)i(s[r][to[e]])&&o[to[e]].push(s[r][to[e]]);function d(t){var e=c.parentNode(t);i(e)&&c.removeChild(e,t)}function p(t,e,r,n,l,s,d){if(i(t.elm)&&i(s)&&(t=s[d]=gt(t)),t.isRootInsert=!l,!function(t,e,r,n){var l=t.data;if(i(l)){var s=i(t.componentInstance)&&l.keepAlive;if(i(l=l.hook)&&i(l=l.init)&&l(t,!1),i(t.componentInstance))return u(t,e),m(r,t.elm,n),a(s)&&function(t,e,r,n){for(var a,l=t;l.componentInstance;)if(i(a=(l=l.componentInstance._vnode).data)&&i(a=a.transition)){for(a=0;a<o.activate.length;++a)o.activate[a](Qr,l);e.push(l);break}m(r,t.elm,n)}(t,e,r,n),!0}}(t,e,r,n)){var p=t.data,b=t.children,h=t.tag;i(h)?(t.elm=t.ns?c.createElementNS(t.ns,h):c.createElement(h,t),v(t),f(t,b,e),i(p)&&g(t,e),m(r,t.elm,n)):a(t.isComment)?(t.elm=c.createComment(t.text),m(r,t.elm,n)):(t.elm=c.createTextNode(t.text),m(r,t.elm,n))}}function u(t,e){i(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,h(t)?(g(t,e),v(t)):(Zr(t),e.push(t))}function m(t,e,r){i(t)&&(i(r)?c.parentNode(r)===t&&c.insertBefore(t,e,r):c.appendChild(t,e))}function f(t,e,r){if(Array.isArray(e))for(var o=0;o<e.length;++o)p(e[o],r,t.elm,null,!0,e,o);else l(t.text)&&c.appendChild(t.elm,c.createTextNode(String(t.text)))}function h(t){for(;t.componentInstance;)t=t.componentInstance._vnode;return i(t.tag)}function g(t,r){for(var n=0;n<o.create.length;++n)o.create[n](Qr,t);i(e=t.data.hook)&&(i(e.create)&&e.create(Qr,t),i(e.insert)&&r.push(t))}function v(t){var e;if(i(e=t.fnScopeId))c.setStyleScope(t.elm,e);else for(var r=t;r;)i(e=r.context)&&i(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e),r=r.parent;i(e=Ze)&&e!==t.context&&e!==t.fnContext&&i(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e)}function x(t,e,r,o,n,i){for(;o<=n;++o)p(r[o],i,t,e,!1,r,o)}function y(t){var e,r,n=t.data;if(i(n))for(i(e=n.hook)&&i(e=e.destroy)&&e(t),e=0;e<o.destroy.length;++e)o.destroy[e](t);if(i(e=t.children))for(r=0;r<t.children.length;++r)y(t.children[r])}function w(t,e,r){for(;e<=r;++e){var o=t[e];i(o)&&(i(o.tag)?(k(o),y(o)):d(o.elm))}}function k(t,e){if(i(e)||i(t.data)){var r,n=o.remove.length+1;for(i(e)?e.listeners+=n:e=function(t,e){function r(){0==--r.listeners&&d(t)}return r.listeners=e,r}(t.elm,n),i(r=t.componentInstance)&&i(r=r._vnode)&&i(r.data)&&k(r,e),r=0;r<o.remove.length;++r)o.remove[r](t,e);i(r=t.data.hook)&&i(r=r.remove)?r(t,e):e()}else d(t.elm)}function O(t,e,r,o){for(var n=r;n<o;n++){var a=e[n];if(i(a)&&eo(t,a))return n}}function j(t,e,r,l,s,d){if(t!==e){i(e.elm)&&i(l)&&(e=l[s]=gt(e));var u=e.elm=t.elm;if(a(t.isAsyncPlaceholder))i(e.asyncFactory.resolved)?T(t.elm,e,r):e.isAsyncPlaceholder=!0;else if(a(e.isStatic)&&a(t.isStatic)&&e.key===t.key&&(a(e.isCloned)||a(e.isOnce)))e.componentInstance=t.componentInstance;else{var m,f=e.data;i(f)&&i(m=f.hook)&&i(m=m.prepatch)&&m(t,e);var b=t.children,g=e.children;if(i(f)&&h(e)){for(m=0;m<o.update.length;++m)o.update[m](t,e);i(m=f.hook)&&i(m=m.update)&&m(t,e)}n(e.text)?i(b)&&i(g)?b!==g&&function(t,e,r,o,a){for(var l,s,d,u=0,m=0,f=e.length-1,b=e[0],h=e[f],g=r.length-1,v=r[0],y=r[g],k=!a;u<=f&&m<=g;)n(b)?b=e[++u]:n(h)?h=e[--f]:eo(b,v)?(j(b,v,o,r,m),b=e[++u],v=r[++m]):eo(h,y)?(j(h,y,o,r,g),h=e[--f],y=r[--g]):eo(b,y)?(j(b,y,o,r,g),k&&c.insertBefore(t,b.elm,c.nextSibling(h.elm)),b=e[++u],y=r[--g]):eo(h,v)?(j(h,v,o,r,m),k&&c.insertBefore(t,h.elm,b.elm),h=e[--f],v=r[++m]):(n(l)&&(l=ro(e,u,f)),n(s=i(v.key)?l[v.key]:O(v,e,u,f))?p(v,o,t,b.elm,!1,r,m):eo(d=e[s],v)?(j(d,v,o,r,m),e[s]=void 0,k&&c.insertBefore(t,d.elm,b.elm)):p(v,o,t,b.elm,!1,r,m),v=r[++m]);u>f?x(t,n(r[g+1])?null:r[g+1].elm,r,m,g,o):m>g&&w(e,u,f)}(u,b,g,r,d):i(g)?(i(t.text)&&c.setTextContent(u,""),x(u,null,g,0,g.length-1,r)):i(b)?w(b,0,b.length-1):i(t.text)&&c.setTextContent(u,""):t.text!==e.text&&c.setTextContent(u,e.text),i(f)&&i(m=f.hook)&&i(m=m.postpatch)&&m(t,e)}}}function S(t,e,r){if(a(r)&&i(t.parent))t.parent.data.pendingInsert=e;else for(var o=0;o<e.length;++o)e[o].data.hook.insert(e[o])}var P=b("attrs,class,staticClass,staticStyle,key");function T(t,e,r,o){var n,l=e.tag,s=e.data,c=e.children;if(o=o||s&&s.pre,e.elm=t,a(e.isComment)&&i(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(i(s)&&(i(n=s.hook)&&i(n=n.init)&&n(e,!0),i(n=e.componentInstance)))return u(e,r),!0;if(i(l)){if(i(c))if(t.hasChildNodes())if(i(n=s)&&i(n=n.domProps)&&i(n=n.innerHTML)){if(n!==t.innerHTML)return!1}else{for(var d=!0,p=t.firstChild,m=0;m<c.length;m++){if(!p||!T(p,c[m],r,o)){d=!1;break}p=p.nextSibling}if(!d||p)return!1}else f(e,c,r);if(i(s)){var b=!1;for(var h in s)if(!P(h)){b=!0,g(e,r);break}!b&&s.class&&oe(s.class)}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,r,l){if(!n(e)){var s,d=!1,u=[];if(n(t))d=!0,p(e,u);else{var m=i(t.nodeType);if(!m&&eo(t,e))j(t,e,u,null,null,l);else{if(m){if(1===t.nodeType&&t.hasAttribute(I)&&(t.removeAttribute(I),r=!0),a(r)&&T(t,e,u))return S(e,u,!0),t;s=t,t=new mt(c.tagName(s).toLowerCase(),{},[],void 0,s)}var f=t.elm,b=c.parentNode(f);if(p(e,u,f._leaveCb?null:b,c.nextSibling(f)),i(e.parent))for(var g=e.parent,v=h(e);g;){for(var x=0;x<o.destroy.length;++x)o.destroy[x](g);if(g.elm=e.elm,v){for(var k=0;k<o.create.length;++k)o.create[k](Qr,g);var O=g.data.hook.insert;if(O.merged)for(var P=1;P<O.fns.length;P++)O.fns[P]()}else Zr(g);g=g.parent}i(b)?w([t],0,0):i(t.tag)&&y(t)}}return S(e,u,d),e.elm}i(t)&&y(t)}}({nodeOps:Xr,modules:[fo,go,jo,To,Lo,U?{create:pn,activate:pn,remove:function(t,e){!0!==t.data.show?sn(t,e):e()}}:{}].concat(co)});K&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&yn(t,"input")}));var mn={inserted:function(t,e,r,o){"select"===r.tag?(o.elm&&!o.elm._vOptions?se(r,"postpatch",(function(){mn.componentUpdated(t,e,r)})):fn(t,e,r.context),t._vOptions=[].map.call(t.options,gn)):("textarea"===r.tag||Kr(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",vn),t.addEventListener("compositionend",xn),t.addEventListener("change",xn),K&&(t.vmodel=!0)))},componentUpdated:function(t,e,r){if("select"===r.tag){fn(t,e,r.context);var o=t._vOptions,n=t._vOptions=[].map.call(t.options,gn);n.some((function(t,e){return!z(t,o[e])}))&&(t.multiple?e.value.some((function(t){return hn(t,n)})):e.value!==e.oldValue&&hn(e.value,n))&&yn(t,"change")}}};function fn(t,e,r){bn(t,e),(Y||X)&&setTimeout((function(){bn(t,e)}),0)}function bn(t,e,r){var o=e.value,n=t.multiple;if(!n||Array.isArray(o)){for(var i,a,l=0,s=t.options.length;l<s;l++)if(a=t.options[l],n)i=B(o,gn(a))>-1,a.selected!==i&&(a.selected=i);else if(z(gn(a),o))return void(t.selectedIndex!==l&&(t.selectedIndex=l));n||(t.selectedIndex=-1)}}function hn(t,e){return e.every((function(e){return!z(e,t)}))}function gn(t){return"_value"in t?t._value:t.value}function vn(t){t.target.composing=!0}function xn(t){t.target.composing&&(t.target.composing=!1,yn(t.target,"input"))}function yn(t,e){var r=document.createEvent("HTMLEvents");r.initEvent(e,!0,!0),t.dispatchEvent(r)}function wn(t){return!t.componentInstance||t.data&&t.data.transition?t:wn(t.componentInstance._vnode)}var kn={model:mn,show:{bind:function(t,e,r){var o=e.value,n=(r=wn(r)).data&&r.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;o&&n?(r.data.show=!0,ln(r,(function(){t.style.display=i}))):t.style.display=o?i:"none"},update:function(t,e,r){var o=e.value;!o!=!e.oldValue&&((r=wn(r)).data&&r.data.transition?(r.data.show=!0,o?ln(r,(function(){t.style.display=t.__vOriginalDisplay})):sn(r,(function(){t.style.display="none"}))):t.style.display=o?t.__vOriginalDisplay:"none")},unbind:function(t,e,r,o,n){n||(t.style.display=t.__vOriginalDisplay)}}},On={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 jn(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?jn(qe(e.children)):t}function Sn(t){var e={},r=t.$options;for(var o in r.propsData)e[o]=t[o];var n=r._parentListeners;for(var i in n)e[k(i)]=n[i];return e}function Pn(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Tn=function(t){return t.tag||he(t)},_n=function(t){return"show"===t.name},Cn={name:"transition",props:On,abstract:!0,render:function(t){var e=this,r=this.$slots.default;if(r&&(r=r.filter(Tn)).length){var o=this.mode,n=r[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return n;var i=jn(n);if(!i)return n;if(this._leaving)return Pn(t,n);var a="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?a+"comment":a+i.tag:l(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var s=(i.data||(i.data={})).transition=Sn(this),c=this._vnode,d=jn(c);if(i.data.directives&&i.data.directives.some(_n)&&(i.data.show=!0),d&&d.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(i,d)&&!he(d)&&(!d.componentInstance||!d.componentInstance._vnode.isComment)){var p=d.data.transition=_({},s);if("out-in"===o)return this._leaving=!0,se(p,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),Pn(t,n);if("in-out"===o){if(he(i))return c;var u,m=function(){u()};se(s,"afterEnter",m),se(s,"enterCancelled",m),se(p,"delayLeave",(function(t){u=t}))}}return n}}},$n=_({tag:String,moveClass:String},On);function Dn(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function En(t){t.data.newPos=t.elm.getBoundingClientRect()}function zn(t){var e=t.data.pos,r=t.data.newPos,o=e.left-r.left,n=e.top-r.top;if(o||n){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+o+"px,"+n+"px)",i.transitionDuration="0s"}}delete $n.mode;var Bn={Transition:Cn,TransitionGroup:{props:$n,beforeMount:function(){var t=this,e=this._update;this._update=function(r,o){var n=Qe(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,n(),e.call(t,r,o)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",r=Object.create(null),o=this.prevChildren=this.children,n=this.$slots.default||[],i=this.children=[],a=Sn(this),l=0;l<n.length;l++){var s=n[l];s.tag&&null!=s.key&&0!==String(s.key).indexOf("__vlist")&&(i.push(s),r[s.key]=s,(s.data||(s.data={})).transition=a)}if(o){for(var c=[],d=[],p=0;p<o.length;p++){var u=o[p];u.data.transition=a,u.data.pos=u.elm.getBoundingClientRect(),r[u.key]?c.push(u):d.push(u)}this.kept=t(e,null,c),this.removed=d}return t(e,null,i)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(Dn),t.forEach(En),t.forEach(zn),this._reflow=document.body.offsetHeight,t.forEach((function(t){if(t.data.moved){var r=t.elm,o=r.style;Qo(r,e),o.transform=o.WebkitTransform=o.transitionDuration="",r.addEventListener(Yo,r._moveCb=function t(o){o&&o.target!==r||o&&!/transform$/.test(o.propertyName)||(r.removeEventListener(Yo,t),r._moveCb=null,tn(r,e))})}})))},methods:{hasMove:function(t,e){if(!Uo)return!1;if(this._hasMove)return this._hasMove;var r=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach((function(t){Vo(r,t)})),Ro(r,e),r.style.display="none",this.$el.appendChild(r);var o=on(r);return this.$el.removeChild(r),this._hasMove=o.hasTransform}}}};Sr.config.mustUseProp=function(t,e,r){return"value"===r&&zr(t)&&"button"!==e||"selected"===r&&"option"===t||"checked"===r&&"input"===t||"muted"===r&&"video"===t},Sr.config.isReservedTag=qr,Sr.config.isReservedAttr=Er,Sr.config.getTagNamespace=function(t){return Gr(t)?"svg":"math"===t?"math":void 0},Sr.config.isUnknownElement=function(t){if(!U)return!0;if(qr(t))return!1;if(t=t.toLowerCase(),null!=Yr[t])return Yr[t];var e=document.createElement(t);return t.indexOf("-")>-1?Yr[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Yr[t]=/HTMLUnknownElement/.test(e.toString())},_(Sr.options.directives,kn),_(Sr.options.components,Bn),Sr.prototype.__patch__=U?un:$,Sr.prototype.$mount=function(t,e){return function(t,e,r){var o;return t.$el=e,t.$options.render||(t.$options.render=bt),or(t,"beforeMount"),o=function(){t._update(t._render(),r)},new br(t,o,$,{before:function(){t._isMounted&&!t._isDestroyed&&or(t,"beforeUpdate")}},!0),r=!1,null==t.$vnode&&(t._isMounted=!0,or(t,"mounted")),t}(this,t=t&&U?function(t){return"string"==typeof t?document.querySelector(t)||document.createElement("div"):t}(t):void 0,e)},U&&setTimeout((function(){M.devtools&&ot&&ot.emit("init",Sr)}),0);const An=Sr},9700:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23fff%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath d=%27M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z%27/%3e%3c/svg%3e"},4104:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23fff%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath d=%27M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z%27/%3e%3c/svg%3e"},9566:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},2952:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27black%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},6803:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},8776:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},134:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27white%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},9052:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e"},1024:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27 viewBox=%270 0 12 12%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e"},8624:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23e74c3c%27 viewBox=%270 0 12 12%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23e74c3c%27 stroke=%27none%27/%3e%3c/svg%3e"},7263:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%23fff%27/%3e%3c/svg%3e"},9859:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},1380:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%280, 0, 0, 0.5%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},9242:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%28255, 255, 255, 0.5%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},4231:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%274%27 viewBox=%270 0 4 4%27%3e%3cpath stroke=%27%23fff%27 d=%27M0 2h4%27/%3e%3c/svg%3e"},4576:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27 viewBox=%270 0 4 5%27%3e%3cpath fill=%27%23343a40%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3e%3c/svg%3e"},1387:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2318bc9c%27 d=%27M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e"},7211:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2328a745%27 d=%27M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e"},9653:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23fff%27 d=%27M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z%27/%3e%3c/svg%3e"},8593:t=>{"use strict";t.exports=JSON.parse('{"name":"axios","version":"0.21.4","description":"Promise based HTTP client for the browser and node.js","main":"index.js","scripts":{"test":"grunt test","start":"node ./sandbox/server.js","build":"NODE_ENV=production grunt build","preversion":"npm test","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","postversion":"git push && git push --tags","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","fix":"eslint --fix lib/**/*.js"},"repository":{"type":"git","url":"https://github.com/axios/axios.git"},"keywords":["xhr","http","ajax","promise","node"],"author":"Matt Zabriskie","license":"MIT","bugs":{"url":"https://github.com/axios/axios/issues"},"homepage":"https://axios-http.com","devDependencies":{"coveralls":"^3.0.0","es6-promise":"^4.2.4","grunt":"^1.3.0","grunt-banner":"^0.6.0","grunt-cli":"^1.2.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","grunt-eslint":"^23.0.0","grunt-karma":"^4.0.0","grunt-mocha-test":"^0.13.3","grunt-ts":"^6.0.0-beta.19","grunt-webpack":"^4.0.2","istanbul-instrumenter-loader":"^1.0.0","jasmine-core":"^2.4.1","karma":"^6.3.2","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^2.1.0","karma-jasmine":"^1.1.1","karma-jasmine-ajax":"^0.1.13","karma-safari-launcher":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-sinon":"^1.0.5","karma-sourcemap-loader":"^0.3.8","karma-webpack":"^4.0.2","load-grunt-tasks":"^3.5.2","minimist":"^1.2.0","mocha":"^8.2.1","sinon":"^4.5.0","terser-webpack-plugin":"^4.2.3","typescript":"^4.0.5","url-search-params":"^0.10.0","webpack":"^4.44.2","webpack-dev-server":"^3.11.0"},"browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"jsdelivr":"dist/axios.min.js","unpkg":"dist/axios.min.js","typings":"./index.d.ts","dependencies":{"follow-redirects":"^1.14.0"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}]}')}},e={};function r(o){var n=e[o];if(void 0!==n)return n.exports;var i=e[o]={id:o,exports:{}};return t[o].call(i.exports,i,i.exports,r),i.exports}r.m=t,r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var o in e)r.o(e,o)&&!r.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.b=document.baseURI||self.location.href,r(6438)})();