]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix(files): Only execute default action if there is an action to perform 45662/head
authorFerdinand Thiessen <opensource@fthiessen.de>
Thu, 30 May 2024 16:44:02 +0000 (18:44 +0200)
committerskjnldsv <skjnldsv@protonmail.com>
Fri, 7 Jun 2024 10:06:37 +0000 (12:06 +0200)
Some files do not have a default action (can not be viewed and only downloaded).
If the `openfile` query is set on them the `handleOpenFile` will throw an error.

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
apps/files/src/components/FilesListVirtual.vue
dist/files-main.js
dist/files-main.js.map

index 3d105c02ce6e3c205398703bf004c8b873c677c1..1318cf7a8fe7f35944865bc24f03203a4eff6d46 100644 (file)
@@ -275,14 +275,18 @@ export default defineComponent({
 
                        logger.debug('Opening file ' + node.path, { node })
                        this.openFileId = fileId
-                       getFileActions()
-                               .filter(action => !action.enabled || action.enabled([node], this.currentView))
+                       const defaultAction = getFileActions()
+                               // Get only default actions (visible and hidden)
+                               .filter(action => !!action?.default)
+                               // Find actions that are either always enabled or enabled for the current node
+                               .filter((action) => !action.enabled || action.enabled([node], this.currentView))
+                               // Sort enabled default actions by order
                                .sort((a, b) => (a.order || 0) - (b.order || 0))
-                               .filter(action => !!action?.default)[0].exec(node, this.currentView, this.currentFolder.path)
-               },
-
-               getFileId(node) {
-                       return node.fileid
+                               // Get the first one
+                               .at(0)
+                       // Some file types do not have a default action (e.g. they can only be downloaded)
+                       // So if there is an enabled default action, so execute it
+                       defaultAction?.exec(node, this.currentView, this.currentFolder.path)
                },
 
                onDragOver(event: DragEvent) {
index edc42576877eef4c7a9521fd663b511ad03bdcb1..f9eb3aa48fd60ee076ea7364ff47377d32ed2826 100644 (file)
@@ -1,3 +1,3 @@
 /*! For license information please see files-main.js.LICENSE.txt */
-(()=>{var e,n,s,i={9052:t=>{"use strict";var e=Object.prototype.hasOwnProperty,n="~";function s(){}function i(t,e,n){this.fn=t,this.context=e,this.once=n||!1}function r(t,e,s,r,a){if("function"!=typeof s)throw new TypeError("The listener must be a function");var o=new i(s,r||t,a),l=n?n+e:e;return t._events[l]?t._events[l].fn?t._events[l]=[t._events[l],o]:t._events[l].push(o):(t._events[l]=o,t._eventsCount++),t}function a(t,e){0==--t._eventsCount?t._events=new s:delete t._events[e]}function o(){this._events=new s,this._eventsCount=0}Object.create&&(s.prototype=Object.create(null),(new s).__proto__||(n=!1)),o.prototype.eventNames=function(){var t,s,i=[];if(0===this._eventsCount)return i;for(s in t=this._events)e.call(t,s)&&i.push(n?s.slice(1):s);return Object.getOwnPropertySymbols?i.concat(Object.getOwnPropertySymbols(t)):i},o.prototype.listeners=function(t){var e=n?n+t:t,s=this._events[e];if(!s)return[];if(s.fn)return[s.fn];for(var i=0,r=s.length,a=new Array(r);i<r;i++)a[i]=s[i].fn;return a},o.prototype.listenerCount=function(t){var e=n?n+t:t,s=this._events[e];return s?s.fn?1:s.length:0},o.prototype.emit=function(t,e,s,i,r,a){var o=n?n+t:t;if(!this._events[o])return!1;var l,c,u=this._events[o],d=arguments.length;if(u.fn){switch(u.once&&this.removeListener(t,u.fn,void 0,!0),d){case 1:return u.fn.call(u.context),!0;case 2:return u.fn.call(u.context,e),!0;case 3:return u.fn.call(u.context,e,s),!0;case 4:return u.fn.call(u.context,e,s,i),!0;case 5:return u.fn.call(u.context,e,s,i,r),!0;case 6:return u.fn.call(u.context,e,s,i,r,a),!0}for(c=1,l=new Array(d-1);c<d;c++)l[c-1]=arguments[c];u.fn.apply(u.context,l)}else{var m,p=u.length;for(c=0;c<p;c++)switch(u[c].once&&this.removeListener(t,u[c].fn,void 0,!0),d){case 1:u[c].fn.call(u[c].context);break;case 2:u[c].fn.call(u[c].context,e);break;case 3:u[c].fn.call(u[c].context,e,s);break;case 4:u[c].fn.call(u[c].context,e,s,i);break;default:if(!l)for(m=1,l=new Array(d-1);m<d;m++)l[m-1]=arguments[m];u[c].fn.apply(u[c].context,l)}}return!0},o.prototype.on=function(t,e,n){return r(this,t,e,n,!1)},o.prototype.once=function(t,e,n){return r(this,t,e,n,!0)},o.prototype.removeListener=function(t,e,s,i){var r=n?n+t:t;if(!this._events[r])return this;if(!e)return a(this,r),this;var o=this._events[r];if(o.fn)o.fn!==e||i&&!o.once||s&&o.context!==s||a(this,r);else{for(var l=0,c=[],u=o.length;l<u;l++)(o[l].fn!==e||i&&!o[l].once||s&&o[l].context!==s)&&c.push(o[l]);c.length?this._events[r]=1===c.length?c[0]:c:a(this,r)}return this},o.prototype.removeAllListeners=function(t){var e;return t?(e=n?n+t:t,this._events[e]&&a(this,e)):(this._events=new s,this._eventsCount=0),this},o.prototype.off=o.prototype.removeListener,o.prototype.addListener=o.prototype.on,o.prefixed=n,o.EventEmitter=o,t.exports=o},34898:(e,n,s)=>{"use strict";var i={};s.r(i),s.d(i,{exclude:()=>I,extract:()=>k,parse:()=>E,parseUrl:()=>N,pick:()=>P,stringify:()=>L,stringifyUrl:()=>F});var r=s(65899),a=s(35810),o=s(21777),l=s(85471);const c=(0,r.Ey)();var u=s(63814);const d="%[a-f0-9]{2}",m=new RegExp("("+d+")|([^%]+?)","gi"),p=new RegExp("("+d+")+","gi");function f(t,e){try{return[decodeURIComponent(t.join(""))]}catch{}if(1===t.length)return t;e=e||1;const n=t.slice(0,e),s=t.slice(e);return Array.prototype.concat.call([],f(n),f(s))}function h(t){try{return decodeURIComponent(t)}catch{let e=t.match(m)||[];for(let n=1;n<e.length;n++)e=(t=f(e,n).join("")).match(m)||[];return t}}function g(t,e){if("string"!=typeof t||"string"!=typeof e)throw new TypeError("Expected the arguments to be of type `string`");if(""===t||""===e)return[];const n=t.indexOf(e);return-1===n?[]:[t.slice(0,n),t.slice(n+e.length)]}function v(t,e){const n={};if(Array.isArray(e))for(const s of e){const e=Object.getOwnPropertyDescriptor(t,s);e?.enumerable&&Object.defineProperty(n,s,e)}else for(const s of Reflect.ownKeys(t)){const i=Object.getOwnPropertyDescriptor(t,s);i.enumerable&&e(s,t[s],t)&&Object.defineProperty(n,s,i)}return n}const w=t=>null==t,y=t=>encodeURIComponent(t).replaceAll(/[!'()*]/g,(t=>`%${t.charCodeAt(0).toString(16).toUpperCase()}`)),A=Symbol("encodeFragmentIdentifier");function b(t){if("string"!=typeof t||1!==t.length)throw new TypeError("arrayFormatSeparator must be single character string")}function _(t,e){return e.encode?e.strict?y(t):encodeURIComponent(t):t}function C(t,e){return e.decode?function(t){if("string"!=typeof t)throw new TypeError("Expected `encodedURI` to be of type `string`, got `"+typeof t+"`");try{return decodeURIComponent(t)}catch{return function(t){const e={"%FE%FF":"��","%FF%FE":"��"};let n=p.exec(t);for(;n;){try{e[n[0]]=decodeURIComponent(n[0])}catch{const t=h(n[0]);t!==n[0]&&(e[n[0]]=t)}n=p.exec(t)}e["%C2"]="�";const s=Object.keys(e);for(const n of s)t=t.replace(new RegExp(n,"g"),e[n]);return t}(t)}}(t):t}function x(t){return Array.isArray(t)?t.sort():"object"==typeof t?x(Object.keys(t)).sort(((t,e)=>Number(t)-Number(e))).map((e=>t[e])):t}function T(t){const e=t.indexOf("#");return-1!==e&&(t=t.slice(0,e)),t}function S(t,e){return e.parseNumbers&&!Number.isNaN(Number(t))&&"string"==typeof t&&""!==t.trim()?t=Number(t):!e.parseBooleans||null===t||"true"!==t.toLowerCase()&&"false"!==t.toLowerCase()||(t="true"===t.toLowerCase()),t}function k(t){const e=(t=T(t)).indexOf("?");return-1===e?"":t.slice(e+1)}function E(t,e){b((e={decode:!0,sort:!0,arrayFormat:"none",arrayFormatSeparator:",",parseNumbers:!1,parseBooleans:!1,...e}).arrayFormatSeparator);const n=function(t){let e;switch(t.arrayFormat){case"index":return(t,n,s)=>{e=/\[(\d*)]$/.exec(t),t=t.replace(/\[\d*]$/,""),e?(void 0===s[t]&&(s[t]={}),s[t][e[1]]=n):s[t]=n};case"bracket":return(t,n,s)=>{e=/(\[])$/.exec(t),t=t.replace(/\[]$/,""),e?void 0!==s[t]?s[t]=[...s[t],n]:s[t]=[n]:s[t]=n};case"colon-list-separator":return(t,n,s)=>{e=/(:list)$/.exec(t),t=t.replace(/:list$/,""),e?void 0!==s[t]?s[t]=[...s[t],n]:s[t]=[n]:s[t]=n};case"comma":case"separator":return(e,n,s)=>{const i="string"==typeof n&&n.includes(t.arrayFormatSeparator),r="string"==typeof n&&!i&&C(n,t).includes(t.arrayFormatSeparator);n=r?C(n,t):n;const a=i||r?n.split(t.arrayFormatSeparator).map((e=>C(e,t))):null===n?n:C(n,t);s[e]=a};case"bracket-separator":return(e,n,s)=>{const i=/(\[])$/.test(e);if(e=e.replace(/\[]$/,""),!i)return void(s[e]=n?C(n,t):n);const r=null===n?[]:n.split(t.arrayFormatSeparator).map((e=>C(e,t)));void 0!==s[e]?s[e]=[...s[e],...r]:s[e]=r};default:return(t,e,n)=>{void 0!==n[t]?n[t]=[...[n[t]].flat(),e]:n[t]=e}}}(e),s=Object.create(null);if("string"!=typeof t)return s;if(!(t=t.trim().replace(/^[?#&]/,"")))return s;for(const i of t.split("&")){if(""===i)continue;const t=e.decode?i.replaceAll("+"," "):i;let[r,a]=g(t,"=");void 0===r&&(r=t),a=void 0===a?null:["comma","separator","bracket-separator"].includes(e.arrayFormat)?a:C(a,e),n(C(r,e),a,s)}for(const[t,n]of Object.entries(s))if("object"==typeof n&&null!==n)for(const[t,s]of Object.entries(n))n[t]=S(s,e);else s[t]=S(n,e);return!1===e.sort?s:(!0===e.sort?Object.keys(s).sort():Object.keys(s).sort(e.sort)).reduce(((t,e)=>{const n=s[e];return t[e]=Boolean(n)&&"object"==typeof n&&!Array.isArray(n)?x(n):n,t}),Object.create(null))}function L(t,e){if(!t)return"";b((e={encode:!0,strict:!0,arrayFormat:"none",arrayFormatSeparator:",",...e}).arrayFormatSeparator);const n=n=>e.skipNull&&w(t[n])||e.skipEmptyString&&""===t[n],s=function(t){switch(t.arrayFormat){case"index":return e=>(n,s)=>{const i=n.length;return void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[_(e,t),"[",i,"]"].join("")]:[...n,[_(e,t),"[",_(i,t),"]=",_(s,t)].join("")]};case"bracket":return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[_(e,t),"[]"].join("")]:[...n,[_(e,t),"[]=",_(s,t)].join("")];case"colon-list-separator":return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[_(e,t),":list="].join("")]:[...n,[_(e,t),":list=",_(s,t)].join("")];case"comma":case"separator":case"bracket-separator":{const e="bracket-separator"===t.arrayFormat?"[]=":"=";return n=>(s,i)=>void 0===i||t.skipNull&&null===i||t.skipEmptyString&&""===i?s:(i=null===i?"":i,0===s.length?[[_(n,t),e,_(i,t)].join("")]:[[s,_(i,t)].join(t.arrayFormatSeparator)])}default:return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,_(e,t)]:[...n,[_(e,t),"=",_(s,t)].join("")]}}(e),i={};for(const[e,s]of Object.entries(t))n(e)||(i[e]=s);const r=Object.keys(i);return!1!==e.sort&&r.sort(e.sort),r.map((n=>{const i=t[n];return void 0===i?"":null===i?_(n,e):Array.isArray(i)?0===i.length&&"bracket-separator"===e.arrayFormat?_(n,e)+"[]":i.reduce(s(n),[]).join("&"):_(n,e)+"="+_(i,e)})).filter((t=>t.length>0)).join("&")}function N(t,e){e={decode:!0,...e};let[n,s]=g(t,"#");return void 0===n&&(n=t),{url:n?.split("?")?.[0]??"",query:E(k(t),e),...e&&e.parseFragmentIdentifier&&s?{fragmentIdentifier:C(s,e)}:{}}}function F(t,e){e={encode:!0,strict:!0,[A]:!0,...e};const n=T(t.url).split("?")[0]||"";let s=L({...E(k(t.url),{sort:!1}),...t.query},e);s&&=`?${s}`;let i=function(t){let e="";const n=t.indexOf("#");return-1!==n&&(e=t.slice(n)),e}(t.url);if("string"==typeof t.fragmentIdentifier){const s=new URL(n);s.hash=t.fragmentIdentifier,i=e[A]?s.hash:`#${t.fragmentIdentifier}`}return`${n}${s}${i}`}function P(t,e,n){n={parseFragmentIdentifier:!0,[A]:!1,...n};const{url:s,query:i,fragmentIdentifier:r}=N(t,n);return F({url:s,query:v(i,e),fragmentIdentifier:r},n)}function I(t,e,n){return P(t,Array.isArray(e)?t=>!e.includes(t):(t,n)=>!e(t,n),n)}const D=i;var O=s(96763);function U(t,e){for(var n in e)t[n]=e[n];return t}var B=/[!'()*]/g,R=function(t){return"%"+t.charCodeAt(0).toString(16)},j=/%2C/g,M=function(t){return encodeURIComponent(t).replace(B,R).replace(j,",")};function z(t){try{return decodeURIComponent(t)}catch(t){}return t}var V=function(t){return null==t||"object"==typeof t?t:String(t)};function q(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach((function(t){var n=t.replace(/\+/g," ").split("="),s=z(n.shift()),i=n.length>0?z(n.join("=")):null;void 0===e[s]?e[s]=i:Array.isArray(e[s])?e[s].push(i):e[s]=[e[s],i]})),e):e}function $(t){var e=t?Object.keys(t).map((function(e){var n=t[e];if(void 0===n)return"";if(null===n)return M(e);if(Array.isArray(n)){var s=[];return n.forEach((function(t){void 0!==t&&(null===t?s.push(M(e)):s.push(M(e)+"="+M(t)))})),s.join("&")}return M(e)+"="+M(n)})).filter((function(t){return t.length>0})).join("&"):null;return e?"?"+e:""}var H=/\/?$/;function W(t,e,n,s){var i=s&&s.options.stringifyQuery,r=e.query||{};try{r=G(r)}catch(t){}var a={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:r,params:e.params||{},fullPath:Q(e,i),matched:t?K(t):[]};return n&&(a.redirectedFrom=Q(n,i)),Object.freeze(a)}function G(t){if(Array.isArray(t))return t.map(G);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=G(t[n]);return e}return t}var Y=W(null,{path:"/"});function K(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}function Q(t,e){var n=t.path,s=t.query;void 0===s&&(s={});var i=t.hash;return void 0===i&&(i=""),(n||"/")+(e||$)(s)+i}function X(t,e,n){return e===Y?t===e:!!e&&(t.path&&e.path?t.path.replace(H,"")===e.path.replace(H,"")&&(n||t.hash===e.hash&&J(t.query,e.query)):!(!t.name||!e.name)&&t.name===e.name&&(n||t.hash===e.hash&&J(t.query,e.query)&&J(t.params,e.params)))}function J(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t).sort(),s=Object.keys(e).sort();return n.length===s.length&&n.every((function(n,i){var r=t[n];if(s[i]!==n)return!1;var a=e[n];return null==r||null==a?r===a:"object"==typeof r&&"object"==typeof a?J(r,a):String(r)===String(a)}))}function Z(t){for(var e=0;e<t.matched.length;e++){var n=t.matched[e];for(var s in n.instances){var i=n.instances[s],r=n.enteredCbs[s];if(i&&r){delete n.enteredCbs[s];for(var a=0;a<r.length;a++)i._isBeingDestroyed||r[a](i)}}}}var tt={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,s=e.children,i=e.parent,r=e.data;r.routerView=!0;for(var a=i.$createElement,o=n.name,l=i.$route,c=i._routerViewCache||(i._routerViewCache={}),u=0,d=!1;i&&i._routerRoot!==i;){var m=i.$vnode?i.$vnode.data:{};m.routerView&&u++,m.keepAlive&&i._directInactive&&i._inactive&&(d=!0),i=i.$parent}if(r.routerViewDepth=u,d){var p=c[o],f=p&&p.component;return f?(p.configProps&&et(f,r,p.route,p.configProps),a(f,r,s)):a()}var h=l.matched[u],g=h&&h.components[o];if(!h||!g)return c[o]=null,a();c[o]={component:g},r.registerRouteInstance=function(t,e){var n=h.instances[o];(e&&n!==t||!e&&n===t)&&(h.instances[o]=e)},(r.hook||(r.hook={})).prepatch=function(t,e){h.instances[o]=e.componentInstance},r.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==h.instances[o]&&(h.instances[o]=t.componentInstance),Z(l)};var v=h.props&&h.props[o];return v&&(U(c[o],{route:l,configProps:v}),et(g,r,l,v)),a(g,r,s)}};function et(t,e,n,s){var i=e.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0}}(n,s);if(i){i=e.props=U({},i);var r=e.attrs=e.attrs||{};for(var a in i)t.props&&a in t.props||(r[a]=i[a],delete i[a])}}function nt(t,e,n){var s=t.charAt(0);if("/"===s)return t;if("?"===s||"#"===s)return e+t;var i=e.split("/");n&&i[i.length-1]||i.pop();for(var r=t.replace(/^\//,"").split("/"),a=0;a<r.length;a++){var o=r[a];".."===o?i.pop():"."!==o&&i.push(o)}return""!==i[0]&&i.unshift(""),i.join("/")}function st(t){return t.replace(/\/(?:\s*\/)+/g,"/")}var it=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},rt=function t(e,n,s){return it(n)||(s=n||s,n=[]),s=s||{},e instanceof RegExp?function(t,e){var n=t.source.match(/\((?!\?)/g);if(n)for(var s=0;s<n.length;s++)e.push({name:s,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return ht(t,e)}(e,n):it(e)?function(e,n,s){for(var i=[],r=0;r<e.length;r++)i.push(t(e[r],n,s).source);return ht(new RegExp("(?:"+i.join("|")+")",gt(s)),n)}(e,n,s):function(t,e,n){return vt(ut(t,n),e,n)}(e,n,s)},at=ut,ot=mt,lt=vt,ct=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function ut(t,e){for(var n,s=[],i=0,r=0,a="",o=e&&e.delimiter||"/";null!=(n=ct.exec(t));){var l=n[0],c=n[1],u=n.index;if(a+=t.slice(r,u),r=u+l.length,c)a+=c[1];else{var d=t[r],m=n[2],p=n[3],f=n[4],h=n[5],g=n[6],v=n[7];a&&(s.push(a),a="");var w=null!=m&&null!=d&&d!==m,y="+"===g||"*"===g,A="?"===g||"*"===g,b=n[2]||o,_=f||h;s.push({name:p||i++,prefix:m||"",delimiter:b,optional:A,repeat:y,partial:w,asterisk:!!v,pattern:_?ft(_):v?".*":"[^"+pt(b)+"]+?"})}}return r<t.length&&(a+=t.substr(r)),a&&s.push(a),s}function dt(t){return encodeURI(t).replace(/[\/?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()}))}function mt(t,e){for(var n=new Array(t.length),s=0;s<t.length;s++)"object"==typeof t[s]&&(n[s]=new RegExp("^(?:"+t[s].pattern+")$",gt(e)));return function(e,s){for(var i="",r=e||{},a=(s||{}).pretty?dt:encodeURIComponent,o=0;o<t.length;o++){var l=t[o];if("string"!=typeof l){var c,u=r[l.name];if(null==u){if(l.optional){l.partial&&(i+=l.prefix);continue}throw new TypeError('Expected "'+l.name+'" to be defined')}if(it(u)){if(!l.repeat)throw new TypeError('Expected "'+l.name+'" to not repeat, but received `'+JSON.stringify(u)+"`");if(0===u.length){if(l.optional)continue;throw new TypeError('Expected "'+l.name+'" to not be empty')}for(var d=0;d<u.length;d++){if(c=a(u[d]),!n[o].test(c))throw new TypeError('Expected all "'+l.name+'" to match "'+l.pattern+'", but received `'+JSON.stringify(c)+"`");i+=(0===d?l.prefix:l.delimiter)+c}}else{if(c=l.asterisk?encodeURI(u).replace(/[?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})):a(u),!n[o].test(c))throw new TypeError('Expected "'+l.name+'" to match "'+l.pattern+'", but received "'+c+'"');i+=l.prefix+c}}else i+=l}return i}}function pt(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function ft(t){return t.replace(/([=!:$\/()])/g,"\\$1")}function ht(t,e){return t.keys=e,t}function gt(t){return t&&t.sensitive?"":"i"}function vt(t,e,n){it(e)||(n=e||n,e=[]);for(var s=(n=n||{}).strict,i=!1!==n.end,r="",a=0;a<t.length;a++){var o=t[a];if("string"==typeof o)r+=pt(o);else{var l=pt(o.prefix),c="(?:"+o.pattern+")";e.push(o),o.repeat&&(c+="(?:"+l+c+")*"),r+=c=o.optional?o.partial?l+"("+c+")?":"(?:"+l+"("+c+"))?":l+"("+c+")"}}var u=pt(n.delimiter||"/"),d=r.slice(-u.length)===u;return s||(r=(d?r.slice(0,-u.length):r)+"(?:"+u+"(?=$))?"),r+=i?"$":s&&d?"":"(?="+u+"|$)",ht(new RegExp("^"+r,gt(n)),e)}rt.parse=at,rt.compile=function(t,e){return mt(ut(t,e),e)},rt.tokensToFunction=ot,rt.tokensToRegExp=lt;var wt=Object.create(null);function yt(t,e,n){e=e||{};try{var s=wt[t]||(wt[t]=rt.compile(t));return"string"==typeof e.pathMatch&&(e[0]=e.pathMatch),s(e,{pretty:!0})}catch(t){return""}finally{delete e[0]}}function At(t,e,n,s){var i="string"==typeof t?{path:t}:t;if(i._normalized)return i;if(i.name){var r=(i=U({},t)).params;return r&&"object"==typeof r&&(i.params=U({},r)),i}if(!i.path&&i.params&&e){(i=U({},i))._normalized=!0;var a=U(U({},e.params),i.params);if(e.name)i.name=e.name,i.params=a;else if(e.matched.length){var o=e.matched[e.matched.length-1].path;i.path=yt(o,a,e.path)}return i}var l=function(t){var e="",n="",s=t.indexOf("#");s>=0&&(e=t.slice(s),t=t.slice(0,s));var i=t.indexOf("?");return i>=0&&(n=t.slice(i+1),t=t.slice(0,i)),{path:t,query:n,hash:e}}(i.path||""),c=e&&e.path||"/",u=l.path?nt(l.path,c,n||i.append):c,d=function(t,e,n){void 0===e&&(e={});var s,i=n||q;try{s=i(t||"")}catch(t){s={}}for(var r in e){var a=e[r];s[r]=Array.isArray(a)?a.map(V):V(a)}return s}(l.query,i.query,s&&s.options.parseQuery),m=i.hash||l.hash;return m&&"#"!==m.charAt(0)&&(m="#"+m),{_normalized:!0,path:u,query:d,hash:m}}var bt,_t=function(){},Ct={name:"RouterLink",props:{to:{type:[String,Object],required:!0},tag:{type:String,default:"a"},custom:Boolean,exact:Boolean,exactPath:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:"page"},event:{type:[String,Array],default:"click"}},render:function(t){var e=this,n=this.$router,s=this.$route,i=n.resolve(this.to,s,this.append),r=i.location,a=i.route,o=i.href,l={},c=n.options.linkActiveClass,u=n.options.linkExactActiveClass,d=null==c?"router-link-active":c,m=null==u?"router-link-exact-active":u,p=null==this.activeClass?d:this.activeClass,f=null==this.exactActiveClass?m:this.exactActiveClass,h=a.redirectedFrom?W(null,At(a.redirectedFrom),null,n):a;l[f]=X(s,h,this.exactPath),l[p]=this.exact||this.exactPath?l[f]:function(t,e){return 0===t.path.replace(H,"/").indexOf(e.path.replace(H,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(s,h);var g=l[f]?this.ariaCurrentValue:null,v=function(t){xt(t)&&(e.replace?n.replace(r,_t):n.push(r,_t))},w={click:xt};Array.isArray(this.event)?this.event.forEach((function(t){w[t]=v})):w[this.event]=v;var y={class:l},A=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:o,route:a,navigate:v,isActive:l[p],isExactActive:l[f]});if(A){if(1===A.length)return A[0];if(A.length>1||!A.length)return 0===A.length?t():t("span",{},A)}if("a"===this.tag)y.on=w,y.attrs={href:o,"aria-current":g};else{var b=Tt(this.$slots.default);if(b){b.isStatic=!1;var _=b.data=U({},b.data);for(var C in _.on=_.on||{},_.on){var x=_.on[C];C in w&&(_.on[C]=Array.isArray(x)?x:[x])}for(var T in w)T in _.on?_.on[T].push(w[T]):_.on[T]=v;var S=b.data.attrs=U({},b.data.attrs);S.href=o,S["aria-current"]=g}else y.on=w}return t(this.tag,y,this.$slots.default)}};function xt(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey||t.defaultPrevented||void 0!==t.button&&0!==t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function Tt(t){if(t)for(var e,n=0;n<t.length;n++){if("a"===(e=t[n]).tag)return e;if(e.children&&(e=Tt(e.children)))return e}}var St="undefined"!=typeof window;function kt(t,e,n,s,i){var r=e||[],a=n||Object.create(null),o=s||Object.create(null);t.forEach((function(t){Et(r,a,o,t,i)}));for(var l=0,c=r.length;l<c;l++)"*"===r[l]&&(r.push(r.splice(l,1)[0]),c--,l--);return{pathList:r,pathMap:a,nameMap:o}}function Et(t,e,n,s,i,r){var a=s.path,o=s.name,l=s.pathToRegexpOptions||{},c=function(t,e,n){return n||(t=t.replace(/\/$/,"")),"/"===t[0]||null==e?t:st(e.path+"/"+t)}(a,i,l.strict);"boolean"==typeof s.caseSensitive&&(l.sensitive=s.caseSensitive);var u={path:c,regex:Lt(c,l),components:s.components||{default:s.component},alias:s.alias?"string"==typeof s.alias?[s.alias]:s.alias:[],instances:{},enteredCbs:{},name:o,parent:i,matchAs:r,redirect:s.redirect,beforeEnter:s.beforeEnter,meta:s.meta||{},props:null==s.props?{}:s.components?s.props:{default:s.props}};if(s.children&&s.children.forEach((function(s){var i=r?st(r+"/"+s.path):void 0;Et(t,e,n,s,u,i)})),e[u.path]||(t.push(u.path),e[u.path]=u),void 0!==s.alias)for(var d=Array.isArray(s.alias)?s.alias:[s.alias],m=0;m<d.length;++m){var p={path:d[m],children:s.children};Et(t,e,n,p,i,u.path||"/")}o&&(n[o]||(n[o]=u))}function Lt(t,e){return rt(t,[],e)}function Nt(t,e){var n=kt(t),s=n.pathList,i=n.pathMap,r=n.nameMap;function a(t,n,a){var l=At(t,n,!1,e),c=l.name;if(c){var u=r[c];if(!u)return o(null,l);var d=u.regex.keys.filter((function(t){return!t.optional})).map((function(t){return t.name}));if("object"!=typeof l.params&&(l.params={}),n&&"object"==typeof n.params)for(var m in n.params)!(m in l.params)&&d.indexOf(m)>-1&&(l.params[m]=n.params[m]);return l.path=yt(u.path,l.params),o(u,l,a)}if(l.path){l.params={};for(var p=0;p<s.length;p++){var f=s[p],h=i[f];if(Ft(h.regex,l.path,l.params))return o(h,l,a)}}return o(null,l)}function o(t,n,s){return t&&t.redirect?function(t,n){var s=t.redirect,i="function"==typeof s?s(W(t,n,null,e)):s;if("string"==typeof i&&(i={path:i}),!i||"object"!=typeof i)return o(null,n);var l=i,c=l.name,u=l.path,d=n.query,m=n.hash,p=n.params;if(d=l.hasOwnProperty("query")?l.query:d,m=l.hasOwnProperty("hash")?l.hash:m,p=l.hasOwnProperty("params")?l.params:p,c)return r[c],a({_normalized:!0,name:c,query:d,hash:m,params:p},void 0,n);if(u){var f=function(t,e){return nt(t,e.parent?e.parent.path:"/",!0)}(u,t);return a({_normalized:!0,path:yt(f,p),query:d,hash:m},void 0,n)}return o(null,n)}(t,s||n):t&&t.matchAs?function(t,e,n){var s=a({_normalized:!0,path:yt(n,e.params)});if(s){var i=s.matched,r=i[i.length-1];return e.params=s.params,o(r,e)}return o(null,e)}(0,n,t.matchAs):W(t,n,s,e)}return{match:a,addRoute:function(t,e){var n="object"!=typeof t?r[t]:void 0;kt([e||t],s,i,r,n),n&&n.alias.length&&kt(n.alias.map((function(t){return{path:t,children:[e]}})),s,i,r,n)},getRoutes:function(){return s.map((function(t){return i[t]}))},addRoutes:function(t){kt(t,s,i,r)}}}function Ft(t,e,n){var s=e.match(t);if(!s)return!1;if(!n)return!0;for(var i=1,r=s.length;i<r;++i){var a=t.keys[i-1];a&&(n[a.name||"pathMatch"]="string"==typeof s[i]?z(s[i]):s[i])}return!0}var Pt=St&&window.performance&&window.performance.now?window.performance:Date;function It(){return Pt.now().toFixed(3)}var Dt=It();function Ot(){return Dt}function Ut(t){return Dt=t}var Bt=Object.create(null);function Rt(){"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual");var t=window.location.protocol+"//"+window.location.host,e=window.location.href.replace(t,""),n=U({},window.history.state);return n.key=Ot(),window.history.replaceState(n,"",e),window.addEventListener("popstate",zt),function(){window.removeEventListener("popstate",zt)}}function jt(t,e,n,s){if(t.app){var i=t.options.scrollBehavior;i&&t.app.$nextTick((function(){var r=function(){var t=Ot();if(t)return Bt[t]}(),a=i.call(t,e,n,s?r:null);a&&("function"==typeof a.then?a.then((function(t){Wt(t,r)})).catch((function(t){})):Wt(a,r))}))}}function Mt(){var t=Ot();t&&(Bt[t]={x:window.pageXOffset,y:window.pageYOffset})}function zt(t){Mt(),t.state&&t.state.key&&Ut(t.state.key)}function Vt(t){return $t(t.x)||$t(t.y)}function qt(t){return{x:$t(t.x)?t.x:window.pageXOffset,y:$t(t.y)?t.y:window.pageYOffset}}function $t(t){return"number"==typeof t}var Ht=/^#\d/;function Wt(t,e){var n,s="object"==typeof t;if(s&&"string"==typeof t.selector){var i=Ht.test(t.selector)?document.getElementById(t.selector.slice(1)):document.querySelector(t.selector);if(i){var r=t.offset&&"object"==typeof t.offset?t.offset:{};e=function(t,e){var n=document.documentElement.getBoundingClientRect(),s=t.getBoundingClientRect();return{x:s.left-n.left-e.x,y:s.top-n.top-e.y}}(i,r={x:$t((n=r).x)?n.x:0,y:$t(n.y)?n.y:0})}else Vt(t)&&(e=qt(t))}else s&&Vt(t)&&(e=qt(t));e&&("scrollBehavior"in document.documentElement.style?window.scrollTo({left:e.x,top:e.y,behavior:t.behavior}):window.scrollTo(e.x,e.y))}var Gt,Yt=St&&(-1===(Gt=window.navigator.userAgent).indexOf("Android 2.")&&-1===Gt.indexOf("Android 4.0")||-1===Gt.indexOf("Mobile Safari")||-1!==Gt.indexOf("Chrome")||-1!==Gt.indexOf("Windows Phone"))&&window.history&&"function"==typeof window.history.pushState;function Kt(t,e){Mt();var n=window.history;try{if(e){var s=U({},n.state);s.key=Ot(),n.replaceState(s,"",t)}else n.pushState({key:Ut(It())},"",t)}catch(n){window.location[e?"replace":"assign"](t)}}function Qt(t){Kt(t,!0)}var Xt={redirected:2,aborted:4,cancelled:8,duplicated:16};function Jt(t,e){return Zt(t,e,Xt.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Zt(t,e,n,s){var i=new Error(s);return i._isRouter=!0,i.from=t,i.to=e,i.type=n,i}var te=["params","query","hash"];function ee(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function ne(t,e){return ee(t)&&t._isRouter&&(null==e||t.type===e)}function se(t,e,n){var s=function(i){i>=t.length?n():t[i]?e(t[i],(function(){s(i+1)})):s(i+1)};s(0)}function ie(t,e){return re(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function re(t){return Array.prototype.concat.apply([],t)}var ae="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function oe(t){var e=!1;return function(){for(var n=[],s=arguments.length;s--;)n[s]=arguments[s];if(!e)return e=!0,t.apply(this,n)}}var le=function(t,e){this.router=t,this.base=function(t){if(!t)if(St){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}(e),this.current=Y,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function ce(t,e,n,s){var i=ie(t,(function(t,s,i,r){var a=function(t,e){return"function"!=typeof t&&(t=bt.extend(t)),t.options[e]}(t,e);if(a)return Array.isArray(a)?a.map((function(t){return n(t,s,i,r)})):n(a,s,i,r)}));return re(s?i.reverse():i)}function ue(t,e){if(e)return function(){return t.apply(e,arguments)}}le.prototype.listen=function(t){this.cb=t},le.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},le.prototype.onError=function(t){this.errorCbs.push(t)},le.prototype.transitionTo=function(t,e,n){var s,i=this;try{s=this.router.match(t,this.current)}catch(t){throw this.errorCbs.forEach((function(e){e(t)})),t}var r=this.current;this.confirmTransition(s,(function(){i.updateRoute(s),e&&e(s),i.ensureURL(),i.router.afterHooks.forEach((function(t){t&&t(s,r)})),i.ready||(i.ready=!0,i.readyCbs.forEach((function(t){t(s)})))}),(function(t){n&&n(t),t&&!i.ready&&(ne(t,Xt.redirected)&&r===Y||(i.ready=!0,i.readyErrorCbs.forEach((function(e){e(t)}))))}))},le.prototype.confirmTransition=function(t,e,n){var s=this,i=this.current;this.pending=t;var r,a,o=function(t){!ne(t)&&ee(t)&&(s.errorCbs.length?s.errorCbs.forEach((function(e){e(t)})):O.error(t)),n&&n(t)},l=t.matched.length-1,c=i.matched.length-1;if(X(t,i)&&l===c&&t.matched[l]===i.matched[c])return this.ensureURL(),t.hash&&jt(this.router,i,t,!1),o(((a=Zt(r=i,t,Xt.duplicated,'Avoided redundant navigation to current location: "'+r.fullPath+'".')).name="NavigationDuplicated",a));var u,d=function(t,e){var n,s=Math.max(t.length,e.length);for(n=0;n<s&&t[n]===e[n];n++);return{updated:e.slice(0,n),activated:e.slice(n),deactivated:t.slice(n)}}(this.current.matched,t.matched),m=d.updated,p=d.deactivated,f=d.activated,h=[].concat(function(t){return ce(t,"beforeRouteLeave",ue,!0)}(p),this.router.beforeHooks,function(t){return ce(t,"beforeRouteUpdate",ue)}(m),f.map((function(t){return t.beforeEnter})),(u=f,function(t,e,n){var s=!1,i=0,r=null;ie(u,(function(t,e,a,o){if("function"==typeof t&&void 0===t.cid){s=!0,i++;var l,c=oe((function(e){var s;((s=e).__esModule||ae&&"Module"===s[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:bt.extend(e),a.components[o]=e,--i<=0&&n()})),u=oe((function(t){var e="Failed to resolve async component "+o+": "+t;r||(r=ee(t)?t:new Error(e),n(r))}));try{l=t(c,u)}catch(t){u(t)}if(l)if("function"==typeof l.then)l.then(c,u);else{var d=l.component;d&&"function"==typeof d.then&&d.then(c,u)}}})),s||n()})),g=function(e,n){if(s.pending!==t)return o(Jt(i,t));try{e(t,i,(function(e){!1===e?(s.ensureURL(!0),o(function(t,e){return Zt(t,e,Xt.aborted,'Navigation aborted from "'+t.fullPath+'" to "'+e.fullPath+'" via a navigation guard.')}(i,t))):ee(e)?(s.ensureURL(!0),o(e)):"string"==typeof e||"object"==typeof e&&("string"==typeof e.path||"string"==typeof e.name)?(o(function(t,e){return Zt(t,e,Xt.redirected,'Redirected when going from "'+t.fullPath+'" to "'+function(t){if("string"==typeof t)return t;if("path"in t)return t.path;var e={};return te.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}(e)+'" via a navigation guard.')}(i,t)),"object"==typeof e&&e.replace?s.replace(e):s.push(e)):n(e)}))}catch(t){o(t)}};se(h,g,(function(){var n=function(t){return ce(t,"beforeRouteEnter",(function(t,e,n,s){return function(t,e,n){return function(s,i,r){return t(s,i,(function(t){"function"==typeof t&&(e.enteredCbs[n]||(e.enteredCbs[n]=[]),e.enteredCbs[n].push(t)),r(t)}))}}(t,n,s)}))}(f);se(n.concat(s.router.resolveHooks),g,(function(){if(s.pending!==t)return o(Jt(i,t));s.pending=null,e(t),s.router.app&&s.router.app.$nextTick((function(){Z(t)}))}))}))},le.prototype.updateRoute=function(t){this.current=t,this.cb&&this.cb(t)},le.prototype.setupListeners=function(){},le.prototype.teardown=function(){this.listeners.forEach((function(t){t()})),this.listeners=[],this.current=Y,this.pending=null};var de=function(t){function e(e,n){t.call(this,e,n),this._startLocation=me(this.base)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,s=Yt&&n;s&&this.listeners.push(Rt());var i=function(){var n=t.current,i=me(t.base);t.current===Y&&i===t._startLocation||t.transitionTo(i,(function(t){s&&jt(e,t,n,!0)}))};window.addEventListener("popstate",i),this.listeners.push((function(){window.removeEventListener("popstate",i)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){Kt(st(s.base+t.fullPath)),jt(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){Qt(st(s.base+t.fullPath)),jt(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(me(this.base)!==this.current.fullPath){var e=st(this.base+this.current.fullPath);t?Kt(e):Qt(e)}},e.prototype.getCurrentLocation=function(){return me(this.base)},e}(le);function me(t){var e=window.location.pathname,n=e.toLowerCase(),s=t.toLowerCase();return!t||n!==s&&0!==n.indexOf(st(s+"/"))||(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var pe=function(t){function e(e,n,s){t.call(this,e,n),s&&function(t){var e=me(t);if(!/^\/#/.test(e))return window.location.replace(st(t+"/#"+e)),!0}(this.base)||fe()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router.options.scrollBehavior,n=Yt&&e;n&&this.listeners.push(Rt());var s=function(){var e=t.current;fe()&&t.transitionTo(he(),(function(s){n&&jt(t.router,s,e,!0),Yt||we(s.fullPath)}))},i=Yt?"popstate":"hashchange";window.addEventListener(i,s),this.listeners.push((function(){window.removeEventListener(i,s)}))}},e.prototype.push=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){ve(t.fullPath),jt(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){we(t.fullPath),jt(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;he()!==e&&(t?ve(e):we(e))},e.prototype.getCurrentLocation=function(){return he()},e}(le);function fe(){var t=he();return"/"===t.charAt(0)||(we("/"+t),!1)}function he(){var t=window.location.href,e=t.indexOf("#");return e<0?"":t=t.slice(e+1)}function ge(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function ve(t){Yt?Kt(ge(t)):window.location.hash=t}function we(t){Yt?Qt(ge(t)):window.location.replace(ge(t))}var ye=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var s=this;this.transitionTo(t,(function(t){s.stack=s.stack.slice(0,s.index+1).concat(t),s.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this;this.transitionTo(t,(function(t){s.stack=s.stack.slice(0,s.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var s=this.stack[n];this.confirmTransition(s,(function(){var t=e.current;e.index=n,e.updateRoute(s),e.router.afterHooks.forEach((function(e){e&&e(s,t)}))}),(function(t){ne(t,Xt.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(le),Ae=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Nt(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!Yt&&!1!==t.fallback,this.fallback&&(e="hash"),St||(e="abstract"),this.mode=e,e){case"history":this.history=new de(this,t.base);break;case"hash":this.history=new pe(this,t.base,this.fallback);break;case"abstract":this.history=new ye(this,t.base)}},be={currentRoute:{configurable:!0}};Ae.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},be.currentRoute.get=function(){return this.history&&this.history.current},Ae.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()})),!this.app){this.app=t;var n=this.history;if(n instanceof de||n instanceof pe){var s=function(t){n.setupListeners(),function(t){var s=n.current,i=e.options.scrollBehavior;Yt&&i&&"fullPath"in t&&jt(e,t,s,!1)}(t)};n.transitionTo(n.getCurrentLocation(),s,s)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},Ae.prototype.beforeEach=function(t){return Ce(this.beforeHooks,t)},Ae.prototype.beforeResolve=function(t){return Ce(this.resolveHooks,t)},Ae.prototype.afterEach=function(t){return Ce(this.afterHooks,t)},Ae.prototype.onReady=function(t,e){this.history.onReady(t,e)},Ae.prototype.onError=function(t){this.history.onError(t)},Ae.prototype.push=function(t,e,n){var s=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){s.history.push(t,e,n)}));this.history.push(t,e,n)},Ae.prototype.replace=function(t,e,n){var s=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){s.history.replace(t,e,n)}));this.history.replace(t,e,n)},Ae.prototype.go=function(t){this.history.go(t)},Ae.prototype.back=function(){this.go(-1)},Ae.prototype.forward=function(){this.go(1)},Ae.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},Ae.prototype.resolve=function(t,e,n){var s=At(t,e=e||this.history.current,n,this),i=this.match(s,e),r=i.redirectedFrom||i.fullPath,a=function(t,e,n){var s="hash"===n?"#"+e:e;return t?st(t+"/"+s):s}(this.history.base,r,this.mode);return{location:s,route:i,href:a,normalizedTo:s,resolved:i}},Ae.prototype.getRoutes=function(){return this.matcher.getRoutes()},Ae.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==Y&&this.history.transitionTo(this.history.getCurrentLocation())},Ae.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==Y&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(Ae.prototype,be);var _e=Ae;function Ce(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}Ae.install=function t(e){if(!t.installed||bt!==e){t.installed=!0,bt=e;var n=function(t){return void 0!==t},s=function(t,e){var s=t.$options._parentVnode;n(s)&&n(s=s.data)&&n(s=s.registerRouteInstance)&&s(t,e)};e.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,s(this,this)},destroyed:function(){s(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("RouterView",tt),e.component("RouterLink",Ct);var i=e.config.optionMergeStrategies;i.beforeRouteEnter=i.beforeRouteLeave=i.beforeRouteUpdate=i.created}},Ae.version="3.6.5",Ae.isNavigationFailure=ne,Ae.NavigationFailureType=Xt,Ae.START_LOCATION=Y,St&&window.Vue&&window.Vue.use(Ae),l.Ay.use(_e);const xe=_e.prototype.push;_e.prototype.push=function(t,e,n){return e||n?xe.call(this,t,e,n):xe.call(this,t).catch((t=>t))};const Te=new _e({mode:"history",base:(0,u.Jv)("/apps/files"),linkActiveClass:"active",routes:[{path:"/",redirect:{name:"filelist",params:{view:"files"}}},{path:"/:view/:fileid(\\d+)?",name:"filelist",props:!0}],stringifyQuery(t){const e=D.stringify(t).replace(/%2F/gim,"/");return e?"?"+e:""}});function Se(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var ke=s(96763);var Ee=s(22378),Le=s(61338),Ne=s(53334);const Fe={name:"CogIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Pe=s(14486);const Ie=(0,Pe.A)(Fe,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon cog-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var De=s(42530),Oe=s(52439),Ue=s(6695),Be=s(38613),Re=s(26287);const je=(0,Be.C)("files","viewConfigs",{}),Me=function(){const t=(0,r.nY)("viewconfig",{state:()=>({viewConfig:je}),getters:{getConfig:t=>e=>t.viewConfig[e]||{}},actions:{onUpdate(t,e,n){this.viewConfig[t]||l.Ay.set(this.viewConfig,t,{}),l.Ay.set(this.viewConfig[t],e,n)},async update(t,e,n){Re.A.put((0,u.Jv)("/apps/files/api/v1/views/".concat(t,"/").concat(e)),{value:n}),(0,Le.Ic)("files:viewconfig:updated",{view:t,key:e,value:n})},setSortingBy(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"basename",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"files";this.update(e,"sorting_mode",t),this.update(e,"sorting_direction","asc")},toggleSortingDirection(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"files";const e="asc"===(this.getConfig(t)||{sorting_direction:"asc"}).sorting_direction?"desc":"asc";this.update(t,"sorting_direction",e)}}}),e=t(...arguments);return e._initialized||((0,Le.B1)("files:viewconfig:updated",(function(t){let{view:n,key:s,value:i}=t;e.onUpdate(n,s,i)})),e._initialized=!0),e},ze=(0,s(53529).YK)().setApp("files").detectUser().build();function Ve(t,e,n){var s,i=n||{},r=i.noTrailing,a=void 0!==r&&r,o=i.noLeading,l=void 0!==o&&o,c=i.debounceMode,u=void 0===c?void 0:c,d=!1,m=0;function p(){s&&clearTimeout(s)}function f(){for(var n=arguments.length,i=new Array(n),r=0;r<n;r++)i[r]=arguments[r];var o=this,c=Date.now()-m;function f(){m=Date.now(),e.apply(o,i)}function h(){s=void 0}d||(l||!u||s||f(),p(),void 0===u&&c>t?l?(m=Date.now(),a||(s=setTimeout(u?h:f,t))):f():!0!==a&&(s=setTimeout(u?h:f,void 0===u?t-c:t)))}return f.cancel=function(t){var e=(t||{}).upcomingOnly,n=void 0!==e&&e;p(),d=!n},f}var qe=s(85168);const $e={name:"ChartPieIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},He=(0,Pe.A)($e,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon chart-pie-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var We=s(95101);const Ge={name:"NavigationQuota",components:{ChartPie:He,NcAppNavigationItem:Oe.A,NcProgressBar:We.A},data:()=>({loadingStorageStats:!1,storageStats:(0,Be.C)("files","storageStats",null)}),computed:{storageStatsTitle(){var t,e,n;const s=(0,a.v7)(null===(t=this.storageStats)||void 0===t?void 0:t.used,!1,!1),i=(0,a.v7)(null===(e=this.storageStats)||void 0===e?void 0:e.quota,!1,!1);return(null===(n=this.storageStats)||void 0===n?void 0:n.quota)<0?this.t("files","{usedQuotaByte} used",{usedQuotaByte:s}):this.t("files","{used} of {quota} used",{used:s,quota:i})},storageStatsTooltip(){return this.storageStats.relative?this.t("files","{relative}% used",this.storageStats):""}},beforeMount(){setInterval(this.throttleUpdateStorageStats,6e4),(0,Le.B1)("files:node:created",this.throttleUpdateStorageStats),(0,Le.B1)("files:node:deleted",this.throttleUpdateStorageStats),(0,Le.B1)("files:node:moved",this.throttleUpdateStorageStats),(0,Le.B1)("files:node:updated",this.throttleUpdateStorageStats)},mounted(){var t,e;(null===(t=this.storageStats)||void 0===t?void 0:t.quota)>0&&(null===(e=this.storageStats)||void 0===e?void 0:e.free)<=0&&this.showStorageFullWarning()},methods:{debounceUpdateStorageStats:(Ye={}.atBegin,Ve(200,(function(t){this.updateStorageStats(t)}),{debounceMode:!1!==(void 0!==Ye&&Ye)})),throttleUpdateStorageStats:Ve(1e3,(function(t){this.updateStorageStats(t)})),async updateStorageStats(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if(!this.loadingStorageStats){this.loadingStorageStats=!0;try{var n,s,i,r;const t=await Re.A.get((0,u.Jv)("/apps/files/api/v1/stats"));if(null==t||null===(n=t.data)||void 0===n||!n.data)throw new Error("Invalid storage stats");(null===(s=this.storageStats)||void 0===s?void 0:s.free)>0&&(null===(i=t.data.data)||void 0===i?void 0:i.free)<=0&&(null===(r=t.data.data)||void 0===r?void 0:r.quota)>0&&this.showStorageFullWarning(),this.storageStats=t.data.data}catch(n){ze.error("Could not refresh storage stats",{error:n}),e&&(0,qe.Qg)(t("files","Could not refresh storage stats"))}finally{this.loadingStorageStats=!1}}},showStorageFullWarning(){(0,qe.Qg)(this.t("files","Your storage is full, files can not be updated or synced anymore!"))},t:Ne.Tl}};var Ye,Ke=s(85072),Qe=s.n(Ke),Xe=s(97825),Je=s.n(Xe),Ze=s(77659),tn=s.n(Ze),en=s(55056),nn=s.n(en),sn=s(10540),rn=s.n(sn),an=s(41113),on=s.n(an),ln=s(33149),cn={};cn.styleTagTransform=on(),cn.setAttributes=nn(),cn.insert=tn().bind(null,"head"),cn.domAPI=Je(),cn.insertStyleElement=rn(),Qe()(ln.A,cn),ln.A&&ln.A.locals&&ln.A.locals;const un=(0,Pe.A)(Ge,(function(){var t=this,e=t._self._c;return t.storageStats?e("NcAppNavigationItem",{staticClass:"app-navigation-entry__settings-quota",class:{"app-navigation-entry__settings-quota--not-unlimited":t.storageStats.quota>=0},attrs:{"aria-label":t.t("files","Storage informations"),loading:t.loadingStorageStats,name:t.storageStatsTitle,title:t.storageStatsTooltip,"data-cy-files-navigation-settings-quota":""},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.debounceUpdateStorageStats.apply(null,arguments)}}},[e("ChartPie",{attrs:{slot:"icon",size:20},slot:"icon"}),t._v(" "),t.storageStats.quota>=0?e("NcProgressBar",{attrs:{slot:"extra",error:t.storageStats.relative>80,value:Math.min(t.storageStats.relative,100)},slot:"extra"}):t._e()],1):t._e()}),[],!1,null,"063ed938",null).exports;var dn=s(89902),mn=s(947),pn=s(32073);const fn={name:"ClipboardIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},hn=(0,Pe.A)(fn,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon clipboard-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var gn=s(44492);const vn={name:"Setting",props:{el:{type:Function,required:!0}},mounted(){this.$el.appendChild(this.el())}},wn=(0,Pe.A)(vn,(function(){return(0,this._self._c)("div")}),[],!1,null,null,null).exports,yn=(0,Be.C)("files","config",{show_hidden:!1,crop_image_previews:!0,sort_favorites_first:!0,sort_folders_first:!0,grid_view:!1}),An=function(){const t=(0,r.nY)("userconfig",{state:()=>({userConfig:yn}),actions:{onUpdate(t,e){l.Ay.set(this.userConfig,t,e)},async update(t,e){await Re.A.put((0,u.Jv)("/apps/files/api/v1/config/"+t),{value:e}),(0,Le.Ic)("files:config:updated",{key:t,value:e})}}})(...arguments);return t._initialized||((0,Le.B1)("files:config:updated",(function(e){let{key:n,value:s}=e;t.onUpdate(n,s)})),t._initialized=!0),t},bn={name:"Settings",components:{Clipboard:hn,NcAppSettingsDialog:dn.N,NcAppSettingsSection:mn.A,NcCheckboxRadioSwitch:pn.A,NcInputField:gn.A,Setting:wn},props:{open:{type:Boolean,default:!1}},setup:()=>({userConfigStore:An()}),data(){var t,e,n;return{settings:(null===(t=window.OCA)||void 0===t||null===(t=t.Files)||void 0===t||null===(t=t.Settings)||void 0===t?void 0:t.settings)||[],webdavUrl:(0,u.dC)("dav/files/"+encodeURIComponent(null===(e=(0,o.HW)())||void 0===e?void 0:e.uid)),webdavDocs:"https://docs.nextcloud.com/server/stable/go.php?to=user-webdav",appPasswordUrl:(0,u.Jv)("/settings/user/security#generate-app-token-section"),webdavUrlCopied:!1,enableGridView:null===(n=(0,Be.C)("core","config",[])["enable_non-accessible_features"])||void 0===n||n}},computed:{userConfig(){return this.userConfigStore.userConfig}},beforeMount(){this.settings.forEach((t=>t.open()))},beforeDestroy(){this.settings.forEach((t=>t.close()))},methods:{onClose(){this.$emit("close")},setConfig(t,e){this.userConfigStore.update(t,e)},async copyCloudId(){document.querySelector("input#webdav-url-input").select(),navigator.clipboard?(await navigator.clipboard.writeText(this.webdavUrl),this.webdavUrlCopied=!0,(0,qe.Te)(t("files","WebDAV URL copied to clipboard")),setTimeout((()=>{this.webdavUrlCopied=!1}),5e3)):(0,qe.Qg)(t("files","Clipboard is not available"))},t:Ne.Tl}},_n=bn;var Cn=s(60335),xn={};xn.styleTagTransform=on(),xn.setAttributes=nn(),xn.insert=tn().bind(null,"head"),xn.domAPI=Je(),xn.insertStyleElement=rn(),Qe()(Cn.A,xn),Cn.A&&Cn.A.locals&&Cn.A.locals;const Tn=(0,Pe.A)(_n,(function(){var t=this,e=t._self._c;return e("NcAppSettingsDialog",{attrs:{open:t.open,"show-navigation":!0,name:t.t("files","Files settings")},on:{"update:open":t.onClose}},[e("NcAppSettingsSection",{attrs:{id:"settings",name:t.t("files","Files settings")}},[e("NcCheckboxRadioSwitch",{attrs:{"data-cy-files-settings-setting":"sort_favorites_first",checked:t.userConfig.sort_favorites_first},on:{"update:checked":function(e){return t.setConfig("sort_favorites_first",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Sort favorites first"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{"data-cy-files-settings-setting":"sort_folders_first",checked:t.userConfig.sort_folders_first},on:{"update:checked":function(e){return t.setConfig("sort_folders_first",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Sort folders before files"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{"data-cy-files-settings-setting":"show_hidden",checked:t.userConfig.show_hidden},on:{"update:checked":function(e){return t.setConfig("show_hidden",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Show hidden files"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{"data-cy-files-settings-setting":"crop_image_previews",checked:t.userConfig.crop_image_previews},on:{"update:checked":function(e){return t.setConfig("crop_image_previews",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Crop image previews"))+"\n\t\t")]),t._v(" "),t.enableGridView?e("NcCheckboxRadioSwitch",{attrs:{"data-cy-files-settings-setting":"grid_view",checked:t.userConfig.grid_view},on:{"update:checked":function(e){return t.setConfig("grid_view",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Enable the grid view"))+"\n\t\t")]):t._e()],1),t._v(" "),0!==t.settings.length?e("NcAppSettingsSection",{attrs:{id:"more-settings",name:t.t("files","Additional settings")}},[t._l(t.settings,(function(t){return[e("Setting",{key:t.name,attrs:{el:t.el}})]}))],2):t._e(),t._v(" "),e("NcAppSettingsSection",{attrs:{id:"webdav",name:t.t("files","WebDAV")}},[e("NcInputField",{attrs:{id:"webdav-url-input",label:t.t("files","WebDAV URL"),"show-trailing-button":!0,success:t.webdavUrlCopied,"trailing-button-label":t.t("files","Copy to clipboard"),value:t.webdavUrl,readonly:"readonly",type:"url"},on:{focus:function(t){return t.target.select()},"trailing-button-click":t.copyCloudId},scopedSlots:t._u([{key:"trailing-button-icon",fn:function(){return[e("Clipboard",{attrs:{size:20}})]},proxy:!0}])}),t._v(" "),e("em",[e("a",{staticClass:"setting-link",attrs:{href:t.webdavDocs,target:"_blank",rel:"noreferrer noopener"}},[t._v("\n\t\t\t\t"+t._s(t.t("files","Use this address to access your Files via WebDAV"))+" ↗\n\t\t\t")])]),t._v(" "),e("br"),t._v(" "),e("em",[e("a",{staticClass:"setting-link",attrs:{href:t.appPasswordUrl}},[t._v("\n\t\t\t\t"+t._s(t.t("files","If you have enabled 2FA, you must create and use a new app password by clicking here."))+" ↗\n\t\t\t")])])],1)],1)}),[],!1,null,"00f09e69",null).exports,Sn={name:"Navigation",components:{Cog:Ie,NavigationQuota:un,NcAppNavigation:De.A,NcAppNavigationItem:Oe.A,NcIconSvgWrapper:Ue.A,SettingsModal:Tn},setup:()=>({viewConfigStore:Me()}),data:()=>({settingsOpened:!1}),computed:{currentViewId(){var t;return(null===(t=this.$route)||void 0===t||null===(t=t.params)||void 0===t?void 0:t.view)||"files"},currentView(){return this.views.find((t=>t.id===this.currentViewId))},views(){return this.$navigation.views},parentViews(){return this.views.filter((t=>!t.parent)).sort(((t,e)=>t.order-e.order))},childViews(){return this.views.filter((t=>!!t.parent)).reduce(((t,e)=>(t[e.parent]=[...t[e.parent]||[],e],t[e.parent].sort(((t,e)=>t.order-e.order)),t)),{})}},watch:{currentView(t,e){t.id!==(null==e?void 0:e.id)&&(this.$navigation.setActive(t),ze.debug("Navigation changed from ".concat(e.id," to ").concat(t.id),{from:e,to:t}),this.showView(t))}},beforeMount(){this.currentView&&(ze.debug("Navigation mounted. Showing requested view",{view:this.currentView}),this.showView(this.currentView))},methods:{useExactRouteMatching(t){var e;return(null===(e=this.childViews[t.id])||void 0===e?void 0:e.length)>0},showView(t){var e,n;null===(e=window)||void 0===e||null===(e=e.OCA)||void 0===e||null===(e=e.Files)||void 0===e||null===(e=e.Sidebar)||void 0===e||null===(n=e.close)||void 0===n||n.call(e),this.$navigation.setActive(t),(0,Le.Ic)("files:navigation:changed",t)},onToggleExpand(t){const e=this.isExpanded(t);t.expanded=!e,this.viewConfigStore.update(t.id,"expanded",!e)},isExpanded(t){var e;return"boolean"==typeof(null===(e=this.viewConfigStore.getConfig(t.id))||void 0===e?void 0:e.expanded)?!0===this.viewConfigStore.getConfig(t.id).expanded:!0===t.expanded},generateToNavigation(t){if(t.params){const{dir:e}=t.params;return{name:"filelist",params:t.params,query:{dir:e}}}return{name:"filelist",params:{view:t.id}}},openSettings(){this.settingsOpened=!0},onSettingsClose(){this.settingsOpened=!1},t:Ne.Tl}};var kn=s(56834),En={};En.styleTagTransform=on(),En.setAttributes=nn(),En.insert=tn().bind(null,"head"),En.domAPI=Je(),En.insertStyleElement=rn(),Qe()(kn.A,En),kn.A&&kn.A.locals&&kn.A.locals;const Ln=(0,Pe.A)(Sn,(function(){var t=this,e=t._self._c;return e("NcAppNavigation",{attrs:{"data-cy-files-navigation":"","aria-label":t.t("files","Files")},scopedSlots:t._u([{key:"list",fn:function(){return t._l(t.parentViews,(function(n){return e("NcAppNavigationItem",{key:n.id,attrs:{"allow-collapse":!0,"data-cy-files-navigation-item":n.id,exact:t.useExactRouteMatching(n),icon:n.iconClass,name:n.name,open:t.isExpanded(n),pinned:n.sticky,to:t.generateToNavigation(n)},on:{"update:open":function(e){return t.onToggleExpand(n)}}},[n.icon?e("NcIconSvgWrapper",{attrs:{slot:"icon",svg:n.icon},slot:"icon"}):t._e(),t._v(" "),t._l(t.childViews[n.id],(function(n){return e("NcAppNavigationItem",{key:n.id,attrs:{"data-cy-files-navigation-item":n.id,"exact-path":!0,icon:n.iconClass,name:n.name,to:t.generateToNavigation(n)}},[n.icon?e("NcIconSvgWrapper",{attrs:{slot:"icon",svg:n.icon},slot:"icon"}):t._e()],1)}))],2)}))},proxy:!0},{key:"footer",fn:function(){return[e("ul",{staticClass:"app-navigation-entry__settings"},[e("NavigationQuota"),t._v(" "),e("NcAppNavigationItem",{attrs:{"aria-label":t.t("files","Open the files app settings"),name:t.t("files","Files settings"),"data-cy-files-navigation-settings-button":""},on:{click:function(e){return e.preventDefault(),e.stopPropagation(),t.openSettings.apply(null,arguments)}}},[e("Cog",{attrs:{slot:"icon",size:20},slot:"icon"})],1)],1)]},proxy:!0}])},[t._v(" "),t._v(" "),e("SettingsModal",{attrs:{open:t.settingsOpened,"data-cy-files-navigation-settings":""},on:{close:t.onSettingsClose}})],1)}),[],!1,null,"476b6b93",null).exports;var Nn=s(87485),Fn=s(43627),Pn=s(38805),In=s(52129),Dn=s(41261),On=s(89979);const Un={name:"FormatListBulletedSquareIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Bn=(0,Pe.A)(Un,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon format-list-bulleted-square-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var Rn=s(18195),jn=s(9518),Mn=s(10833),zn=s(46222),Vn=s(27577);const qn={name:"AccountPlusIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},$n=(0,Pe.A)(qn,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon account-plus-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Hn={name:"ViewGridIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Wn=(0,Pe.A)(Hn,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon view-grid-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var Gn=s(49981);const Yn=new a.hY({id:"details",displayName:()=>(0,Ne.Tl)("files","Open details"),iconSvgInline:()=>Gn,enabled:t=>{var e,n,s;return 1===t.length&&!!t[0]&&!(null===(e=window)||void 0===e||null===(e=e.OCA)||void 0===e||null===(e=e.Files)||void 0===e||!e.Sidebar)&&null!==(n=(null===(s=t[0].root)||void 0===s?void 0:s.startsWith("/files/"))&&t[0].permissions!==a.aX.NONE)&&void 0!==n&&n},async exec(t,e,n){try{return await window.OCA.Files.Sidebar.open(t.path),window.OCP.Files.Router.goToRoute(null,{view:e.id,fileid:t.fileid},{dir:n},!0),null}catch(t){return ze.error("Error while opening sidebar",{error:t}),!1}},order:-50}),Kn=function(){const t=(0,r.nY)("files",{state:()=>({files:{},roots:{}}),getters:{getNode:t=>e=>t.files[e],getNodes:t=>e=>e.map((e=>t.files[e])).filter(Boolean),getRoot:t=>e=>t.roots[e]},actions:{updateNodes(t){const e=t.reduce(((t,e)=>e.fileid?(t[e.fileid]=e,t):(ze.error("Trying to update/set a node without fileid",e),t)),{});l.Ay.set(this,"files",{...this.files,...e})},deleteNodes(t){t.forEach((t=>{t.fileid&&l.Ay.delete(this.files,t.fileid)}))},setRoot(t){let{service:e,root:n}=t;l.Ay.set(this.roots,e,n)},onDeletedNode(t){this.deleteNodes([t])},onCreatedNode(t){this.updateNodes([t])},onUpdatedNode(t){this.updateNodes([t])}}})(...arguments);return t._initialized||((0,Le.B1)("files:node:created",t.onCreatedNode),(0,Le.B1)("files:node:deleted",t.onDeletedNode),(0,Le.B1)("files:node:updated",t.onUpdatedNode),t._initialized=!0),t},Qn=function(){const t=Kn(),e=(0,r.nY)("paths",{state:()=>({paths:{}}),getters:{getPath:t=>(e,n)=>{if(t.paths[e])return t.paths[e][n]}},actions:{addPath(t){this.paths[t.service]||l.Ay.set(this.paths,t.service,{}),l.Ay.set(this.paths[t.service],t.path,t.fileid)},onCreatedNode(e){var n;const s=(null===(n=(0,a.bh)())||void 0===n||null===(n=n.active)||void 0===n?void 0:n.id)||"files";if(e.fileid){if(e.type===a.pt.Folder&&this.addPath({service:s,path:e.path,fileid:e.fileid}),"/"===e.dirname){const n=t.getRoot(s);return n._children||l.Ay.set(n,"_children",[]),void n._children.push(e.fileid)}if(this.paths[s][e.dirname]){const n=this.paths[s][e.dirname],i=t.getNode(n);return ze.debug("Path already exists, updating children",{parentFolder:i,node:e}),i?(i._children||l.Ay.set(i,"_children",[]),void i._children.push(e.fileid)):void ze.error("Parent folder not found",{parentId:n})}ze.debug("Parent path does not exists, skipping children update",{node:e})}else ze.error("Node has no fileid",{node:e})}}})(...arguments);return e._initialized||((0,Le.B1)("files:node:created",e.onCreatedNode),e._initialized=!0),e},Xn=(0,r.nY)("selection",{state:()=>({selected:[],lastSelection:[],lastSelectedIndex:null}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];l.Ay.set(this,"selected",[...new Set(t)])},setLastIndex(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;l.Ay.set(this,"lastSelection",t?this.selected:[]),l.Ay.set(this,"lastSelectedIndex",t)},reset(){l.Ay.set(this,"selected",[]),l.Ay.set(this,"lastSelection",[]),l.Ay.set(this,"lastSelectedIndex",null)}}});let Jn;const Zn=function(){return Jn=(0,Dn.g)(),(0,r.nY)("uploader",{state:()=>({queue:Jn.queue})})(...arguments)};function ts(t){return t instanceof Date?t.toISOString():String(t)}var es=s(91680),ns=s(49296),ss=s(71089),is=s(96763);class rs extends File{constructor(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];var n,s,i;super([],t,{type:"httpd/unix-directory"}),n=this,i=void 0,(s=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}(s="_contents"))in n?Object.defineProperty(n,s,{value:i,enumerable:!0,configurable:!0,writable:!0}):n[s]=i,this._contents=e}set contents(t){this._contents=t}get contents(){return this._contents}get size(){return this._computeDirectorySize(this)}get lastModified(){return 0===this._contents.length?Date.now():this._computeDirectoryMtime(this)}_computeDirectoryMtime(t){return t.contents.reduce(((t,e)=>e.lastModified>t?e.lastModified:t),0)}_computeDirectorySize(t){return t.contents.reduce(((t,e)=>t+e.size),0)}}const as=async t=>{if(t.isFile)return new Promise(((e,n)=>{t.file(e,n)}));ze.debug("Handling recursive file tree",{entry:t.name});const e=t,n=await os(e),s=(await Promise.all(n.map(as))).flat();return new rs(e.name,s)},os=t=>{const e=t.createReader();return new Promise(((t,n)=>{const s=[],i=()=>{e.readEntries((e=>{e.length?(s.push(...e),i()):t(s)}),(t=>{n(t)}))};i()}))},ls=async t=>{const e=(0,a.H4)();if(!await e.exists(t)){ze.debug("Directory does not exist, creating it",{absolutePath:t}),await e.createDirectory(t,{recursive:!0});const n=await e.stat(t,{details:!0,data:(0,a.VL)()});(0,Le.Ic)("files:node:created",(0,a.Al)(n.data))}},cs=async(t,e,n)=>{try{const s=t.filter((t=>n.find((e=>e.basename===(t instanceof File?t.name:t.basename))))).filter(Boolean),i=t.filter((t=>!s.includes(t))),{selected:r,renamed:a}=await(0,Dn.o)(e.path,s,n);return ze.debug("Conflict resolution",{uploads:i,selected:r,renamed:a}),0===r.length&&0===a.length?((0,qe.cf)((0,Ne.Tl)("files","Conflicts resolution skipped")),ze.info("User skipped the conflict resolution"),[]):[...i,...r,...a]}catch(t){is.error(t),(0,qe.Qg)((0,Ne.Tl)("files","Upload cancelled")),ze.error("User cancelled the upload")}return[]};s(18205);var us=s(53110),ds=s(36882),ms=s(39285),ps=s(49264);let fs;const hs=()=>(fs||(fs=new ps.A({concurrency:3})),fs);var gs;!function(t){t.MOVE="Move",t.COPY="Copy",t.MOVE_OR_COPY="move-or-copy"}(gs||(gs={}));const vs=t=>0!=(t.reduce(((t,e)=>Math.min(t,e.permissions)),a.aX.ALL)&a.aX.UPDATE),ws=t=>(t=>t.every((t=>{var e,n;return!JSON.parse(null!==(e=null===(n=t.attributes)||void 0===n?void 0:n["share-attributes"])&&void 0!==e?e:"[]").some((t=>"permissions"===t.scope&&!1===t.enabled&&"download"===t.key))})))(t);var ys,As=s(36117),bs=s(44719);const _s="/files/".concat(null===(ys=(0,o.HW)())||void 0===ys?void 0:ys.uid),Cs=(0,u.dC)("dav"+_s),xs=function(t){return t.split("").reduce((function(t,e){return(t=(t<<5)-t+e.charCodeAt(0))&t}),0)},Ts=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Cs;const e=(0,bs.UU)(t),n=t=>{null==e||e.setHeaders({"X-Requested-With":"XMLHttpRequest",requesttoken:null!=t?t:""})};return(0,o.zo)(n),n((0,o.do)()),(0,bs.Gu)().patch("fetch",((t,e)=>{const n=e.headers;return null!=n&&n.method&&(e.method=n.method,delete n.method),fetch(t,e)})),e}(),Ss=function(t){var e;const n=null===(e=(0,o.HW)())||void 0===e?void 0:e.uid;if(!n)throw new Error("No user id found");const s=t.props,i=(0,a.vb)(null==s?void 0:s.permissions),r=(s["owner-id"]||n).toString(),l=(0,u.dC)("dav"+_s+t.filename),c={id:(null==s?void 0:s.fileid)<0?xs(l):(null==s?void 0:s.fileid)||0,source:l,mtime:new Date(t.lastmod),mime:t.mime||"application/octet-stream",size:(null==s?void 0:s.size)||0,permissions:i,owner:r,root:_s,attributes:{...t,...s,hasPreview:null==s?void 0:s["has-preview"],failed:(null==s?void 0:s.fileid)<0}};return delete c.attributes.props,"file"===t.type?new a.ZH(c):new a.vd(c)},ks=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/";const e=new AbortController,n=(0,a.VL)();return new As.CancelablePromise((async(s,i,r)=>{r((()=>e.abort()));try{const i=await Ts.getDirectoryContents(t,{details:!0,data:n,includeSelf:!0,signal:e.signal}),r=i.data[0],a=i.data.slice(1);if(r.filename!==t)throw new Error("Root node does not match requested path");s({folder:Ss(r),contents:a.map((t=>{try{return Ss(t)}catch(e){return ze.error("Invalid node detected '".concat(t.basename,"'"),{error:e}),null}})).filter(Boolean)})}catch(t){i(t)}}))},Es=t=>{const e=t.filter((t=>t.type===a.pt.File)).length,n=t.filter((t=>t.type===a.pt.Folder)).length;return 0===e?(0,Ne.zw)("files","{folderCount} folder","{folderCount} folders",n,{folderCount:n}):0===n?(0,Ne.zw)("files","{fileCount} file","{fileCount} files",e,{fileCount:e}):1===e?(0,Ne.zw)("files","1 file and {folderCount} folder","1 file and {folderCount} folders",n,{folderCount:n}):1===n?(0,Ne.zw)("files","{fileCount} file and 1 folder","{fileCount} files and 1 folder",e,{fileCount:e}):(0,Ne.Tl)("files","{fileCount} files and {folderCount} folders",{fileCount:e,folderCount:n})},Ls=t=>vs(t)?ws(t)?gs.MOVE_OR_COPY:gs.MOVE:gs.COPY,Ns=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!e)return;if(e.type!==a.pt.Folder)throw new Error((0,Ne.Tl)("files","Destination is not a folder"));if(n===gs.MOVE&&t.dirname===e.path)throw new Error((0,Ne.Tl)("files","This file/folder is already in that directory"));if("".concat(e.path,"/").startsWith("".concat(t.path,"/")))throw new Error((0,Ne.Tl)("files","You cannot move a file/folder onto itself or into a subfolder of itself"));l.Ay.set(t,"status",a.zI.LOADING);const i=hs();return await i.add((async()=>{const i=t=>1===t?(0,Ne.Tl)("files","(copy)"):(0,Ne.Tl)("files","(copy %n)",void 0,t);try{const r=(0,a.H4)(),o=(0,Fn.join)(a.lJ,t.path),l=(0,Fn.join)(a.lJ,e.path);if(n===gs.COPY){let n=t.basename;if(!s){const e=await r.getDirectoryContents(l);n=function(t,e){const n={suffix:t=>"(".concat(t,")"),ignoreFileExtension:!1,...arguments.length>2&&void 0!==arguments[2]?arguments[2]:{}};let s=t,i=1;for(;e.includes(s);){const e=n.ignoreFileExtension?"":(0,Fn.extname)(t),r=(0,Fn.basename)(t,e);s="".concat(r," ").concat(n.suffix(i++)).concat(e)}return s}(t.basename,e.map((t=>t.basename)),{suffix:i,ignoreFileExtension:t.type===a.pt.Folder})}if(await r.copyFile(o,(0,Fn.join)(l,n)),t.dirname===e.path){const{data:t}=await r.stat((0,Fn.join)(l,n),{details:!0,data:(0,a.VL)()});(0,Le.Ic)("files:node:created",(0,a.Al)(t))}}else{const n=await ks(e.path);if((0,Dn.h)([t],n.contents))try{const{selected:s,renamed:i}=await(0,Dn.o)(e.path,[t],n.contents);if(!s.length&&!i.length)return await r.deleteFile(o),void(0,Le.Ic)("files:node:deleted",t)}catch(t){return void(0,qe.Qg)((0,Ne.Tl)("files","Move cancelled"))}await r.moveFile(o,(0,Fn.join)(l,t.basename)),(0,Le.Ic)("files:node:deleted",t)}}catch(t){if(t instanceof us.pe){var r,o,c;if(412===(null==t||null===(r=t.response)||void 0===r?void 0:r.status))throw new Error((0,Ne.Tl)("files","A file or folder with that name already exists in this folder"));if(423===(null==t||null===(o=t.response)||void 0===o?void 0:o.status))throw new Error((0,Ne.Tl)("files","The files are locked"));if(404===(null==t||null===(c=t.response)||void 0===c?void 0:c.status))throw new Error((0,Ne.Tl)("files","The file does not exist anymore"));if(t.message)throw new Error(t.message)}throw ze.debug(t),new Error}finally{l.Ay.set(t,"status",void 0)}}))},Fs=async function(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"/",n=arguments.length>2?arguments[2]:void 0;const s=n.map((t=>t.fileid)).filter(Boolean),i=(0,qe.a1)((0,Ne.Tl)("files","Choose destination")).allowDirectories(!0).setFilter((t=>0!=(t.permissions&a.aX.CREATE)&&!s.includes(t.fileid))).setMimeTypeFilter([]).setMultiSelect(!1).startAt(e);return new Promise(((e,s)=>{i.setButtonFactory(((s,i)=>{const r=[],a=(0,Fn.basename)(i),o=n.map((t=>t.dirname)),l=n.map((t=>t.path));return t!==gs.COPY&&t!==gs.MOVE_OR_COPY||r.push({label:a?(0,Ne.Tl)("files","Copy to {target}",{target:a},void 0,{escape:!1,sanitize:!1}):(0,Ne.Tl)("files","Copy"),type:"primary",icon:ds,async callback(t){e({destination:t[0],action:gs.COPY})}}),o.includes(i)||l.includes(i)||t!==gs.MOVE&&t!==gs.MOVE_OR_COPY||r.push({label:a?(0,Ne.Tl)("files","Move to {target}",{target:a},void 0,{escape:!1,sanitize:!1}):(0,Ne.Tl)("files","Move"),type:t===gs.MOVE?"primary":"secondary",icon:ms,async callback(t){e({destination:t[0],action:gs.MOVE})}}),r})),i.build().pick().catch((t=>{ze.debug(t),t instanceof qe.vT?s(new Error((0,Ne.Tl)("files","Cancelled move or copy operation"))):s(new Error((0,Ne.Tl)("files","Move or copy operation failed")))}))}))};new a.hY({id:"move-copy",displayName(t){switch(Ls(t)){case gs.MOVE:return(0,Ne.Tl)("files","Move");case gs.COPY:return(0,Ne.Tl)("files","Copy");case gs.MOVE_OR_COPY:return(0,Ne.Tl)("files","Move or copy")}},iconSvgInline:()=>ms,enabled:t=>!!t.every((t=>{var e;return null===(e=t.root)||void 0===e?void 0:e.startsWith("/files/")}))&&t.length>0&&(vs(t)||ws(t)),async exec(t,e,n){const s=Ls([t]);let i;try{i=await Fs(s,n,[t])}catch(t){return ze.error(t),!1}try{return await Ns(t,i.destination,i.action),!0}catch(t){return!!(t instanceof Error&&t.message)&&((0,qe.Qg)(t.message),null)}},async execBatch(t,e,n){const s=Ls(t),i=await Fs(s,n,t),r=t.map((async t=>{try{return await Ns(t,i.destination,i.action),!0}catch(e){return ze.error("Failed to ".concat(i.action," node"),{node:t,error:e}),!1}}));return await Promise.all(r)},order:15});var Ps=s(96763);const Is=async t=>{const e=t.filter((t=>"file"===t.kind||(ze.debug("Skipping dropped item",{kind:t.kind,type:t.type}),!1))).map((t=>{var e,n,s,i;return null!==(e=null!==(n=null==t||null===(s=t.getAsEntry)||void 0===s?void 0:s.call(t))&&void 0!==n?n:null==t||null===(i=t.webkitGetAsEntry)||void 0===i?void 0:i.call(t))&&void 0!==e?e:t}));let n=!1;const s=new rs("root");for(const t of e)if(t instanceof DataTransferItem){ze.warn("Could not get FilesystemEntry of item, falling back to file");const e=t.getAsFile();if(null===e){ze.warn("Could not process DataTransferItem",{type:t.type,kind:t.kind}),(0,qe.Qg)((0,Ne.Tl)("files","One of the dropped files could not be processed"));continue}if("httpd/unix-directory"===e.type||!e.type){n||(ze.warn("Browser does not support Filesystem API. Directories will not be uploaded"),(0,qe.I9)((0,Ne.Tl)("files","Your browser does not support the Filesystem API. Directories will not be uploaded")),n=!0);continue}s.contents.push(e)}else try{s.contents.push(await as(t))}catch(t){ze.error("Error while traversing file tree",{error:t})}return s},Ds=async(t,e,n)=>{const s=(0,Dn.g)();if(await(0,Dn.h)(t.contents,n)&&(t.contents=await cs(t.contents,e,n)),0===t.contents.length)return ze.info("No files to upload",{root:t}),(0,qe.cf)((0,Ne.Tl)("files","No files to upload")),[];ze.debug("Uploading files to ".concat(e.path),{root:t,contents:t.contents});const i=[],r=async(t,n)=>{for(const o of t.contents){const t=(0,Fn.join)(n,o.name);if(o instanceof rs){const n=(0,ss.HS)(a.lJ,e.path,t);try{Ps.debug("Processing directory",{relativePath:t}),await ls(n),await r(o,t)}catch(t){(0,qe.Qg)((0,Ne.Tl)("files","Unable to create the directory {directory}",{directory:o.name})),ze.error("",{error:t,absolutePath:n,directory:o})}}else ze.debug("Uploading file to "+(0,Fn.join)(e.path,t),{file:o}),i.push(s.upload(t,o,e.source))}};s.pause(),await r(t,"/"),s.start();const o=(await Promise.allSettled(i)).filter((t=>"rejected"===t.status));return o.length>0?(ze.error("Error while uploading files",{errors:o}),(0,qe.Qg)((0,Ne.Tl)("files","Some files could not be uploaded")),[]):(ze.debug("Files uploaded successfully"),(0,qe.Te)((0,Ne.Tl)("files","Files uploaded successfully")),Promise.all(i))},Os=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];const i=[];if(await(0,Dn.h)(t,n)&&(t=await cs(t,e,n)),0===t.length)return ze.info("No files to process",{nodes:t}),void(0,qe.cf)((0,Ne.Tl)("files","No files to process"));for(const n of t)l.Ay.set(n,"status",a.zI.LOADING),i.push(Ns(n,e,s?gs.COPY:gs.MOVE));const r=await Promise.allSettled(i);t.forEach((t=>l.Ay.set(t,"status",void 0)));const o=r.filter((t=>"rejected"===t.status));if(o.length>0)return ze.error("Error while copying or moving files",{errors:o}),void(0,qe.Qg)(s?(0,Ne.Tl)("files","Some files could not be copied"):(0,Ne.Tl)("files","Some files could not be moved"));ze.debug("Files copy/move successful"),(0,qe.Te)(s?(0,Ne.Tl)("files","Files copied successfully"):(0,Ne.Tl)("files","Files moved successfully"))},Us=(0,r.nY)("dragging",{state:()=>({dragging:[]}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];l.Ay.set(this,"dragging",t)},reset(){l.Ay.set(this,"dragging",[])}}}),Bs=l.Ay.extend({data:()=>({filesListWidth:null}),mounted(){var t;const e=document.querySelector("#app-content-vue");this.filesListWidth=null!==(t=null==e?void 0:e.clientWidth)&&void 0!==t?t:null,this.$resizeObserver=new ResizeObserver((t=>{t.length>0&&t[0].target===e&&(this.filesListWidth=t[0].contentRect.width)})),this.$resizeObserver.observe(e)},beforeDestroy(){this.$resizeObserver.disconnect()}}),Rs=(0,l.pM)({name:"BreadCrumbs",components:{NcBreadcrumbs:ns.N,NcBreadcrumb:es.N,NcIconSvgWrapper:Ue.A},mixins:[Bs],props:{path:{type:String,default:"/"}},setup:()=>({draggingStore:Us(),filesStore:Kn(),pathsStore:Qn(),selectionStore:Xn(),uploaderStore:Zn()}),computed:{currentView(){return this.$navigation.active},dirs(){var t;return["/",...this.path.split("/").filter(Boolean).map((t="/",e=>t+="".concat(e,"/"))).map((t=>t.replace(/^(.+)\/$/,"$1")))]},sections(){return this.dirs.map(((t,e)=>{const n=this.getFileIdFromPath(t),s={...this.$route,params:{fileid:n},query:{dir:t}};return{dir:t,exact:!0,name:this.getDirDisplayName(t),to:s,disableDrop:e===this.dirs.length-1}}))},isUploadInProgress(){return 0!==this.uploaderStore.queue.length},wrapUploadProgressBar(){return this.isUploadInProgress&&this.filesListWidth<512},viewIcon(){var t,e;return null!==(t=null===(e=this.currentView)||void 0===e?void 0:e.icon)&&void 0!==t?t:'<svg xmlns="http://www.w3.org/2000/svg" id="mdi-home" viewBox="0 0 24 24"><path d="M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z" /></svg>'},selectedFiles(){return this.selectionStore.selected},draggingFiles(){return this.draggingStore.dragging}},methods:{getNodeFromId(t){return this.filesStore.getNode(t)},getFileIdFromPath(t){var e;return this.pathsStore.getPath(null===(e=this.currentView)||void 0===e?void 0:e.id,t)},getDirDisplayName(t){var e,n;if("/"===t)return(null===(n=this.$navigation)||void 0===n||null===(n=n.active)||void 0===n?void 0:n.name)||(0,Ne.Tl)("files","Home");const s=this.getFileIdFromPath(t),i=s?this.getNodeFromId(s):void 0;return(null==i||null===(e=i.attributes)||void 0===e?void 0:e.displayName)||(0,Fn.basename)(t)},onClick(t){var e;(null==t||null===(e=t.query)||void 0===e?void 0:e.dir)===this.$route.query.dir&&this.$emit("reload")},onDragOver(t,e){e!==this.dirs[this.dirs.length-1]?t.ctrlKey?t.dataTransfer.dropEffect="copy":t.dataTransfer.dropEffect="move":t.dataTransfer.dropEffect="none"},async onDrop(t,e){var n,s,i;if(!(this.draggingFiles||null!==(n=t.dataTransfer)&&void 0!==n&&null!==(n=n.items)&&void 0!==n&&n.length))return;t.preventDefault();const r=this.draggingFiles,o=[...(null===(s=t.dataTransfer)||void 0===s?void 0:s.items)||[]],l=await Is(o),c=await(null===(i=this.currentView)||void 0===i?void 0:i.getContents(e)),u=null==c?void 0:c.folder;if(!u)return void(0,qe.Qg)(this.t("files","Target folder does not exist any more"));const d=0!=(u.permissions&a.aX.CREATE),m=t.ctrlKey;if(!d||0!==t.button)return;if(ze.debug("Dropped",{event:t,folder:u,selection:r,fileTree:l}),l.contents.length>0)return void await Ds(l,u,c.contents);const p=r.map((t=>this.filesStore.getNode(t)));await Os(p,u,c.contents,m),r.some((t=>this.selectedFiles.includes(t)))&&(ze.debug("Dropped selection, resetting select store..."),this.selectionStore.reset())},titleForSection(t,e){var n;return(null==e||null===(n=e.to)||void 0===n||null===(n=n.query)||void 0===n?void 0:n.dir)===this.$route.query.dir?(0,Ne.Tl)("files","Reload current directory"):0===t?(0,Ne.Tl)("files",'Go to the "{dir}" directory',e):null},ariaForSection(t){var e;return(null==t||null===(e=t.to)||void 0===e||null===(e=e.query)||void 0===e?void 0:e.dir)===this.$route.query.dir?(0,Ne.Tl)("files","Reload current directory"):null},t:Ne.Tl}});var js=s(35833),Ms={};Ms.styleTagTransform=on(),Ms.setAttributes=nn(),Ms.insert=tn().bind(null,"head"),Ms.domAPI=Je(),Ms.insertStyleElement=rn(),Qe()(js.A,Ms),js.A&&js.A.locals&&js.A.locals;const zs=(0,Pe.A)(Rs,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcBreadcrumbs",{staticClass:"files-list__breadcrumbs",class:{"files-list__breadcrumbs--with-progress":t.wrapUploadProgressBar},attrs:{"data-cy-files-content-breadcrumbs":"","aria-label":t.t("files","Current directory path")},scopedSlots:t._u([{key:"actions",fn:function(){return[t._t("actions")]},proxy:!0}],null,!0)},t._l(t.sections,(function(n,s){return e("NcBreadcrumb",t._b({key:n.dir,attrs:{dir:"auto",to:n.to,"force-icon-text":0===s&&t.filesListWidth>=486,title:t.titleForSection(s,n),"aria-description":t.ariaForSection(n)},on:{drop:function(e){return t.onDrop(e,n.dir)}},nativeOn:{click:function(e){return t.onClick(n.to)},dragover:function(e){return t.onDragOver(e,n.dir)}},scopedSlots:t._u([0===s?{key:"icon",fn:function(){return[e("NcIconSvgWrapper",{attrs:{size:20,svg:t.viewIcon}})]},proxy:!0}:null],null,!0)},"NcBreadcrumb",n,!1))})),1)}),[],!1,null,"499e1525",null).exports;var Vs=s(51651);const qs=(0,r.nY)("actionsmenu",{state:()=>({opened:null})}),$s=function(){const t=(0,r.nY)("renaming",{state:()=>({renamingNode:void 0,newName:""})})(...arguments);return t._initialized||((0,Le.B1)("files:node:rename",(function(e){t.renamingNode=e,t.newName=e.basename})),t._initialized=!0),t};var Hs=s(55042);const Ws={name:"FileMultipleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Gs=(0,Pe.A)(Ws,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon file-multiple-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var Ys=s(11358);const Ks=l.Ay.extend({name:"DragAndDropPreview",components:{FileMultipleIcon:Gs,FolderIcon:Ys.A},data:()=>({nodes:[]}),computed:{isSingleNode(){return 1===this.nodes.length},isSingleFolder(){return this.isSingleNode&&this.nodes[0].type===a.pt.Folder},name(){return this.size?"".concat(this.summary," – ").concat(this.size):this.summary},size(){const t=this.nodes.reduce(((t,e)=>t+e.size||0),0),e=parseInt(t,10)||0;return"number"!=typeof e||e<0?null:(0,a.v7)(e,!0)},summary(){if(this.isSingleNode){var t;const e=this.nodes[0];return(null===(t=e.attributes)||void 0===t?void 0:t.displayName)||e.basename}return Es(this.nodes)}},methods:{update(t){this.nodes=t,this.$refs.previewImg.replaceChildren(),t.slice(0,3).forEach((t=>{const e=document.querySelector('[data-cy-files-list-row-fileid="'.concat(t.fileid,'"] .files-list__row-icon img'));e&&this.$refs.previewImg.appendChild(e.parentNode.cloneNode(!0))})),this.$nextTick((()=>{this.$emit("loaded",this.$el)}))}}}),Qs=Ks;var Xs=s(52608),Js={};Js.styleTagTransform=on(),Js.setAttributes=nn(),Js.insert=tn().bind(null,"head"),Js.domAPI=Je(),Js.insertStyleElement=rn(),Qe()(Xs.A,Js),Xs.A&&Xs.A.locals&&Xs.A.locals;const Zs=(0,Pe.A)(Qs,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list-drag-image"},[e("span",{staticClass:"files-list-drag-image__icon"},[e("span",{ref:"previewImg"}),t._v(" "),t.isSingleFolder?e("FolderIcon"):e("FileMultipleIcon")],1),t._v(" "),e("span",{staticClass:"files-list-drag-image__name"},[t._v(t._s(t.name))])])}),[],!1,null,null,null).exports,ti=l.Ay.extend(Zs);let ei;l.Ay.directive("onClickOutside",Hs.z0);const ni=(0,l.pM)({props:{source:{type:[a.vd,a.ZH,a.bP],required:!0},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},data:()=>({loading:"",dragover:!1,gridMode:!1}),computed:{currentView(){return this.$navigation.active},currentDir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentFileId(){var t,e;return(null===(t=this.$route.params)||void 0===t?void 0:t.fileid)||(null===(e=this.$route.query)||void 0===e?void 0:e.fileid)||null},fileid(){var t;return null===(t=this.source)||void 0===t?void 0:t.fileid},uniqueId(){return xs(this.source.source)},isLoading(){return this.source.status===a.zI.LOADING},extension(){var t;return null!==(t=this.source.attributes)&&void 0!==t&&t.displayName?(0,Fn.extname)(this.source.attributes.displayName):this.source.extension||""},displayName(){const t=this.extension,e=this.source.attributes.displayName||this.source.basename;return t?e.slice(0,0-t.length):e},draggingFiles(){return this.draggingStore.dragging},selectedFiles(){return this.selectionStore.selected},isSelected(){return this.fileid&&this.selectedFiles.includes(this.fileid)},isRenaming(){return this.renamingStore.renamingNode===this.source},isRenamingSmallScreen(){return this.isRenaming&&this.filesListWidth<512},isActive(){var t,e,n,s;return(null===(t=this.fileid)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t))===(null===(n=this.currentFileId)||void 0===n||null===(s=n.toString)||void 0===s?void 0:s.call(n))},canDrag(){if(this.isRenaming)return!1;const t=t=>0!=((null==t?void 0:t.permissions)&a.aX.UPDATE);return this.selectedFiles.length>0?this.selectedFiles.map((t=>this.filesStore.getNode(t))).every(t):t(this.source)},canDrop(){return!(this.source.type!==a.pt.Folder||this.fileid&&this.draggingFiles.includes(this.fileid)||0==(this.source.permissions&a.aX.CREATE))},openedMenu:{get(){return this.actionsMenuStore.opened===this.uniqueId.toString()},set(t){if(t){var e;const t=null===(e=this.$el)||void 0===e?void 0:e.closest("main.app-content");t.style.removeProperty("--mouse-pos-x"),t.style.removeProperty("--mouse-pos-y")}this.actionsMenuStore.opened=t?this.uniqueId.toString():null}}},watch:{source(t,e){t.source!==e.source&&this.resetState()}},beforeDestroy(){this.resetState()},methods:{resetState(){var t,e;this.loading="",null===(t=this.$refs)||void 0===t||null===(t=t.preview)||void 0===t||null===(e=t.reset)||void 0===e||e.call(t),this.openedMenu=!1},onRightClick(t){if(this.openedMenu)return;if(!this.gridMode){var e;const n=null===(e=this.$el)||void 0===e?void 0:e.closest("main.app-content"),s=n.getBoundingClientRect();n.style.setProperty("--mouse-pos-x",Math.max(0,t.clientX-s.left-200)+"px"),n.style.setProperty("--mouse-pos-y",Math.max(0,t.clientY-s.top)+"px")}const n=this.selectedFiles.length>1;this.actionsMenuStore.opened=this.isSelected&&n?"global":this.uniqueId.toString(),t.preventDefault(),t.stopPropagation()},execDefaultAction(t){if(t.ctrlKey||t.metaKey)return t.preventDefault(),window.open((0,u.Jv)("/f/{fileId}",{fileId:this.fileid})),!1;this.$refs.actions.execDefaultAction(t)},openDetailsIfAvailable(t){var e;t.preventDefault(),t.stopPropagation(),null!=Yn&&null!==(e=Yn.enabled)&&void 0!==e&&e.call(Yn,[this.source],this.currentView)&&Yn.exec(this.source,this.currentView,this.currentDir)},onDragOver(t){this.dragover=this.canDrop,this.canDrop?t.ctrlKey?t.dataTransfer.dropEffect="copy":t.dataTransfer.dropEffect="move":t.dataTransfer.dropEffect="none"},onDragLeave(t){const e=t.currentTarget;null!=e&&e.contains(t.relatedTarget)||(this.dragover=!1)},async onDragStart(t){var e,n,s;if(t.stopPropagation(),!this.canDrag||!this.fileid)return t.preventDefault(),void t.stopPropagation();ze.debug("Drag started",{event:t}),null===(e=t.dataTransfer)||void 0===e||null===(n=e.clearData)||void 0===n||n.call(e),this.renamingStore.$reset(),this.selectedFiles.includes(this.fileid)?this.draggingStore.set(this.selectedFiles):this.draggingStore.set([this.fileid]);const i=this.draggingStore.dragging.map((t=>this.filesStore.getNode(t))),r=await(async t=>new Promise((e=>{ei||(ei=(new ti).$mount(),document.body.appendChild(ei.$el)),ei.update(t),ei.$on("loaded",(()=>{e(ei.$el),ei.$off("loaded")}))})))(i);null===(s=t.dataTransfer)||void 0===s||s.setDragImage(r,-10,-10)},onDragEnd(){this.draggingStore.reset(),this.dragover=!1,ze.debug("Drag ended")},async onDrop(t){var e,n,s;if(!(this.draggingFiles||null!==(e=t.dataTransfer)&&void 0!==e&&null!==(e=e.items)&&void 0!==e&&e.length))return;t.preventDefault(),t.stopPropagation();const i=this.draggingFiles,r=[...(null===(n=t.dataTransfer)||void 0===n?void 0:n.items)||[]],a=await Is(r),o=await(null===(s=this.currentView)||void 0===s?void 0:s.getContents(this.source.path)),l=null==o?void 0:o.folder;if(!l)return void(0,qe.Qg)(this.t("files","Target folder does not exist any more"));if(!this.canDrop||t.button)return;const c=t.ctrlKey;if(this.dragover=!1,ze.debug("Dropped",{event:t,folder:l,selection:i,fileTree:a}),a.contents.length>0)return void await Ds(a,l,o.contents);const u=i.map((t=>this.filesStore.getNode(t)));await Os(u,l,o.contents,c),i.some((t=>this.selectedFiles.includes(t)))&&(ze.debug("Dropped selection, resetting select store..."),this.selectionStore.reset())},t:Ne.Tl}});var si=s(4604);const ii={name:"CustomElementRender",props:{source:{type:Object,required:!0},currentView:{type:Object,required:!0},render:{type:Function,required:!0}},watch:{source(){this.updateRootElement()},currentView(){this.updateRootElement()}},mounted(){this.updateRootElement()},methods:{async updateRootElement(){const t=await this.render(this.source,this.currentView);t?this.$el.replaceChildren(t):this.$el.replaceChildren()}}},ri=(0,Pe.A)(ii,(function(){return(0,this._self._c)("span")}),[],!1,null,null,null).exports;var ai=s(63420),oi=s(24764),li=s(10501);const ci={name:"ArrowLeftIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ui=(0,Pe.A)(ci,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon arrow-left-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,di=(0,a.qK)(),mi=(0,l.pM)({name:"FileEntryActions",components:{ArrowLeftIcon:ui,CustomElementRender:ri,NcActionButton:ai.A,NcActions:oi.A,NcActionSeparator:li.A,NcIconSvgWrapper:Ue.A,NcLoadingIcon:zn.A},props:{filesListWidth:{type:Number,required:!0},loading:{type:String,required:!0},opened:{type:Boolean,default:!1},source:{type:Object,required:!0},gridMode:{type:Boolean,default:!1}},data:()=>({openedSubmenu:null}),computed:{currentDir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentView(){return this.$navigation.active},isLoading(){return this.source.status===a.zI.LOADING},enabledActions(){return this.source.attributes.failed?[]:di.filter((t=>!t.enabled||t.enabled([this.source],this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0)))},enabledInlineActions(){return this.filesListWidth<768||this.gridMode?[]:this.enabledActions.filter((t=>{var e;return null==t||null===(e=t.inline)||void 0===e?void 0:e.call(t,this.source,this.currentView)}))},enabledRenderActions(){return this.gridMode?[]:this.enabledActions.filter((t=>"function"==typeof t.renderInline))},enabledDefaultActions(){return this.enabledActions.filter((t=>!(null==t||!t.default)))},enabledMenuActions(){if(this.openedSubmenu)return this.enabledInlineActions;const t=[...this.enabledInlineActions,...this.enabledActions.filter((t=>t.default!==a.m9.HIDDEN&&"function"!=typeof t.renderInline))].filter(((t,e,n)=>e===n.findIndex((e=>e.id===t.id)))),e=t.filter((t=>!t.parent)).map((t=>t.id));return t.filter((t=>!(t.parent&&e.includes(t.parent))))},enabledSubmenuActions(){return this.enabledActions.filter((t=>t.parent)).reduce(((t,e)=>(t[e.parent]||(t[e.parent]=[]),t[e.parent].push(e),t)),{})},openedMenu:{get(){return this.opened},set(t){this.$emit("update:opened",t)}},getBoundariesElement:()=>document.querySelector(".app-content > .files-list"),mountType(){return this.source._attributes["mount-type"]}},methods:{actionDisplayName(t){if((this.gridMode||this.filesListWidth<768&&t.inline)&&"function"==typeof t.title){const e=t.title([this.source],this.currentView);if(e)return e}return t.displayName([this.source],this.currentView)},async onActionClick(t){let e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(this.isLoading||""!==this.loading)return;if(this.enabledSubmenuActions[t.id])return void(this.openedSubmenu=t);const n=t.displayName([this.source],this.currentView);try{this.$emit("update:loading",t.id),l.Ay.set(this.source,"status",a.zI.LOADING);const e=await t.exec(this.source,this.currentView,this.currentDir);if(null==e)return;if(e)return void(0,qe.Te)((0,Ne.Tl)("files",'"{displayName}" action executed successfully',{displayName:n}));(0,qe.Qg)((0,Ne.Tl)("files",'"{displayName}" action failed',{displayName:n}))}catch(e){ze.error("Error while executing action",{action:t,e}),(0,qe.Qg)((0,Ne.Tl)("files",'"{displayName}" action failed',{displayName:n}))}finally{this.$emit("update:loading",""),l.Ay.set(this.source,"status",void 0),e&&(this.openedSubmenu=null)}},execDefaultAction(t){this.enabledDefaultActions.length>0&&(t.preventDefault(),t.stopPropagation(),this.enabledDefaultActions[0].exec(this.source,this.currentView,this.currentDir))},isMenu(t){var e;return(null===(e=this.enabledSubmenuActions[t])||void 0===e?void 0:e.length)>0},async onBackToMenuClick(t){this.openedSubmenu=null,await this.$nextTick(),this.$nextTick((()=>{var e;const n=null===(e=this.$refs["action-".concat(t.id)])||void 0===e?void 0:e[0];var s;n&&(null===(s=n.$el.querySelector("button"))||void 0===s||s.focus())}))},t:Ne.Tl}}),pi=mi;var fi=s(90908),hi={};hi.styleTagTransform=on(),hi.setAttributes=nn(),hi.insert=tn().bind(null,"head"),hi.domAPI=Je(),hi.insertStyleElement=rn(),Qe()(fi.A,hi),fi.A&&fi.A.locals&&fi.A.locals;var gi=s(81640),vi={};vi.styleTagTransform=on(),vi.setAttributes=nn(),vi.insert=tn().bind(null,"head"),vi.domAPI=Je(),vi.insertStyleElement=rn(),Qe()(gi.A,vi),gi.A&&gi.A.locals&&gi.A.locals;var wi=(0,Pe.A)(pi,(function(){var t,e,n=this,s=n._self._c;return n._self._setupProxy,s("td",{staticClass:"files-list__row-actions",attrs:{"data-cy-files-list-row-actions":""}},[n._l(n.enabledRenderActions,(function(t){return s("CustomElementRender",{key:t.id,staticClass:"files-list__row-action--inline",class:"files-list__row-action-"+t.id,attrs:{"current-view":n.currentView,render:t.renderInline,source:n.source}})})),n._v(" "),s("NcActions",{ref:"actionsMenu",attrs:{"boundaries-element":n.getBoundariesElement,container:n.getBoundariesElement,"force-name":!0,type:"tertiary","force-menu":0===n.enabledInlineActions.length,inline:n.enabledInlineActions.length,open:n.openedMenu},on:{"update:open":function(t){n.openedMenu=t},close:function(t){n.openedSubmenu=null}}},[n._l(n.enabledMenuActions,(function(t){var e;return s("NcActionButton",{key:t.id,ref:"action-".concat(t.id),refInFor:!0,class:{["files-list__row-action-".concat(t.id)]:!0,"files-list__row-action--menu":n.isMenu(t.id)},attrs:{"close-after-click":!n.isMenu(t.id),"data-cy-files-list-row-action":t.id,"is-menu":n.isMenu(t.id),title:null===(e=t.title)||void 0===e?void 0:e.call(t,[n.source],n.currentView)},on:{click:function(e){return n.onActionClick(t)}},scopedSlots:n._u([{key:"icon",fn:function(){return[n.loading===t.id?s("NcLoadingIcon",{attrs:{size:18}}):s("NcIconSvgWrapper",{attrs:{svg:t.iconSvgInline([n.source],n.currentView)}})]},proxy:!0}],null,!0)},[n._v("\n\t\t\t"+n._s("shared"===n.mountType&&"sharing-status"===t.id?"":n.actionDisplayName(t))+"\n\t\t")])})),n._v(" "),n.openedSubmenu&&n.enabledSubmenuActions[null===(t=n.openedSubmenu)||void 0===t?void 0:t.id]?[s("NcActionButton",{staticClass:"files-list__row-action-back",on:{click:function(t){return n.onBackToMenuClick(n.openedSubmenu)}},scopedSlots:n._u([{key:"icon",fn:function(){return[s("ArrowLeftIcon")]},proxy:!0}],null,!1,3001860362)},[n._v("\n\t\t\t\t"+n._s(n.actionDisplayName(n.openedSubmenu))+"\n\t\t\t")]),n._v(" "),s("NcActionSeparator"),n._v(" "),n._l(n.enabledSubmenuActions[null===(e=n.openedSubmenu)||void 0===e?void 0:e.id],(function(t){var e;return s("NcActionButton",{key:t.id,staticClass:"files-list__row-action--submenu",class:"files-list__row-action-".concat(t.id),attrs:{"close-after-click":"","data-cy-files-list-row-action":t.id,title:null===(e=t.title)||void 0===e?void 0:e.call(t,[n.source],n.currentView)},on:{click:function(e){return n.onActionClick(t)}},scopedSlots:n._u([{key:"icon",fn:function(){return[n.loading===t.id?s("NcLoadingIcon",{attrs:{size:18}}):s("NcIconSvgWrapper",{attrs:{svg:t.iconSvgInline([n.source],n.currentView)}})]},proxy:!0}],null,!0)},[n._v("\n\t\t\t\t"+n._s(n.actionDisplayName(t))+"\n\t\t\t")])}))]:n._e()],2)],2)}),[],!1,null,"5edd44ea",null);const yi=wi.exports,Ai=(0,l.pM)({name:"FileEntryCheckbox",components:{NcCheckboxRadioSwitch:pn.A,NcLoadingIcon:zn.A},props:{fileid:{type:Number,required:!0},isLoading:{type:Boolean,default:!1},nodes:{type:Array,required:!0},source:{type:Object,required:!0}},setup(){const t=Xn(),e=function(){const t=(0,r.nY)("keyboard",{state:()=>({altKey:!1,ctrlKey:!1,metaKey:!1,shiftKey:!1}),actions:{onEvent(t){t||(t=window.event),l.Ay.set(this,"altKey",!!t.altKey),l.Ay.set(this,"ctrlKey",!!t.ctrlKey),l.Ay.set(this,"metaKey",!!t.metaKey),l.Ay.set(this,"shiftKey",!!t.shiftKey)}}})(...arguments);return t._initialized||(window.addEventListener("keydown",t.onEvent),window.addEventListener("keyup",t.onEvent),window.addEventListener("mousemove",t.onEvent),t._initialized=!0),t}();return{keyboardStore:e,selectionStore:t}},computed:{selectedFiles(){return this.selectionStore.selected},isSelected(){return this.selectedFiles.includes(this.fileid)},index(){return this.nodes.findIndex((t=>t.fileid===this.fileid))},isFile(){return this.source.type===a.pt.File},ariaLabel(){return this.isFile?(0,Ne.Tl)("files",'Toggle selection for file "{displayName}"',{displayName:this.source.basename}):(0,Ne.Tl)("files",'Toggle selection for folder "{displayName}"',{displayName:this.source.basename})}},methods:{onSelectionChange(t){var e;const n=this.index,s=this.selectionStore.lastSelectedIndex;if(null!==(e=this.keyboardStore)&&void 0!==e&&e.shiftKey&&null!==s){const t=this.selectedFiles.includes(this.fileid),e=Math.min(n,s),i=Math.max(s,n),r=this.selectionStore.lastSelection,a=this.nodes.map((t=>t.fileid)).slice(e,i+1).filter(Boolean),o=[...r,...a].filter((e=>!t||e!==this.fileid));return ze.debug("Shift key pressed, selecting all files in between",{start:e,end:i,filesToSelect:a,isAlreadySelected:t}),void this.selectionStore.set(o)}const i=t?[...this.selectedFiles,this.fileid]:this.selectedFiles.filter((t=>t!==this.fileid));ze.debug("Updating selection",{selection:i}),this.selectionStore.set(i),this.selectionStore.setLastIndex(n)},resetSelection(){this.selectionStore.reset()},t:Ne.Tl}}),bi=(0,Pe.A)(Ai,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("td",{staticClass:"files-list__row-checkbox",on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.resetSelection.apply(null,arguments)}}},[t.isLoading?e("NcLoadingIcon"):e("NcCheckboxRadioSwitch",{attrs:{"aria-label":t.ariaLabel,checked:t.isSelected},on:{"update:checked":t.onSelectionChange}})],1)}),[],!1,null,null,null).exports;var _i=s(82182);const Ci=(0,Be.C)("files","forbiddenCharacters",""),xi=l.Ay.extend({name:"FileEntryName",components:{NcTextField:_i.A},props:{displayName:{type:String,required:!0},extension:{type:String,required:!0},filesListWidth:{type:Number,required:!0},nodes:{type:Array,required:!0},source:{type:Object,required:!0},gridMode:{type:Boolean,default:!1}},setup:()=>({renamingStore:$s()}),computed:{isRenaming(){return this.renamingStore.renamingNode===this.source},isRenamingSmallScreen(){return this.isRenaming&&this.filesListWidth<512},newName:{get(){return this.renamingStore.newName},set(t){this.renamingStore.newName=t}},renameLabel(){return{[a.pt.File]:(0,Ne.Tl)("files","File name"),[a.pt.Folder]:(0,Ne.Tl)("files","Folder name")}[this.source.type]},linkTo(){var t,e;if(this.source.attributes.failed)return{is:"span",params:{title:(0,Ne.Tl)("files","This node is unavailable")}};const n=null===(t=this.$parent)||void 0===t||null===(t=t.$refs)||void 0===t||null===(t=t.actions)||void 0===t?void 0:t.enabledDefaultActions;return(null==n?void 0:n.length)>0?{is:"a",params:{title:n[0].displayName([this.source],this.currentView),role:"button",tabindex:"0"}}:(null===(e=this.source)||void 0===e?void 0:e.permissions)&a.aX.READ?{is:"a",params:{download:this.source.basename,href:this.source.source,title:(0,Ne.Tl)("files","Download file {name}",{name:this.displayName}),tabindex:"0"}}:{is:"span"}}},watch:{isRenaming:{immediate:!0,handler(t){t&&this.startRenaming()}}},methods:{checkInputValidity(t){var e,n;const s=t.target,i=(null===(e=(n=this.newName).trim)||void 0===e?void 0:e.call(n))||"";ze.debug("Checking input validity",{newName:i});try{this.isFileNameValid(i),s.setCustomValidity(""),s.title=""}catch(t){s.setCustomValidity(t.message),s.title=t.message}finally{s.reportValidity()}},isFileNameValid(t){const e=t.trim();if("."===e||".."===e)throw new Error((0,Ne.Tl)("files",'"{name}" is an invalid file name.',{name:t}));if(0===e.length)throw new Error((0,Ne.Tl)("files","File name cannot be empty."));if(-1!==e.indexOf("/"))throw new Error((0,Ne.Tl)("files",'"/" is not allowed inside a file name.'));if(e.match(OC.config.blacklist_files_regex))throw new Error((0,Ne.Tl)("files",'"{name}" is not an allowed filetype.',{name:t}));if(this.checkIfNodeExists(t))throw new Error((0,Ne.Tl)("files","{newName} already exists.",{newName:t}));return e.split("").forEach((t=>{if(-1!==Ci.indexOf(t))throw new Error(this.t("files",'"{char}" is not allowed inside a file name.',{char:t}))})),!0},checkIfNodeExists(t){return this.nodes.find((e=>e.basename===t&&e!==this.source))},startRenaming(){this.$nextTick((()=>{var t;const e=(this.source.extension||"").split("").length,n=this.source.basename.split("").length-e,s=null===(t=this.$refs.renameInput)||void 0===t||null===(t=t.$refs)||void 0===t||null===(t=t.inputField)||void 0===t||null===(t=t.$refs)||void 0===t?void 0:t.input;s?(s.setSelectionRange(0,n),s.focus(),s.dispatchEvent(new Event("keyup"))):ze.error("Could not find the rename input")}))},stopRenaming(){this.isRenaming&&this.renamingStore.$reset()},async onRename(){var t,e;const n=this.source.basename,s=this.source.encodedSource,i=(null===(t=(e=this.newName).trim)||void 0===t?void 0:t.call(e))||"";if(""!==i)if(n!==i)if(this.checkIfNodeExists(i))(0,qe.Qg)((0,Ne.Tl)("files","Another entry with the same name already exists"));else{this.loading="renaming",l.Ay.set(this.source,"status",a.zI.LOADING),this.source.rename(i),ze.debug("Moving file to",{destination:this.source.encodedSource,oldEncodedSource:s});try{await(0,Re.A)({method:"MOVE",url:s,headers:{Destination:this.source.encodedSource,Overwrite:"F"}}),(0,Le.Ic)("files:node:updated",this.source),(0,Le.Ic)("files:node:renamed",this.source),(0,qe.Te)((0,Ne.Tl)("files",'Renamed "{oldName}" to "{newName}"',{oldName:n,newName:i})),this.stopRenaming(),this.$nextTick((()=>{this.$refs.basename.focus()}))}catch(t){var r,o;if(ze.error("Error while renaming file",{error:t}),this.source.rename(n),this.$refs.renameInput.focus(),404===(null==t||null===(r=t.response)||void 0===r?void 0:r.status))return void(0,qe.Qg)((0,Ne.Tl)("files",'Could not rename "{oldName}", it does not exist any more',{oldName:n}));if(412===(null==t||null===(o=t.response)||void 0===o?void 0:o.status))return void(0,qe.Qg)((0,Ne.Tl)("files",'The name "{newName}" is already used in the folder "{dir}". Please choose a different name.',{newName:i,dir:this.currentDir}));(0,qe.Qg)((0,Ne.Tl)("files",'Could not rename "{oldName}"',{oldName:n}))}finally{this.loading=!1,l.Ay.set(this.source,"status",void 0)}}else this.stopRenaming();else(0,qe.Qg)((0,Ne.Tl)("files","Name cannot be empty"))},t:Ne.Tl}}),Ti=(0,Pe.A)(xi,(function(){var t=this,e=t._self._c;return t._self._setupProxy,t.isRenaming?e("form",{directives:[{name:"on-click-outside",rawName:"v-on-click-outside",value:t.stopRenaming,expression:"stopRenaming"}],staticClass:"files-list__row-rename",attrs:{"aria-label":t.t("files","Rename file")},on:{submit:function(e){return e.preventDefault(),e.stopPropagation(),t.onRename.apply(null,arguments)}}},[e("NcTextField",{ref:"renameInput",attrs:{label:t.renameLabel,autofocus:!0,minlength:1,required:!0,value:t.newName,enterkeyhint:"done"},on:{"update:value":function(e){t.newName=e},keyup:[t.checkInputValidity,function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.stopRenaming.apply(null,arguments)}]}})],1):e(t.linkTo.is,t._b({ref:"basename",tag:"component",staticClass:"files-list__row-name-link",attrs:{"aria-hidden":t.isRenaming,"data-cy-files-list-row-name-link":""},on:{click:function(e){return t.$emit("click",e)}}},"component",t.linkTo.params,!1),[e("span",{staticClass:"files-list__row-name-text"},[e("span",{staticClass:"files-list__row-name-",domProps:{textContent:t._s(t.displayName)}}),t._v(" "),e("span",{staticClass:"files-list__row-name-ext",domProps:{textContent:t._s(t.extension)}})])])}),[],!1,null,null,null).exports;var Si=s(72755);const ki={name:"FileIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ei=(0,Pe.A)(ki,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon file-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Li={name:"FolderOpenIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ni=(0,Pe.A)(Li,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon folder-open-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Fi={name:"KeyIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Pi=(0,Pe.A)(Fi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon key-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Ii={name:"NetworkIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Di=(0,Pe.A)(Ii,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon network-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Oi={name:"TagIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ui=(0,Pe.A)(Oi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon tag-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Bi={name:"PlayCircleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ri=(0,Pe.A)(Bi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon play-circle-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,ji={name:"CollectivesIcon",props:{title:{type:String,default:""},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Mi=(0,Pe.A)(ji,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon collectives-icon",attrs:{"aria-hidden":!t.title,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 16 16"}},[e("path",{attrs:{d:"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z"}}),t._v(" "),e("path",{attrs:{d:"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z"}}),t._v(" "),e("path",{attrs:{d:"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z"}}),t._v(" "),e("path",{attrs:{d:"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z"}}),t._v(" "),e("path",{attrs:{d:"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z"}}),t._v(" "),e("path",{attrs:{d:"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z"}})])])}),[],!1,null,null,null).exports,zi=(0,l.pM)({name:"FavoriteIcon",components:{NcIconSvgWrapper:Ue.A},data:()=>({StarSvg:'<svg xmlns="http://www.w3.org/2000/svg" id="mdi-star" viewBox="0 0 24 24"><path d="M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z" /></svg>'}),async mounted(){var t;await this.$nextTick();const e=this.$el.querySelector("svg");null==e||null===(t=e.setAttribute)||void 0===t||t.call(e,"viewBox","-4 -4 30 30")},methods:{t:Ne.Tl}});var Vi=s(14781),qi={};qi.styleTagTransform=on(),qi.setAttributes=nn(),qi.insert=tn().bind(null,"head"),qi.domAPI=Je(),qi.insertStyleElement=rn(),Qe()(Vi.A,qi),Vi.A&&Vi.A.locals&&Vi.A.locals;const $i=(0,Pe.A)(zi,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcIconSvgWrapper",{staticClass:"favorite-marker-icon",attrs:{name:t.t("files","Favorite"),svg:t.StarSvg}})}),[],!1,null,"42ea6dd4",null).exports,Hi=l.Ay.extend({name:"FileEntryPreview",components:{AccountGroupIcon:Si.A,AccountPlusIcon:$n,CollectivesIcon:Mi,FavoriteIcon:$i,FileIcon:Ei,FolderIcon:Ys.A,FolderOpenIcon:Ni,KeyIcon:Pi,LinkIcon:On.A,NetworkIcon:Di,TagIcon:Ui},props:{source:{type:Object,required:!0},dragover:{type:Boolean,default:!1},gridMode:{type:Boolean,default:!1}},setup:()=>({userConfigStore:An()}),data:()=>({backgroundFailed:void 0}),computed:{fileid(){var t,e;return null===(t=this.source)||void 0===t||null===(t=t.fileid)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t)},isFavorite(){return 1===this.source.attributes.favorite},userConfig(){return this.userConfigStore.userConfig},cropPreviews(){return!0===this.userConfig.crop_image_previews},previewUrl(){if(this.source.type===a.pt.Folder)return null;if(!0===this.backgroundFailed)return null;try{const t=this.source.attributes.previewUrl||(0,u.Jv)("/core/preview?fileId={fileid}",{fileid:this.fileid}),e=new URL(window.location.origin+t);return e.searchParams.set("x",this.gridMode?"128":"32"),e.searchParams.set("y",this.gridMode?"128":"32"),e.searchParams.set("mimeFallback","true"),e.searchParams.set("a",!0===this.cropPreviews?"0":"1"),e.href}catch(t){return null}},fileOverlay(){return void 0!==this.source.attributes["metadata-files-live-photo"]?Ri:null},folderOverlay(){var t,e,n,s;if(this.source.type!==a.pt.Folder)return null;if(1===(null===(t=this.source)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["is-encrypted"]))return Pi;if(null!==(e=this.source)&&void 0!==e&&null!==(e=e.attributes)&&void 0!==e&&e["is-tag"])return Ui;const i=Object.values((null===(n=this.source)||void 0===n||null===(n=n.attributes)||void 0===n?void 0:n["share-types"])||{}).flat();if(i.some((t=>t===In.Z.SHARE_TYPE_LINK||t===In.Z.SHARE_TYPE_EMAIL)))return On.A;if(i.length>0)return $n;switch(null===(s=this.source)||void 0===s||null===(s=s.attributes)||void 0===s?void 0:s["mount-type"]){case"external":case"external-session":return Di;case"group":return Si.A;case"collective":return Mi}return null}},methods:{reset(){this.backgroundFailed=void 0,this.$refs.previewImg&&(this.$refs.previewImg.src="")},onBackgroundError(t){var e;""!==(null===(e=t.target)||void 0===e?void 0:e.src)&&(this.backgroundFailed=!0)},t:Ne.Tl}}),Wi=(0,Pe.A)(Hi,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("span",{staticClass:"files-list__row-icon"},["folder"===t.source.type?[t.dragover?t._m(0):[t._m(1),t._v(" "),t.folderOverlay?e(t.folderOverlay,{tag:"OverlayIcon",staticClass:"files-list__row-icon-overlay"}):t._e()]]:t.previewUrl&&!0!==t.backgroundFailed?e("img",{ref:"previewImg",staticClass:"files-list__row-icon-preview",class:{"files-list__row-icon-preview--loaded":!1===t.backgroundFailed},attrs:{alt:"",loading:"lazy",src:t.previewUrl},on:{error:t.onBackgroundError,load:function(e){t.backgroundFailed=!1}}}):t._m(2),t._v(" "),t.isFavorite?e("span",{staticClass:"files-list__row-icon-favorite"},[t._m(3)],1):t._e(),t._v(" "),t.fileOverlay?e(t.fileOverlay,{tag:"OverlayIcon",staticClass:"files-list__row-icon-overlay files-list__row-icon-overlay--file"}):t._e()],2)}),[function(){var t=this._self._c;return this._self._setupProxy,t("FolderOpenIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FolderIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FileIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FavoriteIcon")}],!1,null,null,null).exports,Gi=(0,l.pM)({name:"FileEntry",components:{CustomElementRender:ri,FileEntryActions:yi,FileEntryCheckbox:bi,FileEntryName:Ti,FileEntryPreview:Wi,NcDateTime:si.A},mixins:[ni],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},compact:{type:Boolean,default:!1}},setup:()=>({actionsMenuStore:qs(),draggingStore:Us(),filesStore:Kn(),renamingStore:$s(),selectionStore:Xn()}),computed:{rowListeners(){return{...this.isRenaming?{}:{dragstart:this.onDragStart,dragover:this.onDragOver},contextmenu:this.onRightClick,dragleave:this.onDragLeave,dragend:this.onDragEnd,drop:this.onDrop}},columns(){var t;return this.filesListWidth<512||this.compact?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},size(){const t=parseInt(this.source.size,10)||0;return"number"!=typeof t||t<0?this.t("files","Pending"):(0,a.v7)(t,!0)},sizeOpacity(){const t=parseInt(this.source.size,10)||0;if(!t||t<0)return{};const e=Math.round(Math.min(100,100*Math.pow(this.source.size/10485760,2)));return{color:"color-mix(in srgb, var(--color-main-text) ".concat(e,"%, var(--color-text-maxcontrast))")}},mtimeOpacity(){var t,e;const n=26784e5,s=null===(t=this.source.mtime)||void 0===t||null===(e=t.getTime)||void 0===e?void 0:e.call(t);if(!s)return{};const i=Math.round(Math.min(100,100*(n-(Date.now()-s))/n));return i<0?{}:{color:"color-mix(in srgb, var(--color-main-text) ".concat(i,"%, var(--color-text-maxcontrast))")}},mtimeTitle(){return this.source.mtime?(0,Vs.A)(this.source.mtime).format("LLL"):""},isActive(){var t,e;return this.fileid===(null===(t=this.currentFileId)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t))}},methods:{formatFileSize:a.v7}}),Yi=(0,Pe.A)(Gi,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",t._g({staticClass:"files-list__row",class:{"files-list__row--dragover":t.dragover,"files-list__row--loading":t.isLoading,"files-list__row--active":t.isActive},attrs:{"data-cy-files-list-row":"","data-cy-files-list-row-fileid":t.fileid,"data-cy-files-list-row-name":t.source.basename,draggable:t.canDrag}},t.rowListeners),[t.source.attributes.failed?e("span",{staticClass:"files-list__row--failed"}):t._e(),t._v(" "),e("FileEntryCheckbox",{attrs:{fileid:t.fileid,"is-loading":t.isLoading,nodes:t.nodes,source:t.source}}),t._v(" "),e("td",{staticClass:"files-list__row-name",attrs:{"data-cy-files-list-row-name":""}},[e("FileEntryPreview",{ref:"preview",attrs:{source:t.source,dragover:t.dragover},nativeOn:{click:function(e){return t.execDefaultAction.apply(null,arguments)}}}),t._v(" "),e("FileEntryName",{ref:"name",attrs:{"display-name":t.displayName,extension:t.extension,"files-list-width":t.filesListWidth,nodes:t.nodes,source:t.source},on:{click:t.execDefaultAction}})],1),t._v(" "),e("FileEntryActions",{directives:[{name:"show",rawName:"v-show",value:!t.isRenamingSmallScreen,expression:"!isRenamingSmallScreen"}],ref:"actions",class:"files-list__row-actions-".concat(t.uniqueId),attrs:{"files-list-width":t.filesListWidth,loading:t.loading,opened:t.openedMenu,source:t.source},on:{"update:loading":function(e){t.loading=e},"update:opened":function(e){t.openedMenu=e}}}),t._v(" "),!t.compact&&t.isSizeAvailable?e("td",{staticClass:"files-list__row-size",style:t.sizeOpacity,attrs:{"data-cy-files-list-row-size":""},on:{click:t.openDetailsIfAvailable}},[e("span",[t._v(t._s(t.size))])]):t._e(),t._v(" "),!t.compact&&t.isMtimeAvailable?e("td",{staticClass:"files-list__row-mtime",style:t.mtimeOpacity,attrs:{"data-cy-files-list-row-mtime":""},on:{click:t.openDetailsIfAvailable}},[e("NcDateTime",{attrs:{timestamp:t.source.mtime,"ignore-seconds":!0}})],1):t._e(),t._v(" "),t._l(t.columns,(function(n){var s;return e("td",{key:n.id,staticClass:"files-list__row-column-custom",class:"files-list__row-".concat(null===(s=t.currentView)||void 0===s?void 0:s.id,"-").concat(n.id),attrs:{"data-cy-files-list-row-column-custom":n.id},on:{click:t.openDetailsIfAvailable}},[e("CustomElementRender",{attrs:{"current-view":t.currentView,render:n.render,source:t.source}})],1)}))],2)}),[],!1,null,null,null).exports,Ki=(0,l.pM)({name:"FileEntryGrid",components:{FileEntryActions:yi,FileEntryCheckbox:bi,FileEntryName:Ti,FileEntryPreview:Wi},mixins:[ni],inheritAttrs:!1,setup:()=>({actionsMenuStore:qs(),draggingStore:Us(),filesStore:Kn(),renamingStore:$s(),selectionStore:Xn()}),data:()=>({gridMode:!0})}),Qi=(0,Pe.A)(Ki,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",{staticClass:"files-list__row",class:{"files-list__row--active":t.isActive,"files-list__row--dragover":t.dragover,"files-list__row--loading":t.isLoading},attrs:{"data-cy-files-list-row":"","data-cy-files-list-row-fileid":t.fileid,"data-cy-files-list-row-name":t.source.basename,draggable:t.canDrag},on:{contextmenu:t.onRightClick,dragover:t.onDragOver,dragleave:t.onDragLeave,dragstart:t.onDragStart,dragend:t.onDragEnd,drop:t.onDrop}},[t.source.attributes.failed?e("span",{staticClass:"files-list__row--failed"}):t._e(),t._v(" "),e("FileEntryCheckbox",{attrs:{fileid:t.fileid,"is-loading":t.isLoading,nodes:t.nodes,source:t.source}}),t._v(" "),e("td",{staticClass:"files-list__row-name",attrs:{"data-cy-files-list-row-name":""}},[e("FileEntryPreview",{ref:"preview",attrs:{dragover:t.dragover,"grid-mode":!0,source:t.source},nativeOn:{click:function(e){return t.execDefaultAction.apply(null,arguments)}}}),t._v(" "),e("FileEntryName",{ref:"name",attrs:{"display-name":t.displayName,extension:t.extension,"files-list-width":t.filesListWidth,"grid-mode":!0,nodes:t.nodes,source:t.source},on:{click:t.execDefaultAction}})],1),t._v(" "),e("FileEntryActions",{ref:"actions",class:"files-list__row-actions-".concat(t.uniqueId),attrs:{"files-list-width":t.filesListWidth,"grid-mode":!0,loading:t.loading,opened:t.openedMenu,source:t.source},on:{"update:loading":function(e){t.loading=e},"update:opened":function(e){t.openedMenu=e}}})],1)}),[],!1,null,null,null).exports;var Xi=s(96763);const Ji={name:"FilesListHeader",props:{header:{type:Object,required:!0},currentFolder:{type:Object,required:!0},currentView:{type:Object,required:!0}},computed:{enabled(){return this.header.enabled(this.currentFolder,this.currentView)}},watch:{enabled(t){t&&this.header.updated(this.currentFolder,this.currentView)},currentFolder(){this.header.updated(this.currentFolder,this.currentView)}},mounted(){Xi.debug("Mounted",this.header.id),this.header.render(this.$refs.mount,this.currentFolder,this.currentView)}},Zi=(0,Pe.A)(Ji,(function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"show",rawName:"v-show",value:t.enabled,expression:"enabled"}],class:"files-list__header-".concat(t.header.id)},[e("span",{ref:"mount"})])}),[],!1,null,null,null).exports,tr=l.Ay.extend({name:"FilesListTableFooter",components:{},props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},summary:{type:String,default:""},filesListWidth:{type:Number,default:0}},setup(){const t=Qn();return{filesStore:Kn(),pathsStore:t}},computed:{currentView(){return this.$navigation.active},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},currentFolder(){var t;if(null===(t=this.currentView)||void 0===t||!t.id)return;if("/"===this.dir)return this.filesStore.getRoot(this.currentView.id);const e=this.pathsStore.getPath(this.currentView.id,this.dir);return this.filesStore.getNode(e)},columns(){var t;return this.filesListWidth<512?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},totalSize(){var t;return null!==(t=this.currentFolder)&&void 0!==t&&t.size?(0,a.v7)(this.currentFolder.size,!0):(0,a.v7)(this.nodes.reduce(((t,e)=>t+e.size||0),0),!0)}},methods:{classForColumn(t){return{"files-list__row-column-custom":!0,["files-list__row-".concat(this.currentView.id,"-").concat(t.id)]:!0}},t:Ne.Tl}});var er=s(31840),nr={};nr.styleTagTransform=on(),nr.setAttributes=nn(),nr.insert=tn().bind(null,"head"),nr.domAPI=Je(),nr.insertStyleElement=rn(),Qe()(er.A,nr),er.A&&er.A.locals&&er.A.locals;const sr=(0,Pe.A)(tr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",[e("th",{staticClass:"files-list__row-checkbox"},[e("span",{staticClass:"hidden-visually"},[t._v(t._s(t.t("files","Total rows summary")))])]),t._v(" "),e("td",{staticClass:"files-list__row-name"},[e("span",{staticClass:"files-list__row-icon"}),t._v(" "),e("span",[t._v(t._s(t.summary))])]),t._v(" "),e("td",{staticClass:"files-list__row-actions"}),t._v(" "),t.isSizeAvailable?e("td",{staticClass:"files-list__column files-list__row-size"},[e("span",[t._v(t._s(t.totalSize))])]):t._e(),t._v(" "),t.isMtimeAvailable?e("td",{staticClass:"files-list__column files-list__row-mtime"}):t._e(),t._v(" "),t._l(t.columns,(function(n){var s;return e("th",{key:n.id,class:t.classForColumn(n)},[e("span",[t._v(t._s(null===(s=n.summary)||void 0===s?void 0:s.call(n,t.nodes,t.currentView)))])])}))],2)}),[],!1,null,"a85bde20",null).exports;var ir=s(1795),rr=s(33017);const ar=l.Ay.extend({computed:{...(0,r.aH)(Me,["getConfig","setSortingBy","toggleSortingDirection"]),currentView(){return this.$navigation.active},sortingMode(){var t,e;return(null===(t=this.getConfig(this.currentView.id))||void 0===t?void 0:t.sorting_mode)||(null===(e=this.currentView)||void 0===e?void 0:e.defaultSortKey)||"basename"},isAscSorting(){var t;return"desc"!==(null===(t=this.getConfig(this.currentView.id))||void 0===t?void 0:t.sorting_direction)}},methods:{toggleSortBy(t){this.sortingMode!==t?this.setSortingBy(t,this.currentView.id):this.toggleSortingDirection(this.currentView.id)}}}),or=(0,l.pM)({name:"FilesListTableHeaderButton",components:{MenuDown:ir.A,MenuUp:rr.A,NcButton:jn.A},mixins:[ar],props:{name:{type:String,required:!0},mode:{type:String,required:!0}},methods:{t:Ne.Tl}});var lr=s(69426),cr={};cr.styleTagTransform=on(),cr.setAttributes=nn(),cr.insert=tn().bind(null,"head"),cr.domAPI=Je(),cr.insertStyleElement=rn(),Qe()(lr.A,cr),lr.A&&lr.A.locals&&lr.A.locals;const ur=(0,Pe.A)(or,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcButton",{class:["files-list__column-sort-button",{"files-list__column-sort-button--active":t.sortingMode===t.mode,"files-list__column-sort-button--size":"size"===t.sortingMode}],attrs:{alignment:"size"===t.mode?"end":"start-reverse",type:"tertiary"},on:{click:function(e){return t.toggleSortBy(t.mode)}},scopedSlots:t._u([{key:"icon",fn:function(){return[t.sortingMode!==t.mode||t.isAscSorting?e("MenuUp",{staticClass:"files-list__column-sort-button-icon"}):e("MenuDown",{staticClass:"files-list__column-sort-button-icon"})]},proxy:!0}])},[t._v(" "),e("span",{staticClass:"files-list__column-sort-button-text"},[t._v(t._s(t.name))])])}),[],!1,null,"2dd1845e",null).exports,dr=(0,l.pM)({name:"FilesListTableHeader",components:{FilesListTableHeaderButton:ur,NcCheckboxRadioSwitch:pn.A},mixins:[ar],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},setup:()=>({filesStore:Kn(),selectionStore:Xn()}),computed:{currentView(){return this.$navigation.active},columns(){var t;return this.filesListWidth<512?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},selectAllBind(){const t=(0,Ne.Tl)("files","Toggle selection for all files and folders");return{"aria-label":t,checked:this.isAllSelected,indeterminate:this.isSomeSelected,title:t}},selectedNodes(){return this.selectionStore.selected},isAllSelected(){return this.selectedNodes.length===this.nodes.length},isNoneSelected(){return 0===this.selectedNodes.length},isSomeSelected(){return!this.isAllSelected&&!this.isNoneSelected}},methods:{ariaSortForMode(t){return this.sortingMode===t?this.isAscSorting?"ascending":"descending":null},classForColumn(t){var e;return{"files-list__column":!0,"files-list__column--sortable":!!t.sort,"files-list__row-column-custom":!0,["files-list__row-".concat(null===(e=this.currentView)||void 0===e?void 0:e.id,"-").concat(t.id)]:!0}},onToggleAll(t){if(t){const t=this.nodes.map((t=>t.fileid)).filter(Boolean);ze.debug("Added all nodes to selection",{selection:t}),this.selectionStore.setLastIndex(null),this.selectionStore.set(t)}else ze.debug("Cleared selection"),this.selectionStore.reset()},resetSelection(){this.selectionStore.reset()},t:Ne.Tl}});var mr=s(60799),pr={};pr.styleTagTransform=on(),pr.setAttributes=nn(),pr.insert=tn().bind(null,"head"),pr.domAPI=Je(),pr.insertStyleElement=rn(),Qe()(mr.A,pr),mr.A&&mr.A.locals&&mr.A.locals;const fr=(0,Pe.A)(dr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",{staticClass:"files-list__row-head"},[e("th",{staticClass:"files-list__column files-list__row-checkbox",on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.resetSelection.apply(null,arguments)}}},[e("NcCheckboxRadioSwitch",t._b({on:{"update:checked":t.onToggleAll}},"NcCheckboxRadioSwitch",t.selectAllBind,!1))],1),t._v(" "),e("th",{staticClass:"files-list__column files-list__row-name files-list__column--sortable",attrs:{"aria-sort":t.ariaSortForMode("basename")}},[e("span",{staticClass:"files-list__row-icon"}),t._v(" "),e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Name"),mode:"basename"}})],1),t._v(" "),e("th",{staticClass:"files-list__row-actions"}),t._v(" "),t.isSizeAvailable?e("th",{staticClass:"files-list__column files-list__row-size",class:{"files-list__column--sortable":t.isSizeAvailable},attrs:{"aria-sort":t.ariaSortForMode("size")}},[e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Size"),mode:"size"}})],1):t._e(),t._v(" "),t.isMtimeAvailable?e("th",{staticClass:"files-list__column files-list__row-mtime",class:{"files-list__column--sortable":t.isMtimeAvailable},attrs:{"aria-sort":t.ariaSortForMode("mtime")}},[e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Modified"),mode:"mtime"}})],1):t._e(),t._v(" "),t._l(t.columns,(function(n){return e("th",{key:n.id,class:t.classForColumn(n),attrs:{"aria-sort":t.ariaSortForMode(n.id)}},[n.sort?e("FilesListTableHeaderButton",{attrs:{name:n.title,mode:n.id}}):e("span",[t._v("\n\t\t\t"+t._s(n.title)+"\n\t\t")])],1)}))],2)}),[],!1,null,"952162c2",null).exports;var hr=s(17334),gr=s.n(hr),vr=s(96763);const wr=l.Ay.extend({name:"VirtualList",mixins:[Bs],props:{dataComponent:{type:[Object,Function],required:!0},dataKey:{type:String,required:!0},dataSources:{type:Array,required:!0},extraProps:{type:Object,default:()=>({})},scrollToIndex:{type:Number,default:0},gridMode:{type:Boolean,default:!1},caption:{type:String,default:""}},data(){return{index:this.scrollToIndex,beforeHeight:0,headerHeight:0,tableHeight:0,resizeObserver:null}},computed:{isReady(){return this.tableHeight>0},bufferItems(){return this.gridMode?this.columnCount:3},itemHeight(){return this.gridMode?197:55},itemWidth:()=>175,rowCount(){return Math.ceil((this.tableHeight-this.headerHeight)/this.itemHeight)+this.bufferItems/this.columnCount*2+1},columnCount(){return this.gridMode?Math.floor(this.filesListWidth/this.itemWidth):1},startIndex(){return Math.max(0,this.index-this.bufferItems)},shownItems(){return this.gridMode?this.rowCount*this.columnCount:this.rowCount},renderedItems(){if(!this.isReady)return[];const t=this.dataSources.slice(this.startIndex,this.startIndex+this.shownItems),e=t.filter((t=>Object.values(this.$_recycledPool).includes(t[this.dataKey]))).map((t=>t[this.dataKey])),n=Object.keys(this.$_recycledPool).filter((t=>!e.includes(this.$_recycledPool[t])));return t.map((t=>{const e=Object.values(this.$_recycledPool).indexOf(t[this.dataKey]);if(-1!==e)return{key:Object.keys(this.$_recycledPool)[e],item:t};const s=n.pop()||Math.random().toString(36).substr(2);return this.$_recycledPool[s]=t[this.dataKey],{key:s,item:t}}))},tbodyStyle(){const t=this.startIndex+this.rowCount>this.dataSources.length,e=this.dataSources.length-this.startIndex-this.shownItems,n=Math.floor(Math.min(this.dataSources.length-this.startIndex,e)/this.columnCount);return{paddingTop:"".concat(Math.floor(this.startIndex/this.columnCount)*this.itemHeight,"px"),paddingBottom:t?0:"".concat(n*this.itemHeight,"px")}}},watch:{scrollToIndex(t){this.scrollTo(t)},columnCount(t,e){0!==e?this.scrollTo(this.index):vr.debug("VirtualList: columnCount is 0, skipping scroll")}},mounted(){var t,e;const n=null===(t=this.$refs)||void 0===t?void 0:t.before,s=this.$el,i=null===(e=this.$refs)||void 0===e?void 0:e.thead;this.resizeObserver=new ResizeObserver((0,hr.debounce)((()=>{var t,e,r;this.beforeHeight=null!==(t=null==n?void 0:n.clientHeight)&&void 0!==t?t:0,this.headerHeight=null!==(e=null==i?void 0:i.clientHeight)&&void 0!==e?e:0,this.tableHeight=null!==(r=null==s?void 0:s.clientHeight)&&void 0!==r?r:0,ze.debug("VirtualList: resizeObserver updated"),this.onScroll()}),100,!1)),this.resizeObserver.observe(n),this.resizeObserver.observe(s),this.resizeObserver.observe(i),this.scrollToIndex&&this.scrollTo(this.scrollToIndex),this.$el.addEventListener("scroll",this.onScroll,{passive:!0}),this.$_recycledPool={}},beforeDestroy(){this.resizeObserver&&this.resizeObserver.disconnect()},methods:{scrollTo(t){const e=Math.ceil(this.dataSources.length/this.columnCount);if(e<this.rowCount)return void ze.debug("VirtualList: Skip scrolling. nothing to scroll",{index:t,targetRow:e,rowCount:this.rowCount});this.index=t;const n=(Math.floor(t/this.columnCount)-.5)*this.itemHeight+this.beforeHeight;ze.debug("VirtualList: scrolling to index "+t,{scrollTop:n,columnCount:this.columnCount}),this.$el.scrollTop=n},onScroll(){var t;null!==(t=this._onScrollHandle)&&void 0!==t||(this._onScrollHandle=requestAnimationFrame((()=>{this._onScrollHandle=null;const t=this.$el.scrollTop-this.beforeHeight,e=Math.floor(t/this.itemHeight)*this.columnCount;this.index=Math.max(0,e),this.$emit("scroll")})))}}}),yr=(0,Pe.A)(wr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list",attrs:{"data-cy-files-list":""}},[e("div",{ref:"before",staticClass:"files-list__before"},[t._t("before")],2),t._v(" "),t.$scopedSlots["header-overlay"]?e("div",{staticClass:"files-list__thead-overlay"},[t._t("header-overlay")],2):t._e(),t._v(" "),e("table",{staticClass:"files-list__table",class:{"files-list__table--with-thead-overlay":!!t.$scopedSlots["header-overlay"]}},[t.caption?e("caption",{staticClass:"hidden-visually"},[t._v("\n\t\t\t"+t._s(t.caption)+"\n\t\t")]):t._e(),t._v(" "),e("thead",{ref:"thead",staticClass:"files-list__thead",attrs:{"data-cy-files-list-thead":""}},[t._t("header")],2),t._v(" "),e("tbody",{staticClass:"files-list__tbody",class:t.gridMode?"files-list__tbody--grid":"files-list__tbody--list",style:t.tbodyStyle,attrs:{"data-cy-files-list-tbody":""}},t._l(t.renderedItems,(function(n,s){let{key:i,item:r}=n;return e(t.dataComponent,t._b({key:i,tag:"component",attrs:{source:r,index:s}},"component",t.extraProps,!1))})),1),t._v(" "),e("tfoot",{directives:[{name:"show",rawName:"v-show",value:t.isReady,expression:"isReady"}],staticClass:"files-list__tfoot",attrs:{"data-cy-files-list-tfoot":""}},[t._t("footer")],2)])])}),[],!1,null,null,null).exports,Ar=(0,a.qK)(),br=(0,l.pM)({name:"FilesListTableHeaderActions",components:{NcActions:oi.A,NcActionButton:ai.A,NcIconSvgWrapper:Ue.A,NcLoadingIcon:zn.A},mixins:[Bs],props:{currentView:{type:Object,required:!0},selectedNodes:{type:Array,default:()=>[]}},setup:()=>({actionsMenuStore:qs(),filesStore:Kn(),selectionStore:Xn()}),data:()=>({loading:null}),computed:{dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},enabledActions(){return Ar.filter((t=>t.execBatch)).filter((t=>!t.enabled||t.enabled(this.nodes,this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0)))},nodes(){return this.selectedNodes.map((t=>this.getNode(t))).filter(Boolean)},areSomeNodesLoading(){return this.nodes.some((t=>t.status===a.zI.LOADING))},openedMenu:{get(){return"global"===this.actionsMenuStore.opened},set(t){this.actionsMenuStore.opened=t?"global":null}},inlineActions(){return this.filesListWidth<512?0:this.filesListWidth<768?1:this.filesListWidth<1024?2:3}},methods:{getNode(t){return this.filesStore.getNode(t)},async onActionClick(t){const e=t.displayName(this.nodes,this.currentView),n=this.selectedNodes;try{this.loading=t.id,this.nodes.forEach((t=>{l.Ay.set(t,"status",a.zI.LOADING)}));const s=await t.execBatch(this.nodes,this.currentView,this.dir);if(!s.some((t=>null!==t)))return void this.selectionStore.reset();if(s.some((t=>!1===t))){const t=n.filter(((t,e)=>!1===s[e]));if(this.selectionStore.set(t),s.some((t=>null===t)))return;return void(0,qe.Qg)(this.t("files",'"{displayName}" failed on some elements ',{displayName:e}))}(0,qe.Te)(this.t("files",'"{displayName}" batch action executed successfully',{displayName:e})),this.selectionStore.reset()}catch(n){ze.error("Error while executing action",{action:t,e:n}),(0,qe.Qg)(this.t("files",'"{displayName}" action failed',{displayName:e}))}finally{this.loading=null,this.nodes.forEach((t=>{l.Ay.set(t,"status",void 0)}))}},t:Ne.Tl}}),_r=br;var Cr=s(58017),xr={};xr.styleTagTransform=on(),xr.setAttributes=nn(),xr.insert=tn().bind(null,"head"),xr.domAPI=Je(),xr.insertStyleElement=rn(),Qe()(Cr.A,xr),Cr.A&&Cr.A.locals&&Cr.A.locals;var Tr=(0,Pe.A)(_r,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list__column files-list__row-actions-batch"},[e("NcActions",{ref:"actionsMenu",attrs:{disabled:!!t.loading||t.areSomeNodesLoading,"force-name":!0,inline:t.inlineActions,"menu-name":t.inlineActions<=1?t.t("files","Actions"):null,open:t.openedMenu},on:{"update:open":function(e){t.openedMenu=e}}},t._l(t.enabledActions,(function(n){return e("NcActionButton",{key:n.id,class:"files-list__row-actions-batch-"+n.id,on:{click:function(e){return t.onActionClick(n)}},scopedSlots:t._u([{key:"icon",fn:function(){return[t.loading===n.id?e("NcLoadingIcon",{attrs:{size:18}}):e("NcIconSvgWrapper",{attrs:{svg:n.iconSvgInline(t.nodes,t.currentView)}})]},proxy:!0}],null,!0)},[t._v("\n\t\t\t"+t._s(n.displayName(t.nodes,t.currentView))+"\n\t\t")])})),1)],1)}),[],!1,null,"d939292c",null);const Sr=Tr.exports,kr=(0,l.pM)({name:"FilesListVirtual",components:{FilesListHeader:Zi,FilesListTableFooter:sr,FilesListTableHeader:fr,VirtualList:yr,FilesListTableHeaderActions:Sr},mixins:[Bs],props:{currentView:{type:a.Ss,required:!0},currentFolder:{type:a.vd,required:!0},nodes:{type:Array,required:!0}},setup:()=>({userConfigStore:An(),selectionStore:Xn()}),data:()=>({FileEntry:Yi,FileEntryGrid:Qi,headers:(0,a.By)(),scrollToIndex:0,openFileId:null}),computed:{userConfig(){return this.userConfigStore.userConfig},fileId(){return parseInt(this.$route.params.fileid)||null},openFile(){return!!this.$route.query.openfile},summary(){return Es(this.nodes)},isMtimeAvailable(){return!(this.filesListWidth<768)&&this.nodes.some((t=>void 0!==t.mtime))},isSizeAvailable(){return!(this.filesListWidth<768)&&this.nodes.some((t=>void 0!==t.size))},sortedHeaders(){return this.currentFolder&&this.currentView?[...this.headers].sort(((t,e)=>t.order-e.order)):[]},caption(){const t=(0,Ne.Tl)("files","List of files and folders."),e=this.currentView.caption||t,n=(0,Ne.Tl)("files","Column headers with buttons are sortable."),s=(0,Ne.Tl)("files","This list is not fully rendered for performance reasons. The files will be rendered as you navigate through the list.");return"".concat(e,"\n").concat(n,"\n").concat(s)},selectedNodes(){return this.selectionStore.selected},isNoneSelected(){return 0===this.selectedNodes.length}},watch:{fileId(t){this.scrollToFile(t,!1)},openFile(t){t&&this.$nextTick((()=>this.handleOpenFile(this.fileId)))}},mounted(){window.document.querySelector("main.app-content").addEventListener("dragover",this.onDragOver);const{id:t}=(0,Be.C)("files","openFileInfo",{});this.scrollToFile(null!=t?t:this.fileId),this.openSidebarForFile(null!=t?t:this.fileId),this.handleOpenFile(null!=t?t:null)},beforeDestroy(){window.document.querySelector("main.app-content").removeEventListener("dragover",this.onDragOver)},methods:{openSidebarForFile(t){if(document.documentElement.clientWidth>1024&&this.currentFolder.fileid!==t){var e;const n=this.nodes.find((e=>e.fileid===t));n&&null!=Yn&&null!==(e=Yn.enabled)&&void 0!==e&&e.call(Yn,[n],this.currentView)&&(ze.debug("Opening sidebar on file "+n.path,{node:n}),Yn.exec(n,this.currentView,this.currentFolder.path))}},scrollToFile(t){let e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(t){const n=this.nodes.findIndex((e=>e.fileid===t));e&&-1===n&&t!==this.currentFolder.fileid&&(0,qe.Qg)(this.t("files","File not found")),this.scrollToIndex=Math.max(0,n)}},handleOpenFile(t){if(null===t||this.openFileId===t)return;const e=this.nodes.find((e=>e.fileid===t));void 0!==e&&e.type!==a.pt.Folder&&(ze.debug("Opening file "+e.path,{node:e}),this.openFileId=t,(0,a.qK)().filter((t=>!t.enabled||t.enabled([e],this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0))).filter((t=>!(null==t||!t.default)))[0].exec(e,this.currentView,this.currentFolder.path))},getFileId:t=>t.fileid,onDragOver(t){var e;if(null===(e=t.dataTransfer)||void 0===e?void 0:e.types.includes("Files"))return;t.preventDefault(),t.stopPropagation();const n=this.$refs.table.$el.getBoundingClientRect().top,s=n+this.$refs.table.$el.getBoundingClientRect().height;t.clientY<n+100?this.$refs.table.$el.scrollTop=this.$refs.table.$el.scrollTop-25:t.clientY>s-50&&(this.$refs.table.$el.scrollTop=this.$refs.table.$el.scrollTop+25)},t:Ne.Tl}});var Er=s(77305),Lr={};Lr.styleTagTransform=on(),Lr.setAttributes=nn(),Lr.insert=tn().bind(null,"head"),Lr.domAPI=Je(),Lr.insertStyleElement=rn(),Qe()(Er.A,Lr),Er.A&&Er.A.locals&&Er.A.locals;var Nr=s(27033),Fr={};Fr.styleTagTransform=on(),Fr.setAttributes=nn(),Fr.insert=tn().bind(null,"head"),Fr.domAPI=Je(),Fr.insertStyleElement=rn(),Qe()(Nr.A,Fr),Nr.A&&Nr.A.locals&&Nr.A.locals;const Pr=(0,Pe.A)(kr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("VirtualList",{ref:"table",attrs:{"data-component":t.userConfig.grid_view?t.FileEntryGrid:t.FileEntry,"data-key":"source","data-sources":t.nodes,"grid-mode":t.userConfig.grid_view,"extra-props":{isMtimeAvailable:t.isMtimeAvailable,isSizeAvailable:t.isSizeAvailable,nodes:t.nodes,filesListWidth:t.filesListWidth},"scroll-to-index":t.scrollToIndex,caption:t.caption},scopedSlots:t._u([t.isNoneSelected?null:{key:"header-overlay",fn:function(){return[e("span",{staticClass:"files-list__selected"},[t._v(t._s(t.t("files","{count} selected",{count:t.selectedNodes.length})))]),t._v(" "),e("FilesListTableHeaderActions",{attrs:{"current-view":t.currentView,"selected-nodes":t.selectedNodes}})]},proxy:!0},{key:"before",fn:function(){return t._l(t.sortedHeaders,(function(n){return e("FilesListHeader",{key:n.id,attrs:{"current-folder":t.currentFolder,"current-view":t.currentView,header:n}})}))},proxy:!0},{key:"header",fn:function(){return[e("FilesListTableHeader",{ref:"thead",attrs:{"files-list-width":t.filesListWidth,"is-mtime-available":t.isMtimeAvailable,"is-size-available":t.isSizeAvailable,nodes:t.nodes}})]},proxy:!0},{key:"footer",fn:function(){return[e("FilesListTableFooter",{attrs:{"files-list-width":t.filesListWidth,"is-mtime-available":t.isMtimeAvailable,"is-size-available":t.isSizeAvailable,nodes:t.nodes,summary:t.summary}})]},proxy:!0}],null,!0)})}),[],!1,null,"d5a5c156",null).exports,Ir={name:"TrayArrowDownIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Dr=(0,Pe.A)(Ir,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon tray-arrow-down-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Or=(0,l.pM)({name:"DragAndDropNotice",components:{TrayArrowDownIcon:Dr},props:{currentFolder:{type:a.vd,required:!0}},data:()=>({dragover:!1}),computed:{currentView(){return this.$navigation.active},canUpload(){return this.currentFolder&&0!=(this.currentFolder.permissions&a.aX.CREATE)},isQuotaExceeded(){var t;return 0===(null===(t=this.currentFolder)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["quota-available-bytes"])},cantUploadLabel(){return this.isQuotaExceeded?this.t("files","Your have used your space quota and cannot upload files anymore"):this.canUpload?null:this.t("files","You don’t have permission to upload or create files here")}},mounted(){const t=window.document.querySelector("main.app-content");t.addEventListener("dragover",this.onDragOver),t.addEventListener("dragleave",this.onDragLeave),t.addEventListener("drop",this.onContentDrop)},beforeDestroy(){const t=window.document.querySelector("main.app-content");t.removeEventListener("dragover",this.onDragOver),t.removeEventListener("dragleave",this.onDragLeave),t.removeEventListener("drop",this.onContentDrop)},methods:{onDragOver(t){var e;t.preventDefault(),(null===(e=t.dataTransfer)||void 0===e?void 0:e.types.includes("Files"))&&(this.dragover=!0)},onDragLeave(t){var e;const n=t.currentTarget;null!=n&&n.contains(null!==(e=t.relatedTarget)&&void 0!==e?e:t.target)||this.dragover&&(this.dragover=!1)},onContentDrop(t){ze.debug("Drag and drop cancelled, dropped on empty space",{event:t}),t.preventDefault(),this.dragover&&(this.dragover=!1)},async onDrop(t){var e,n,s;if(this.cantUploadLabel)return void(0,qe.Qg)(this.cantUploadLabel);if(null!==(e=this.$el.querySelector("tbody"))&&void 0!==e&&e.contains(t.target))return;t.preventDefault(),t.stopPropagation();const i=[...(null===(n=t.dataTransfer)||void 0===n?void 0:n.items)||[]],r=await Is(i),a=await(null===(s=this.currentView)||void 0===s?void 0:s.getContents(this.currentFolder.path)),o=null==a?void 0:a.folder;if(!o)return void(0,qe.Qg)(this.t("files","Target folder does not exist any more"));if(t.button)return;ze.debug("Dropped",{event:t,folder:o,fileTree:r});const l=(await Ds(r,o,a.contents)).findLast((t=>{var e;return t.status!==Dn.c.FAILED&&!t.file.webkitRelativePath.includes("/")&&(null===(e=t.response)||void 0===e||null===(e=e.headers)||void 0===e?void 0:e["oc-fileid"])&&2===t.source.replace(o.source,"").split("/").length}));var c,u;void 0!==l&&(ze.debug("Scrolling to last upload in current folder",{lastUpload:l}),this.$router.push({...this.$route,params:{view:null!==(c=null===(u=this.$route.params)||void 0===u?void 0:u.view)&&void 0!==c?c:"files",fileid:parseInt(l.response.headers["oc-fileid"])}})),this.dragover=!1},t:Ne.Tl}});var Ur=s(82915),Br={};Br.styleTagTransform=on(),Br.setAttributes=nn(),Br.insert=tn().bind(null,"head"),Br.domAPI=Je(),Br.insertStyleElement=rn(),Qe()(Ur.A,Br),Ur.A&&Ur.A.locals&&Ur.A.locals;const Rr=(0,Pe.A)(Or,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{directives:[{name:"show",rawName:"v-show",value:t.dragover,expression:"dragover"}],staticClass:"files-list__drag-drop-notice",attrs:{"data-cy-files-drag-drop-area":""},on:{drop:t.onDrop}},[e("div",{staticClass:"files-list__drag-drop-notice-wrapper"},[t.canUpload&&!t.isQuotaExceeded?[e("TrayArrowDownIcon",{attrs:{size:48}}),t._v(" "),e("h3",{staticClass:"files-list-drag-drop-notice__title"},[t._v("\n\t\t\t\t"+t._s(t.t("files","Drag and drop files here to upload"))+"\n\t\t\t")])]:[e("h3",{staticClass:"files-list-drag-drop-notice__title"},[t._v("\n\t\t\t\t"+t._s(t.cantUploadLabel)+"\n\t\t\t")])]],2)])}),[],!1,null,"02c943a6",null).exports;var jr,Mr=s(96763);const zr=void 0!==(null===(jr=(0,Nn.F)())||void 0===jr?void 0:jr.files_sharing),Vr=(0,l.pM)({name:"FilesList",components:{BreadCrumbs:zs,DragAndDropNotice:Rr,FilesListVirtual:Pr,LinkIcon:On.A,ListViewIcon:Bn,NcAppContent:Rn.A,NcButton:jn.A,NcEmptyContent:Mn.A,NcIconSvgWrapper:Ue.A,NcLoadingIcon:zn.A,PlusIcon:Vn.A,AccountPlusIcon:$n,UploadPicker:Dn.U,ViewGridIcon:Wn},mixins:[Bs,ar],setup(){var t;return{filesStore:Kn(),pathsStore:Qn(),selectionStore:Xn(),uploaderStore:Zn(),userConfigStore:An(),viewConfigStore:Me(),enableGridView:null===(t=(0,Be.C)("core","config",[])["enable_non-accessible_features"])||void 0===t||t}},data:()=>({filterText:"",loading:!0,promise:null,Type:In.Z,_unsubscribeStore:()=>{}}),computed:{userConfig(){return this.userConfigStore.userConfig},currentView(){return this.$navigation.active||this.$navigation.views.find((t=>{var e,n;return t.id===(null!==(e=null===(n=this.$route.params)||void 0===n?void 0:n.view)&&void 0!==e?e:"files")}))},pageHeading(){var t,e;return null!==(t=null===(e=this.currentView)||void 0===e?void 0:e.name)&&void 0!==t?t:this.t("files","Files")},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentFolder(){var t;if(null===(t=this.currentView)||void 0===t||!t.id)return;if("/"===this.dir)return this.filesStore.getRoot(this.currentView.id);const e=this.pathsStore.getPath(this.currentView.id,this.dir);return this.filesStore.getNode(e)},sortingParameters(){return[[...this.userConfig.sort_favorites_first?[t=>{var e;return 1!==(null===(e=t.attributes)||void 0===e?void 0:e.favorite)}]:[],...this.userConfig.sort_folders_first?[t=>"folder"!==t.type]:[],..."basename"!==this.sortingMode?[t=>t[this.sortingMode]]:[],t=>{var e;return(null===(e=t.attributes)||void 0===e?void 0:e.displayName)||t.basename},t=>t.basename],[...this.userConfig.sort_favorites_first?["asc"]:[],...this.userConfig.sort_folders_first?["asc"]:[],..."mtime"===this.sortingMode?[this.isAscSorting?"desc":"asc"]:[],..."mtime"!==this.sortingMode&&"basename"!==this.sortingMode?[this.isAscSorting?"asc":"desc"]:[],this.isAscSorting?"asc":"desc",this.isAscSorting?"asc":"desc"]]},dirContentsSorted(){var t;if(!this.currentView)return[];let e=[...this.dirContents];this.filterText&&(e=e.filter((t=>t.basename.toLowerCase().includes(this.filterText.toLowerCase()))),Mr.debug("Files view filtered",e));const n=((null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]).find((t=>t.id===this.sortingMode));if(null!=n&&n.sort&&"function"==typeof n.sort){const t=[...this.dirContents].sort(n.sort);return this.isAscSorting?t:t.reverse()}return function(t,e,n){var s,i;e=null!==(s=e)&&void 0!==s?s:[t=>t],n=null!==(i=n)&&void 0!==i?i:[];const r=e.map(((t,e)=>{var s;return"asc"===(null!==(s=n[e])&&void 0!==s?s:"asc")?1:-1})),a=Intl.Collator([(0,Ne.Z0)(),(0,Ne.lO)()],{numeric:!0,usage:"sort"});return[...t].sort(((t,n)=>{for(const[s,i]of e.entries()){const e=a.compare(ts(i(t)),ts(i(n)));if(0!==e)return e*r[s]}return 0}))}(e,...this.sortingParameters)},dirContents(){var t,e;const n=null===(t=this.userConfigStore)||void 0===t?void 0:t.userConfig.show_hidden;return((null===(e=this.currentFolder)||void 0===e?void 0:e._children)||[]).map(this.getNode).filter((t=>{var e;return n?!!t:t&&!0!==(null==t||null===(e=t.attributes)||void 0===e?void 0:e.hidden)&&!(null!=t&&t.basename.startsWith("."))}))},isEmptyDir(){return 0===this.dirContents.length},isRefreshing(){return void 0!==this.currentFolder&&!this.isEmptyDir&&this.loading},toPreviousDir(){const t=this.dir.split("/").slice(0,-1).join("/")||"/";return{...this.$route,query:{dir:t}}},shareAttributes(){var t,e;if(null!==(t=this.currentFolder)&&void 0!==t&&null!==(t=t.attributes)&&void 0!==t&&t["share-types"])return Object.values((null===(e=this.currentFolder)||void 0===e||null===(e=e.attributes)||void 0===e?void 0:e["share-types"])||{}).flat()},shareButtonLabel(){return this.shareAttributes?this.shareButtonType===In.Z.SHARE_TYPE_LINK?this.t("files","Shared by link"):this.t("files","Shared"):this.t("files","Share")},shareButtonType(){return this.shareAttributes?this.shareAttributes.some((t=>t===In.Z.SHARE_TYPE_LINK))?In.Z.SHARE_TYPE_LINK:In.Z.SHARE_TYPE_USER:null},gridViewButtonLabel(){return this.userConfig.grid_view?this.t("files","Switch to list view"):this.t("files","Switch to grid view")},canUpload(){return this.currentFolder&&0!=(this.currentFolder.permissions&a.aX.CREATE)},isQuotaExceeded(){var t;return 0===(null===(t=this.currentFolder)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["quota-available-bytes"])},cantUploadLabel(){return this.isQuotaExceeded?this.t("files","Your have used your space quota and cannot upload files anymore"):this.t("files","You don’t have permission to upload or create files here")},canShare(){return zr&&this.currentFolder&&0!=(this.currentFolder.permissions&a.aX.SHARE)}},watch:{currentView(t,e){(null==t?void 0:t.id)!==(null==e?void 0:e.id)&&(ze.debug("View changed",{newView:t,oldView:e}),this.selectionStore.reset(),this.resetSearch(),this.fetchContent())},dir(t,e){var n;ze.debug("Directory changed",{newDir:t,oldDir:e}),this.selectionStore.reset(),this.resetSearch(),this.fetchContent(),null!==(n=this.$refs)&&void 0!==n&&null!==(n=n.filesListVirtual)&&void 0!==n&&n.$el&&(this.$refs.filesListVirtual.$el.scrollTop=0)},dirContents(t){ze.debug("Directory contents changed",{view:this.currentView,folder:this.currentFolder,contents:t}),(0,Le.Ic)("files:list:updated",{view:this.currentView,folder:this.currentFolder,contents:t})}},mounted(){this.fetchContent(),(0,Le.B1)("files:node:updated",this.onUpdatedNode),(0,Le.B1)("nextcloud:unified-search.search",this.onSearch),(0,Le.B1)("nextcloud:unified-search.reset",this.onSearch),this._unsubscribeStore=this.userConfigStore.$subscribe((()=>this.fetchContent()),{deep:!0})},unmounted(){(0,Le.al)("files:node:updated",this.onUpdatedNode),(0,Le.al)("nextcloud:unified-search.search",this.onSearch),(0,Le.al)("nextcloud:unified-search.reset",this.onSearch),this._unsubscribeStore()},methods:{async fetchContent(){var t;this.loading=!0;const e=this.dir,n=this.currentView;if(n){"function"==typeof(null===(t=this.promise)||void 0===t?void 0:t.cancel)&&(this.promise.cancel(),ze.debug("Cancelled previous ongoing fetch")),this.promise=n.getContents(e);try{const{folder:t,contents:s}=await this.promise;ze.debug("Fetched contents",{dir:e,folder:t,contents:s}),this.filesStore.updateNodes(s),this.$set(t,"_children",s.map((t=>t.fileid))),"/"===e?this.filesStore.setRoot({service:n.id,root:t}):t.fileid?(this.filesStore.updateNodes([t]),this.pathsStore.addPath({service:n.id,fileid:t.fileid,path:e})):ze.error("Invalid root folder returned",{dir:e,folder:t,currentView:n}),s.filter((t=>"folder"===t.type)).forEach((t=>{this.pathsStore.addPath({service:n.id,fileid:t.fileid,path:(0,Fn.join)(e,t.basename)})}))}catch(t){ze.error("Error while fetching content",{error:t})}finally{this.loading=!1}}else ze.debug("The current view doesn't exists or is not ready.",{currentView:n})},getNode(t){return this.filesStore.getNode(t)},onUpload(t){var e;(0,Fn.dirname)(t.source)===(null===(e=this.currentFolder)||void 0===e?void 0:e.source)&&this.fetchContent()},async onUploadFail(t){var e;const n=(null===(e=t.response)||void 0===e?void 0:e.status)||0;if(507!==n)if(404!==n&&409!==n)if(403!==n){try{var s;const e=new Pn.Parser({trim:!0,explicitRoot:!1}),n=(await e.parseStringPromise(null===(s=t.response)||void 0===s?void 0:s.data))["s:message"][0];if("string"==typeof n&&""!==n.trim())return void(0,qe.Qg)(this.t("files","Error during upload: {message}",{message:n}))}catch(t){ze.error("Error while parsing",{error:t})}0===n?(0,qe.Qg)(this.t("files","Unknown error during upload")):(0,qe.Qg)(this.t("files","Error during upload, status code {status}",{status:n}))}else(0,qe.Qg)(this.t("files","Operation is blocked by access control"));else(0,qe.Qg)(this.t("files","Target folder does not exist any more"));else(0,qe.Qg)(this.t("files","Not enough free space"))},onUpdatedNode(t){var e;(null==t?void 0:t.fileid)===(null===(e=this.currentFolder)||void 0===e?void 0:e.fileid)&&this.fetchContent()},onSearch:gr()((function(t){Mr.debug("Files app handling search event from unified search...",t),this.filterText=t.query}),500),resetSearch(){this.filterText=""},openSharingSidebar(){var t;this.currentFolder?(null!==(t=window)&&void 0!==t&&null!==(t=t.OCA)&&void 0!==t&&null!==(t=t.Files)&&void 0!==t&&null!==(t=t.Sidebar)&&void 0!==t&&t.setActiveTab&&window.OCA.Files.Sidebar.setActiveTab("sharing"),Yn.exec(this.currentFolder,this.currentView,this.currentFolder.path)):ze.debug("No current folder found for opening sharing sidebar")},toggleGridView(){this.userConfigStore.update("grid_view",!this.userConfig.grid_view)},t:Ne.Tl,n:Ne.zw}});var qr=s(61608),$r={};$r.styleTagTransform=on(),$r.setAttributes=nn(),$r.insert=tn().bind(null,"head"),$r.domAPI=Je(),$r.insertStyleElement=rn(),Qe()(qr.A,$r),qr.A&&qr.A.locals&&qr.A.locals;const Hr=(0,Pe.A)(Vr,(function(){var t,e,n=this,s=n._self._c;return n._self._setupProxy,s("NcAppContent",{attrs:{"page-heading":n.pageHeading,"data-cy-files-content":""}},[s("div",{staticClass:"files-list__header"},[s("BreadCrumbs",{attrs:{path:n.dir},on:{reload:n.fetchContent},scopedSlots:n._u([{key:"actions",fn:function(){return[n.canShare&&n.filesListWidth>=512?s("NcButton",{staticClass:"files-list__header-share-button",class:{"files-list__header-share-button--shared":n.shareButtonType},attrs:{"aria-label":n.shareButtonLabel,title:n.shareButtonLabel,type:"tertiary"},on:{click:n.openSharingSidebar},scopedSlots:n._u([{key:"icon",fn:function(){return[n.shareButtonType===n.Type.SHARE_TYPE_LINK?s("LinkIcon"):s("AccountPlusIcon",{attrs:{size:20}})]},proxy:!0}],null,!1,2969853559)}):n._e(),n._v(" "),!n.canUpload||n.isQuotaExceeded?s("NcButton",{staticClass:"files-list__header-upload-button--disabled",attrs:{"aria-label":n.cantUploadLabel,title:n.cantUploadLabel,disabled:!0,type:"secondary"},scopedSlots:n._u([{key:"icon",fn:function(){return[s("PlusIcon",{attrs:{size:20}})]},proxy:!0}],null,!1,2953566425)},[n._v("\n\t\t\t\t\t"+n._s(n.t("files","New"))+"\n\t\t\t\t")]):n.currentFolder?s("UploadPicker",{staticClass:"files-list__header-upload-button",attrs:{content:n.dirContents,destination:n.currentFolder,multiple:!0},on:{failed:n.onUploadFail,uploaded:n.onUpload}}):n._e()]},proxy:!0}])}),n._v(" "),n.filesListWidth>=512&&n.enableGridView?s("NcButton",{staticClass:"files-list__header-grid-button",attrs:{"aria-label":n.gridViewButtonLabel,title:n.gridViewButtonLabel,type:"tertiary"},on:{click:n.toggleGridView},scopedSlots:n._u([{key:"icon",fn:function(){return[n.userConfig.grid_view?s("ListViewIcon"):s("ViewGridIcon")]},proxy:!0}],null,!1,1682960703)}):n._e(),n._v(" "),n.isRefreshing?s("NcLoadingIcon",{staticClass:"files-list__refresh-icon"}):n._e()],1),n._v(" "),!n.loading&&n.canUpload?s("DragAndDropNotice",{attrs:{"current-folder":n.currentFolder}}):n._e(),n._v(" "),n.loading&&!n.isRefreshing?s("NcLoadingIcon",{staticClass:"files-list__loading-icon",attrs:{size:38,name:n.t("files","Loading current folder")}}):!n.loading&&n.isEmptyDir?s("NcEmptyContent",{attrs:{name:(null===(t=n.currentView)||void 0===t?void 0:t.emptyTitle)||n.t("files","No files in here"),description:(null===(e=n.currentView)||void 0===e?void 0:e.emptyCaption)||n.t("files","Upload some content or sync with your devices!"),"data-cy-files-content-empty":""},scopedSlots:n._u([{key:"action",fn:function(){return["/"!==n.dir?s("NcButton",{attrs:{"aria-label":n.t("files","Go to the previous folder"),type:"primary",to:n.toPreviousDir}},[n._v("\n\t\t\t\t"+n._s(n.t("files","Go back"))+"\n\t\t\t")]):n._e()]},proxy:!0},{key:"icon",fn:function(){return[s("NcIconSvgWrapper",{attrs:{svg:n.currentView.icon}})]},proxy:!0}])}):s("FilesListVirtual",{ref:"filesListVirtual",attrs:{"current-folder":n.currentFolder,"current-view":n.currentView,nodes:n.dirContentsSorted}})],1)}),[],!1,null,"5c37291f",null).exports,Wr=(0,l.pM)({name:"FilesApp",components:{NcContent:Ee.A,FilesList:Hr,Navigation:Ln}}),Gr=(0,Pe.A)(Wr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcContent",{attrs:{"app-name":"files"}},[e("Navigation"),t._v(" "),e("FilesList")],1)}),[],!1,null,null,null).exports;var Yr,Kr;s.nc=btoa((0,o.do)()),window.OCA.Files=null!==(Yr=window.OCA.Files)&&void 0!==Yr?Yr:{},window.OCP.Files=null!==(Kr=window.OCP.Files)&&void 0!==Kr?Kr:{};const Qr=new class{constructor(t){var e,n,s;e=this,s=void 0,(n=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}(n="_router"))in e?Object.defineProperty(e,n,{value:s,enumerable:!0,configurable:!0,writable:!0}):e[n]=s,this._router=t}get name(){return this._router.currentRoute.name}get query(){return this._router.currentRoute.query||{}}get params(){return this._router.currentRoute.params||{}}goTo(t){let e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return this._router.push({path:t,replace:e})}goToRoute(t,e,n,s){return this._router.push({name:t,query:n,params:e,replace:s})}}(Te);Object.assign(window.OCP.Files,{Router:Qr}),l.Ay.use(r.R2);const Xr=l.Ay.observable((0,a.bh)());l.Ay.prototype.$navigation=Xr;const Jr=new class{constructor(){var t,e,n;t=this,n=void 0,(e=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}(e="_settings"))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,this._settings=[],ke.debug("OCA.Files.Settings initialized")}register(t){return this._settings.filter((e=>e.name===t.name)).length>0?(ke.error("A setting with the same name is already registered"),!1):(this._settings.push(t),!0)}get settings(){return this._settings}};Object.assign(window.OCA.Files,{Settings:Jr}),Object.assign(window.OCA.Files.Settings,{Setting:class{constructor(t,e){let{el:n,open:s,close:i}=e;Se(this,"_close",void 0),Se(this,"_el",void 0),Se(this,"_name",void 0),Se(this,"_open",void 0),this._name=t,this._el=n,this._open=s,this._close=i,"function"!=typeof this._open&&(this._open=()=>{}),"function"!=typeof this._close&&(this._close=()=>{})}get name(){return this._name}get el(){return this._el}get open(){return this._open}get close(){return this._close}}}),new(l.Ay.extend(Gr))({router:Te,pinia:c}).$mount("#content")},30521:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".upload-picker[data-v-eca9500a] {\n  display: inline-flex;\n  align-items: center;\n  height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n  width: 200px;\n  max-width: 0;\n  transition: max-width var(--animation-quick) ease-in-out;\n  margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n  max-width: 200px;\n  margin-right: 20px;\n  margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n  animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n  0% {\n    opacity: .5;\n  }\n  25% {\n    opacity: 1;\n  }\n  60% {\n    opacity: .5;\n  }\n  to {\n    opacity: .5;\n  }\n}\n","",{version:3,sources:["webpack://./node_modules/@nextcloud/upload/dist/assets/index-Ussc_ol3.css"],names:[],mappings:"AAAA;EACE,oBAAoB;EACpB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,YAAY;EACZ,YAAY;EACZ,wDAAwD;EACxD,eAAe;AACjB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,gBAAgB;EAChB,kBAAkB;EAClB,gBAAgB;AAClB;AACA;EACE,yDAAyD;AAC3D;AACA;EACE;IACE,WAAW;EACb;EACA;IACE,UAAU;EACZ;EACA;IACE,WAAW;EACb;EACA;IACE,WAAW;EACb;AACF",sourcesContent:[".upload-picker[data-v-eca9500a] {\n  display: inline-flex;\n  align-items: center;\n  height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n  width: 200px;\n  max-width: 0;\n  transition: max-width var(--animation-quick) ease-in-out;\n  margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n  max-width: 200px;\n  margin-right: 20px;\n  margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n  animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n  0% {\n    opacity: .5;\n  }\n  25% {\n    opacity: 1;\n  }\n  60% {\n    opacity: .5;\n  }\n  to {\n    opacity: .5;\n  }\n}\n"],sourceRoot:""}]);const o=a},35833:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".files-list__breadcrumbs[data-v-499e1525]{flex:1 1 100% !important;width:100%;height:100%;margin-block:0;margin-inline:10px}.files-list__breadcrumbs[data-v-499e1525]  a{cursor:pointer !important}.files-list__breadcrumbs--with-progress[data-v-499e1525]{flex-direction:column !important;align-items:flex-start !important}","",{version:3,sources:["webpack://./apps/files/src/components/BreadCrumbs.vue"],names:[],mappings:"AACA,0CAEC,wBAAA,CACA,UAAA,CACA,WAAA,CACA,cAAA,CACA,kBAAA,CAGC,6CACC,yBAAA,CAIF,yDACC,gCAAA,CACA,iCAAA",sourcesContent:["\n.files-list__breadcrumbs {\n\t// Take as much space as possible\n\tflex: 1 1 100% !important;\n\twidth: 100%;\n\theight: 100%;\n\tmargin-block: 0;\n\tmargin-inline: 10px;\n\n\t:deep() {\n\t\ta {\n\t\t\tcursor: pointer !important;\n\t\t}\n\t}\n\n\t&--with-progress {\n\t\tflex-direction: column !important;\n\t\talign-items: flex-start !important;\n\t}\n}\n"],sourceRoot:""}]);const o=a},82915:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".files-list__drag-drop-notice[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;width:100%;min-height:113px;margin:0;user-select:none;color:var(--color-text-maxcontrast);background-color:var(--color-main-background);border-color:#000}.files-list__drag-drop-notice h3[data-v-02c943a6]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;height:15vh;max-height:70%;padding:0 5vw;border:2px var(--color-border-dark) dashed;border-radius:var(--border-radius-large)}","",{version:3,sources:["webpack://./apps/files/src/components/DragAndDropNotice.vue"],names:[],mappings:"AACA,+CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAEA,gBAAA,CACA,QAAA,CACA,gBAAA,CACA,mCAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kDACC,gBAAA,CACA,aAAA,CAGD,uDACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,WAAA,CACA,cAAA,CACA,aAAA,CACA,0CAAA,CACA,wCAAA",sourcesContent:["\n.files-list__drag-drop-notice {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\twidth: 100%;\n\t// Breadcrumbs height + row thead height\n\tmin-height: calc(58px + 55px);\n\tmargin: 0;\n\tuser-select: none;\n\tcolor: var(--color-text-maxcontrast);\n\tbackground-color: var(--color-main-background);\n\tborder-color: black;\n\n\th3 {\n\t\tmargin-left: 16px;\n\t\tcolor: inherit;\n\t}\n\n\t&-wrapper {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\theight: 15vh;\n\t\tmax-height: 70%;\n\t\tpadding: 0 5vw;\n\t\tborder: 2px var(--color-border-dark) dashed;\n\t\tborder-radius: var(--border-radius-large);\n\t}\n}\n\n"],sourceRoot:""}]);const o=a},52608:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".files-list-drag-image{position:absolute;top:-9999px;left:-9999px;display:flex;overflow:hidden;align-items:center;height:44px;padding:6px 12px;background:var(--color-main-background)}.files-list-drag-image__icon,.files-list-drag-image .files-list__row-icon{display:flex;overflow:hidden;align-items:center;justify-content:center;width:32px;height:32px;border-radius:var(--border-radius)}.files-list-drag-image__icon{overflow:visible;margin-right:12px}.files-list-drag-image__icon img{max-width:100%;max-height:100%}.files-list-drag-image__icon .material-design-icon{color:var(--color-text-maxcontrast)}.files-list-drag-image__icon .material-design-icon.folder-icon{color:var(--color-primary-element)}.files-list-drag-image__icon>span{display:flex}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon{margin-top:6px;margin-left:-26px}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon+.files-list__row-icon{margin-top:12px}.files-list-drag-image__icon>span:not(:empty)+*{display:none}.files-list-drag-image__name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}","",{version:3,sources:["webpack://./apps/files/src/components/DragAndDropPreview.vue"],names:[],mappings:"AAIA,uBACC,iBAAA,CACA,WAAA,CACA,YAAA,CACA,YAAA,CACA,eAAA,CACA,kBAAA,CACA,WAAA,CACA,gBAAA,CACA,uCAAA,CAEA,0EAEC,YAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kCAAA,CAGD,6BACC,gBAAA,CACA,iBAAA,CAEA,iCACC,cAAA,CACA,eAAA,CAGD,mDACC,mCAAA,CACA,+DACC,kCAAA,CAKF,kCACC,YAAA,CAGA,8EACC,cA9CU,CA+CV,iBAAA,CACA,oGACC,eAAA,CAKF,gDACC,YAAA,CAKH,6BACC,eAAA,CACA,kBAAA,CACA,sBAAA",sourcesContent:["\n$size: 32px;\n$stack-shift: 6px;\n\n.files-list-drag-image {\n\tposition: absolute;\n\ttop: -9999px;\n\tleft: -9999px;\n\tdisplay: flex;\n\toverflow: hidden;\n\talign-items: center;\n\theight: 44px;\n\tpadding: 6px 12px;\n\tbackground: var(--color-main-background);\n\n\t&__icon,\n\t.files-list__row-icon {\n\t\tdisplay: flex;\n\t\toverflow: hidden;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 32px;\n\t\theight: 32px;\n\t\tborder-radius: var(--border-radius);\n\t}\n\n\t&__icon {\n\t\toverflow: visible;\n\t\tmargin-right: 12px;\n\n\t\timg {\n\t\t\tmax-width: 100%;\n\t\t\tmax-height: 100%;\n\t\t}\n\n\t\t.material-design-icon {\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\t&.folder-icon {\n\t\t\t\tcolor: var(--color-primary-element);\n\t\t\t}\n\t\t}\n\n\t\t// Previews container\n\t\t> span {\n\t\t\tdisplay: flex;\n\n\t\t\t// Stack effect if more than one element\n\t\t\t.files-list__row-icon + .files-list__row-icon {\n\t\t\t\tmargin-top: $stack-shift;\n\t\t\t\tmargin-left: $stack-shift - $size;\n\t\t\t\t& + .files-list__row-icon {\n\t\t\t\t\tmargin-top: $stack-shift * 2;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// If we have manually clone the preview,\n\t\t\t// let's hide any fallback icons\n\t\t\t&:not(:empty) + * {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n\n\t&__name {\n\t\toverflow: hidden;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t}\n}\n\n"],sourceRoot:""}]);const o=a},14781:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".favorite-marker-icon[data-v-42ea6dd4]{color:var(--color-favorite);min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-42ea6dd4]  svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-42ea6dd4]  svg path{stroke:var(--color-main-background);stroke-width:8px;stroke-linejoin:round;paint-order:stroke}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FavoriteIcon.vue"],names:[],mappings:"AACA,uCACC,2BAAA,CAEA,0BAAA,CACG,2BAAA,CAGF,4CAEC,qBAAA,CACA,sBAAA,CAGA,0BAAA,CACA,2BAAA,CAGA,iDACC,mCAAA,CACA,gBAAA,CACA,qBAAA,CACA,kBAAA",sourcesContent:["\n.favorite-marker-icon {\n\tcolor: var(--color-favorite);\n\t// Override NcIconSvgWrapper defaults (clickable area)\n\tmin-width: unset !important;\n    min-height: unset !important;\n\n\t:deep() {\n\t\tsvg {\n\t\t\t// We added a stroke for a11y so we must increase the size to include the stroke\n\t\t\twidth: 26px !important;\n\t\t\theight: 26px !important;\n\n\t\t\t// Override NcIconSvgWrapper defaults of 20px\n\t\t\tmax-width: unset !important;\n\t\t\tmax-height: unset !important;\n\n\t\t\t// Sow a border around the icon for better contrast\n\t\t\tpath {\n\t\t\t\tstroke: var(--color-main-background);\n\t\t\t\tstroke-width: 8px;\n\t\t\t\tstroke-linejoin: round;\n\t\t\t\tpaint-order: stroke;\n\t\t\t}\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const o=a},90908:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,"main.app-content[style*=mouse-pos-x] .v-popper__popper{transform:translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper[data-popper-placement=top]{transform:translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper .v-popper__arrow-container{display:none}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue"],names:[],mappings:"AAGA,uDACC,6EAAA,CAGA,kFAEC,iGAAA,CAGD,kFACC,YAAA",sourcesContent:['\n// Allow right click to define the position of the menu\n// only if defined\nmain.app-content[style*="mouse-pos-x"] .v-popper__popper {\n\ttransform: translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important;\n\n\t// If the menu is too close to the bottom, we move it up\n\t&[data-popper-placement="top"] {\n\t\t// 34px added to align with the top of the cursor\n\t\ttransform: translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important;\n\t}\n\t// Hide arrow if floating\n\t.v-popper__arrow-container {\n\t\tdisplay: none;\n\t}\n}\n'],sourceRoot:""}]);const o=a},81640:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,"[data-v-5edd44ea] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-5edd44ea] .button-vue--icon-and-text .button-vue__icon{color:var(--color-primary-element)}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue"],names:[],mappings:"AAEC,+DACC,kCAAA,CAED,+DACC,kCAAA",sourcesContent:["\n:deep(.button-vue--icon-and-text, .files-list__row-action-sharing-status) {\n\t.button-vue__text {\n\t\tcolor: var(--color-primary-element);\n\t}\n\t.button-vue__icon {\n\t\tcolor: var(--color-primary-element);\n\t}\n}\n"],sourceRoot:""}]);const o=a},31840:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,"tr[data-v-a85bde20]{margin-bottom:300px;border-top:1px solid var(--color-border);background-color:rgba(0,0,0,0) !important;border-bottom:none !important}tr td[data-v-a85bde20]{user-select:none;color:var(--color-text-maxcontrast) !important}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableFooter.vue"],names:[],mappings:"AAEA,oBACC,mBAAA,CACA,wCAAA,CAEA,yCAAA,CACA,6BAAA,CAEA,uBACC,gBAAA,CAEA,8CAAA",sourcesContent:["\n// Scoped row\ntr {\n\tmargin-bottom: 300px;\n\tborder-top: 1px solid var(--color-border);\n\t// Prevent hover effect on the whole row\n\tbackground-color: transparent !important;\n\tborder-bottom: none !important;\n\n\ttd {\n\t\tuser-select: none;\n\t\t// Make sure the cell colors don't apply to column headers\n\t\tcolor: var(--color-text-maxcontrast) !important;\n\t}\n}\n"],sourceRoot:""}]);const o=a},60799:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".files-list__column[data-v-952162c2]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-952162c2]{cursor:pointer}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeader.vue"],names:[],mappings:"AACA,qCACC,gBAAA,CAEA,8CAAA,CAEA,+CACC,cAAA",sourcesContent:["\n.files-list__column {\n\tuser-select: none;\n\t// Make sure the cell colors don't apply to column headers\n\tcolor: var(--color-text-maxcontrast) !important;\n\n\t&--sortable {\n\t\tcursor: pointer;\n\t}\n}\n\n"],sourceRoot:""}]);const o=a},58017:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".files-list__row-actions-batch[data-v-d939292c]{flex:1 1 100% !important;max-width:100%}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeaderActions.vue"],names:[],mappings:"AACA,gDACC,wBAAA,CACA,cAAA",sourcesContent:["\n.files-list__row-actions-batch {\n\tflex: 1 1 100% !important;\n\tmax-width: 100%;\n}\n"],sourceRoot:""}]);const o=a},69426:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".files-list__column-sort-button[data-v-2dd1845e]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-2dd1845e]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-2dd1845e]{color:var(--color-text-maxcontrast);opacity:0;transition:opacity var(--animation-quick);inset-inline-start:-10px}.files-list__column-sort-button--size .files-list__column-sort-button-icon[data-v-2dd1845e]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-2dd1845e]{opacity:1}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeaderButton.vue"],names:[],mappings:"AACA,iDAEC,oCAAA,CACA,sDAAA,CAEA,sDACC,mCAAA,CACA,kBAAA,CAGD,sDACC,mCAAA,CACA,SAAA,CACA,yCAAA,CACA,wBAAA,CAGD,4FACC,uBAAA,CAGD,mXAIC,SAAA",sourcesContent:["\n.files-list__column-sort-button {\n\t// Compensate for cells margin\n\tmargin: 0 calc(var(--cell-margin) * -1);\n\tmin-width: calc(100% - 3 * var(--cell-margin))!important;\n\n\t&-text {\n\t\tcolor: var(--color-text-maxcontrast);\n\t\tfont-weight: normal;\n\t}\n\n\t&-icon {\n\t\tcolor: var(--color-text-maxcontrast);\n\t\topacity: 0;\n\t\ttransition: opacity var(--animation-quick);\n\t\tinset-inline-start: -10px;\n\t}\n\n\t&--size &-icon {\n\t\tinset-inline-start: 10px;\n\t}\n\n\t&--active &-icon,\n\t&:hover &-icon,\n\t&:focus &-icon,\n\t&:active &-icon {\n\t\topacity: 1;\n\t}\n}\n"],sourceRoot:""}]);const o=a},77305:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".files-list[data-v-d5a5c156]{--row-height: 55px;--cell-margin: 14px;--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);--checkbox-size: 24px;--clickable-area: 44px;--icon-preview-size: 32px;overflow:auto;height:100%;will-change:scroll-position}.files-list[data-v-d5a5c156]  tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-d5a5c156]  tbody tr{contain:strict}.files-list[data-v-d5a5c156]  tbody tr:hover,.files-list[data-v-d5a5c156]  tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-d5a5c156]  .files-list__before{display:flex;flex-direction:column}.files-list[data-v-d5a5c156]  .files-list__selected{padding-right:12px;white-space:nowrap}.files-list[data-v-d5a5c156]  .files-list__table{display:block}.files-list[data-v-d5a5c156]  .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-d5a5c156]  .files-list__thead-overlay{position:sticky;top:0;margin-left:var(--row-height);z-index:20;display:flex;align-items:center;background-color:var(--color-main-background);border-bottom:1px solid var(--color-border);height:var(--row-height)}.files-list[data-v-d5a5c156]  .files-list__thead,.files-list[data-v-d5a5c156]  .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-d5a5c156]  .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-d5a5c156]  .files-list__tfoot{min-height:300px}.files-list[data-v-d5a5c156]  tr{position:relative;display:flex;align-items:center;width:100%;user-select:none;border-bottom:1px solid var(--color-border);box-sizing:border-box;user-select:none;height:var(--row-height)}.files-list[data-v-d5a5c156]  td,.files-list[data-v-d5a5c156]  th{display:flex;align-items:center;flex:0 0 auto;justify-content:left;width:var(--row-height);height:var(--row-height);margin:0;padding:0;color:var(--color-text-maxcontrast);border:none}.files-list[data-v-d5a5c156]  td span,.files-list[data-v-d5a5c156]  th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-d5a5c156]  .files-list__row--failed{position:absolute;display:block;top:0;left:0;right:0;bottom:0;opacity:.1;z-index:-1;background:var(--color-error)}.files-list[data-v-d5a5c156]  .files-list__row-checkbox{justify-content:center}.files-list[data-v-d5a5c156]  .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-d5a5c156]  .files-list__row-checkbox .checkbox-radio-switch label.checkbox-radio-switch__label{width:var(--clickable-area);height:var(--clickable-area);margin:0;padding:calc((var(--clickable-area) - var(--checkbox-size))/2)}.files-list[data-v-d5a5c156]  .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-d5a5c156]  .files-list__row:hover,.files-list[data-v-d5a5c156]  .files-list__row:focus,.files-list[data-v-d5a5c156]  .files-list__row:active,.files-list[data-v-d5a5c156]  .files-list__row--active,.files-list[data-v-d5a5c156]  .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-d5a5c156]  .files-list__row:hover>*,.files-list[data-v-d5a5c156]  .files-list__row:focus>*,.files-list[data-v-d5a5c156]  .files-list__row:active>*,.files-list[data-v-d5a5c156]  .files-list__row--active>*,.files-list[data-v-d5a5c156]  .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-d5a5c156]  .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-d5a5c156]  .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-d5a5c156]  .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-d5a5c156]  .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-d5a5c156]  .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-d5a5c156]  .files-list__row--dragover *{pointer-events:none}.files-list[data-v-d5a5c156]  .files-list__row-icon{position:relative;display:flex;overflow:visible;align-items:center;flex:0 0 var(--icon-preview-size);justify-content:center;width:var(--icon-preview-size);height:100%;margin-right:var(--checkbox-padding);color:var(--color-primary-element)}.files-list[data-v-d5a5c156]  .files-list__row-icon *{cursor:pointer}.files-list[data-v-d5a5c156]  .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-d5a5c156]  .files-list__row-icon>span:not(.files-list__row-icon-favorite) svg{width:var(--icon-preview-size);height:var(--icon-preview-size)}.files-list[data-v-d5a5c156]  .files-list__row-icon>span.folder-icon,.files-list[data-v-d5a5c156]  .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-d5a5c156]  .files-list__row-icon>span.folder-icon svg,.files-list[data-v-d5a5c156]  .files-list__row-icon>span.folder-open-icon svg{width:calc(var(--icon-preview-size) + 6px);height:calc(var(--icon-preview-size) + 6px)}.files-list[data-v-d5a5c156]  .files-list__row-icon-preview{overflow:hidden;width:var(--icon-preview-size);height:var(--icon-preview-size);border-radius:var(--border-radius);object-fit:contain;object-position:center}.files-list[data-v-d5a5c156]  .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-d5a5c156]  .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-d5a5c156]  .files-list__row-icon-overlay{position:absolute;max-height:calc(var(--icon-preview-size)*.5);max-width:calc(var(--icon-preview-size)*.5);color:var(--color-primary-element-text);margin-top:2px}.files-list[data-v-d5a5c156]  .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-d5a5c156]  .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-d5a5c156]  .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-d5a5c156]  .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-d5a5c156]  .files-list__row-name a:focus .files-list__row-name-text{outline:2px solid var(--color-main-text) !important;border-radius:20px}.files-list[data-v-d5a5c156]  .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-d5a5c156]  .files-list__row-name .files-list__row-name-text{color:var(--color-main-text);padding:5px 10px;margin-left:-10px;display:inline-flex}.files-list[data-v-d5a5c156]  .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-d5a5c156]  .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-d5a5c156]  .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-d5a5c156]  .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-d5a5c156]  .files-list__row-actions{width:auto}.files-list[data-v-d5a5c156]  .files-list__row-actions~td,.files-list[data-v-d5a5c156]  .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-d5a5c156]  .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-d5a5c156]  .files-list__row-action--inline{margin-right:7px}.files-list[data-v-d5a5c156]  .files-list__row-mtime,.files-list[data-v-d5a5c156]  .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-d5a5c156]  .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-d5a5c156]  .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-d5a5c156]  .files-list__row-column-custom{width:calc(var(--row-height)*2)}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListVirtual.vue"],names:[],mappings:"AACA,6BACC,kBAAA,CACA,mBAAA,CAEA,wEAAA,CACA,qBAAA,CACA,sBAAA,CACA,yBAAA,CAEA,aAAA,CACA,WAAA,CACA,2BAAA,CAIC,oCACC,mBAAA,CACA,0BAAA,CACA,YAAA,CACA,qBAAA,CACA,UAAA,CAEA,iBAAA,CAGA,uCACC,cAAA,CACA,0FAEC,6CAAA,CAMH,kDACC,YAAA,CACA,qBAAA,CAGD,oDACC,kBAAA,CACA,kBAAA,CAGD,iDACC,aAAA,CAEA,uFAEC,qCAAA,CAIF,yDAEC,eAAA,CACA,KAAA,CAEA,6BAAA,CAEA,UAAA,CAEA,YAAA,CACA,kBAAA,CAGA,6CAAA,CACA,2CAAA,CACA,wBAAA,CAGD,kGAEC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,6CAAA,CAKD,iDAEC,eAAA,CACA,UAAA,CACA,KAAA,CAID,iDACC,gBAAA,CAGD,iCACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CACA,2CAAA,CACA,qBAAA,CACA,gBAAA,CACA,wBAAA,CAGD,kEACC,YAAA,CACA,kBAAA,CACA,aAAA,CACA,oBAAA,CACA,uBAAA,CACA,wBAAA,CACA,QAAA,CACA,SAAA,CACA,mCAAA,CACA,WAAA,CAKA,4EACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAIF,uDACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAAA,CACA,UAAA,CACA,6BAAA,CAGD,wDACC,sBAAA,CAEA,+EACC,YAAA,CACA,sBAAA,CAEA,iCAAA,CAEA,kHACC,2BAAA,CACA,4BAAA,CACA,QAAA,CACA,8DAAA,CAGD,4GACC,mBAAA,CAMF,gRAEC,8CAAA,CAGA,gDAAA,CACA,0RACC,wCAAA,CAID,2aACC,oCAAA,CAIF,2DAEC,mBAAA,CAKF,oDACC,iBAAA,CACA,YAAA,CACA,gBAAA,CACA,kBAAA,CAEA,iCAAA,CACA,sBAAA,CACA,8BAAA,CACA,WAAA,CAEA,oCAAA,CACA,kCAAA,CAGA,sDACC,cAAA,CAGD,yDACC,0BAAA,CAEA,iGACC,8BAAA,CACA,+BAAA,CAID,+IAEC,WAAA,CACA,uJACC,0CAAA,CACA,2CAAA,CAKH,4DACC,eAAA,CACA,8BAAA,CACA,+BAAA,CACA,kCAAA,CAEA,kBAAA,CACA,sBAAA,CAGA,uGACC,oCAAA,CAKF,6DACC,iBAAA,CACA,OAAA,CACA,WAAA,CAID,4DACC,iBAAA,CACA,4CAAA,CACA,2CAAA,CACA,uCAAA,CAEA,cAAA,CAGA,kEACC,4BAAA,CACA,uCAAA,CACA,kBAAA,CAMH,oDAEC,eAAA,CAEA,aAAA,CAEA,sDACC,YAAA,CACA,kBAAA,CAEA,UAAA,CACA,WAAA,CAEA,WAAA,CAGA,oEACC,YAAA,CAID,uFACC,mDAAA,CACA,kBAAA,CAED,2GACC,uBAAA,CAIF,+EACC,4BAAA,CAEA,gBAAA,CACA,iBAAA,CAEA,mBAAA,CAGD,8EACC,mCAAA,CAEA,gBAAA,CAKF,sDACC,UAAA,CACA,eAAA,CACA,4DACC,UAAA,CAEA,gBAAA,CACA,eAAA,CACA,gBAAA,CAEA,oEAEC,+BAAA,CACA,SAAA,CAKH,uDAEC,UAAA,CAGA,oHAEC,2BAAA,CAIA,gFAEC,kBAAA,CAKH,8DACC,gBAAA,CAGD,yGAEC,mCAAA,CAED,oDACC,iCAAA,CAEA,wBAAA,CAGD,qDACC,+BAAA,CAGD,6DACC,+BAAA",sourcesContent:["\n.files-list {\n\t--row-height: 55px;\n\t--cell-margin: 14px;\n\n\t--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);\n\t--checkbox-size: 24px;\n\t--clickable-area: 44px;\n\t--icon-preview-size: 32px;\n\n\toverflow: auto;\n\theight: 100%;\n\twill-change: scroll-position;\n\n\t& :deep() {\n\t\t// Table head, body and footer\n\t\ttbody {\n\t\t\twill-change: padding;\n\t\t\tcontain: layout paint style;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\twidth: 100%;\n\t\t\t// Necessary for virtual scrolling absolute\n\t\t\tposition: relative;\n\n\t\t\t/* Hover effect on tbody lines only */\n\t\t\ttr {\n\t\t\t\tcontain: strict;\n\t\t\t\t&:hover,\n\t\t\t\t&:focus {\n\t\t\t\t\tbackground-color: var(--color-background-dark);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Before table and thead\n\t\t.files-list__before {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t}\n\n\t\t.files-list__selected {\n\t\t\tpadding-right: 12px;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t.files-list__table {\n\t\t\tdisplay: block;\n\n\t\t\t&.files-list__table--with-thead-overlay {\n\t\t\t\t// Hide the table header below the overlay\n\t\t\t\tmargin-top: calc(-1 * var(--row-height));\n\t\t\t}\n\t\t}\n\n\t\t.files-list__thead-overlay {\n\t\t\t// Pinned on top when scrolling\n\t\t\tposition: sticky;\n\t\t\ttop: 0;\n\t\t\t// Save space for a row checkbox\n\t\t\tmargin-left: var(--row-height);\n\t\t\t// More than .files-list__thead\n\t\t\tz-index: 20;\n\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\n\t\t\t// Reuse row styles\n\t\t\tbackground-color: var(--color-main-background);\n\t\t\tborder-bottom: 1px solid var(--color-border);\n\t\t\theight: var(--row-height);\n\t\t}\n\n\t\t.files-list__thead,\n\t\t.files-list__tfoot {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\twidth: 100%;\n\t\t\tbackground-color: var(--color-main-background);\n\n\t\t}\n\n\t\t// Table header\n\t\t.files-list__thead {\n\t\t\t// Pinned on top when scrolling\n\t\t\tposition: sticky;\n\t\t\tz-index: 10;\n\t\t\ttop: 0;\n\t\t}\n\n\t\t// Table footer\n\t\t.files-list__tfoot {\n\t\t\tmin-height: 300px;\n\t\t}\n\n\t\ttr {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\twidth: 100%;\n\t\t\tuser-select: none;\n\t\t\tborder-bottom: 1px solid var(--color-border);\n\t\t\tbox-sizing: border-box;\n\t\t\tuser-select: none;\n\t\t\theight: var(--row-height);\n\t\t}\n\n\t\ttd, th {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tflex: 0 0 auto;\n\t\t\tjustify-content: left;\n\t\t\twidth: var(--row-height);\n\t\t\theight: var(--row-height);\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\tborder: none;\n\n\t\t\t// Columns should try to add any text\n\t\t\t// node wrapped in a span. That should help\n\t\t\t// with the ellipsis on overflow.\n\t\t\tspan {\n\t\t\t\toverflow: hidden;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row--failed {\n\t\t\tposition: absolute;\n\t\t\tdisplay: block;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\topacity: .1;\n\t\t\tz-index: -1;\n\t\t\tbackground: var(--color-error);\n\t\t}\n\n\t\t.files-list__row-checkbox {\n\t\t\tjustify-content: center;\n\n\t\t\t.checkbox-radio-switch {\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: center;\n\n\t\t\t\t--icon-size: var(--checkbox-size);\n\n\t\t\t\tlabel.checkbox-radio-switch__label {\n\t\t\t\t\twidth: var(--clickable-area);\n\t\t\t\t\theight: var(--clickable-area);\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);\n\t\t\t\t}\n\n\t\t\t\t.checkbox-radio-switch__icon {\n\t\t\t\t\tmargin: 0 !important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row {\n\t\t\t&:hover, &:focus, &:active, &--active, &--dragover {\n\t\t\t\t// WCAG AA compliant\n\t\t\t\tbackground-color: var(--color-background-hover);\n\t\t\t\t// text-maxcontrast have been designed to pass WCAG AA over\n\t\t\t\t// a white background, we need to adjust then.\n\t\t\t\t--color-text-maxcontrast: var(--color-main-text);\n\t\t\t\t> * {\n\t\t\t\t\t--color-border: var(--color-border-dark);\n\t\t\t\t}\n\n\t\t\t\t// Hover state of the row should also change the favorite markers background\n\t\t\t\t.favorite-marker-icon svg path {\n\t\t\t\t\tstroke: var(--color-background-hover);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&--dragover * {\n\t\t\t\t// Prevent dropping on row children\n\t\t\t\tpointer-events: none;\n\t\t\t}\n\t\t}\n\n\t\t// Entry preview or mime icon\n\t\t.files-list__row-icon {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\toverflow: visible;\n\t\t\talign-items: center;\n\t\t\t// No shrinking or growing allowed\n\t\t\tflex: 0 0 var(--icon-preview-size);\n\t\t\tjustify-content: center;\n\t\t\twidth: var(--icon-preview-size);\n\t\t\theight: 100%;\n\t\t\t// Show same padding as the checkbox right padding for visual balance\n\t\t\tmargin-right: var(--checkbox-padding);\n\t\t\tcolor: var(--color-primary-element);\n\n\t\t\t// Icon is also clickable\n\t\t\t* {\n\t\t\t\tcursor: pointer;\n\t\t\t}\n\n\t\t\t& > span {\n\t\t\t\tjustify-content: flex-start;\n\n\t\t\t\t&:not(.files-list__row-icon-favorite) svg {\n\t\t\t\t\twidth: var(--icon-preview-size);\n\t\t\t\t\theight: var(--icon-preview-size);\n\t\t\t\t}\n\n\t\t\t\t// Slightly increase the size of the folder icon\n\t\t\t\t&.folder-icon,\n\t\t\t\t&.folder-open-icon {\n\t\t\t\t\tmargin: -3px;\n\t\t\t\t\tsvg {\n\t\t\t\t\t\twidth: calc(var(--icon-preview-size) + 6px);\n\t\t\t\t\t\theight: calc(var(--icon-preview-size) + 6px);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&-preview {\n\t\t\t\toverflow: hidden;\n\t\t\t\twidth: var(--icon-preview-size);\n\t\t\t\theight: var(--icon-preview-size);\n\t\t\t\tborder-radius: var(--border-radius);\n\t\t\t\t// Center and contain the preview\n\t\t\t\tobject-fit: contain;\n\t\t\t\tobject-position: center;\n\n\t\t\t\t/* Preview not loaded animation effect */\n\t\t\t\t&:not(.files-list__row-icon-preview--loaded) {\n\t\t\t\t\tbackground: var(--color-loading-dark);\n\t\t\t\t\t// animation: preview-gradient-fade 1.2s ease-in-out infinite;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&-favorite {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 0px;\n\t\t\t\tright: -10px;\n\t\t\t}\n\n\t\t\t// File and folder overlay\n\t\t\t&-overlay {\n\t\t\t\tposition: absolute;\n\t\t\t\tmax-height: calc(var(--icon-preview-size) * 0.5);\n\t\t\t\tmax-width: calc(var(--icon-preview-size) * 0.5);\n\t\t\t\tcolor: var(--color-primary-element-text);\n\t\t\t\t// better alignment with the folder icon\n\t\t\t\tmargin-top: 2px;\n\n\t\t\t\t// Improve icon contrast with a background for files\n\t\t\t\t&--file {\n\t\t\t\t\tcolor: var(--color-main-text);\n\t\t\t\t\tbackground: var(--color-main-background);\n\t\t\t\t\tborder-radius: 100%;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Entry link\n\t\t.files-list__row-name {\n\t\t\t// Prevent link from overflowing\n\t\t\toverflow: hidden;\n\t\t\t// Take as much space as possible\n\t\t\tflex: 1 1 auto;\n\n\t\t\ta {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\t// Fill cell height and width\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\t// Necessary for flex grow to work\n\t\t\t\tmin-width: 0;\n\n\t\t\t\t// Already added to the inner text, see rule below\n\t\t\t\t&:focus-visible {\n\t\t\t\t\toutline: none;\n\t\t\t\t}\n\n\t\t\t\t// Keyboard indicator a11y\n\t\t\t\t&:focus .files-list__row-name-text {\n\t\t\t\t\toutline: 2px solid var(--color-main-text) !important;\n\t\t\t\t\tborder-radius: 20px;\n\t\t\t\t}\n\t\t\t\t&:focus:not(:focus-visible) .files-list__row-name-text {\n\t\t\t\t\toutline: none !important;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.files-list__row-name-text {\n\t\t\t\tcolor: var(--color-main-text);\n\t\t\t\t// Make some space for the outline\n\t\t\t\tpadding: 5px 10px;\n\t\t\t\tmargin-left: -10px;\n\t\t\t\t// Align two name and ext\n\t\t\t\tdisplay: inline-flex;\n\t\t\t}\n\n\t\t\t.files-list__row-name-ext {\n\t\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\t\t// always show the extension\n\t\t\t\toverflow: visible;\n\t\t\t}\n\t\t}\n\n\t\t// Rename form\n\t\t.files-list__row-rename {\n\t\t\twidth: 100%;\n\t\t\tmax-width: 600px;\n\t\t\tinput {\n\t\t\t\twidth: 100%;\n\t\t\t\t// Align with text, 0 - padding - border\n\t\t\t\tmargin-left: -8px;\n\t\t\t\tpadding: 2px 6px;\n\t\t\t\tborder-width: 2px;\n\n\t\t\t\t&:invalid {\n\t\t\t\t\t// Show red border on invalid input\n\t\t\t\t\tborder-color: var(--color-error);\n\t\t\t\t\tcolor: red;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row-actions {\n\t\t\t// take as much space as necessary\n\t\t\twidth: auto;\n\n\t\t\t// Add margin to all cells after the actions\n\t\t\t& ~ td,\n\t\t\t& ~ th {\n\t\t\t\tmargin: 0 var(--cell-margin);\n\t\t\t}\n\n\t\t\tbutton {\n\t\t\t\t.button-vue__text {\n\t\t\t\t\t// Remove bold from default button styling\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row-action--inline {\n\t\t\tmargin-right: 7px;\n\t\t}\n\n\t\t.files-list__row-mtime,\n\t\t.files-list__row-size {\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t}\n\t\t.files-list__row-size {\n\t\t\twidth: calc(var(--row-height) * 1.5);\n\t\t\t// Right align content/text\n\t\t\tjustify-content: flex-end;\n\t\t}\n\n\t\t.files-list__row-mtime {\n\t\t\twidth: calc(var(--row-height) * 2);\n\t\t}\n\n\t\t.files-list__row-column-custom {\n\t\t\twidth: calc(var(--row-height) * 2);\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const o=a},27033:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,"tbody.files-list__tbody.files-list__tbody--grid{--half-clickable-area: calc(var(--clickable-area) / 2);--row-width: 160px;--row-height: calc(var(--row-width) - var(--half-clickable-area));--icon-preview-size: calc(var(--row-width) - var(--clickable-area));--checkbox-padding: 0px;display:grid;grid-template-columns:repeat(auto-fill, var(--row-width));grid-gap:15px;row-gap:15px;align-content:center;align-items:center;justify-content:space-around;justify-items:center}tbody.files-list__tbody.files-list__tbody--grid tr{width:var(--row-width);height:calc(var(--row-height) + var(--clickable-area));border:none;border-radius:var(--border-radius)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-checkbox{position:absolute;z-index:9;top:0;left:0;overflow:hidden;width:var(--clickable-area);height:var(--clickable-area);border-radius:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-icon-favorite{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;width:var(--clickable-area);height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name{display:grid;justify-content:stretch;width:100%;height:100%;grid-auto-rows:var(--row-height) var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name span.files-list__row-icon{width:100%;height:100%;padding-top:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name a.files-list__row-name-link{width:calc(100% - var(--clickable-area));height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name .files-list__row-name-text{margin:0;padding-right:0}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-actions{position:absolute;right:0;bottom:0;width:var(--clickable-area);height:var(--clickable-area)}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListVirtual.vue"],names:[],mappings:"AAEA,gDACC,sDAAA,CACA,kBAAA,CAEA,iEAAA,CACA,mEAAA,CACA,uBAAA,CAEA,YAAA,CACA,yDAAA,CACA,aAAA,CACA,YAAA,CAEA,oBAAA,CACA,kBAAA,CACA,4BAAA,CACA,oBAAA,CAEA,mDACC,sBAAA,CACA,sDAAA,CACA,WAAA,CACA,kCAAA,CAID,0EACC,iBAAA,CACA,SAAA,CACA,KAAA,CACA,MAAA,CACA,eAAA,CACA,2BAAA,CACA,4BAAA,CACA,wCAAA,CAID,+EACC,iBAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,2BAAA,CACA,4BAAA,CAGD,sEACC,YAAA,CACA,uBAAA,CACA,UAAA,CACA,WAAA,CACA,sDAAA,CAEA,gGACC,UAAA,CACA,WAAA,CAGA,sCAAA,CAGD,kGAEC,wCAAA,CACA,4BAAA,CAGD,iGACC,QAAA,CACA,eAAA,CAIF,yEACC,iBAAA,CACA,OAAA,CACA,QAAA,CACA,2BAAA,CACA,4BAAA",sourcesContent:["\n// Grid mode\ntbody.files-list__tbody.files-list__tbody--grid {\n\t--half-clickable-area: calc(var(--clickable-area) / 2);\n\t--row-width: 160px;\n\t// We use half of the clickable area as visual balance margin\n\t--row-height: calc(var(--row-width) - var(--half-clickable-area));\n\t--icon-preview-size: calc(var(--row-width) - var(--clickable-area));\n\t--checkbox-padding: 0px;\n\n\tdisplay: grid;\n\tgrid-template-columns: repeat(auto-fill, var(--row-width));\n\tgrid-gap: 15px;\n\trow-gap: 15px;\n\n\talign-content: center;\n\talign-items: center;\n\tjustify-content: space-around;\n\tjustify-items: center;\n\n\ttr {\n\t\twidth: var(--row-width);\n\t\theight: calc(var(--row-height) + var(--clickable-area));\n\t\tborder: none;\n\t\tborder-radius: var(--border-radius);\n\t}\n\n\t// Checkbox in the top left\n\t.files-list__row-checkbox {\n\t\tposition: absolute;\n\t\tz-index: 9;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\toverflow: hidden;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t\tborder-radius: var(--half-clickable-area);\n\t}\n\n\t// Star icon in the top right\n\t.files-list__row-icon-favorite {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t}\n\n\t.files-list__row-name {\n\t\tdisplay: grid;\n\t\tjustify-content: stretch;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tgrid-auto-rows: var(--row-height) var(--clickable-area);\n\n\t\tspan.files-list__row-icon {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\t// Visual balance, we use half of the clickable area\n\t\t\t// as a margin around the preview\n\t\t\tpadding-top: var(--half-clickable-area);\n\t\t}\n\n\t\ta.files-list__row-name-link {\n\t\t\t// Minus action menu\n\t\t\twidth: calc(100% - var(--clickable-area));\n\t\t\theight: var(--clickable-area);\n\t\t}\n\n\t\t.files-list__row-name-text {\n\t\t\tmargin: 0;\n\t\t\tpadding-right: 0;\n\t\t}\n\t}\n\n\t.files-list__row-actions {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t}\n}\n"],sourceRoot:""}]);const o=a},33149:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".app-navigation-entry__settings-quota--not-unlimited[data-v-063ed938] .app-navigation-entry__name{margin-top:-6px}.app-navigation-entry__settings-quota progress[data-v-063ed938]{position:absolute;bottom:12px;margin-left:44px;width:calc(100% - 44px - 22px)}","",{version:3,sources:["webpack://./apps/files/src/components/NavigationQuota.vue"],names:[],mappings:"AAIC,kGACC,eAAA,CAGD,gEACC,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,8BAAA",sourcesContent:["\n// User storage stats display\n.app-navigation-entry__settings-quota {\n\t// Align title with progress and icon\n\t&--not-unlimited::v-deep .app-navigation-entry__name {\n\t\tmargin-top: -6px;\n\t}\n\n\tprogress {\n\t\tposition: absolute;\n\t\tbottom: 12px;\n\t\tmargin-left: 44px;\n\t\twidth: calc(100% - 44px - 22px);\n\t}\n}\n"],sourceRoot:""}]);const o=a},61608:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".app-content[data-v-5c37291f]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-5c37291f]{display:flex;align-items:center;flex:0 0;max-width:100%;margin-block:var(--app-navigation-padding, 4px);margin-inline:calc(var(--default-clickable-area, 44px) + 2*var(--app-navigation-padding, 4px)) var(--app-navigation-padding, 4px)}.files-list__header>*[data-v-5c37291f]{flex:0 0}.files-list__header-share-button[data-v-5c37291f]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-5c37291f]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-5c37291f]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-5c37291f]{margin:auto}","",{version:3,sources:["webpack://./apps/files/src/views/FilesList.vue"],names:[],mappings:"AACA,8BAEC,YAAA,CACA,eAAA,CACA,qBAAA,CACA,eAAA,CACA,4BAAA,CAIA,qCACC,YAAA,CACA,kBAAA,CAEA,QAAA,CACA,cAAA,CAEA,+CAAA,CACA,iIAAA,CAEA,uCAGC,QAAA,CAGD,kDACC,8CAAA,CAEA,0DACC,uCAAA,CAKH,2CACC,aAAA,CACA,UAAA,CACA,WAAA,CAGD,2CACC,WAAA",sourcesContent:["\n.app-content {\n\t// Virtual list needs to be full height and is scrollable\n\tdisplay: flex;\n\toverflow: hidden;\n\tflex-direction: column;\n\tmax-height: 100%;\n\tposition: relative !important;\n}\n\n.files-list {\n\t&__header {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\t// Do not grow or shrink (vertically)\n\t\tflex: 0 0;\n\t\tmax-width: 100%;\n\t\t// Align with the navigation toggle icon\n\t\tmargin-block: var(--app-navigation-padding, 4px);\n\t\tmargin-inline: calc(var(--default-clickable-area, 44px) + 2 * var(--app-navigation-padding, 4px)) var(--app-navigation-padding, 4px);\n\n\t\t>* {\n\t\t\t// Do not grow or shrink (horizontally)\n\t\t\t// Only the breadcrumbs shrinks\n\t\t\tflex: 0 0;\n\t\t}\n\n\t\t&-share-button {\n\t\t\tcolor: var(--color-text-maxcontrast) !important;\n\n\t\t\t&--shared {\n\t\t\t\tcolor: var(--color-main-text) !important;\n\t\t\t}\n\t\t}\n\t}\n\n\t&__refresh-icon {\n\t\tflex: 0 0 44px;\n\t\twidth: 44px;\n\t\theight: 44px;\n\t}\n\n\t&__loading-icon {\n\t\tmargin: auto;\n\t}\n}\n"],sourceRoot:""}]);const o=a},56834:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".app-navigation[data-v-476b6b93] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-476b6b93] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-476b6b93]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-476b6b93]{height:auto !important;overflow:hidden !important;padding-top:0 !important;flex:0 0 auto}","",{version:3,sources:["webpack://./apps/files/src/views/Navigation.vue"],names:[],mappings:"AAEA,4DACC,2BAAA,CACA,0BAAA,CAGD,oGACC,uCAAA,CAGD,yDAEC,gDAAA,CAGD,iDACC,sBAAA,CACA,0BAAA,CACA,wBAAA,CAEA,aAAA",sourcesContent:["\n// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in\n.app-navigation::v-deep .app-navigation-entry-icon {\n\tbackground-repeat: no-repeat;\n\tbackground-position: center;\n}\n\n.app-navigation::v-deep .app-navigation-entry.active .button-vue.icon-collapse:not(:hover) {\n\tcolor: var(--color-primary-element-text);\n}\n\n.app-navigation > ul.app-navigation__list {\n\t// Use flex gap value for more elegant spacing\n\tpadding-bottom: var(--default-grid-baseline, 4px);\n}\n\n.app-navigation-entry__settings {\n\theight: auto !important;\n\toverflow: hidden !important;\n\tpadding-top: 0 !important;\n\t// Prevent shrinking or growing\n\tflex: 0 0 auto;\n}\n"],sourceRoot:""}]);const o=a},60335:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r)()(i());a.push([t.id,".setting-link[data-v-00f09e69]:hover{text-decoration:underline}","",{version:3,sources:["webpack://./apps/files/src/views/Settings.vue"],names:[],mappings:"AACA,qCACC,yBAAA",sourcesContent:["\n.setting-link:hover {\n\ttext-decoration: underline;\n}\n"],sourceRoot:""}]);const o=a},37007:(t,e,n)=>{"use strict";var s,i=n(96763),r="object"==typeof Reflect?Reflect:null,a=r&&"function"==typeof r.apply?r.apply:function(t,e,n){return Function.prototype.apply.call(t,e,n)};s=r&&"function"==typeof r.ownKeys?r.ownKeys:Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:function(t){return Object.getOwnPropertyNames(t)};var o=Number.isNaN||function(t){return t!=t};function l(){l.init.call(this)}t.exports=l,t.exports.once=function(t,e){return new Promise((function(n,s){function i(n){t.removeListener(e,r),s(n)}function r(){"function"==typeof t.removeListener&&t.removeListener("error",i),n([].slice.call(arguments))}w(t,e,r,{once:!0}),"error"!==e&&function(t,e,n){"function"==typeof t.on&&w(t,"error",e,{once:!0})}(t,i)}))},l.EventEmitter=l,l.prototype._events=void 0,l.prototype._eventsCount=0,l.prototype._maxListeners=void 0;var c=10;function u(t){if("function"!=typeof t)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}function d(t){return void 0===t._maxListeners?l.defaultMaxListeners:t._maxListeners}function m(t,e,n,s){var r,a,o,l;if(u(n),void 0===(a=t._events)?(a=t._events=Object.create(null),t._eventsCount=0):(void 0!==a.newListener&&(t.emit("newListener",e,n.listener?n.listener:n),a=t._events),o=a[e]),void 0===o)o=a[e]=n,++t._eventsCount;else if("function"==typeof o?o=a[e]=s?[n,o]:[o,n]:s?o.unshift(n):o.push(n),(r=d(t))>0&&o.length>r&&!o.warned){o.warned=!0;var c=new Error("Possible EventEmitter memory leak detected. "+o.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");c.name="MaxListenersExceededWarning",c.emitter=t,c.type=e,c.count=o.length,l=c,i&&i.warn&&i.warn(l)}return t}function p(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function f(t,e,n){var s={fired:!1,wrapFn:void 0,target:t,type:e,listener:n},i=p.bind(s);return i.listener=n,s.wrapFn=i,i}function h(t,e,n){var s=t._events;if(void 0===s)return[];var i=s[e];return void 0===i?[]:"function"==typeof i?n?[i.listener||i]:[i]:n?function(t){for(var e=new Array(t.length),n=0;n<e.length;++n)e[n]=t[n].listener||t[n];return e}(i):v(i,i.length)}function g(t){var e=this._events;if(void 0!==e){var n=e[t];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function v(t,e){for(var n=new Array(e),s=0;s<e;++s)n[s]=t[s];return n}function w(t,e,n,s){if("function"==typeof t.on)s.once?t.once(e,n):t.on(e,n);else{if("function"!=typeof t.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t);t.addEventListener(e,(function i(r){s.once&&t.removeEventListener(e,i),n(r)}))}}Object.defineProperty(l,"defaultMaxListeners",{enumerable:!0,get:function(){return c},set:function(t){if("number"!=typeof t||t<0||o(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");c=t}}),l.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},l.prototype.setMaxListeners=function(t){if("number"!=typeof t||t<0||o(t))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+t+".");return this._maxListeners=t,this},l.prototype.getMaxListeners=function(){return d(this)},l.prototype.emit=function(t){for(var e=[],n=1;n<arguments.length;n++)e.push(arguments[n]);var s="error"===t,i=this._events;if(void 0!==i)s=s&&void 0===i.error;else if(!s)return!1;if(s){var r;if(e.length>0&&(r=e[0]),r instanceof Error)throw r;var o=new Error("Unhandled error."+(r?" ("+r.message+")":""));throw o.context=r,o}var l=i[t];if(void 0===l)return!1;if("function"==typeof l)a(l,this,e);else{var c=l.length,u=v(l,c);for(n=0;n<c;++n)a(u[n],this,e)}return!0},l.prototype.addListener=function(t,e){return m(this,t,e,!1)},l.prototype.on=l.prototype.addListener,l.prototype.prependListener=function(t,e){return m(this,t,e,!0)},l.prototype.once=function(t,e){return u(e),this.on(t,f(this,t,e)),this},l.prototype.prependOnceListener=function(t,e){return u(e),this.prependListener(t,f(this,t,e)),this},l.prototype.removeListener=function(t,e){var n,s,i,r,a;if(u(e),void 0===(s=this._events))return this;if(void 0===(n=s[t]))return this;if(n===e||n.listener===e)0==--this._eventsCount?this._events=Object.create(null):(delete s[t],s.removeListener&&this.emit("removeListener",t,n.listener||e));else if("function"!=typeof n){for(i=-1,r=n.length-1;r>=0;r--)if(n[r]===e||n[r].listener===e){a=n[r].listener,i=r;break}if(i<0)return this;0===i?n.shift():function(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}(n,i),1===n.length&&(s[t]=n[0]),void 0!==s.removeListener&&this.emit("removeListener",t,a||e)}return this},l.prototype.off=l.prototype.removeListener,l.prototype.removeAllListeners=function(t){var e,n,s;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[t]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[t]),this;if(0===arguments.length){var i,r=Object.keys(n);for(s=0;s<r.length;++s)"removeListener"!==(i=r[s])&&this.removeAllListeners(i);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(e=n[t]))this.removeListener(t,e);else if(void 0!==e)for(s=e.length-1;s>=0;s--)this.removeListener(t,e[s]);return this},l.prototype.listeners=function(t){return h(this,t,!0)},l.prototype.rawListeners=function(t){return h(this,t,!1)},l.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):g.call(t,e)},l.prototype.listenerCount=g,l.prototype.eventNames=function(){return this._eventsCount>0?s(this._events):[]}},86048:t=>{"use strict";var e={};function n(t,n,s){s||(s=Error);var i=function(t){var e,s;function i(e,s,i){return t.call(this,function(t,e,s){return"string"==typeof n?n:n(t,e,s)}(e,s,i))||this}return s=t,(e=i).prototype=Object.create(s.prototype),e.prototype.constructor=e,e.__proto__=s,i}(s);i.prototype.name=s.name,i.prototype.code=t,e[t]=i}function s(t,e){if(Array.isArray(t)){var n=t.length;return t=t.map((function(t){return String(t)})),n>2?"one of ".concat(e," ").concat(t.slice(0,n-1).join(", "),", or ")+t[n-1]:2===n?"one of ".concat(e," ").concat(t[0]," or ").concat(t[1]):"of ".concat(e," ").concat(t[0])}return"of ".concat(e," ").concat(String(t))}n("ERR_INVALID_OPT_VALUE",(function(t,e){return'The value "'+e+'" is invalid for option "'+t+'"'}),TypeError),n("ERR_INVALID_ARG_TYPE",(function(t,e,n){var i,r,a,o,l;if("string"==typeof e&&(r="not ",e.substr(0,4)===r)?(i="must not be",e=e.replace(/^not /,"")):i="must be",function(t,e,n){return(void 0===n||n>t.length)&&(n=t.length),t.substring(n-9,n)===e}(t," argument"))a="The ".concat(t," ").concat(i," ").concat(s(e,"type"));else{var c=("number"!=typeof l&&(l=0),l+1>(o=t).length||-1===o.indexOf(".",l)?"argument":"property");a='The "'.concat(t,'" ').concat(c," ").concat(i," ").concat(s(e,"type"))}return a+". Received type ".concat(typeof n)}),TypeError),n("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),n("ERR_METHOD_NOT_IMPLEMENTED",(function(t){return"The "+t+" method is not implemented"})),n("ERR_STREAM_PREMATURE_CLOSE","Premature close"),n("ERR_STREAM_DESTROYED",(function(t){return"Cannot call "+t+" after a stream was destroyed"})),n("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),n("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),n("ERR_STREAM_WRITE_AFTER_END","write after end"),n("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),n("ERR_UNKNOWN_ENCODING",(function(t){return"Unknown encoding: "+t}),TypeError),n("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),t.exports.F=e},25382:(t,e,n)=>{"use strict";var s=n(65606),i=Object.keys||function(t){var e=[];for(var n in t)e.push(n);return e};t.exports=u;var r=n(45412),a=n(16708);n(56698)(u,r);for(var o=i(a.prototype),l=0;l<o.length;l++){var c=o[l];u.prototype[c]||(u.prototype[c]=a.prototype[c])}function u(t){if(!(this instanceof u))return new u(t);r.call(this,t),a.call(this,t),this.allowHalfOpen=!0,t&&(!1===t.readable&&(this.readable=!1),!1===t.writable&&(this.writable=!1),!1===t.allowHalfOpen&&(this.allowHalfOpen=!1,this.once("end",d)))}function d(){this._writableState.ended||s.nextTick(m,this)}function m(t){t.end()}Object.defineProperty(u.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(u.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(u.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(u.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._readableState&&void 0!==this._writableState&&this._readableState.destroyed&&this._writableState.destroyed},set:function(t){void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed=t,this._writableState.destroyed=t)}})},63600:(t,e,n)=>{"use strict";t.exports=i;var s=n(74610);function i(t){if(!(this instanceof i))return new i(t);s.call(this,t)}n(56698)(i,s),i.prototype._transform=function(t,e,n){n(null,t)}},45412:(t,e,n)=>{"use strict";var s,i=n(65606);t.exports=T,T.ReadableState=x,n(37007).EventEmitter;var r,a=function(t,e){return t.listeners(e).length},o=n(40345),l=n(48287).Buffer,c=(void 0!==n.g?n.g:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){},u=n(79838);r=u&&u.debuglog?u.debuglog("stream"):function(){};var d,m,p,f=n(80345),h=n(75896),g=n(65291).getHighWaterMark,v=n(86048).F,w=v.ERR_INVALID_ARG_TYPE,y=v.ERR_STREAM_PUSH_AFTER_EOF,A=v.ERR_METHOD_NOT_IMPLEMENTED,b=v.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;n(56698)(T,o);var _=h.errorOrDestroy,C=["error","close","destroy","pause","resume"];function x(t,e,i){s=s||n(25382),t=t||{},"boolean"!=typeof i&&(i=e instanceof s),this.objectMode=!!t.objectMode,i&&(this.objectMode=this.objectMode||!!t.readableObjectMode),this.highWaterMark=g(this,t,"readableHighWaterMark",i),this.buffer=new f,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==t.emitClose,this.autoDestroy=!!t.autoDestroy,this.destroyed=!1,this.defaultEncoding=t.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,t.encoding&&(d||(d=n(83141).I),this.decoder=new d(t.encoding),this.encoding=t.encoding)}function T(t){if(s=s||n(25382),!(this instanceof T))return new T(t);var e=this instanceof s;this._readableState=new x(t,this,e),this.readable=!0,t&&("function"==typeof t.read&&(this._read=t.read),"function"==typeof t.destroy&&(this._destroy=t.destroy)),o.call(this)}function S(t,e,n,s,i){r("readableAddChunk",e);var a,o=t._readableState;if(null===e)o.reading=!1,function(t,e){if(r("onEofChunk"),!e.ended){if(e.decoder){var n=e.decoder.end();n&&n.length&&(e.buffer.push(n),e.length+=e.objectMode?1:n.length)}e.ended=!0,e.sync?N(t):(e.needReadable=!1,e.emittedReadable||(e.emittedReadable=!0,F(t)))}}(t,o);else if(i||(a=function(t,e){var n,s;return s=e,l.isBuffer(s)||s instanceof c||"string"==typeof e||void 0===e||t.objectMode||(n=new w("chunk",["string","Buffer","Uint8Array"],e)),n}(o,e)),a)_(t,a);else if(o.objectMode||e&&e.length>0)if("string"==typeof e||o.objectMode||Object.getPrototypeOf(e)===l.prototype||(e=function(t){return l.from(t)}(e)),s)o.endEmitted?_(t,new b):k(t,o,e,!0);else if(o.ended)_(t,new y);else{if(o.destroyed)return!1;o.reading=!1,o.decoder&&!n?(e=o.decoder.write(e),o.objectMode||0!==e.length?k(t,o,e,!1):P(t,o)):k(t,o,e,!1)}else s||(o.reading=!1,P(t,o));return!o.ended&&(o.length<o.highWaterMark||0===o.length)}function k(t,e,n,s){e.flowing&&0===e.length&&!e.sync?(e.awaitDrain=0,t.emit("data",n)):(e.length+=e.objectMode?1:n.length,s?e.buffer.unshift(n):e.buffer.push(n),e.needReadable&&N(t)),P(t,e)}Object.defineProperty(T.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._readableState&&this._readableState.destroyed},set:function(t){this._readableState&&(this._readableState.destroyed=t)}}),T.prototype.destroy=h.destroy,T.prototype._undestroy=h.undestroy,T.prototype._destroy=function(t,e){e(t)},T.prototype.push=function(t,e){var n,s=this._readableState;return s.objectMode?n=!0:"string"==typeof t&&((e=e||s.defaultEncoding)!==s.encoding&&(t=l.from(t,e),e=""),n=!0),S(this,t,e,!1,n)},T.prototype.unshift=function(t){return S(this,t,null,!0,!1)},T.prototype.isPaused=function(){return!1===this._readableState.flowing},T.prototype.setEncoding=function(t){d||(d=n(83141).I);var e=new d(t);this._readableState.decoder=e,this._readableState.encoding=this._readableState.decoder.encoding;for(var s=this._readableState.buffer.head,i="";null!==s;)i+=e.write(s.data),s=s.next;return this._readableState.buffer.clear(),""!==i&&this._readableState.buffer.push(i),this._readableState.length=i.length,this};var E=1073741824;function L(t,e){return t<=0||0===e.length&&e.ended?0:e.objectMode?1:t!=t?e.flowing&&e.length?e.buffer.head.data.length:e.length:(t>e.highWaterMark&&(e.highWaterMark=function(t){return t>=E?t=E:(t--,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t++),t}(t)),t<=e.length?t:e.ended?e.length:(e.needReadable=!0,0))}function N(t){var e=t._readableState;r("emitReadable",e.needReadable,e.emittedReadable),e.needReadable=!1,e.emittedReadable||(r("emitReadable",e.flowing),e.emittedReadable=!0,i.nextTick(F,t))}function F(t){var e=t._readableState;r("emitReadable_",e.destroyed,e.length,e.ended),e.destroyed||!e.length&&!e.ended||(t.emit("readable"),e.emittedReadable=!1),e.needReadable=!e.flowing&&!e.ended&&e.length<=e.highWaterMark,B(t)}function P(t,e){e.readingMore||(e.readingMore=!0,i.nextTick(I,t,e))}function I(t,e){for(;!e.reading&&!e.ended&&(e.length<e.highWaterMark||e.flowing&&0===e.length);){var n=e.length;if(r("maybeReadMore read 0"),t.read(0),n===e.length)break}e.readingMore=!1}function D(t){var e=t._readableState;e.readableListening=t.listenerCount("readable")>0,e.resumeScheduled&&!e.paused?e.flowing=!0:t.listenerCount("data")>0&&t.resume()}function O(t){r("readable nexttick read 0"),t.read(0)}function U(t,e){r("resume",e.reading),e.reading||t.read(0),e.resumeScheduled=!1,t.emit("resume"),B(t),e.flowing&&!e.reading&&t.read(0)}function B(t){var e=t._readableState;for(r("flow",e.flowing);e.flowing&&null!==t.read(););}function R(t,e){return 0===e.length?null:(e.objectMode?n=e.buffer.shift():!t||t>=e.length?(n=e.decoder?e.buffer.join(""):1===e.buffer.length?e.buffer.first():e.buffer.concat(e.length),e.buffer.clear()):n=e.buffer.consume(t,e.decoder),n);var n}function j(t){var e=t._readableState;r("endReadable",e.endEmitted),e.endEmitted||(e.ended=!0,i.nextTick(M,e,t))}function M(t,e){if(r("endReadableNT",t.endEmitted,t.length),!t.endEmitted&&0===t.length&&(t.endEmitted=!0,e.readable=!1,e.emit("end"),t.autoDestroy)){var n=e._writableState;(!n||n.autoDestroy&&n.finished)&&e.destroy()}}function z(t,e){for(var n=0,s=t.length;n<s;n++)if(t[n]===e)return n;return-1}T.prototype.read=function(t){r("read",t),t=parseInt(t,10);var e=this._readableState,n=t;if(0!==t&&(e.emittedReadable=!1),0===t&&e.needReadable&&((0!==e.highWaterMark?e.length>=e.highWaterMark:e.length>0)||e.ended))return r("read: emitReadable",e.length,e.ended),0===e.length&&e.ended?j(this):N(this),null;if(0===(t=L(t,e))&&e.ended)return 0===e.length&&j(this),null;var s,i=e.needReadable;return r("need readable",i),(0===e.length||e.length-t<e.highWaterMark)&&r("length less than watermark",i=!0),e.ended||e.reading?r("reading or ended",i=!1):i&&(r("do read"),e.reading=!0,e.sync=!0,0===e.length&&(e.needReadable=!0),this._read(e.highWaterMark),e.sync=!1,e.reading||(t=L(n,e))),null===(s=t>0?R(t,e):null)?(e.needReadable=e.length<=e.highWaterMark,t=0):(e.length-=t,e.awaitDrain=0),0===e.length&&(e.ended||(e.needReadable=!0),n!==t&&e.ended&&j(this)),null!==s&&this.emit("data",s),s},T.prototype._read=function(t){_(this,new A("_read()"))},T.prototype.pipe=function(t,e){var n=this,s=this._readableState;switch(s.pipesCount){case 0:s.pipes=t;break;case 1:s.pipes=[s.pipes,t];break;default:s.pipes.push(t)}s.pipesCount+=1,r("pipe count=%d opts=%j",s.pipesCount,e);var o=e&&!1===e.end||t===i.stdout||t===i.stderr?h:l;function l(){r("onend"),t.end()}s.endEmitted?i.nextTick(o):n.once("end",o),t.on("unpipe",(function e(i,a){r("onunpipe"),i===n&&a&&!1===a.hasUnpiped&&(a.hasUnpiped=!0,r("cleanup"),t.removeListener("close",p),t.removeListener("finish",f),t.removeListener("drain",c),t.removeListener("error",m),t.removeListener("unpipe",e),n.removeListener("end",l),n.removeListener("end",h),n.removeListener("data",d),u=!0,!s.awaitDrain||t._writableState&&!t._writableState.needDrain||c())}));var c=function(t){return function(){var e=t._readableState;r("pipeOnDrain",e.awaitDrain),e.awaitDrain&&e.awaitDrain--,0===e.awaitDrain&&a(t,"data")&&(e.flowing=!0,B(t))}}(n);t.on("drain",c);var u=!1;function d(e){r("ondata");var i=t.write(e);r("dest.write",i),!1===i&&((1===s.pipesCount&&s.pipes===t||s.pipesCount>1&&-1!==z(s.pipes,t))&&!u&&(r("false write response, pause",s.awaitDrain),s.awaitDrain++),n.pause())}function m(e){r("onerror",e),h(),t.removeListener("error",m),0===a(t,"error")&&_(t,e)}function p(){t.removeListener("finish",f),h()}function f(){r("onfinish"),t.removeListener("close",p),h()}function h(){r("unpipe"),n.unpipe(t)}return n.on("data",d),function(t,e,n){if("function"==typeof t.prependListener)return t.prependListener(e,n);t._events&&t._events[e]?Array.isArray(t._events[e])?t._events[e].unshift(n):t._events[e]=[n,t._events[e]]:t.on(e,n)}(t,"error",m),t.once("close",p),t.once("finish",f),t.emit("pipe",n),s.flowing||(r("pipe resume"),n.resume()),t},T.prototype.unpipe=function(t){var e=this._readableState,n={hasUnpiped:!1};if(0===e.pipesCount)return this;if(1===e.pipesCount)return t&&t!==e.pipes||(t||(t=e.pipes),e.pipes=null,e.pipesCount=0,e.flowing=!1,t&&t.emit("unpipe",this,n)),this;if(!t){var s=e.pipes,i=e.pipesCount;e.pipes=null,e.pipesCount=0,e.flowing=!1;for(var r=0;r<i;r++)s[r].emit("unpipe",this,{hasUnpiped:!1});return this}var a=z(e.pipes,t);return-1===a||(e.pipes.splice(a,1),e.pipesCount-=1,1===e.pipesCount&&(e.pipes=e.pipes[0]),t.emit("unpipe",this,n)),this},T.prototype.on=function(t,e){var n=o.prototype.on.call(this,t,e),s=this._readableState;return"data"===t?(s.readableListening=this.listenerCount("readable")>0,!1!==s.flowing&&this.resume()):"readable"===t&&(s.endEmitted||s.readableListening||(s.readableListening=s.needReadable=!0,s.flowing=!1,s.emittedReadable=!1,r("on readable",s.length,s.reading),s.length?N(this):s.reading||i.nextTick(O,this))),n},T.prototype.addListener=T.prototype.on,T.prototype.removeListener=function(t,e){var n=o.prototype.removeListener.call(this,t,e);return"readable"===t&&i.nextTick(D,this),n},T.prototype.removeAllListeners=function(t){var e=o.prototype.removeAllListeners.apply(this,arguments);return"readable"!==t&&void 0!==t||i.nextTick(D,this),e},T.prototype.resume=function(){var t=this._readableState;return t.flowing||(r("resume"),t.flowing=!t.readableListening,function(t,e){e.resumeScheduled||(e.resumeScheduled=!0,i.nextTick(U,t,e))}(this,t)),t.paused=!1,this},T.prototype.pause=function(){return r("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(r("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},T.prototype.wrap=function(t){var e=this,n=this._readableState,s=!1;for(var i in t.on("end",(function(){if(r("wrapped end"),n.decoder&&!n.ended){var t=n.decoder.end();t&&t.length&&e.push(t)}e.push(null)})),t.on("data",(function(i){r("wrapped data"),n.decoder&&(i=n.decoder.write(i)),n.objectMode&&null==i||(n.objectMode||i&&i.length)&&(e.push(i)||(s=!0,t.pause()))})),t)void 0===this[i]&&"function"==typeof t[i]&&(this[i]=function(e){return function(){return t[e].apply(t,arguments)}}(i));for(var a=0;a<C.length;a++)t.on(C[a],this.emit.bind(this,C[a]));return this._read=function(e){r("wrapped _read",e),s&&(s=!1,t.resume())},this},"function"==typeof Symbol&&(T.prototype[Symbol.asyncIterator]=function(){return void 0===m&&(m=n(2955)),m(this)}),Object.defineProperty(T.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),Object.defineProperty(T.prototype,"readableBuffer",{enumerable:!1,get:function(){return this._readableState&&this._readableState.buffer}}),Object.defineProperty(T.prototype,"readableFlowing",{enumerable:!1,get:function(){return this._readableState.flowing},set:function(t){this._readableState&&(this._readableState.flowing=t)}}),T._fromList=R,Object.defineProperty(T.prototype,"readableLength",{enumerable:!1,get:function(){return this._readableState.length}}),"function"==typeof Symbol&&(T.from=function(t,e){return void 0===p&&(p=n(55157)),p(T,t,e)})},74610:(t,e,n)=>{"use strict";t.exports=u;var s=n(86048).F,i=s.ERR_METHOD_NOT_IMPLEMENTED,r=s.ERR_MULTIPLE_CALLBACK,a=s.ERR_TRANSFORM_ALREADY_TRANSFORMING,o=s.ERR_TRANSFORM_WITH_LENGTH_0,l=n(25382);function c(t,e){var n=this._transformState;n.transforming=!1;var s=n.writecb;if(null===s)return this.emit("error",new r);n.writechunk=null,n.writecb=null,null!=e&&this.push(e),s(t);var i=this._readableState;i.reading=!1,(i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}function u(t){if(!(this instanceof u))return new u(t);l.call(this,t),this._transformState={afterTransform:c.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,t&&("function"==typeof t.transform&&(this._transform=t.transform),"function"==typeof t.flush&&(this._flush=t.flush)),this.on("prefinish",d)}function d(){var t=this;"function"!=typeof this._flush||this._readableState.destroyed?m(this,null,null):this._flush((function(e,n){m(t,e,n)}))}function m(t,e,n){if(e)return t.emit("error",e);if(null!=n&&t.push(n),t._writableState.length)throw new o;if(t._transformState.transforming)throw new a;return t.push(null)}n(56698)(u,l),u.prototype.push=function(t,e){return this._transformState.needTransform=!1,l.prototype.push.call(this,t,e)},u.prototype._transform=function(t,e,n){n(new i("_transform()"))},u.prototype._write=function(t,e,n){var s=this._transformState;if(s.writecb=n,s.writechunk=t,s.writeencoding=e,!s.transforming){var i=this._readableState;(s.needTransform||i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}},u.prototype._read=function(t){var e=this._transformState;null===e.writechunk||e.transforming?e.needTransform=!0:(e.transforming=!0,this._transform(e.writechunk,e.writeencoding,e.afterTransform))},u.prototype._destroy=function(t,e){l.prototype._destroy.call(this,t,(function(t){e(t)}))}},16708:(t,e,n)=>{"use strict";var s,i=n(65606);function r(t){var e=this;this.next=null,this.entry=null,this.finish=function(){!function(t,e,n){var s=t.entry;for(t.entry=null;s;){var i=s.callback;e.pendingcb--,i(undefined),s=s.next}e.corkedRequestsFree.next=t}(e,t)}}t.exports=T,T.WritableState=x;var a,o={deprecate:n(94643)},l=n(40345),c=n(48287).Buffer,u=(void 0!==n.g?n.g:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){},d=n(75896),m=n(65291).getHighWaterMark,p=n(86048).F,f=p.ERR_INVALID_ARG_TYPE,h=p.ERR_METHOD_NOT_IMPLEMENTED,g=p.ERR_MULTIPLE_CALLBACK,v=p.ERR_STREAM_CANNOT_PIPE,w=p.ERR_STREAM_DESTROYED,y=p.ERR_STREAM_NULL_VALUES,A=p.ERR_STREAM_WRITE_AFTER_END,b=p.ERR_UNKNOWN_ENCODING,_=d.errorOrDestroy;function C(){}function x(t,e,a){s=s||n(25382),t=t||{},"boolean"!=typeof a&&(a=e instanceof s),this.objectMode=!!t.objectMode,a&&(this.objectMode=this.objectMode||!!t.writableObjectMode),this.highWaterMark=m(this,t,"writableHighWaterMark",a),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var o=!1===t.decodeStrings;this.decodeStrings=!o,this.defaultEncoding=t.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(t){!function(t,e){var n=t._writableState,s=n.sync,r=n.writecb;if("function"!=typeof r)throw new g;if(function(t){t.writing=!1,t.writecb=null,t.length-=t.writelen,t.writelen=0}(n),e)!function(t,e,n,s,r){--e.pendingcb,n?(i.nextTick(r,s),i.nextTick(F,t,e),t._writableState.errorEmitted=!0,_(t,s)):(r(s),t._writableState.errorEmitted=!0,_(t,s),F(t,e))}(t,n,s,e,r);else{var a=L(n)||t.destroyed;a||n.corked||n.bufferProcessing||!n.bufferedRequest||E(t,n),s?i.nextTick(k,t,n,a,r):k(t,n,a,r)}}(e,t)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==t.emitClose,this.autoDestroy=!!t.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new r(this)}function T(t){var e=this instanceof(s=s||n(25382));if(!e&&!a.call(T,this))return new T(t);this._writableState=new x(t,this,e),this.writable=!0,t&&("function"==typeof t.write&&(this._write=t.write),"function"==typeof t.writev&&(this._writev=t.writev),"function"==typeof t.destroy&&(this._destroy=t.destroy),"function"==typeof t.final&&(this._final=t.final)),l.call(this)}function S(t,e,n,s,i,r,a){e.writelen=s,e.writecb=a,e.writing=!0,e.sync=!0,e.destroyed?e.onwrite(new w("write")):n?t._writev(i,e.onwrite):t._write(i,r,e.onwrite),e.sync=!1}function k(t,e,n,s){n||function(t,e){0===e.length&&e.needDrain&&(e.needDrain=!1,t.emit("drain"))}(t,e),e.pendingcb--,s(),F(t,e)}function E(t,e){e.bufferProcessing=!0;var n=e.bufferedRequest;if(t._writev&&n&&n.next){var s=e.bufferedRequestCount,i=new Array(s),a=e.corkedRequestsFree;a.entry=n;for(var o=0,l=!0;n;)i[o]=n,n.isBuf||(l=!1),n=n.next,o+=1;i.allBuffers=l,S(t,e,!0,e.length,i,"",a.finish),e.pendingcb++,e.lastBufferedRequest=null,a.next?(e.corkedRequestsFree=a.next,a.next=null):e.corkedRequestsFree=new r(e),e.bufferedRequestCount=0}else{for(;n;){var c=n.chunk,u=n.encoding,d=n.callback;if(S(t,e,!1,e.objectMode?1:c.length,c,u,d),n=n.next,e.bufferedRequestCount--,e.writing)break}null===n&&(e.lastBufferedRequest=null)}e.bufferedRequest=n,e.bufferProcessing=!1}function L(t){return t.ending&&0===t.length&&null===t.bufferedRequest&&!t.finished&&!t.writing}function N(t,e){t._final((function(n){e.pendingcb--,n&&_(t,n),e.prefinished=!0,t.emit("prefinish"),F(t,e)}))}function F(t,e){var n=L(e);if(n&&(function(t,e){e.prefinished||e.finalCalled||("function"!=typeof t._final||e.destroyed?(e.prefinished=!0,t.emit("prefinish")):(e.pendingcb++,e.finalCalled=!0,i.nextTick(N,t,e)))}(t,e),0===e.pendingcb&&(e.finished=!0,t.emit("finish"),e.autoDestroy))){var s=t._readableState;(!s||s.autoDestroy&&s.endEmitted)&&t.destroy()}return n}n(56698)(T,l),x.prototype.getBuffer=function(){for(var t=this.bufferedRequest,e=[];t;)e.push(t),t=t.next;return e},function(){try{Object.defineProperty(x.prototype,"buffer",{get:o.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(t){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(a=Function.prototype[Symbol.hasInstance],Object.defineProperty(T,Symbol.hasInstance,{value:function(t){return!!a.call(this,t)||this===T&&t&&t._writableState instanceof x}})):a=function(t){return t instanceof this},T.prototype.pipe=function(){_(this,new v)},T.prototype.write=function(t,e,n){var s,r=this._writableState,a=!1,o=!r.objectMode&&(s=t,c.isBuffer(s)||s instanceof u);return o&&!c.isBuffer(t)&&(t=function(t){return c.from(t)}(t)),"function"==typeof e&&(n=e,e=null),o?e="buffer":e||(e=r.defaultEncoding),"function"!=typeof n&&(n=C),r.ending?function(t,e){var n=new A;_(t,n),i.nextTick(e,n)}(this,n):(o||function(t,e,n,s){var r;return null===n?r=new y:"string"==typeof n||e.objectMode||(r=new f("chunk",["string","Buffer"],n)),!r||(_(t,r),i.nextTick(s,r),!1)}(this,r,t,n))&&(r.pendingcb++,a=function(t,e,n,s,i,r){if(!n){var a=function(t,e,n){return t.objectMode||!1===t.decodeStrings||"string"!=typeof e||(e=c.from(e,n)),e}(e,s,i);s!==a&&(n=!0,i="buffer",s=a)}var o=e.objectMode?1:s.length;e.length+=o;var l=e.length<e.highWaterMark;if(l||(e.needDrain=!0),e.writing||e.corked){var u=e.lastBufferedRequest;e.lastBufferedRequest={chunk:s,encoding:i,isBuf:n,callback:r,next:null},u?u.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else S(t,e,!1,o,s,i,r);return l}(this,r,o,t,e,n)),a},T.prototype.cork=function(){this._writableState.corked++},T.prototype.uncork=function(){var t=this._writableState;t.corked&&(t.corked--,t.writing||t.corked||t.bufferProcessing||!t.bufferedRequest||E(this,t))},T.prototype.setDefaultEncoding=function(t){if("string"==typeof t&&(t=t.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((t+"").toLowerCase())>-1))throw new b(t);return this._writableState.defaultEncoding=t,this},Object.defineProperty(T.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(T.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),T.prototype._write=function(t,e,n){n(new h("_write()"))},T.prototype._writev=null,T.prototype.end=function(t,e,n){var s=this._writableState;return"function"==typeof t?(n=t,t=null,e=null):"function"==typeof e&&(n=e,e=null),null!=t&&this.write(t,e),s.corked&&(s.corked=1,this.uncork()),s.ending||function(t,e,n){e.ending=!0,F(t,e),n&&(e.finished?i.nextTick(n):t.once("finish",n)),e.ended=!0,t.writable=!1}(this,s,n),this},Object.defineProperty(T.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(T.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(t){this._writableState&&(this._writableState.destroyed=t)}}),T.prototype.destroy=d.destroy,T.prototype._undestroy=d.undestroy,T.prototype._destroy=function(t,e){e(t)}},2955:(t,e,n)=>{"use strict";var s,i=n(65606);function r(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var a=n(86238),o=Symbol("lastResolve"),l=Symbol("lastReject"),c=Symbol("error"),u=Symbol("ended"),d=Symbol("lastPromise"),m=Symbol("handlePromise"),p=Symbol("stream");function f(t,e){return{value:t,done:e}}function h(t){var e=t[o];if(null!==e){var n=t[p].read();null!==n&&(t[d]=null,t[o]=null,t[l]=null,e(f(n,!1)))}}function g(t){i.nextTick(h,t)}var v=Object.getPrototypeOf((function(){})),w=Object.setPrototypeOf((r(s={get stream(){return this[p]},next:function(){var t=this,e=this[c];if(null!==e)return Promise.reject(e);if(this[u])return Promise.resolve(f(void 0,!0));if(this[p].destroyed)return new Promise((function(e,n){i.nextTick((function(){t[c]?n(t[c]):e(f(void 0,!0))}))}));var n,s=this[d];if(s)n=new Promise(function(t,e){return function(n,s){t.then((function(){e[u]?n(f(void 0,!0)):e[m](n,s)}),s)}}(s,this));else{var r=this[p].read();if(null!==r)return Promise.resolve(f(r,!1));n=new Promise(this[m])}return this[d]=n,n}},Symbol.asyncIterator,(function(){return this})),r(s,"return",(function(){var t=this;return new Promise((function(e,n){t[p].destroy(null,(function(t){t?n(t):e(f(void 0,!0))}))}))})),s),v);t.exports=function(t){var e,n=Object.create(w,(r(e={},p,{value:t,writable:!0}),r(e,o,{value:null,writable:!0}),r(e,l,{value:null,writable:!0}),r(e,c,{value:null,writable:!0}),r(e,u,{value:t._readableState.endEmitted,writable:!0}),r(e,m,{value:function(t,e){var s=n[p].read();s?(n[d]=null,n[o]=null,n[l]=null,t(f(s,!1))):(n[o]=t,n[l]=e)},writable:!0}),e));return n[d]=null,a(t,(function(t){if(t&&"ERR_STREAM_PREMATURE_CLOSE"!==t.code){var e=n[l];return null!==e&&(n[d]=null,n[o]=null,n[l]=null,e(t)),void(n[c]=t)}var s=n[o];null!==s&&(n[d]=null,n[o]=null,n[l]=null,s(f(void 0,!0))),n[u]=!0})),t.on("readable",g.bind(null,n)),n}},80345:(t,e,n)=>{"use strict";function s(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function i(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?s(Object(n),!0).forEach((function(e){r(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function r(t,e,n){return(e=o(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function a(t,e){for(var n=0;n<e.length;n++){var s=e[n];s.enumerable=s.enumerable||!1,s.configurable=!0,"value"in s&&(s.writable=!0),Object.defineProperty(t,o(s.key),s)}}function o(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}var l=n(48287).Buffer,c=n(15340).inspect,u=c&&c.custom||"inspect";t.exports=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.head=null,this.tail=null,this.length=0}var e,n;return e=t,(n=[{key:"push",value:function(t){var e={data:t,next:null};this.length>0?this.tail.next=e:this.head=e,this.tail=e,++this.length}},{key:"unshift",value:function(t){var e={data:t,next:this.head};0===this.length&&(this.tail=e),this.head=e,++this.length}},{key:"shift",value:function(){if(0!==this.length){var t=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,t}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(t){if(0===this.length)return"";for(var e=this.head,n=""+e.data;e=e.next;)n+=t+e.data;return n}},{key:"concat",value:function(t){if(0===this.length)return l.alloc(0);for(var e,n,s,i=l.allocUnsafe(t>>>0),r=this.head,a=0;r;)e=r.data,n=i,s=a,l.prototype.copy.call(e,n,s),a+=r.data.length,r=r.next;return i}},{key:"consume",value:function(t,e){var n;return t<this.head.data.length?(n=this.head.data.slice(0,t),this.head.data=this.head.data.slice(t)):n=t===this.head.data.length?this.shift():e?this._getString(t):this._getBuffer(t),n}},{key:"first",value:function(){return this.head.data}},{key:"_getString",value:function(t){var e=this.head,n=1,s=e.data;for(t-=s.length;e=e.next;){var i=e.data,r=t>i.length?i.length:t;if(r===i.length?s+=i:s+=i.slice(0,t),0==(t-=r)){r===i.length?(++n,e.next?this.head=e.next:this.head=this.tail=null):(this.head=e,e.data=i.slice(r));break}++n}return this.length-=n,s}},{key:"_getBuffer",value:function(t){var e=l.allocUnsafe(t),n=this.head,s=1;for(n.data.copy(e),t-=n.data.length;n=n.next;){var i=n.data,r=t>i.length?i.length:t;if(i.copy(e,e.length-t,0,r),0==(t-=r)){r===i.length?(++s,n.next?this.head=n.next:this.head=this.tail=null):(this.head=n,n.data=i.slice(r));break}++s}return this.length-=s,e}},{key:u,value:function(t,e){return c(this,i(i({},e),{},{depth:0,customInspect:!1}))}}])&&a(e.prototype,n),Object.defineProperty(e,"prototype",{writable:!1}),t}()},75896:(t,e,n)=>{"use strict";var s=n(65606);function i(t,e){a(t,e),r(t)}function r(t){t._writableState&&!t._writableState.emitClose||t._readableState&&!t._readableState.emitClose||t.emit("close")}function a(t,e){t.emit("error",e)}t.exports={destroy:function(t,e){var n=this,o=this._readableState&&this._readableState.destroyed,l=this._writableState&&this._writableState.destroyed;return o||l?(e?e(t):t&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,s.nextTick(a,this,t)):s.nextTick(a,this,t)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(t||null,(function(t){!e&&t?n._writableState?n._writableState.errorEmitted?s.nextTick(r,n):(n._writableState.errorEmitted=!0,s.nextTick(i,n,t)):s.nextTick(i,n,t):e?(s.nextTick(r,n),e(t)):s.nextTick(r,n)})),this)},undestroy:function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function(t,e){var n=t._readableState,s=t._writableState;n&&n.autoDestroy||s&&s.autoDestroy?t.destroy(e):t.emit("error",e)}}},86238:(t,e,n)=>{"use strict";var s=n(86048).F.ERR_STREAM_PREMATURE_CLOSE;function i(){}t.exports=function t(e,n,r){if("function"==typeof n)return t(e,null,n);n||(n={}),r=function(t){var e=!1;return function(){if(!e){e=!0;for(var n=arguments.length,s=new Array(n),i=0;i<n;i++)s[i]=arguments[i];t.apply(this,s)}}}(r||i);var a=n.readable||!1!==n.readable&&e.readable,o=n.writable||!1!==n.writable&&e.writable,l=function(){e.writable||u()},c=e._writableState&&e._writableState.finished,u=function(){o=!1,c=!0,a||r.call(e)},d=e._readableState&&e._readableState.endEmitted,m=function(){a=!1,d=!0,o||r.call(e)},p=function(t){r.call(e,t)},f=function(){var t;return a&&!d?(e._readableState&&e._readableState.ended||(t=new s),r.call(e,t)):o&&!c?(e._writableState&&e._writableState.ended||(t=new s),r.call(e,t)):void 0},h=function(){e.req.on("finish",u)};return function(t){return t.setHeader&&"function"==typeof t.abort}(e)?(e.on("complete",u),e.on("abort",f),e.req?h():e.on("request",h)):o&&!e._writableState&&(e.on("end",l),e.on("close",l)),e.on("end",m),e.on("finish",u),!1!==n.error&&e.on("error",p),e.on("close",f),function(){e.removeListener("complete",u),e.removeListener("abort",f),e.removeListener("request",h),e.req&&e.req.removeListener("finish",u),e.removeListener("end",l),e.removeListener("close",l),e.removeListener("finish",u),e.removeListener("end",m),e.removeListener("error",p),e.removeListener("close",f)}}},55157:t=>{t.exports=function(){throw new Error("Readable.from is not available in the browser")}},57758:(t,e,n)=>{"use strict";var s,i=n(86048).F,r=i.ERR_MISSING_ARGS,a=i.ERR_STREAM_DESTROYED;function o(t){if(t)throw t}function l(t){t()}function c(t,e){return t.pipe(e)}t.exports=function(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];var u,d=function(t){return t.length?"function"!=typeof t[t.length-1]?o:t.pop():o}(e);if(Array.isArray(e[0])&&(e=e[0]),e.length<2)throw new r("streams");var m=e.map((function(t,i){var r=i<e.length-1;return function(t,e,i,r){r=function(t){var e=!1;return function(){e||(e=!0,t.apply(void 0,arguments))}}(r);var o=!1;t.on("close",(function(){o=!0})),void 0===s&&(s=n(86238)),s(t,{readable:e,writable:i},(function(t){if(t)return r(t);o=!0,r()}));var l=!1;return function(e){if(!o&&!l)return l=!0,function(t){return t.setHeader&&"function"==typeof t.abort}(t)?t.abort():"function"==typeof t.destroy?t.destroy():void r(e||new a("pipe"))}}(t,r,i>0,(function(t){u||(u=t),t&&m.forEach(l),r||(m.forEach(l),d(u))}))}));return e.reduce(c)}},65291:(t,e,n)=>{"use strict";var s=n(86048).F.ERR_INVALID_OPT_VALUE;t.exports={getHighWaterMark:function(t,e,n,i){var r=function(t,e,n){return null!=t.highWaterMark?t.highWaterMark:e?t[n]:null}(e,i,n);if(null!=r){if(!isFinite(r)||Math.floor(r)!==r||r<0)throw new s(i?n:"highWaterMark",r);return Math.floor(r)}return t.objectMode?16:16384}}},40345:(t,e,n)=>{t.exports=n(37007).EventEmitter},92861:(t,e,n)=>{var s=n(48287),i=s.Buffer;function r(t,e){for(var n in t)e[n]=t[n]}function a(t,e,n){return i(t,e,n)}i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow?t.exports=s:(r(s,e),e.Buffer=a),a.prototype=Object.create(i.prototype),r(i,a),a.from=function(t,e,n){if("number"==typeof t)throw new TypeError("Argument must not be a number");return i(t,e,n)},a.alloc=function(t,e,n){if("number"!=typeof t)throw new TypeError("Argument must be a number");var s=i(t);return void 0!==e?"string"==typeof n?s.fill(e,n):s.fill(e):s.fill(0),s},a.allocUnsafe=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return i(t)},a.allocUnsafeSlow=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return s.SlowBuffer(t)}},64043:(t,e,n)=>{var s=n(48287).Buffer;!function(t){t.parser=function(t,e){return new r(t,e)},t.SAXParser=r,t.SAXStream=o,t.createStream=function(t,e){return new o(t,e)},t.MAX_BUFFER_LENGTH=65536;var e,i=["comment","sgmlDecl","textNode","tagName","doctype","procInstName","procInstBody","entity","attribName","attribValue","cdata","script"];function r(e,n){if(!(this instanceof r))return new r(e,n);var s=this;!function(t){for(var e=0,n=i.length;e<n;e++)t[i[e]]=""}(s),s.q=s.c="",s.bufferCheckPosition=t.MAX_BUFFER_LENGTH,s.opt=n||{},s.opt.lowercase=s.opt.lowercase||s.opt.lowercasetags,s.looseCase=s.opt.lowercase?"toLowerCase":"toUpperCase",s.tags=[],s.closed=s.closedRoot=s.sawRoot=!1,s.tag=s.error=null,s.strict=!!e,s.noscript=!(!e&&!s.opt.noscript),s.state=T.BEGIN,s.strictEntities=s.opt.strictEntities,s.ENTITIES=s.strictEntities?Object.create(t.XML_ENTITIES):Object.create(t.ENTITIES),s.attribList=[],s.opt.xmlns&&(s.ns=Object.create(m)),s.trackPosition=!1!==s.opt.position,s.trackPosition&&(s.position=s.line=s.column=0),k(s,"onready")}t.EVENTS=["text","processinginstruction","sgmldeclaration","doctype","comment","opentagstart","attribute","opentag","closetag","opencdata","cdata","closecdata","error","end","ready","script","opennamespace","closenamespace"],Object.create||(Object.create=function(t){function e(){}return e.prototype=t,new e}),Object.keys||(Object.keys=function(t){var e=[];for(var n in t)t.hasOwnProperty(n)&&e.push(n);return e}),r.prototype={end:function(){P(this)},write:function(e){var n=this;if(this.error)throw this.error;if(n.closed)return F(n,"Cannot write after close. Assign an onready handler.");if(null===e)return P(n);"object"==typeof e&&(e=e.toString());for(var s=0,r="";r=z(e,s++),n.c=r,r;)switch(n.trackPosition&&(n.position++,"\n"===r?(n.line++,n.column=0):n.column++),n.state){case T.BEGIN:if(n.state=T.BEGIN_WHITESPACE,"\ufeff"===r)continue;M(n,r);continue;case T.BEGIN_WHITESPACE:M(n,r);continue;case T.TEXT:if(n.sawRoot&&!n.closedRoot){for(var a=s-1;r&&"<"!==r&&"&"!==r;)(r=z(e,s++))&&n.trackPosition&&(n.position++,"\n"===r?(n.line++,n.column=0):n.column++);n.textNode+=e.substring(a,s-1)}"<"!==r||n.sawRoot&&n.closedRoot&&!n.strict?(v(r)||n.sawRoot&&!n.closedRoot||I(n,"Text data outside of root node."),"&"===r?n.state=T.TEXT_ENTITY:n.textNode+=r):(n.state=T.OPEN_WAKA,n.startTagPosition=n.position);continue;case T.SCRIPT:"<"===r?n.state=T.SCRIPT_ENDING:n.script+=r;continue;case T.SCRIPT_ENDING:"/"===r?n.state=T.CLOSE_TAG:(n.script+="<"+r,n.state=T.SCRIPT);continue;case T.OPEN_WAKA:if("!"===r)n.state=T.SGML_DECL,n.sgmlDecl="";else if(v(r));else if(A(p,r))n.state=T.OPEN_TAG,n.tagName=r;else if("/"===r)n.state=T.CLOSE_TAG,n.tagName="";else if("?"===r)n.state=T.PROC_INST,n.procInstName=n.procInstBody="";else{if(I(n,"Unencoded <"),n.startTagPosition+1<n.position){var o=n.position-n.startTagPosition;r=new Array(o).join(" ")+r}n.textNode+="<"+r,n.state=T.TEXT}continue;case T.SGML_DECL:(n.sgmlDecl+r).toUpperCase()===l?(E(n,"onopencdata"),n.state=T.CDATA,n.sgmlDecl="",n.cdata=""):n.sgmlDecl+r==="--"?(n.state=T.COMMENT,n.comment="",n.sgmlDecl=""):(n.sgmlDecl+r).toUpperCase()===c?(n.state=T.DOCTYPE,(n.doctype||n.sawRoot)&&I(n,"Inappropriately located doctype declaration"),n.doctype="",n.sgmlDecl=""):">"===r?(E(n,"onsgmldeclaration",n.sgmlDecl),n.sgmlDecl="",n.state=T.TEXT):w(r)?(n.state=T.SGML_DECL_QUOTED,n.sgmlDecl+=r):n.sgmlDecl+=r;continue;case T.SGML_DECL_QUOTED:r===n.q&&(n.state=T.SGML_DECL,n.q=""),n.sgmlDecl+=r;continue;case T.DOCTYPE:">"===r?(n.state=T.TEXT,E(n,"ondoctype",n.doctype),n.doctype=!0):(n.doctype+=r,"["===r?n.state=T.DOCTYPE_DTD:w(r)&&(n.state=T.DOCTYPE_QUOTED,n.q=r));continue;case T.DOCTYPE_QUOTED:n.doctype+=r,r===n.q&&(n.q="",n.state=T.DOCTYPE);continue;case T.DOCTYPE_DTD:n.doctype+=r,"]"===r?n.state=T.DOCTYPE:w(r)&&(n.state=T.DOCTYPE_DTD_QUOTED,n.q=r);continue;case T.DOCTYPE_DTD_QUOTED:n.doctype+=r,r===n.q&&(n.state=T.DOCTYPE_DTD,n.q="");continue;case T.COMMENT:"-"===r?n.state=T.COMMENT_ENDING:n.comment+=r;continue;case T.COMMENT_ENDING:"-"===r?(n.state=T.COMMENT_ENDED,n.comment=N(n.opt,n.comment),n.comment&&E(n,"oncomment",n.comment),n.comment=""):(n.comment+="-"+r,n.state=T.COMMENT);continue;case T.COMMENT_ENDED:">"!==r?(I(n,"Malformed comment"),n.comment+="--"+r,n.state=T.COMMENT):n.state=T.TEXT;continue;case T.CDATA:"]"===r?n.state=T.CDATA_ENDING:n.cdata+=r;continue;case T.CDATA_ENDING:"]"===r?n.state=T.CDATA_ENDING_2:(n.cdata+="]"+r,n.state=T.CDATA);continue;case T.CDATA_ENDING_2:">"===r?(n.cdata&&E(n,"oncdata",n.cdata),E(n,"onclosecdata"),n.cdata="",n.state=T.TEXT):"]"===r?n.cdata+="]":(n.cdata+="]]"+r,n.state=T.CDATA);continue;case T.PROC_INST:"?"===r?n.state=T.PROC_INST_ENDING:v(r)?n.state=T.PROC_INST_BODY:n.procInstName+=r;continue;case T.PROC_INST_BODY:if(!n.procInstBody&&v(r))continue;"?"===r?n.state=T.PROC_INST_ENDING:n.procInstBody+=r;continue;case T.PROC_INST_ENDING:">"===r?(E(n,"onprocessinginstruction",{name:n.procInstName,body:n.procInstBody}),n.procInstName=n.procInstBody="",n.state=T.TEXT):(n.procInstBody+="?"+r,n.state=T.PROC_INST_BODY);continue;case T.OPEN_TAG:A(f,r)?n.tagName+=r:(D(n),">"===r?B(n):"/"===r?n.state=T.OPEN_TAG_SLASH:(v(r)||I(n,"Invalid character in tag name"),n.state=T.ATTRIB));continue;case T.OPEN_TAG_SLASH:">"===r?(B(n,!0),R(n)):(I(n,"Forward-slash in opening tag not followed by >"),n.state=T.ATTRIB);continue;case T.ATTRIB:if(v(r))continue;">"===r?B(n):"/"===r?n.state=T.OPEN_TAG_SLASH:A(p,r)?(n.attribName=r,n.attribValue="",n.state=T.ATTRIB_NAME):I(n,"Invalid attribute name");continue;case T.ATTRIB_NAME:"="===r?n.state=T.ATTRIB_VALUE:">"===r?(I(n,"Attribute without value"),n.attribValue=n.attribName,U(n),B(n)):v(r)?n.state=T.ATTRIB_NAME_SAW_WHITE:A(f,r)?n.attribName+=r:I(n,"Invalid attribute name");continue;case T.ATTRIB_NAME_SAW_WHITE:if("="===r)n.state=T.ATTRIB_VALUE;else{if(v(r))continue;I(n,"Attribute without value"),n.tag.attributes[n.attribName]="",n.attribValue="",E(n,"onattribute",{name:n.attribName,value:""}),n.attribName="",">"===r?B(n):A(p,r)?(n.attribName=r,n.state=T.ATTRIB_NAME):(I(n,"Invalid attribute name"),n.state=T.ATTRIB)}continue;case T.ATTRIB_VALUE:if(v(r))continue;w(r)?(n.q=r,n.state=T.ATTRIB_VALUE_QUOTED):(I(n,"Unquoted attribute value"),n.state=T.ATTRIB_VALUE_UNQUOTED,n.attribValue=r);continue;case T.ATTRIB_VALUE_QUOTED:if(r!==n.q){"&"===r?n.state=T.ATTRIB_VALUE_ENTITY_Q:n.attribValue+=r;continue}U(n),n.q="",n.state=T.ATTRIB_VALUE_CLOSED;continue;case T.ATTRIB_VALUE_CLOSED:v(r)?n.state=T.ATTRIB:">"===r?B(n):"/"===r?n.state=T.OPEN_TAG_SLASH:A(p,r)?(I(n,"No whitespace between attributes"),n.attribName=r,n.attribValue="",n.state=T.ATTRIB_NAME):I(n,"Invalid attribute name");continue;case T.ATTRIB_VALUE_UNQUOTED:if(!y(r)){"&"===r?n.state=T.ATTRIB_VALUE_ENTITY_U:n.attribValue+=r;continue}U(n),">"===r?B(n):n.state=T.ATTRIB;continue;case T.CLOSE_TAG:if(n.tagName)">"===r?R(n):A(f,r)?n.tagName+=r:n.script?(n.script+="</"+n.tagName,n.tagName="",n.state=T.SCRIPT):(v(r)||I(n,"Invalid tagname in closing tag"),n.state=T.CLOSE_TAG_SAW_WHITE);else{if(v(r))continue;b(p,r)?n.script?(n.script+="</"+r,n.state=T.SCRIPT):I(n,"Invalid tagname in closing tag."):n.tagName=r}continue;case T.CLOSE_TAG_SAW_WHITE:if(v(r))continue;">"===r?R(n):I(n,"Invalid characters in closing tag");continue;case T.TEXT_ENTITY:case T.ATTRIB_VALUE_ENTITY_Q:case T.ATTRIB_VALUE_ENTITY_U:var u,d;switch(n.state){case T.TEXT_ENTITY:u=T.TEXT,d="textNode";break;case T.ATTRIB_VALUE_ENTITY_Q:u=T.ATTRIB_VALUE_QUOTED,d="attribValue";break;case T.ATTRIB_VALUE_ENTITY_U:u=T.ATTRIB_VALUE_UNQUOTED,d="attribValue"}if(";"===r)if(n.opt.unparsedEntities){var m=j(n);n.entity="",n.state=u,n.write(m)}else n[d]+=j(n),n.entity="",n.state=u;else A(n.entity.length?g:h,r)?n.entity+=r:(I(n,"Invalid character in entity name"),n[d]+="&"+n.entity+r,n.entity="",n.state=u);continue;default:throw new Error(n,"Unknown state: "+n.state)}return n.position>=n.bufferCheckPosition&&function(e){for(var n=Math.max(t.MAX_BUFFER_LENGTH,10),s=0,r=0,a=i.length;r<a;r++){var o=e[i[r]].length;if(o>n)switch(i[r]){case"textNode":L(e);break;case"cdata":E(e,"oncdata",e.cdata),e.cdata="";break;case"script":E(e,"onscript",e.script),e.script="";break;default:F(e,"Max buffer length exceeded: "+i[r])}s=Math.max(s,o)}var l=t.MAX_BUFFER_LENGTH-s;e.bufferCheckPosition=l+e.position}(n),n},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){var t;L(t=this),""!==t.cdata&&(E(t,"oncdata",t.cdata),t.cdata=""),""!==t.script&&(E(t,"onscript",t.script),t.script="")}};try{e=n(88310).Stream}catch(t){e=function(){}}e||(e=function(){});var a=t.EVENTS.filter((function(t){return"error"!==t&&"end"!==t}));function o(t,n){if(!(this instanceof o))return new o(t,n);e.apply(this),this._parser=new r(t,n),this.writable=!0,this.readable=!0;var s=this;this._parser.onend=function(){s.emit("end")},this._parser.onerror=function(t){s.emit("error",t),s._parser.error=null},this._decoder=null,a.forEach((function(t){Object.defineProperty(s,"on"+t,{get:function(){return s._parser["on"+t]},set:function(e){if(!e)return s.removeAllListeners(t),s._parser["on"+t]=e,e;s.on(t,e)},enumerable:!0,configurable:!1})}))}o.prototype=Object.create(e.prototype,{constructor:{value:o}}),o.prototype.write=function(t){if("function"==typeof s&&"function"==typeof s.isBuffer&&s.isBuffer(t)){if(!this._decoder){var e=n(83141).I;this._decoder=new e("utf8")}t=this._decoder.write(t)}return this._parser.write(t.toString()),this.emit("data",t),!0},o.prototype.end=function(t){return t&&t.length&&this.write(t),this._parser.end(),!0},o.prototype.on=function(t,n){var s=this;return s._parser["on"+t]||-1===a.indexOf(t)||(s._parser["on"+t]=function(){var e=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);e.splice(0,0,t),s.emit.apply(s,e)}),e.prototype.on.call(s,t,n)};var l="[CDATA[",c="DOCTYPE",u="http://www.w3.org/XML/1998/namespace",d="http://www.w3.org/2000/xmlns/",m={xml:u,xmlns:d},p=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,f=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,h=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,g=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function v(t){return" "===t||"\n"===t||"\r"===t||"\t"===t}function w(t){return'"'===t||"'"===t}function y(t){return">"===t||v(t)}function A(t,e){return t.test(e)}function b(t,e){return!A(t,e)}var _,C,x,T=0;for(var S in t.STATE={BEGIN:T++,BEGIN_WHITESPACE:T++,TEXT:T++,TEXT_ENTITY:T++,OPEN_WAKA:T++,SGML_DECL:T++,SGML_DECL_QUOTED:T++,DOCTYPE:T++,DOCTYPE_QUOTED:T++,DOCTYPE_DTD:T++,DOCTYPE_DTD_QUOTED:T++,COMMENT_STARTING:T++,COMMENT:T++,COMMENT_ENDING:T++,COMMENT_ENDED:T++,CDATA:T++,CDATA_ENDING:T++,CDATA_ENDING_2:T++,PROC_INST:T++,PROC_INST_BODY:T++,PROC_INST_ENDING:T++,OPEN_TAG:T++,OPEN_TAG_SLASH:T++,ATTRIB:T++,ATTRIB_NAME:T++,ATTRIB_NAME_SAW_WHITE:T++,ATTRIB_VALUE:T++,ATTRIB_VALUE_QUOTED:T++,ATTRIB_VALUE_CLOSED:T++,ATTRIB_VALUE_UNQUOTED:T++,ATTRIB_VALUE_ENTITY_Q:T++,ATTRIB_VALUE_ENTITY_U:T++,CLOSE_TAG:T++,CLOSE_TAG_SAW_WHITE:T++,SCRIPT:T++,SCRIPT_ENDING:T++},t.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},t.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(t.ENTITIES).forEach((function(e){var n=t.ENTITIES[e],s="number"==typeof n?String.fromCharCode(n):n;t.ENTITIES[e]=s})),t.STATE)t.STATE[t.STATE[S]]=S;function k(t,e,n){t[e]&&t[e](n)}function E(t,e,n){t.textNode&&L(t),k(t,e,n)}function L(t){t.textNode=N(t.opt,t.textNode),t.textNode&&k(t,"ontext",t.textNode),t.textNode=""}function N(t,e){return t.trim&&(e=e.trim()),t.normalize&&(e=e.replace(/\s+/g," ")),e}function F(t,e){return L(t),t.trackPosition&&(e+="\nLine: "+t.line+"\nColumn: "+t.column+"\nChar: "+t.c),e=new Error(e),t.error=e,k(t,"onerror",e),t}function P(t){return t.sawRoot&&!t.closedRoot&&I(t,"Unclosed root tag"),t.state!==T.BEGIN&&t.state!==T.BEGIN_WHITESPACE&&t.state!==T.TEXT&&F(t,"Unexpected end"),L(t),t.c="",t.closed=!0,k(t,"onend"),r.call(t,t.strict,t.opt),t}function I(t,e){if("object"!=typeof t||!(t instanceof r))throw new Error("bad call to strictFail");t.strict&&F(t,e)}function D(t){t.strict||(t.tagName=t.tagName[t.looseCase]());var e=t.tags[t.tags.length-1]||t,n=t.tag={name:t.tagName,attributes:{}};t.opt.xmlns&&(n.ns=e.ns),t.attribList.length=0,E(t,"onopentagstart",n)}function O(t,e){var n=t.indexOf(":")<0?["",t]:t.split(":"),s=n[0],i=n[1];return e&&"xmlns"===t&&(s="xmlns",i=""),{prefix:s,local:i}}function U(t){if(t.strict||(t.attribName=t.attribName[t.looseCase]()),-1!==t.attribList.indexOf(t.attribName)||t.tag.attributes.hasOwnProperty(t.attribName))t.attribName=t.attribValue="";else{if(t.opt.xmlns){var e=O(t.attribName,!0),n=e.prefix,s=e.local;if("xmlns"===n)if("xml"===s&&t.attribValue!==u)I(t,"xml: prefix must be bound to "+u+"\nActual: "+t.attribValue);else if("xmlns"===s&&t.attribValue!==d)I(t,"xmlns: prefix must be bound to "+d+"\nActual: "+t.attribValue);else{var i=t.tag,r=t.tags[t.tags.length-1]||t;i.ns===r.ns&&(i.ns=Object.create(r.ns)),i.ns[s]=t.attribValue}t.attribList.push([t.attribName,t.attribValue])}else t.tag.attributes[t.attribName]=t.attribValue,E(t,"onattribute",{name:t.attribName,value:t.attribValue});t.attribName=t.attribValue=""}}function B(t,e){if(t.opt.xmlns){var n=t.tag,s=O(t.tagName);n.prefix=s.prefix,n.local=s.local,n.uri=n.ns[s.prefix]||"",n.prefix&&!n.uri&&(I(t,"Unbound namespace prefix: "+JSON.stringify(t.tagName)),n.uri=s.prefix);var i=t.tags[t.tags.length-1]||t;n.ns&&i.ns!==n.ns&&Object.keys(n.ns).forEach((function(e){E(t,"onopennamespace",{prefix:e,uri:n.ns[e]})}));for(var r=0,a=t.attribList.length;r<a;r++){var o=t.attribList[r],l=o[0],c=o[1],u=O(l,!0),d=u.prefix,m=u.local,p=""===d?"":n.ns[d]||"",f={name:l,value:c,prefix:d,local:m,uri:p};d&&"xmlns"!==d&&!p&&(I(t,"Unbound namespace prefix: "+JSON.stringify(d)),f.uri=d),t.tag.attributes[l]=f,E(t,"onattribute",f)}t.attribList.length=0}t.tag.isSelfClosing=!!e,t.sawRoot=!0,t.tags.push(t.tag),E(t,"onopentag",t.tag),e||(t.noscript||"script"!==t.tagName.toLowerCase()?t.state=T.TEXT:t.state=T.SCRIPT,t.tag=null,t.tagName=""),t.attribName=t.attribValue="",t.attribList.length=0}function R(t){if(!t.tagName)return I(t,"Weird empty close tag."),t.textNode+="</>",void(t.state=T.TEXT);if(t.script){if("script"!==t.tagName)return t.script+="</"+t.tagName+">",t.tagName="",void(t.state=T.SCRIPT);E(t,"onscript",t.script),t.script=""}var e=t.tags.length,n=t.tagName;t.strict||(n=n[t.looseCase]());for(var s=n;e--&&t.tags[e].name!==s;)I(t,"Unexpected close tag");if(e<0)return I(t,"Unmatched closing tag: "+t.tagName),t.textNode+="</"+t.tagName+">",void(t.state=T.TEXT);t.tagName=n;for(var i=t.tags.length;i-- >e;){var r=t.tag=t.tags.pop();t.tagName=t.tag.name,E(t,"onclosetag",t.tagName);var a={};for(var o in r.ns)a[o]=r.ns[o];var l=t.tags[t.tags.length-1]||t;t.opt.xmlns&&r.ns!==l.ns&&Object.keys(r.ns).forEach((function(e){var n=r.ns[e];E(t,"onclosenamespace",{prefix:e,uri:n})}))}0===e&&(t.closedRoot=!0),t.tagName=t.attribValue=t.attribName="",t.attribList.length=0,t.state=T.TEXT}function j(t){var e,n=t.entity,s=n.toLowerCase(),i="";return t.ENTITIES[n]?t.ENTITIES[n]:t.ENTITIES[s]?t.ENTITIES[s]:("#"===(n=s).charAt(0)&&("x"===n.charAt(1)?(n=n.slice(2),i=(e=parseInt(n,16)).toString(16)):(n=n.slice(1),i=(e=parseInt(n,10)).toString(10))),n=n.replace(/^0+/,""),isNaN(e)||i.toLowerCase()!==n?(I(t,"Invalid character entity"),"&"+t.entity+";"):String.fromCodePoint(e))}function M(t,e){"<"===e?(t.state=T.OPEN_WAKA,t.startTagPosition=t.position):v(e)||(I(t,"Non-whitespace before first tag."),t.textNode=e,t.state=T.TEXT)}function z(t,e){var n="";return e<t.length&&(n=t.charAt(e)),n}T=t.STATE,String.fromCodePoint||(_=String.fromCharCode,C=Math.floor,x=function(){var t,e,n=[],s=-1,i=arguments.length;if(!i)return"";for(var r="";++s<i;){var a=Number(arguments[s]);if(!isFinite(a)||a<0||a>1114111||C(a)!==a)throw RangeError("Invalid code point: "+a);a<=65535?n.push(a):(t=55296+((a-=65536)>>10),e=a%1024+56320,n.push(t,e)),(s+1===i||n.length>16384)&&(r+=_.apply(null,n),n.length=0)}return r},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:x,configurable:!0,writable:!0}):String.fromCodePoint=x)}(e)},42791:function(t,e,n){var s=n(65606);!function(t,e){"use strict";if(!t.setImmediate){var n,i,r,a,o,l=1,c={},u=!1,d=t.document,m=Object.getPrototypeOf&&Object.getPrototypeOf(t);m=m&&m.setTimeout?m:t,"[object process]"==={}.toString.call(t.process)?n=function(t){s.nextTick((function(){f(t)}))}:function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?(a="setImmediate$"+Math.random()+"$",o=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(a)&&f(+e.data.slice(a.length))},t.addEventListener?t.addEventListener("message",o,!1):t.attachEvent("onmessage",o),n=function(e){t.postMessage(a+e,"*")}):t.MessageChannel?((r=new MessageChannel).port1.onmessage=function(t){f(t.data)},n=function(t){r.port2.postMessage(t)}):d&&"onreadystatechange"in d.createElement("script")?(i=d.documentElement,n=function(t){var e=d.createElement("script");e.onreadystatechange=function(){f(t),e.onreadystatechange=null,i.removeChild(e),e=null},i.appendChild(e)}):n=function(t){setTimeout(f,0,t)},m.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),s=0;s<e.length;s++)e[s]=arguments[s+1];var i={callback:t,args:e};return c[l]=i,n(l),l++},m.clearImmediate=p}function p(t){delete c[t]}function f(t){if(u)setTimeout(f,0,t);else{var e=c[t];if(e){u=!0;try{!function(t){var e=t.callback,n=t.args;switch(n.length){case 0:e();break;case 1:e(n[0]);break;case 2:e(n[0],n[1]);break;case 3:e(n[0],n[1],n[2]);break;default:e.apply(undefined,n)}}(e)}finally{p(t),u=!1}}}}}("undefined"==typeof self?void 0===n.g?this:n.g:self)},75270:t=>{function e(t,e){return null==t?e:t}t.exports=function(t){var n,s=e((t=t||{}).max,1),i=e(t.min,0),r=e(t.autostart,!0),a=e(t.ignoreSameProgress,!1),o=null,l=null,c=null,u=(n=e(t.historyTimeConstant,2.5),function(t,e,s){return t+s/(s+n)*(e-t)});function d(){m(i)}function m(t,e){if("number"!=typeof e&&(e=Date.now()),l!==e&&(!a||c!==t)){if(null===l||null===c)return c=t,void(l=e);var n=.001*(e-l),s=(t-c)/n;o=null===o?s:u(o,s,n),c=t,l=e}}return{start:d,reset:function(){o=null,l=null,c=null,r&&d()},report:m,estimate:function(t){if(null===c)return 1/0;if(c>=s)return 0;if(null===o)return 1/0;var e=(s-c)/o;return"number"==typeof t&&"number"==typeof l&&(e-=.001*(t-l)),Math.max(0,e)},rate:function(){return null===o?0:o}}}},88310:(t,e,n)=>{t.exports=i;var s=n(37007).EventEmitter;function i(){s.call(this)}n(56698)(i,s),i.Readable=n(45412),i.Writable=n(16708),i.Duplex=n(25382),i.Transform=n(74610),i.PassThrough=n(63600),i.finished=n(86238),i.pipeline=n(57758),i.Stream=i,i.prototype.pipe=function(t,e){var n=this;function i(e){t.writable&&!1===t.write(e)&&n.pause&&n.pause()}function r(){n.readable&&n.resume&&n.resume()}n.on("data",i),t.on("drain",r),t._isStdio||e&&!1===e.end||(n.on("end",o),n.on("close",l));var a=!1;function o(){a||(a=!0,t.end())}function l(){a||(a=!0,"function"==typeof t.destroy&&t.destroy())}function c(t){if(u(),0===s.listenerCount(this,"error"))throw t}function u(){n.removeListener("data",i),t.removeListener("drain",r),n.removeListener("end",o),n.removeListener("close",l),n.removeListener("error",c),t.removeListener("error",c),n.removeListener("end",u),n.removeListener("close",u),t.removeListener("close",u)}return n.on("error",c),t.on("error",c),n.on("end",u),n.on("close",u),t.on("close",u),t.emit("pipe",n),t}},83141:(t,e,n)=>{"use strict";var s=n(92861).Buffer,i=s.isEncoding||function(t){switch((t=""+t)&&t.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function r(t){var e;switch(this.encoding=function(t){var e=function(t){if(!t)return"utf8";for(var e;;)switch(t){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return t;default:if(e)return;t=(""+t).toLowerCase(),e=!0}}(t);if("string"!=typeof e&&(s.isEncoding===i||!i(t)))throw new Error("Unknown encoding: "+t);return e||t}(t),this.encoding){case"utf16le":this.text=l,this.end=c,e=4;break;case"utf8":this.fillLast=o,e=4;break;case"base64":this.text=u,this.end=d,e=3;break;default:return this.write=m,void(this.end=p)}this.lastNeed=0,this.lastTotal=0,this.lastChar=s.allocUnsafe(e)}function a(t){return t<=127?0:t>>5==6?2:t>>4==14?3:t>>3==30?4:t>>6==2?-1:-2}function o(t){var e=this.lastTotal-this.lastNeed,n=function(t,e,n){if(128!=(192&e[0]))return t.lastNeed=0,"�";if(t.lastNeed>1&&e.length>1){if(128!=(192&e[1]))return t.lastNeed=1,"�";if(t.lastNeed>2&&e.length>2&&128!=(192&e[2]))return t.lastNeed=2,"�"}}(this,t);return void 0!==n?n:this.lastNeed<=t.length?(t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(t.copy(this.lastChar,e,0,t.length),void(this.lastNeed-=t.length))}function l(t,e){if((t.length-e)%2==0){var n=t.toString("utf16le",e);if(n){var s=n.charCodeAt(n.length-1);if(s>=55296&&s<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],n.slice(0,-1)}return n}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function c(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,n)}return e}function u(t,e){var n=(t.length-e)%3;return 0===n?t.toString("base64",e):(this.lastNeed=3-n,this.lastTotal=3,1===n?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-n))}function d(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function m(t){return t.toString(this.encoding)}function p(t){return t&&t.length?this.write(t):""}e.I=r,r.prototype.write=function(t){if(0===t.length)return"";var e,n;if(this.lastNeed){if(void 0===(e=this.fillLast(t)))return"";n=this.lastNeed,this.lastNeed=0}else n=0;return n<t.length?e?e+this.text(t,n):this.text(t,n):e||""},r.prototype.end=function(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+"�":e},r.prototype.text=function(t,e){var n=function(t,e,n){var s=e.length-1;if(s<n)return 0;var i=a(e[s]);return i>=0?(i>0&&(t.lastNeed=i-1),i):--s<n||-2===i?0:(i=a(e[s]))>=0?(i>0&&(t.lastNeed=i-2),i):--s<n||-2===i?0:(i=a(e[s]))>=0?(i>0&&(2===i?i=0:t.lastNeed=i-3),i):0}(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=n;var s=t.length-(n-this.lastNeed);return t.copy(this.lastChar,0,s),t.toString("utf8",e,s)},r.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length}},97103:function(t,e,n){var s=void 0!==n.g&&n.g||"undefined"!=typeof self&&self||window,i=Function.prototype.apply;function r(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new r(i.call(setTimeout,s,arguments),clearTimeout)},e.setInterval=function(){return new r(i.call(setInterval,s,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},r.prototype.unref=r.prototype.ref=function(){},r.prototype.close=function(){this._clearFn.call(s,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(42791),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==n.g&&n.g.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==n.g&&n.g.clearImmediate||this&&this.clearImmediate},94643:(t,e,n)=>{var s=n(96763);function i(t){try{if(!n.g.localStorage)return!1}catch(t){return!1}var e=n.g.localStorage[t];return null!=e&&"true"===String(e).toLowerCase()}t.exports=function(t,e){if(i("noDeprecation"))return t;var n=!1;return function(){if(!n){if(i("throwDeprecation"))throw new Error(e);i("traceDeprecation")?s.trace(e):s.warn(e),n=!0}return t.apply(this,arguments)}}},83177:function(t,e){(function(){"use strict";e.stripBOM=function(t){return"\ufeff"===t[0]?t.substring(1):t}}).call(this)},56712:function(t,e,n){(function(){"use strict";var t,s,i,r,a,o={}.hasOwnProperty;t=n(59665),s=n(66465).defaults,r=function(t){return"string"==typeof t&&(t.indexOf("&")>=0||t.indexOf(">")>=0||t.indexOf("<")>=0)},a=function(t){return"<![CDATA["+i(t)+"]]>"},i=function(t){return t.replace("]]>","]]]]><![CDATA[>")},e.Builder=function(){function e(t){var e,n,i;for(e in this.options={},n=s[.2])o.call(n,e)&&(i=n[e],this.options[e]=i);for(e in t)o.call(t,e)&&(i=t[e],this.options[e]=i)}return e.prototype.buildObject=function(e){var n,i,l,c,u,d;return n=this.options.attrkey,i=this.options.charkey,1===Object.keys(e).length&&this.options.rootName===s[.2].rootName?e=e[u=Object.keys(e)[0]]:u=this.options.rootName,d=this,l=function(t,e){var s,c,u,m,p,f;if("object"!=typeof e)d.options.cdata&&r(e)?t.raw(a(e)):t.txt(e);else if(Array.isArray(e)){for(m in e)if(o.call(e,m))for(p in c=e[m])u=c[p],t=l(t.ele(p),u).up()}else for(p in e)if(o.call(e,p))if(c=e[p],p===n){if("object"==typeof c)for(s in c)f=c[s],t=t.att(s,f)}else if(p===i)t=d.options.cdata&&r(c)?t.raw(a(c)):t.txt(c);else if(Array.isArray(c))for(m in c)o.call(c,m)&&(t="string"==typeof(u=c[m])?d.options.cdata&&r(u)?t.ele(p).raw(a(u)).up():t.ele(p,u).up():l(t.ele(p),u).up());else"object"==typeof c?t=l(t.ele(p),c).up():"string"==typeof c&&d.options.cdata&&r(c)?t=t.ele(p).raw(a(c)).up():(null==c&&(c=""),t=t.ele(p,c.toString()).up());return t},c=t.create(u,this.options.xmldec,this.options.doctype,{headless:this.options.headless,allowSurrogateChars:this.options.allowSurrogateChars}),l(c,e).end(this.options.renderOpts)},e}()}).call(this)},66465:function(t,e){(function(){e.defaults={.1:{explicitCharkey:!1,trim:!0,normalize:!0,normalizeTags:!1,attrkey:"@",charkey:"#",explicitArray:!1,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!1,validator:null,xmlns:!1,explicitChildren:!1,childkey:"@@",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,emptyTag:""},.2:{explicitCharkey:!1,trim:!1,normalize:!1,normalizeTags:!1,attrkey:"$",charkey:"_",explicitArray:!0,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!0,validator:null,xmlns:!1,explicitChildren:!1,preserveChildrenOrder:!1,childkey:"$$",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,rootName:"root",xmldec:{version:"1.0",encoding:"UTF-8",standalone:!0},doctype:null,renderOpts:{pretty:!0,indent:"  ",newline:"\n"},headless:!1,chunkSize:1e4,emptyTag:"",cdata:!1}}}).call(this)},11912:function(t,e,n){(function(){"use strict";var t,s,i,r,a,o,l,c,u,d=function(t,e){return function(){return t.apply(e,arguments)}},m={}.hasOwnProperty;c=n(64043),r=n(37007),t=n(83177),l=n(92114),u=n(97103).setImmediate,s=n(66465).defaults,a=function(t){return"object"==typeof t&&null!=t&&0===Object.keys(t).length},o=function(t,e,n){var s,i;for(s=0,i=t.length;s<i;s++)e=(0,t[s])(e,n);return e},i=function(t,e,n){var s;return(s=Object.create(null)).value=n,s.writable=!0,s.enumerable=!0,s.configurable=!0,Object.defineProperty(t,e,s)},e.Parser=function(n){function r(t){var n,i,r;if(this.parseStringPromise=d(this.parseStringPromise,this),this.parseString=d(this.parseString,this),this.reset=d(this.reset,this),this.assignOrPush=d(this.assignOrPush,this),this.processAsync=d(this.processAsync,this),!(this instanceof e.Parser))return new e.Parser(t);for(n in this.options={},i=s[.2])m.call(i,n)&&(r=i[n],this.options[n]=r);for(n in t)m.call(t,n)&&(r=t[n],this.options[n]=r);this.options.xmlns&&(this.options.xmlnskey=this.options.attrkey+"ns"),this.options.normalizeTags&&(this.options.tagNameProcessors||(this.options.tagNameProcessors=[]),this.options.tagNameProcessors.unshift(l.normalize)),this.reset()}return function(t,e){for(var n in e)m.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(r,n),r.prototype.processAsync=function(){var t,e;try{return this.remaining.length<=this.options.chunkSize?(t=this.remaining,this.remaining="",this.saxParser=this.saxParser.write(t),this.saxParser.close()):(t=this.remaining.substr(0,this.options.chunkSize),this.remaining=this.remaining.substr(this.options.chunkSize,this.remaining.length),this.saxParser=this.saxParser.write(t),u(this.processAsync))}catch(t){if(e=t,!this.saxParser.errThrown)return this.saxParser.errThrown=!0,this.emit(e)}},r.prototype.assignOrPush=function(t,e,n){return e in t?(t[e]instanceof Array||i(t,e,[t[e]]),t[e].push(n)):this.options.explicitArray?i(t,e,[n]):i(t,e,n)},r.prototype.reset=function(){var t,e,n,s,r;return this.removeAllListeners(),this.saxParser=c.parser(this.options.strict,{trim:!1,normalize:!1,xmlns:this.options.xmlns}),this.saxParser.errThrown=!1,this.saxParser.onerror=(r=this,function(t){if(r.saxParser.resume(),!r.saxParser.errThrown)return r.saxParser.errThrown=!0,r.emit("error",t)}),this.saxParser.onend=function(t){return function(){if(!t.saxParser.ended)return t.saxParser.ended=!0,t.emit("end",t.resultObject)}}(this),this.saxParser.ended=!1,this.EXPLICIT_CHARKEY=this.options.explicitCharkey,this.resultObject=null,s=[],t=this.options.attrkey,e=this.options.charkey,this.saxParser.onopentag=function(n){return function(r){var a,l,c,u,d;if((c={})[e]="",!n.options.ignoreAttrs)for(a in d=r.attributes)m.call(d,a)&&(t in c||n.options.mergeAttrs||(c[t]={}),l=n.options.attrValueProcessors?o(n.options.attrValueProcessors,r.attributes[a],a):r.attributes[a],u=n.options.attrNameProcessors?o(n.options.attrNameProcessors,a):a,n.options.mergeAttrs?n.assignOrPush(c,u,l):i(c[t],u,l));return c["#name"]=n.options.tagNameProcessors?o(n.options.tagNameProcessors,r.name):r.name,n.options.xmlns&&(c[n.options.xmlnskey]={uri:r.uri,local:r.local}),s.push(c)}}(this),this.saxParser.onclosetag=function(t){return function(){var n,r,l,c,u,d,p,f,h,g;if(d=s.pop(),u=d["#name"],t.options.explicitChildren&&t.options.preserveChildrenOrder||delete d["#name"],!0===d.cdata&&(n=d.cdata,delete d.cdata),h=s[s.length-1],d[e].match(/^\s*$/)&&!n?(r=d[e],delete d[e]):(t.options.trim&&(d[e]=d[e].trim()),t.options.normalize&&(d[e]=d[e].replace(/\s{2,}/g," ").trim()),d[e]=t.options.valueProcessors?o(t.options.valueProcessors,d[e],u):d[e],1===Object.keys(d).length&&e in d&&!t.EXPLICIT_CHARKEY&&(d=d[e])),a(d)&&(d="function"==typeof t.options.emptyTag?t.options.emptyTag():""!==t.options.emptyTag?t.options.emptyTag:r),null!=t.options.validator&&(g="/"+function(){var t,e,n;for(n=[],t=0,e=s.length;t<e;t++)c=s[t],n.push(c["#name"]);return n}().concat(u).join("/"),function(){var e;try{return d=t.options.validator(g,h&&h[u],d)}catch(n){return e=n,t.emit("error",e)}}()),t.options.explicitChildren&&!t.options.mergeAttrs&&"object"==typeof d)if(t.options.preserveChildrenOrder){if(h){for(l in h[t.options.childkey]=h[t.options.childkey]||[],p={},d)m.call(d,l)&&i(p,l,d[l]);h[t.options.childkey].push(p),delete d["#name"],1===Object.keys(d).length&&e in d&&!t.EXPLICIT_CHARKEY&&(d=d[e])}}else c={},t.options.attrkey in d&&(c[t.options.attrkey]=d[t.options.attrkey],delete d[t.options.attrkey]),!t.options.charsAsChildren&&t.options.charkey in d&&(c[t.options.charkey]=d[t.options.charkey],delete d[t.options.charkey]),Object.getOwnPropertyNames(d).length>0&&(c[t.options.childkey]=d),d=c;return s.length>0?t.assignOrPush(h,u,d):(t.options.explicitRoot&&(f=d,i(d={},u,f)),t.resultObject=d,t.saxParser.ended=!0,t.emit("end",t.resultObject))}}(this),n=function(t){return function(n){var i,r;if(r=s[s.length-1])return r[e]+=n,t.options.explicitChildren&&t.options.preserveChildrenOrder&&t.options.charsAsChildren&&(t.options.includeWhiteChars||""!==n.replace(/\\n/g,"").trim())&&(r[t.options.childkey]=r[t.options.childkey]||[],(i={"#name":"__text__"})[e]=n,t.options.normalize&&(i[e]=i[e].replace(/\s{2,}/g," ").trim()),r[t.options.childkey].push(i)),r}}(this),this.saxParser.ontext=n,this.saxParser.oncdata=function(t){var e;if(e=n(t))return e.cdata=!0}},r.prototype.parseString=function(e,n){var s;null!=n&&"function"==typeof n&&(this.on("end",(function(t){return this.reset(),n(null,t)})),this.on("error",(function(t){return this.reset(),n(t)})));try{return""===(e=e.toString()).trim()?(this.emit("end",null),!0):(e=t.stripBOM(e),this.options.async?(this.remaining=e,u(this.processAsync),this.saxParser):this.saxParser.write(e).close())}catch(t){if(s=t,!this.saxParser.errThrown&&!this.saxParser.ended)return this.emit("error",s),this.saxParser.errThrown=!0;if(this.saxParser.ended)throw s}},r.prototype.parseStringPromise=function(t){return new Promise((e=this,function(n,s){return e.parseString(t,(function(t,e){return t?s(t):n(e)}))}));var e},r}(r),e.parseString=function(t,n,s){var i,r;return null!=s?("function"==typeof s&&(i=s),"object"==typeof n&&(r=n)):("function"==typeof n&&(i=n),r={}),new e.Parser(r).parseString(t,i)},e.parseStringPromise=function(t,n){var s;return"object"==typeof n&&(s=n),new e.Parser(s).parseStringPromise(t)}}).call(this)},92114:function(t,e){(function(){"use strict";var t;t=new RegExp(/(?!xmlns)^.*:/),e.normalize=function(t){return t.toLowerCase()},e.firstCharLowerCase=function(t){return t.charAt(0).toLowerCase()+t.slice(1)},e.stripPrefix=function(e){return e.replace(t,"")},e.parseNumbers=function(t){return isNaN(t)||(t=t%1==0?parseInt(t,10):parseFloat(t)),t},e.parseBooleans=function(t){return/^(?:true|false)$/i.test(t)&&(t="true"===t.toLowerCase()),t}}).call(this)},38805:function(t,e,n){(function(){"use strict";var t,s,i,r,a={}.hasOwnProperty;s=n(66465),t=n(56712),i=n(11912),r=n(92114),e.defaults=s.defaults,e.processors=r,e.ValidationError=function(t){function e(t){this.message=t}return function(t,e){for(var n in e)a.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(e,Error),e}(),e.Builder=t.Builder,e.Parser=i.Parser,e.parseString=i.parseString,e.parseStringPromise=i.parseStringPromise}).call(this)},34923:function(t){(function(){t.exports={Disconnected:1,Preceding:2,Following:4,Contains:8,ContainedBy:16,ImplementationSpecific:32}}).call(this)},71737:function(t){(function(){t.exports={Element:1,Attribute:2,Text:3,CData:4,EntityReference:5,EntityDeclaration:6,ProcessingInstruction:7,Comment:8,Document:9,DocType:10,DocumentFragment:11,NotationDeclaration:12,Declaration:201,Raw:202,AttributeDeclaration:203,ElementDeclaration:204,Dummy:205}}).call(this)},49241:function(t){(function(){var e,n,s,i,r,a,o,l=[].slice,c={}.hasOwnProperty;e=function(){var t,e,n,s,i,a;if(a=arguments[0],i=2<=arguments.length?l.call(arguments,1):[],r(Object.assign))Object.assign.apply(null,arguments);else for(t=0,n=i.length;t<n;t++)if(null!=(s=i[t]))for(e in s)c.call(s,e)&&(a[e]=s[e]);return a},r=function(t){return!!t&&"[object Function]"===Object.prototype.toString.call(t)},a=function(t){var e;return!!t&&("function"==(e=typeof t)||"object"===e)},s=function(t){return r(Array.isArray)?Array.isArray(t):"[object Array]"===Object.prototype.toString.call(t)},i=function(t){var e;if(s(t))return!t.length;for(e in t)if(c.call(t,e))return!1;return!0},o=function(t){var e,n;return a(t)&&(n=Object.getPrototypeOf(t))&&(e=n.constructor)&&"function"==typeof e&&e instanceof e&&Function.prototype.toString.call(e)===Function.prototype.toString.call(Object)},n=function(t){return r(t.valueOf)?t.valueOf():t},t.exports.assign=e,t.exports.isFunction=r,t.exports.isObject=a,t.exports.isArray=s,t.exports.isEmpty=i,t.exports.isPlainObject=o,t.exports.getValue=n}).call(this)},88753:function(t){(function(){t.exports={None:0,OpenTag:1,InsideTag:2,CloseTag:3}}).call(this)},54238:function(t,e,n){(function(){var e;e=n(71737),n(10468),t.exports=function(){function t(t,n,s){if(this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),null==n)throw new Error("Missing attribute name. "+this.debugInfo(n));this.name=this.stringify.name(n),this.value=this.stringify.attValue(s),this.type=e.Attribute,this.isId=!1,this.schemaTypeInfo=null}return Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"ownerElement",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(t.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(t.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(t.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"specified",{get:function(){return!0}}),t.prototype.clone=function(){return Object.create(this)},t.prototype.toString=function(t){return this.options.writer.attribute(this,this.options.writer.filterOptions(t))},t.prototype.debugInfo=function(t){return null==(t=t||this.name)?"parent: <"+this.parent.name+">":"attribute: {"+t+"}, parent: <"+this.parent.name+">"},t.prototype.isEqualNode=function(t){return t.namespaceURI===this.namespaceURI&&t.prefix===this.prefix&&t.localName===this.localName&&t.value===this.value},t}()}).call(this)},92691:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing CDATA text. "+this.debugInfo());this.name="#cdata-section",this.type=e.CData,this.value=this.stringify.cdata(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.cdata(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},17457:function(t,e,n){(function(){var e,s={}.hasOwnProperty;e=n(10468),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t),this.value=""}return function(t,e){for(var n in e)s.call(e,n)&&(t[n]=e[n]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,t),Object.defineProperty(e.prototype,"data",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(e.prototype,"length",{get:function(){return this.value.length}}),Object.defineProperty(e.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),e.prototype.clone=function(){return Object.create(this)},e.prototype.substringData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.appendData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.insertData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.deleteData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.replaceData=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.isEqualNode=function(t){return!!e.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.data===this.data},e}(e)}).call(this)},32679:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing comment text. "+this.debugInfo());this.name="#comment",this.type=e.Comment,this.value=this.stringify.comment(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.comment(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},33074:function(t,e,n){(function(){var e,s;e=n(55660),s=n(92527),t.exports=function(){function t(){this.defaultParams={"canonical-form":!1,"cdata-sections":!1,comments:!1,"datatype-normalization":!1,"element-content-whitespace":!0,entities:!0,"error-handler":new e,infoset:!0,"validate-if-schema":!1,namespaces:!0,"namespace-declarations":!0,"normalize-characters":!1,"schema-location":"","schema-type":"","split-cdata-sections":!0,validate:!1,"well-formed":!0},this.params=Object.create(this.defaultParams)}return Object.defineProperty(t.prototype,"parameterNames",{get:function(){return new s(Object.keys(this.defaultParams))}}),t.prototype.getParameter=function(t){return this.params.hasOwnProperty(t)?this.params[t]:null},t.prototype.canSetParameter=function(t,e){return!0},t.prototype.setParameter=function(t,e){return null!=e?this.params[t]=e:delete this.params[t]},t}()}).call(this)},55660:function(t){(function(){t.exports=function(){function t(){}return t.prototype.handleError=function(t){throw new Error(t)},t}()}).call(this)},67260:function(t){(function(){t.exports=function(){function t(){}return t.prototype.hasFeature=function(t,e){return!0},t.prototype.createDocumentType=function(t,e,n){throw new Error("This DOM method is not implemented.")},t.prototype.createDocument=function(t,e,n){throw new Error("This DOM method is not implemented.")},t.prototype.createHTMLDocument=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},92527:function(t){(function(){t.exports=function(){function t(t){this.arr=t||[]}return Object.defineProperty(t.prototype,"length",{get:function(){return this.arr.length}}),t.prototype.item=function(t){return this.arr[t]||null},t.prototype.contains=function(t){return-1!==this.arr.indexOf(t)},t}()}).call(this)},34111:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i,r,a,o){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD element name. "+this.debugInfo());if(null==i)throw new Error("Missing DTD attribute name. "+this.debugInfo(s));if(!r)throw new Error("Missing DTD attribute type. "+this.debugInfo(s));if(!a)throw new Error("Missing DTD attribute default. "+this.debugInfo(s));if(0!==a.indexOf("#")&&(a="#"+a),!a.match(/^(#REQUIRED|#IMPLIED|#FIXED|#DEFAULT)$/))throw new Error("Invalid default value type; expected: #REQUIRED, #IMPLIED, #FIXED or #DEFAULT. "+this.debugInfo(s));if(o&&!a.match(/^(#FIXED|#DEFAULT)$/))throw new Error("Default value only applies to #FIXED or #DEFAULT. "+this.debugInfo(s));this.elementName=this.stringify.name(s),this.type=e.AttributeDeclaration,this.attributeName=this.stringify.name(i),this.attributeType=this.stringify.dtdAttType(r),o&&(this.defaultValue=this.stringify.dtdAttDefault(o)),this.defaultValueType=a}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.dtdAttList(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},67696:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD element name. "+this.debugInfo());i||(i="(#PCDATA)"),Array.isArray(i)&&(i="("+i.join(",")+")"),this.name=this.stringify.name(s),this.type=e.ElementDeclaration,this.value=this.stringify.dtdElementValue(i)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.dtdElement(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},5529:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).isObject,s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,r,a){if(n.__super__.constructor.call(this,t),null==r)throw new Error("Missing DTD entity name. "+this.debugInfo(r));if(null==a)throw new Error("Missing DTD entity value. "+this.debugInfo(r));if(this.pe=!!s,this.name=this.stringify.name(r),this.type=e.EntityDeclaration,i(a)){if(!a.pubID&&!a.sysID)throw new Error("Public and/or system identifiers are required for an external entity. "+this.debugInfo(r));if(a.pubID&&!a.sysID)throw new Error("System identifier is required for a public external entity. "+this.debugInfo(r));if(this.internal=!1,null!=a.pubID&&(this.pubID=this.stringify.dtdPubID(a.pubID)),null!=a.sysID&&(this.sysID=this.stringify.dtdSysID(a.sysID)),null!=a.nData&&(this.nData=this.stringify.dtdNData(a.nData)),this.pe&&this.nData)throw new Error("Notation declaration is not allowed in a parameter entity. "+this.debugInfo(r))}else this.value=this.stringify.dtdEntityValue(a),this.internal=!0}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(n.prototype,"notationName",{get:function(){return this.nData||null}}),Object.defineProperty(n.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"xmlEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"xmlVersion",{get:function(){return null}}),n.prototype.toString=function(t){return this.options.writer.dtdEntity(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},28012:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD notation name. "+this.debugInfo(s));if(!i.pubID&&!i.sysID)throw new Error("Public or system identifiers are required for an external entity. "+this.debugInfo(s));this.name=this.stringify.name(s),this.type=e.NotationDeclaration,null!=i.pubID&&(this.pubID=this.stringify.dtdPubID(i.pubID)),null!=i.sysID&&(this.sysID=this.stringify.dtdSysID(i.sysID))}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),n.prototype.toString=function(t){return this.options.writer.dtdNotation(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},34130:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).isObject,s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,r,a){var o;n.__super__.constructor.call(this,t),i(s)&&(s=(o=s).version,r=o.encoding,a=o.standalone),s||(s="1.0"),this.type=e.Declaration,this.version=this.stringify.xmlVersion(s),null!=r&&(this.encoding=this.stringify.xmlEncoding(r)),null!=a&&(this.standalone=this.stringify.xmlStandalone(a))}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.declaration(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},96376:function(t,e,n){(function(){var e,s,i,r,a,o,l,c,u={}.hasOwnProperty;c=n(49241).isObject,l=n(10468),e=n(71737),s=n(34111),r=n(5529),i=n(67696),a=n(28012),o=n(24797),t.exports=function(t){function n(t,s,i){var r,a,o,l,u,d;if(n.__super__.constructor.call(this,t),this.type=e.DocType,t.children)for(a=0,o=(l=t.children).length;a<o;a++)if((r=l[a]).type===e.Element){this.name=r.name;break}this.documentObject=t,c(s)&&(s=(u=s).pubID,i=u.sysID),null==i&&(i=(d=[s,i])[0],s=d[1]),null!=s&&(this.pubID=this.stringify.dtdPubID(s)),null!=i&&(this.sysID=this.stringify.dtdSysID(i))}return function(t,e){for(var n in e)u.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"entities",{get:function(){var t,n,s,i,r;for(i={},n=0,s=(r=this.children).length;n<s;n++)(t=r[n]).type!==e.EntityDeclaration||t.pe||(i[t.name]=t);return new o(i)}}),Object.defineProperty(n.prototype,"notations",{get:function(){var t,n,s,i,r;for(i={},n=0,s=(r=this.children).length;n<s;n++)(t=r[n]).type===e.NotationDeclaration&&(i[t.name]=t);return new o(i)}}),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(n.prototype,"internalSubset",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),n.prototype.element=function(t,e){var n;return n=new i(this,t,e),this.children.push(n),this},n.prototype.attList=function(t,e,n,i,r){var a;return a=new s(this,t,e,n,i,r),this.children.push(a),this},n.prototype.entity=function(t,e){var n;return n=new r(this,!1,t,e),this.children.push(n),this},n.prototype.pEntity=function(t,e){var n;return n=new r(this,!0,t,e),this.children.push(n),this},n.prototype.notation=function(t,e){var n;return n=new a(this,t,e),this.children.push(n),this},n.prototype.toString=function(t){return this.options.writer.docType(this,this.options.writer.filterOptions(t))},n.prototype.ele=function(t,e){return this.element(t,e)},n.prototype.att=function(t,e,n,s,i){return this.attList(t,e,n,s,i)},n.prototype.ent=function(t,e){return this.entity(t,e)},n.prototype.pent=function(t,e){return this.pEntity(t,e)},n.prototype.not=function(t,e){return this.notation(t,e)},n.prototype.up=function(){return this.root()||this.documentObject},n.prototype.isEqualNode=function(t){return!!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.name===this.name&&t.publicId===this.publicId&&t.systemId===this.systemId},n}(l)}).call(this)},71933:function(t,e,n){(function(){var e,s,i,r,a,o,l,c={}.hasOwnProperty;l=n(49241).isPlainObject,i=n(67260),s=n(33074),r=n(10468),e=n(71737),o=n(43976),a=n(40382),t.exports=function(t){function n(t){n.__super__.constructor.call(this,null),this.name="#document",this.type=e.Document,this.documentURI=null,this.domConfig=new s,t||(t={}),t.writer||(t.writer=new a),this.options=t,this.stringify=new o(t)}return function(t,e){for(var n in e)c.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"implementation",{value:new i}),Object.defineProperty(n.prototype,"doctype",{get:function(){var t,n,s,i;for(n=0,s=(i=this.children).length;n<s;n++)if((t=i[n]).type===e.DocType)return t;return null}}),Object.defineProperty(n.prototype,"documentElement",{get:function(){return this.rootObject||null}}),Object.defineProperty(n.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"strictErrorChecking",{get:function(){return!1}}),Object.defineProperty(n.prototype,"xmlEncoding",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].encoding:null}}),Object.defineProperty(n.prototype,"xmlStandalone",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration&&"yes"===this.children[0].standalone}}),Object.defineProperty(n.prototype,"xmlVersion",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].version:"1.0"}}),Object.defineProperty(n.prototype,"URL",{get:function(){return this.documentURI}}),Object.defineProperty(n.prototype,"origin",{get:function(){return null}}),Object.defineProperty(n.prototype,"compatMode",{get:function(){return null}}),Object.defineProperty(n.prototype,"characterSet",{get:function(){return null}}),Object.defineProperty(n.prototype,"contentType",{get:function(){return null}}),n.prototype.end=function(t){var e;return e={},t?l(t)&&(e=t,t=this.options.writer):t=this.options.writer,t.document(this,t.filterOptions(e))},n.prototype.toString=function(t){return this.options.writer.document(this,this.options.writer.filterOptions(t))},n.prototype.createElement=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createDocumentFragment=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createTextNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createComment=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createCDATASection=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createProcessingInstruction=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createAttribute=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createEntityReference=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.importNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createElementNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementById=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.adoptNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.normalizeDocument=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.renameNode=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createEvent=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createRange=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createNodeIterator=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createTreeWalker=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n}(r)}).call(this)},80400:function(t,e,n){(function(){var e,s,i,r,a,o,l,c,u,d,m,p,f,h,g,v,w,y,A,b,_,C,x,T={}.hasOwnProperty;x=n(49241),_=x.isObject,b=x.isFunction,C=x.isPlainObject,A=x.getValue,e=n(71737),p=n(71933),f=n(33906),r=n(92691),a=n(32679),g=n(1268),y=n(82535),h=n(85915),d=n(34130),m=n(96376),o=n(34111),c=n(5529),l=n(67696),u=n(28012),i=n(54238),w=n(43976),v=n(40382),s=n(88753),t.exports=function(){function t(t,n,s){var i;this.name="?xml",this.type=e.Document,t||(t={}),i={},t.writer?C(t.writer)&&(i=t.writer,t.writer=new v):t.writer=new v,this.options=t,this.writer=t.writer,this.writerOptions=this.writer.filterOptions(i),this.stringify=new w(t),this.onDataCallback=n||function(){},this.onEndCallback=s||function(){},this.currentNode=null,this.currentLevel=-1,this.openTags={},this.documentStarted=!1,this.documentCompleted=!1,this.root=null}return t.prototype.createChildNode=function(t){var n,s,i,r,a,o,l,c;switch(t.type){case e.CData:this.cdata(t.value);break;case e.Comment:this.comment(t.value);break;case e.Element:for(s in i={},l=t.attribs)T.call(l,s)&&(n=l[s],i[s]=n.value);this.node(t.name,i);break;case e.Dummy:this.dummy();break;case e.Raw:this.raw(t.value);break;case e.Text:this.text(t.value);break;case e.ProcessingInstruction:this.instruction(t.target,t.value);break;default:throw new Error("This XML node type is not supported in a JS object: "+t.constructor.name)}for(a=0,o=(c=t.children).length;a<o;a++)r=c[a],this.createChildNode(r),r.type===e.Element&&this.up();return this},t.prototype.dummy=function(){return this},t.prototype.node=function(t,e,n){var s;if(null==t)throw new Error("Missing node name.");if(this.root&&-1===this.currentLevel)throw new Error("Document can only have one root node. "+this.debugInfo(t));return this.openCurrent(),t=A(t),null==e&&(e={}),e=A(e),_(e)||(n=(s=[e,n])[0],e=s[1]),this.currentNode=new f(this,t,e),this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,null!=n&&this.text(n),this},t.prototype.element=function(t,n,s){var i,r,a,o,l,c;if(this.currentNode&&this.currentNode.type===e.DocType)this.dtdElement.apply(this,arguments);else if(Array.isArray(t)||_(t)||b(t))for(o=this.options.noValidation,this.options.noValidation=!0,(c=new p(this.options).element("TEMP_ROOT")).element(t),this.options.noValidation=o,r=0,a=(l=c.children).length;r<a;r++)i=l[r],this.createChildNode(i),i.type===e.Element&&this.up();else this.node(t,n,s);return this},t.prototype.attribute=function(t,e){var n,s;if(!this.currentNode||this.currentNode.children)throw new Error("att() can only be used immediately after an ele() call in callback mode. "+this.debugInfo(t));if(null!=t&&(t=A(t)),_(t))for(n in t)T.call(t,n)&&(s=t[n],this.attribute(n,s));else b(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.currentNode.attribs[t]=new i(this,t,""):null!=e&&(this.currentNode.attribs[t]=new i(this,t,e));return this},t.prototype.text=function(t){var e;return this.openCurrent(),e=new y(this,t),this.onData(this.writer.text(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.cdata=function(t){var e;return this.openCurrent(),e=new r(this,t),this.onData(this.writer.cdata(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.comment=function(t){var e;return this.openCurrent(),e=new a(this,t),this.onData(this.writer.comment(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.raw=function(t){var e;return this.openCurrent(),e=new g(this,t),this.onData(this.writer.raw(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.instruction=function(t,e){var n,s,i,r,a;if(this.openCurrent(),null!=t&&(t=A(t)),null!=e&&(e=A(e)),Array.isArray(t))for(n=0,r=t.length;n<r;n++)s=t[n],this.instruction(s);else if(_(t))for(s in t)T.call(t,s)&&(i=t[s],this.instruction(s,i));else b(e)&&(e=e.apply()),a=new h(this,t,e),this.onData(this.writer.processingInstruction(a,this.writerOptions,this.currentLevel+1),this.currentLevel+1);return this},t.prototype.declaration=function(t,e,n){var s;if(this.openCurrent(),this.documentStarted)throw new Error("declaration() must be the first node.");return s=new d(this,t,e,n),this.onData(this.writer.declaration(s,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.doctype=function(t,e,n){if(this.openCurrent(),null==t)throw new Error("Missing root node name.");if(this.root)throw new Error("dtd() must come before the root node.");return this.currentNode=new m(this,e,n),this.currentNode.rootNodeName=t,this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,this},t.prototype.dtdElement=function(t,e){var n;return this.openCurrent(),n=new l(this,t,e),this.onData(this.writer.dtdElement(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.attList=function(t,e,n,s,i){var r;return this.openCurrent(),r=new o(this,t,e,n,s,i),this.onData(this.writer.dtdAttList(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.entity=function(t,e){var n;return this.openCurrent(),n=new c(this,!1,t,e),this.onData(this.writer.dtdEntity(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.pEntity=function(t,e){var n;return this.openCurrent(),n=new c(this,!0,t,e),this.onData(this.writer.dtdEntity(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.notation=function(t,e){var n;return this.openCurrent(),n=new u(this,t,e),this.onData(this.writer.dtdNotation(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.up=function(){if(this.currentLevel<0)throw new Error("The document node has no parent.");return this.currentNode?(this.currentNode.children?this.closeNode(this.currentNode):this.openNode(this.currentNode),this.currentNode=null):this.closeNode(this.openTags[this.currentLevel]),delete this.openTags[this.currentLevel],this.currentLevel--,this},t.prototype.end=function(){for(;this.currentLevel>=0;)this.up();return this.onEnd()},t.prototype.openCurrent=function(){if(this.currentNode)return this.currentNode.children=!0,this.openNode(this.currentNode)},t.prototype.openNode=function(t){var n,i,r,a;if(!t.isOpen){if(this.root||0!==this.currentLevel||t.type!==e.Element||(this.root=t),i="",t.type===e.Element){for(r in this.writerOptions.state=s.OpenTag,i=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<"+t.name,a=t.attribs)T.call(a,r)&&(n=a[r],i+=this.writer.attribute(n,this.writerOptions,this.currentLevel));i+=(t.children?">":"/>")+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=s.InsideTag}else this.writerOptions.state=s.OpenTag,i=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<!DOCTYPE "+t.rootNodeName,t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),t.children?(i+=" [",this.writerOptions.state=s.InsideTag):(this.writerOptions.state=s.CloseTag,i+=">"),i+=this.writer.endline(t,this.writerOptions,this.currentLevel);return this.onData(i,this.currentLevel),t.isOpen=!0}},t.prototype.closeNode=function(t){var n;if(!t.isClosed)return"",this.writerOptions.state=s.CloseTag,n=t.type===e.Element?this.writer.indent(t,this.writerOptions,this.currentLevel)+"</"+t.name+">"+this.writer.endline(t,this.writerOptions,this.currentLevel):this.writer.indent(t,this.writerOptions,this.currentLevel)+"]>"+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=s.None,this.onData(n,this.currentLevel),t.isClosed=!0},t.prototype.onData=function(t,e){return this.documentStarted=!0,this.onDataCallback(t,e+1)},t.prototype.onEnd=function(){return this.documentCompleted=!0,this.onEndCallback()},t.prototype.debugInfo=function(t){return null==t?"":"node: <"+t+">"},t.prototype.ele=function(){return this.element.apply(this,arguments)},t.prototype.nod=function(t,e,n){return this.node(t,e,n)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.dec=function(t,e,n){return this.declaration(t,e,n)},t.prototype.dtd=function(t,e,n){return this.doctype(t,e,n)},t.prototype.e=function(t,e,n){return this.element(t,e,n)},t.prototype.n=function(t,e,n){return this.node(t,e,n)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.att=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.a=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.ent=function(t,e){return this.entity(t,e)},t.prototype.pent=function(t,e){return this.pEntity(t,e)},t.prototype.not=function(t,e){return this.notation(t,e)},t}()}).call(this)},21218:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t){n.__super__.constructor.call(this,t),this.type=e.Dummy}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return""},n}(s)}).call(this)},33906:function(t,e,n){(function(){var e,s,i,r,a,o,l,c,u={}.hasOwnProperty;c=n(49241),l=c.isObject,o=c.isFunction,a=c.getValue,r=n(10468),e=n(71737),s=n(54238),i=n(24797),t.exports=function(t){function n(t,s,i){var r,a,o,l;if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing element name. "+this.debugInfo());if(this.name=this.stringify.name(s),this.type=e.Element,this.attribs={},this.schemaTypeInfo=null,null!=i&&this.attribute(i),t.type===e.Document&&(this.isRoot=!0,this.documentObject=t,t.rootObject=this,t.children))for(a=0,o=(l=t.children).length;a<o;a++)if((r=l[a]).type===e.DocType){r.name=this.name;break}}return function(t,e){for(var n in e)u.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"tagName",{get:function(){return this.name}}),Object.defineProperty(n.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(n.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(n.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(n.prototype,"id",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"className",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"classList",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"attributes",{get:function(){return this.attributeMap&&this.attributeMap.nodes||(this.attributeMap=new i(this.attribs)),this.attributeMap}}),n.prototype.clone=function(){var t,e,n,s;for(e in(n=Object.create(this)).isRoot&&(n.documentObject=null),n.attribs={},s=this.attribs)u.call(s,e)&&(t=s[e],n.attribs[e]=t.clone());return n.children=[],this.children.forEach((function(t){var e;return(e=t.clone()).parent=n,n.children.push(e)})),n},n.prototype.attribute=function(t,e){var n,i;if(null!=t&&(t=a(t)),l(t))for(n in t)u.call(t,n)&&(i=t[n],this.attribute(n,i));else o(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.attribs[t]=new s(this,t,""):null!=e&&(this.attribs[t]=new s(this,t,e));return this},n.prototype.removeAttribute=function(t){var e,n,s;if(null==t)throw new Error("Missing attribute name. "+this.debugInfo());if(t=a(t),Array.isArray(t))for(n=0,s=t.length;n<s;n++)e=t[n],delete this.attribs[e];else delete this.attribs[t];return this},n.prototype.toString=function(t){return this.options.writer.element(this,this.options.writer.filterOptions(t))},n.prototype.att=function(t,e){return this.attribute(t,e)},n.prototype.a=function(t,e){return this.attribute(t,e)},n.prototype.getAttribute=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t].value:null},n.prototype.setAttribute=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNode=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t]:null},n.prototype.setAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.removeAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setAttributeNS=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.removeAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNodeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setAttributeNodeNS=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.hasAttribute=function(t){return this.attribs.hasOwnProperty(t)},n.prototype.hasAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setIdAttribute=function(t,e){return this.attribs.hasOwnProperty(t)?this.attribs[t].isId:e},n.prototype.setIdAttributeNS=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setIdAttributeNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.isEqualNode=function(t){var e,s,i;if(!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t))return!1;if(t.namespaceURI!==this.namespaceURI)return!1;if(t.prefix!==this.prefix)return!1;if(t.localName!==this.localName)return!1;if(t.attribs.length!==this.attribs.length)return!1;for(e=s=0,i=this.attribs.length-1;0<=i?s<=i:s>=i;e=0<=i?++s:--s)if(!this.attribs[e].isEqualNode(t.attribs[e]))return!1;return!0},n}(r)}).call(this)},24797:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return Object.keys(this.nodes).length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.getNamedItem=function(t){return this.nodes[t]},t.prototype.setNamedItem=function(t){var e;return e=this.nodes[t.nodeName],this.nodes[t.nodeName]=t,e||null},t.prototype.removeNamedItem=function(t){var e;return e=this.nodes[t],delete this.nodes[t],e||null},t.prototype.item=function(t){return this.nodes[Object.keys(this.nodes)[t]]||null},t.prototype.getNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t.prototype.setNamedItemNS=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.removeNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},10468:function(t,e,n){(function(){var e,s,i,r,a,o,l,c,u,d,m,p,f,h,g,v,w,y={}.hasOwnProperty;w=n(49241),v=w.isObject,g=w.isFunction,h=w.isEmpty,f=w.getValue,c=null,i=null,r=null,a=null,o=null,m=null,p=null,d=null,l=null,s=null,u=null,e=null,t.exports=function(){function t(t){this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),this.value=null,this.children=[],this.baseURI=null,c||(c=n(33906),i=n(92691),r=n(32679),a=n(34130),o=n(96376),m=n(1268),p=n(82535),d=n(85915),l=n(21218),s=n(71737),u=n(16684),n(24797),e=n(34923))}return Object.defineProperty(t.prototype,"nodeName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"nodeValue",{get:function(){return this.value}}),Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.childNodeList&&this.childNodeList.nodes||(this.childNodeList=new u(this.children)),this.childNodeList}}),Object.defineProperty(t.prototype,"firstChild",{get:function(){return this.children[0]||null}}),Object.defineProperty(t.prototype,"lastChild",{get:function(){return this.children[this.children.length-1]||null}}),Object.defineProperty(t.prototype,"previousSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t-1]||null}}),Object.defineProperty(t.prototype,"nextSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t+1]||null}}),Object.defineProperty(t.prototype,"ownerDocument",{get:function(){return this.document()||null}}),Object.defineProperty(t.prototype,"textContent",{get:function(){var t,e,n,i,r;if(this.nodeType===s.Element||this.nodeType===s.DocumentFragment){for(r="",e=0,n=(i=this.children).length;e<n;e++)(t=i[e]).textContent&&(r+=t.textContent);return r}return null},set:function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),t.prototype.setParent=function(t){var e,n,s,i,r;for(this.parent=t,t&&(this.options=t.options,this.stringify=t.stringify),r=[],n=0,s=(i=this.children).length;n<s;n++)e=i[n],r.push(e.setParent(this));return r},t.prototype.element=function(t,e,n){var s,i,r,a,o,l,c,u,d,m,p;if(l=null,null===e&&null==n&&(e=(d=[{},null])[0],n=d[1]),null==e&&(e={}),e=f(e),v(e)||(n=(m=[e,n])[0],e=m[1]),null!=t&&(t=f(t)),Array.isArray(t))for(r=0,c=t.length;r<c;r++)i=t[r],l=this.element(i);else if(g(t))l=this.element(t.apply());else if(v(t)){for(o in t)if(y.call(t,o))if(p=t[o],g(p)&&(p=p.apply()),!this.options.ignoreDecorators&&this.stringify.convertAttKey&&0===o.indexOf(this.stringify.convertAttKey))l=this.attribute(o.substr(this.stringify.convertAttKey.length),p);else if(!this.options.separateArrayItems&&Array.isArray(p)&&h(p))l=this.dummy();else if(v(p)&&h(p))l=this.element(o);else if(this.options.keepNullNodes||null!=p)if(!this.options.separateArrayItems&&Array.isArray(p))for(a=0,u=p.length;a<u;a++)i=p[a],(s={})[o]=i,l=this.element(s);else v(p)?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===o.indexOf(this.stringify.convertTextKey)?l=this.element(p):(l=this.element(o)).element(p):l=this.element(o,p);else l=this.dummy()}else l=this.options.keepNullNodes||null!==n?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===t.indexOf(this.stringify.convertTextKey)?this.text(n):!this.options.ignoreDecorators&&this.stringify.convertCDataKey&&0===t.indexOf(this.stringify.convertCDataKey)?this.cdata(n):!this.options.ignoreDecorators&&this.stringify.convertCommentKey&&0===t.indexOf(this.stringify.convertCommentKey)?this.comment(n):!this.options.ignoreDecorators&&this.stringify.convertRawKey&&0===t.indexOf(this.stringify.convertRawKey)?this.raw(n):!this.options.ignoreDecorators&&this.stringify.convertPIKey&&0===t.indexOf(this.stringify.convertPIKey)?this.instruction(t.substr(this.stringify.convertPIKey.length),n):this.node(t,e,n):this.dummy();if(null==l)throw new Error("Could not create any elements with: "+t+". "+this.debugInfo());return l},t.prototype.insertBefore=function(t,e,n){var s,i,r,a,o;if(null!=t?t.type:void 0)return a=e,(r=t).setParent(this),a?(i=children.indexOf(a),o=children.splice(i),children.push(r),Array.prototype.push.apply(children,o)):children.push(r),r;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return i=this.parent.children.indexOf(this),o=this.parent.children.splice(i),s=this.parent.element(t,e,n),Array.prototype.push.apply(this.parent.children,o),s},t.prototype.insertAfter=function(t,e,n){var s,i,r;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return i=this.parent.children.indexOf(this),r=this.parent.children.splice(i+1),s=this.parent.element(t,e,n),Array.prototype.push.apply(this.parent.children,r),s},t.prototype.remove=function(){var t;if(this.isRoot)throw new Error("Cannot remove the root element. "+this.debugInfo());return t=this.parent.children.indexOf(this),[].splice.apply(this.parent.children,[t,t-t+1].concat([])),this.parent},t.prototype.node=function(t,e,n){var s,i;return null!=t&&(t=f(t)),e||(e={}),e=f(e),v(e)||(n=(i=[e,n])[0],e=i[1]),s=new c(this,t,e),null!=n&&s.text(n),this.children.push(s),s},t.prototype.text=function(t){var e;return v(t)&&this.element(t),e=new p(this,t),this.children.push(e),this},t.prototype.cdata=function(t){var e;return e=new i(this,t),this.children.push(e),this},t.prototype.comment=function(t){var e;return e=new r(this,t),this.children.push(e),this},t.prototype.commentBefore=function(t){var e,n;return e=this.parent.children.indexOf(this),n=this.parent.children.splice(e),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,n),this},t.prototype.commentAfter=function(t){var e,n;return e=this.parent.children.indexOf(this),n=this.parent.children.splice(e+1),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,n),this},t.prototype.raw=function(t){var e;return e=new m(this,t),this.children.push(e),this},t.prototype.dummy=function(){return new l(this)},t.prototype.instruction=function(t,e){var n,s,i,r,a;if(null!=t&&(t=f(t)),null!=e&&(e=f(e)),Array.isArray(t))for(r=0,a=t.length;r<a;r++)n=t[r],this.instruction(n);else if(v(t))for(n in t)y.call(t,n)&&(s=t[n],this.instruction(n,s));else g(e)&&(e=e.apply()),i=new d(this,t,e),this.children.push(i);return this},t.prototype.instructionBefore=function(t,e){var n,s;return n=this.parent.children.indexOf(this),s=this.parent.children.splice(n),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,s),this},t.prototype.instructionAfter=function(t,e){var n,s;return n=this.parent.children.indexOf(this),s=this.parent.children.splice(n+1),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,s),this},t.prototype.declaration=function(t,e,n){var i,r;return i=this.document(),r=new a(i,t,e,n),0===i.children.length?i.children.unshift(r):i.children[0].type===s.Declaration?i.children[0]=r:i.children.unshift(r),i.root()||i},t.prototype.dtd=function(t,e){var n,i,r,a,l,c,u,d,m;for(n=this.document(),i=new o(n,t,e),r=a=0,c=(d=n.children).length;a<c;r=++a)if(d[r].type===s.DocType)return n.children[r]=i,i;for(r=l=0,u=(m=n.children).length;l<u;r=++l)if(m[r].isRoot)return n.children.splice(r,0,i),i;return n.children.push(i),i},t.prototype.up=function(){if(this.isRoot)throw new Error("The root node has no parent. Use doc() if you need to get the document object.");return this.parent},t.prototype.root=function(){var t;for(t=this;t;){if(t.type===s.Document)return t.rootObject;if(t.isRoot)return t;t=t.parent}},t.prototype.document=function(){var t;for(t=this;t;){if(t.type===s.Document)return t;t=t.parent}},t.prototype.end=function(t){return this.document().end(t)},t.prototype.prev=function(){var t;if((t=this.parent.children.indexOf(this))<1)throw new Error("Already at the first node. "+this.debugInfo());return this.parent.children[t-1]},t.prototype.next=function(){var t;if(-1===(t=this.parent.children.indexOf(this))||t===this.parent.children.length-1)throw new Error("Already at the last node. "+this.debugInfo());return this.parent.children[t+1]},t.prototype.importDocument=function(t){var e;return(e=t.root().clone()).parent=this,e.isRoot=!1,this.children.push(e),this},t.prototype.debugInfo=function(t){var e,n;return null!=(t=t||this.name)||(null!=(e=this.parent)?e.name:void 0)?null==t?"parent: <"+this.parent.name+">":(null!=(n=this.parent)?n.name:void 0)?"node: <"+t+">, parent: <"+this.parent.name+">":"node: <"+t+">":""},t.prototype.ele=function(t,e,n){return this.element(t,e,n)},t.prototype.nod=function(t,e,n){return this.node(t,e,n)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.doc=function(){return this.document()},t.prototype.dec=function(t,e,n){return this.declaration(t,e,n)},t.prototype.e=function(t,e,n){return this.element(t,e,n)},t.prototype.n=function(t,e,n){return this.node(t,e,n)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.u=function(){return this.up()},t.prototype.importXMLBuilder=function(t){return this.importDocument(t)},t.prototype.replaceChild=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.removeChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.appendChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.hasChildNodes=function(){return 0!==this.children.length},t.prototype.cloneNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.normalize=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isSupported=function(t,e){return!0},t.prototype.hasAttributes=function(){return 0!==this.attribs.length},t.prototype.compareDocumentPosition=function(t){var n,s;return(n=this)===t?0:this.document()!==t.document()?(s=e.Disconnected|e.ImplementationSpecific,Math.random()<.5?s|=e.Preceding:s|=e.Following,s):n.isAncestor(t)?e.Contains|e.Preceding:n.isDescendant(t)?e.Contains|e.Following:n.isPreceding(t)?e.Preceding:e.Following},t.prototype.isSameNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupPrefix=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isDefaultNamespace=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupNamespaceURI=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isEqualNode=function(t){var e,n,s;if(t.nodeType!==this.nodeType)return!1;if(t.children.length!==this.children.length)return!1;for(e=n=0,s=this.children.length-1;0<=s?n<=s:n>=s;e=0<=s?++n:--n)if(!this.children[e].isEqualNode(t.children[e]))return!1;return!0},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.setUserData=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.getUserData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.contains=function(t){return!!t&&(t===this||this.isDescendant(t))},t.prototype.isDescendant=function(t){var e,n,s,i;for(n=0,s=(i=this.children).length;n<s;n++){if(t===(e=i[n]))return!0;if(e.isDescendant(t))return!0}return!1},t.prototype.isAncestor=function(t){return t.isDescendant(this)},t.prototype.isPreceding=function(t){var e,n;return e=this.treePosition(t),n=this.treePosition(this),-1!==e&&-1!==n&&e<n},t.prototype.isFollowing=function(t){var e,n;return e=this.treePosition(t),n=this.treePosition(this),-1!==e&&-1!==n&&e>n},t.prototype.treePosition=function(t){var e,n;return n=0,e=!1,this.foreachTreeNode(this.document(),(function(s){if(n++,!e&&s===t)return e=!0})),e?n:-1},t.prototype.foreachTreeNode=function(t,e){var n,s,i,r,a;for(t||(t=this.document()),s=0,i=(r=t.children).length;s<i;s++){if(a=e(n=r[s]))return a;if(a=this.foreachTreeNode(n,e))return a}},t}()}).call(this)},16684:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return this.nodes.length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.item=function(t){return this.nodes[t]||null},t}()}).call(this)},85915:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing instruction target. "+this.debugInfo());this.type=e.ProcessingInstruction,this.target=this.stringify.insTarget(s),this.name=this.target,i&&(this.value=this.stringify.insValue(i))}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.processingInstruction(this,this.options.writer.filterOptions(t))},n.prototype.isEqualNode=function(t){return!!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.target===this.target},n}(s)}).call(this)},1268:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(10468),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing raw text. "+this.debugInfo());this.type=e.Raw,this.value=this.stringify.raw(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.raw(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},96775:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;e=n(71737),i=n(6286),s=n(88753),t.exports=function(t){function n(t,e){this.stream=t,n.__super__.constructor.call(this,e)}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.endline=function(t,e,i){return t.isLastRootNode&&e.state===s.CloseTag?"":n.__super__.endline.call(this,t,e,i)},n.prototype.document=function(t,e){var n,s,i,r,a,o,l,c,u;for(s=i=0,a=(l=t.children).length;i<a;s=++i)(n=l[s]).isLastRootNode=s===t.children.length-1;for(e=this.filterOptions(e),u=[],r=0,o=(c=t.children).length;r<o;r++)n=c[r],u.push(this.writeChildNode(n,e,0));return u},n.prototype.attribute=function(t,e,s){return this.stream.write(n.__super__.attribute.call(this,t,e,s))},n.prototype.cdata=function(t,e,s){return this.stream.write(n.__super__.cdata.call(this,t,e,s))},n.prototype.comment=function(t,e,s){return this.stream.write(n.__super__.comment.call(this,t,e,s))},n.prototype.declaration=function(t,e,s){return this.stream.write(n.__super__.declaration.call(this,t,e,s))},n.prototype.docType=function(t,e,n){var i,r,a,o;if(n||(n=0),this.openNode(t,e,n),e.state=s.OpenTag,this.stream.write(this.indent(t,e,n)),this.stream.write("<!DOCTYPE "+t.root().name),t.pubID&&t.sysID?this.stream.write(' PUBLIC "'+t.pubID+'" "'+t.sysID+'"'):t.sysID&&this.stream.write(' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(this.stream.write(" ["),this.stream.write(this.endline(t,e,n)),e.state=s.InsideTag,r=0,a=(o=t.children).length;r<a;r++)i=o[r],this.writeChildNode(i,e,n+1);e.state=s.CloseTag,this.stream.write("]")}return e.state=s.CloseTag,this.stream.write(e.spaceBeforeSlash+">"),this.stream.write(this.endline(t,e,n)),e.state=s.None,this.closeNode(t,e,n)},n.prototype.element=function(t,n,i){var a,o,l,c,u,d,m,p,f;for(m in i||(i=0),this.openNode(t,n,i),n.state=s.OpenTag,this.stream.write(this.indent(t,n,i)+"<"+t.name),p=t.attribs)r.call(p,m)&&(a=p[m],this.attribute(a,n,i));if(c=0===(l=t.children.length)?null:t.children[0],0===l||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))n.allowEmpty?(this.stream.write(">"),n.state=s.CloseTag,this.stream.write("</"+t.name+">")):(n.state=s.CloseTag,this.stream.write(n.spaceBeforeSlash+"/>"));else if(!n.pretty||1!==l||c.type!==e.Text&&c.type!==e.Raw||null==c.value){for(this.stream.write(">"+this.endline(t,n,i)),n.state=s.InsideTag,u=0,d=(f=t.children).length;u<d;u++)o=f[u],this.writeChildNode(o,n,i+1);n.state=s.CloseTag,this.stream.write(this.indent(t,n,i)+"</"+t.name+">")}else this.stream.write(">"),n.state=s.InsideTag,n.suppressPrettyCount++,this.writeChildNode(c,n,i+1),n.suppressPrettyCount--,n.state=s.CloseTag,this.stream.write("</"+t.name+">");return this.stream.write(this.endline(t,n,i)),n.state=s.None,this.closeNode(t,n,i)},n.prototype.processingInstruction=function(t,e,s){return this.stream.write(n.__super__.processingInstruction.call(this,t,e,s))},n.prototype.raw=function(t,e,s){return this.stream.write(n.__super__.raw.call(this,t,e,s))},n.prototype.text=function(t,e,s){return this.stream.write(n.__super__.text.call(this,t,e,s))},n.prototype.dtdAttList=function(t,e,s){return this.stream.write(n.__super__.dtdAttList.call(this,t,e,s))},n.prototype.dtdElement=function(t,e,s){return this.stream.write(n.__super__.dtdElement.call(this,t,e,s))},n.prototype.dtdEntity=function(t,e,s){return this.stream.write(n.__super__.dtdEntity.call(this,t,e,s))},n.prototype.dtdNotation=function(t,e,s){return this.stream.write(n.__super__.dtdNotation.call(this,t,e,s))},n}(i)}).call(this)},40382:function(t,e,n){(function(){var e,s={}.hasOwnProperty;e=n(6286),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t)}return function(t,e){for(var n in e)s.call(e,n)&&(t[n]=e[n]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,t),e.prototype.document=function(t,e){var n,s,i,r,a;for(e=this.filterOptions(e),r="",s=0,i=(a=t.children).length;s<i;s++)n=a[s],r+=this.writeChildNode(n,e,0);return e.pretty&&r.slice(-e.newline.length)===e.newline&&(r=r.slice(0,-e.newline.length)),r},e}(e)}).call(this)},43976:function(t){(function(){var e=function(t,e){return function(){return t.apply(e,arguments)}},n={}.hasOwnProperty;t.exports=function(){function t(t){var s,i,r;for(s in this.assertLegalName=e(this.assertLegalName,this),this.assertLegalChar=e(this.assertLegalChar,this),t||(t={}),this.options=t,this.options.version||(this.options.version="1.0"),i=t.stringify||{})n.call(i,s)&&(r=i[s],this[s]=r)}return t.prototype.name=function(t){return this.options.noValidation?t:this.assertLegalName(""+t||"")},t.prototype.text=function(t){return this.options.noValidation?t:this.assertLegalChar(this.textEscape(""+t||""))},t.prototype.cdata=function(t){return this.options.noValidation?t:(t=(t=""+t||"").replace("]]>","]]]]><![CDATA[>"),this.assertLegalChar(t))},t.prototype.comment=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/--/))throw new Error("Comment text cannot contain double-hypen: "+t);return this.assertLegalChar(t)},t.prototype.raw=function(t){return this.options.noValidation?t:""+t||""},t.prototype.attValue=function(t){return this.options.noValidation?t:this.assertLegalChar(this.attEscape(t=""+t||""))},t.prototype.insTarget=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.insValue=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/\?>/))throw new Error("Invalid processing instruction value: "+t);return this.assertLegalChar(t)},t.prototype.xmlVersion=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/1\.[0-9]+/))throw new Error("Invalid version number: "+t);return t},t.prototype.xmlEncoding=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/^[A-Za-z](?:[A-Za-z0-9._-])*$/))throw new Error("Invalid encoding: "+t);return this.assertLegalChar(t)},t.prototype.xmlStandalone=function(t){return this.options.noValidation?t:t?"yes":"no"},t.prototype.dtdPubID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdSysID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdElementValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttType=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttDefault=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdEntityValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdNData=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.convertAttKey="@",t.prototype.convertPIKey="?",t.prototype.convertTextKey="#text",t.prototype.convertCDataKey="#cdata",t.prototype.convertCommentKey="#comment",t.prototype.convertRawKey="#raw",t.prototype.assertLegalChar=function(t){var e,n;if(this.options.noValidation)return t;if(e="","1.0"===this.options.version){if(e=/[\0-\x08\x0B\f\x0E-\x1F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,n=t.match(e))throw new Error("Invalid character in string: "+t+" at index "+n.index)}else if("1.1"===this.options.version&&(e=/[\0\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,n=t.match(e)))throw new Error("Invalid character in string: "+t+" at index "+n.index);return t},t.prototype.assertLegalName=function(t){var e;if(this.options.noValidation)return t;if(this.assertLegalChar(t),e=/^([:A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])([\x2D\.0-:A-Z_a-z\xB7\xC0-\xD6\xD8-\xF6\xF8-\u037D\u037F-\u1FFF\u200C\u200D\u203F\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])*$/,!t.match(e))throw new Error("Invalid character in name");return t},t.prototype.textEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/\r/g,"&#xD;"))},t.prototype.attEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/"/g,"&quot;").replace(/\t/g,"&#x9;").replace(/\n/g,"&#xA;").replace(/\r/g,"&#xD;"))},t}()}).call(this)},82535:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing element text. "+this.debugInfo());this.name="#text",this.type=e.Text,this.value=this.stringify.text(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"isElementContentWhitespace",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"wholeText",{get:function(){var t,e,n;for(n="",e=this.previousSibling;e;)n=e.data+n,e=e.previousSibling;for(n+=this.data,t=this.nextSibling;t;)n+=t.data,t=t.nextSibling;return n}}),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.text(this,this.options.writer.filterOptions(t))},n.prototype.splitText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.replaceWholeText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n}(s)}).call(this)},6286:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).assign,e=n(71737),n(34130),n(96376),n(92691),n(32679),n(33906),n(1268),n(82535),n(85915),n(21218),n(34111),n(67696),n(5529),n(28012),s=n(88753),t.exports=function(){function t(t){var e,n,s;for(e in t||(t={}),this.options=t,n=t.writer||{})r.call(n,e)&&(s=n[e],this["_"+e]=this[e],this[e]=s)}return t.prototype.filterOptions=function(t){var e,n,r,a,o,l,c,u;return t||(t={}),t=i({},this.options,t),(e={writer:this}).pretty=t.pretty||!1,e.allowEmpty=t.allowEmpty||!1,e.indent=null!=(n=t.indent)?n:"  ",e.newline=null!=(r=t.newline)?r:"\n",e.offset=null!=(a=t.offset)?a:0,e.dontPrettyTextNodes=null!=(o=null!=(l=t.dontPrettyTextNodes)?l:t.dontprettytextnodes)?o:0,e.spaceBeforeSlash=null!=(c=null!=(u=t.spaceBeforeSlash)?u:t.spacebeforeslash)?c:"",!0===e.spaceBeforeSlash&&(e.spaceBeforeSlash=" "),e.suppressPrettyCount=0,e.user={},e.state=s.None,e},t.prototype.indent=function(t,e,n){var s;return!e.pretty||e.suppressPrettyCount?"":e.pretty&&(s=(n||0)+e.offset+1)>0?new Array(s).join(e.indent):""},t.prototype.endline=function(t,e,n){return!e.pretty||e.suppressPrettyCount?"":e.newline},t.prototype.attribute=function(t,e,n){var s;return this.openAttribute(t,e,n),s=" "+t.name+'="'+t.value+'"',this.closeAttribute(t,e,n),s},t.prototype.cdata=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<![CDATA[",e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+="]]>"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.comment=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"\x3c!-- ",e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=" --\x3e"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.declaration=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<?xml",e.state=s.InsideTag,i+=' version="'+t.version+'"',null!=t.encoding&&(i+=' encoding="'+t.encoding+'"'),null!=t.standalone&&(i+=' standalone="'+t.standalone+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+"?>",i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.docType=function(t,e,n){var i,r,a,o,l;if(n||(n=0),this.openNode(t,e,n),e.state=s.OpenTag,o=this.indent(t,e,n),o+="<!DOCTYPE "+t.root().name,t.pubID&&t.sysID?o+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(o+=' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(o+=" [",o+=this.endline(t,e,n),e.state=s.InsideTag,r=0,a=(l=t.children).length;r<a;r++)i=l[r],o+=this.writeChildNode(i,e,n+1);e.state=s.CloseTag,o+="]"}return e.state=s.CloseTag,o+=e.spaceBeforeSlash+">",o+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),o},t.prototype.element=function(t,n,i){var a,o,l,c,u,d,m,p,f,h,g,v,w,y;for(f in i||(i=0),h=!1,g="",this.openNode(t,n,i),n.state=s.OpenTag,g+=this.indent(t,n,i)+"<"+t.name,v=t.attribs)r.call(v,f)&&(a=v[f],g+=this.attribute(a,n,i));if(c=0===(l=t.children.length)?null:t.children[0],0===l||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))n.allowEmpty?(g+=">",n.state=s.CloseTag,g+="</"+t.name+">"+this.endline(t,n,i)):(n.state=s.CloseTag,g+=n.spaceBeforeSlash+"/>"+this.endline(t,n,i));else if(!n.pretty||1!==l||c.type!==e.Text&&c.type!==e.Raw||null==c.value){if(n.dontPrettyTextNodes)for(u=0,m=(w=t.children).length;u<m;u++)if(((o=w[u]).type===e.Text||o.type===e.Raw)&&null!=o.value){n.suppressPrettyCount++,h=!0;break}for(g+=">"+this.endline(t,n,i),n.state=s.InsideTag,d=0,p=(y=t.children).length;d<p;d++)o=y[d],g+=this.writeChildNode(o,n,i+1);n.state=s.CloseTag,g+=this.indent(t,n,i)+"</"+t.name+">",h&&n.suppressPrettyCount--,g+=this.endline(t,n,i),n.state=s.None}else g+=">",n.state=s.InsideTag,n.suppressPrettyCount++,h=!0,g+=this.writeChildNode(c,n,i+1),n.suppressPrettyCount--,h=!1,n.state=s.CloseTag,g+="</"+t.name+">"+this.endline(t,n,i);return this.closeNode(t,n,i),g},t.prototype.writeChildNode=function(t,n,s){switch(t.type){case e.CData:return this.cdata(t,n,s);case e.Comment:return this.comment(t,n,s);case e.Element:return this.element(t,n,s);case e.Raw:return this.raw(t,n,s);case e.Text:return this.text(t,n,s);case e.ProcessingInstruction:return this.processingInstruction(t,n,s);case e.Dummy:return"";case e.Declaration:return this.declaration(t,n,s);case e.DocType:return this.docType(t,n,s);case e.AttributeDeclaration:return this.dtdAttList(t,n,s);case e.ElementDeclaration:return this.dtdElement(t,n,s);case e.EntityDeclaration:return this.dtdEntity(t,n,s);case e.NotationDeclaration:return this.dtdNotation(t,n,s);default:throw new Error("Unknown XML node type: "+t.constructor.name)}},t.prototype.processingInstruction=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<?",e.state=s.InsideTag,i+=t.target,t.value&&(i+=" "+t.value),e.state=s.CloseTag,i+=e.spaceBeforeSlash+"?>",i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.raw=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n),e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.text=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n),e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdAttList=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ATTLIST",e.state=s.InsideTag,i+=" "+t.elementName+" "+t.attributeName+" "+t.attributeType,"#DEFAULT"!==t.defaultValueType&&(i+=" "+t.defaultValueType),t.defaultValue&&(i+=' "'+t.defaultValue+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdElement=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ELEMENT",e.state=s.InsideTag,i+=" "+t.name+" "+t.value,e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdEntity=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ENTITY",e.state=s.InsideTag,t.pe&&(i+=" %"),i+=" "+t.name,t.value?i+=' "'+t.value+'"':(t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),t.nData&&(i+=" NDATA "+t.nData)),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdNotation=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!NOTATION",e.state=s.InsideTag,i+=" "+t.name,t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.pubID?i+=' PUBLIC "'+t.pubID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.openNode=function(t,e,n){},t.prototype.closeNode=function(t,e,n){},t.prototype.openAttribute=function(t,e,n){},t.prototype.closeAttribute=function(t,e,n){},t}()}).call(this)},59665:function(t,e,n){(function(){var e,s,i,r,a,o,l,c,u,d;d=n(49241),c=d.assign,u=d.isFunction,i=n(67260),r=n(71933),a=n(80400),l=n(40382),o=n(96775),e=n(71737),s=n(88753),t.exports.create=function(t,e,n,s){var i,a;if(null==t)throw new Error("Root element needs a name.");return s=c({},e,n,s),a=(i=new r(s)).element(t),s.headless||(i.declaration(s),null==s.pubID&&null==s.sysID||i.dtd(s)),a},t.exports.begin=function(t,e,n){var s;return u(t)&&(e=(s=[t,e])[0],n=s[1],t={}),e?new a(t,e,n):new r(t)},t.exports.stringWriter=function(t){return new l(t)},t.exports.streamWriter=function(t,e){return new o(t,e)},t.exports.implementation=new i,t.exports.nodeType=e,t.exports.writerState=s}).call(this)},63710:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27%20style=%27fill-opacity:1;fill:%23ffffff%27/%3e%3c/svg%3e"},57273:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27/%3e%3c/svg%3e"},15340:()=>{},79838:()=>{},35810:(t,e,n)=>{"use strict";n.d(e,{Al:()=>B,By:()=>v,H4:()=>O,PY:()=>D,Q$:()=>U,R3:()=>x,Ss:()=>ae,VL:()=>C,ZH:()=>F,aX:()=>w,bP:()=>N,bh:()=>V,hY:()=>h,lJ:()=>I,m1:()=>le,m9:()=>f,pt:()=>S,qK:()=>g,v7:()=>M,vb:()=>T,vd:()=>P,zI:()=>L});var s=n(21777),i=n(84697),r=n(43627),a=n(71089),o=n(63814),l=n(44719),c=n(36117),u=n(2568);const d=null===(m=(0,s.HW)())?(0,i.YK)().setApp("files").build():(0,i.YK)().setApp("files").setUid(m.uid).build();var m;class p{_entries=[];registerEntry(t){this.validateEntry(t),t.category=t.category??1,this._entries.push(t)}unregisterEntry(t){const e="string"==typeof t?this.getEntryIndex(t):this.getEntryIndex(t.id);-1!==e?this._entries.splice(e,1):d.warn("Entry not found, nothing removed",{entry:t,entries:this.getEntries()})}getEntries(t){return t?this._entries.filter((e=>"function"!=typeof e.enabled||e.enabled(t))):this._entries}getEntryIndex(t){return this._entries.findIndex((e=>e.id===t))}validateEntry(t){if(!t.id||!t.displayName||!t.iconSvgInline&&!t.iconClass||!t.handler)throw new Error("Invalid entry");if("string"!=typeof t.id||"string"!=typeof t.displayName)throw new Error("Invalid id or displayName property");if(t.iconClass&&"string"!=typeof t.iconClass||t.iconSvgInline&&"string"!=typeof t.iconSvgInline)throw new Error("Invalid icon provided");if(void 0!==t.enabled&&"function"!=typeof t.enabled)throw new Error("Invalid enabled property");if("function"!=typeof t.handler)throw new Error("Invalid handler property");if("order"in t&&"number"!=typeof t.order)throw new Error("Invalid order property");if(-1!==this.getEntryIndex(t.id))throw new Error("Duplicate entry")}}var f=(t=>(t.DEFAULT="default",t.HIDDEN="hidden",t))(f||{});class h{_action;constructor(t){this.validateAction(t),this._action=t}get id(){return this._action.id}get displayName(){return this._action.displayName}get title(){return this._action.title}get iconSvgInline(){return this._action.iconSvgInline}get enabled(){return this._action.enabled}get exec(){return this._action.exec}get execBatch(){return this._action.execBatch}get order(){return this._action.order}get parent(){return this._action.parent}get default(){return this._action.default}get inline(){return this._action.inline}get renderInline(){return this._action.renderInline}validateAction(t){if(!t.id||"string"!=typeof t.id)throw new Error("Invalid id");if(!t.displayName||"function"!=typeof t.displayName)throw new Error("Invalid displayName function");if("title"in t&&"function"!=typeof t.title)throw new Error("Invalid title function");if(!t.iconSvgInline||"function"!=typeof t.iconSvgInline)throw new Error("Invalid iconSvgInline function");if(!t.exec||"function"!=typeof t.exec)throw new Error("Invalid exec function");if("enabled"in t&&"function"!=typeof t.enabled)throw new Error("Invalid enabled function");if("execBatch"in t&&"function"!=typeof t.execBatch)throw new Error("Invalid execBatch function");if("order"in t&&"number"!=typeof t.order)throw new Error("Invalid order");if("parent"in t&&"string"!=typeof t.parent)throw new Error("Invalid parent");if(t.default&&!Object.values(f).includes(t.default))throw new Error("Invalid default");if("inline"in t&&"function"!=typeof t.inline)throw new Error("Invalid inline function");if("renderInline"in t&&"function"!=typeof t.renderInline)throw new Error("Invalid renderInline function")}}const g=function(){return void 0===window._nc_fileactions&&(window._nc_fileactions=[],d.debug("FileActions initialized")),window._nc_fileactions},v=function(){return void 0===window._nc_filelistheader&&(window._nc_filelistheader=[],d.debug("FileListHeaders initialized")),window._nc_filelistheader};var w=(t=>(t[t.NONE=0]="NONE",t[t.CREATE=4]="CREATE",t[t.READ=1]="READ",t[t.UPDATE=2]="UPDATE",t[t.DELETE=8]="DELETE",t[t.SHARE=16]="SHARE",t[t.ALL=31]="ALL",t))(w||{});const y=["d:getcontentlength","d:getcontenttype","d:getetag","d:getlastmodified","d:quota-available-bytes","d:resourcetype","nc:has-preview","nc:is-encrypted","nc:mount-type","oc:comments-unread","oc:favorite","oc:fileid","oc:owner-display-name","oc:owner-id","oc:permissions","oc:size"],A={d:"DAV:",nc:"http://nextcloud.org/ns",oc:"http://owncloud.org/ns",ocs:"http://open-collaboration-services.org/ns"},b=function(){return void 0===window._nc_dav_properties&&(window._nc_dav_properties=[...y]),window._nc_dav_properties.map((t=>`<${t} />`)).join(" ")},_=function(){return void 0===window._nc_dav_namespaces&&(window._nc_dav_namespaces={...A}),Object.keys(window._nc_dav_namespaces).map((t=>`xmlns:${t}="${window._nc_dav_namespaces?.[t]}"`)).join(" ")},C=function(){return`<?xml version="1.0"?>\n\t\t<d:propfind ${_()}>\n\t\t\t<d:prop>\n\t\t\t\t${b()}\n\t\t\t</d:prop>\n\t\t</d:propfind>`},x=function(t){return`<?xml version="1.0" encoding="UTF-8"?>\n<d:searchrequest ${_()}\n\txmlns:ns="https://github.com/icewind1991/SearchDAV/ns">\n\t<d:basicsearch>\n\t\t<d:select>\n\t\t\t<d:prop>\n\t\t\t\t${b()}\n\t\t\t</d:prop>\n\t\t</d:select>\n\t\t<d:from>\n\t\t\t<d:scope>\n\t\t\t\t<d:href>/files/${(0,s.HW)()?.uid}/</d:href>\n\t\t\t\t<d:depth>infinity</d:depth>\n\t\t\t</d:scope>\n\t\t</d:from>\n\t\t<d:where>\n\t\t\t<d:and>\n\t\t\t\t<d:or>\n\t\t\t\t\t<d:not>\n\t\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t\t<d:getcontenttype/>\n\t\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t\t<d:literal>httpd/unix-directory</d:literal>\n\t\t\t\t\t\t</d:eq>\n\t\t\t\t\t</d:not>\n\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t<oc:size/>\n\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t<d:literal>0</d:literal>\n\t\t\t\t\t</d:eq>\n\t\t\t\t</d:or>\n\t\t\t\t<d:gt>\n\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t\t</d:prop>\n\t\t\t\t\t<d:literal>${t}</d:literal>\n\t\t\t\t</d:gt>\n\t\t\t</d:and>\n\t\t</d:where>\n\t\t<d:orderby>\n\t\t\t<d:order>\n\t\t\t\t<d:prop>\n\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t</d:prop>\n\t\t\t\t<d:descending/>\n\t\t\t</d:order>\n\t\t</d:orderby>\n\t\t<d:limit>\n\t\t\t<d:nresults>100</d:nresults>\n\t\t\t<ns:firstresult>0</ns:firstresult>\n\t\t</d:limit>\n\t</d:basicsearch>\n</d:searchrequest>`},T=function(t=""){let e=w.NONE;return t?((t.includes("C")||t.includes("K"))&&(e|=w.CREATE),t.includes("G")&&(e|=w.READ),(t.includes("W")||t.includes("N")||t.includes("V"))&&(e|=w.UPDATE),t.includes("D")&&(e|=w.DELETE),t.includes("R")&&(e|=w.SHARE),e):e};var S=(t=>(t.Folder="folder",t.File="file",t))(S||{});const k=function(t,e){return null!==t.match(e)},E=(t,e)=>{if(t.id&&"number"!=typeof t.id)throw new Error("Invalid id type of value");if(!t.source)throw new Error("Missing mandatory source");try{new URL(t.source)}catch(t){throw new Error("Invalid source format, source must be a valid URL")}if(!t.source.startsWith("http"))throw new Error("Invalid source format, only http(s) is supported");if(t.mtime&&!(t.mtime instanceof Date))throw new Error("Invalid mtime type");if(t.crtime&&!(t.crtime instanceof Date))throw new Error("Invalid crtime type");if(!t.mime||"string"!=typeof t.mime||!t.mime.match(/^[-\w.]+\/[-+\w.]+$/gi))throw new Error("Missing or invalid mandatory mime");if("size"in t&&"number"!=typeof t.size&&void 0!==t.size)throw new Error("Invalid size type");if("permissions"in t&&void 0!==t.permissions&&!("number"==typeof t.permissions&&t.permissions>=w.NONE&&t.permissions<=w.ALL))throw new Error("Invalid permissions");if(t.owner&&null!==t.owner&&"string"!=typeof t.owner)throw new Error("Invalid owner type");if(t.attributes&&"object"!=typeof t.attributes)throw new Error("Invalid attributes type");if(t.root&&"string"!=typeof t.root)throw new Error("Invalid root type");if(t.root&&!t.root.startsWith("/"))throw new Error("Root must start with a leading slash");if(t.root&&!t.source.includes(t.root))throw new Error("Root must be part of the source");if(t.root&&k(t.source,e)){const n=t.source.match(e)[0];if(!t.source.includes((0,r.join)(n,t.root)))throw new Error("The root must be relative to the service. e.g /files/emma")}if(t.status&&!Object.values(L).includes(t.status))throw new Error("Status must be a valid NodeStatus")};var L=(t=>(t.NEW="new",t.FAILED="failed",t.LOADING="loading",t.LOCKED="locked",t))(L||{});class N{_data;_attributes;_knownDavService=/(remote|public)\.php\/(web)?dav/i;readonlyAttributes=Object.entries(Object.getOwnPropertyDescriptors(N.prototype)).filter((t=>"function"==typeof t[1].get&&"__proto__"!==t[0])).map((t=>t[0]));handler={set:(t,e,n)=>!this.readonlyAttributes.includes(e)&&Reflect.set(t,e,n),deleteProperty:(t,e)=>!this.readonlyAttributes.includes(e)&&Reflect.deleteProperty(t,e),get:(t,e,n)=>this.readonlyAttributes.includes(e)?(d.warn(`Accessing "Node.attributes.${e}" is deprecated, access it directly on the Node instance.`),Reflect.get(this,e)):Reflect.get(t,e,n)};constructor(t,e){E(t,e||this._knownDavService),this._data={...t,attributes:{}},this._attributes=new Proxy(this._data.attributes,this.handler),this.update(t.attributes??{}),e&&(this._knownDavService=e)}get source(){return this._data.source.replace(/\/$/i,"")}get encodedSource(){const{origin:t}=new URL(this.source);return t+(0,a.O0)(this.source.slice(t.length))}get basename(){return(0,r.basename)(this.source)}get extension(){return(0,r.extname)(this.source)}get dirname(){if(this.root){let t=this.source;this.isDavRessource&&(t=t.split(this._knownDavService).pop());const e=t.indexOf(this.root),n=this.root.replace(/\/$/,"");return(0,r.dirname)(t.slice(e+n.length)||"/")}const t=new URL(this.source);return(0,r.dirname)(t.pathname)}get mime(){return this._data.mime}get mtime(){return this._data.mtime}set mtime(t){this._data.mtime=t}get crtime(){return this._data.crtime}get size(){return this._data.size}set size(t){this.updateMtime(),this._data.size=t}get attributes(){return this._attributes}get permissions(){return null!==this.owner||this.isDavRessource?void 0!==this._data.permissions?this._data.permissions:w.NONE:w.READ}set permissions(t){this.updateMtime(),this._data.permissions=t}get owner(){return this.isDavRessource?this._data.owner:null}get isDavRessource(){return k(this.source,this._knownDavService)}get root(){return this._data.root?this._data.root.replace(/^(.+)\/$/,"$1"):this.isDavRessource&&(0,r.dirname)(this.source).split(this._knownDavService).pop()||null}get path(){if(this.root){let t=this.source;this.isDavRessource&&(t=t.split(this._knownDavService).pop());const e=t.indexOf(this.root),n=this.root.replace(/\/$/,"");return t.slice(e+n.length)||"/"}return(this.dirname+"/"+this.basename).replace(/\/\//g,"/")}get fileid(){return this._data?.id}get status(){return this._data?.status}set status(t){this._data.status=t}move(t){E({...this._data,source:t},this._knownDavService),this._data.source=t,this.updateMtime()}rename(t){if(t.includes("/"))throw new Error("Invalid basename");this.move((0,r.dirname)(this.source)+"/"+t)}updateMtime(){this._data.mtime&&(this._data.mtime=new Date)}update(t){for(const[e,n]of Object.entries(t))try{void 0===n?delete this.attributes[e]:this.attributes[e]=n}catch(t){if(t instanceof TypeError)continue;throw t}}}class F extends N{get type(){return S.File}}class P extends N{constructor(t){super({...t,mime:"httpd/unix-directory"})}get type(){return S.Folder}get extension(){return null}get mime(){return"httpd/unix-directory"}}const I=`/files/${(0,s.HW)()?.uid}`,D=(0,o.dC)("dav"),O=function(t=D,e={}){const n=(0,l.UU)(t,{headers:e});function i(t){n.setHeaders({...e,"X-Requested-With":"XMLHttpRequest",requesttoken:t??""})}return(0,s.zo)(i),i((0,s.do)()),(0,l.Gu)().patch("fetch",((t,e)=>{const n=e.headers;return n?.method&&(e.method=n.method,delete n.method),fetch(t,e)})),n},U=(t,e="/",n=I)=>{const s=new AbortController;return new c.CancelablePromise((async(i,r,a)=>{a((()=>s.abort()));try{i((await t.getDirectoryContents(`${n}${e}`,{signal:s.signal,details:!0,data:`<?xml version="1.0"?>\n\t\t<oc:filter-files ${_()}>\n\t\t\t<d:prop>\n\t\t\t\t${b()}\n\t\t\t</d:prop>\n\t\t\t<oc:filter-rules>\n\t\t\t\t<oc:favorite>1</oc:favorite>\n\t\t\t</oc:filter-rules>\n\t\t</oc:filter-files>`,headers:{method:"REPORT"},includeSelf:!0})).data.filter((t=>t.filename!==e)).map((t=>B(t,n))))}catch(t){r(t)}}))},B=function(t,e=I,n=D){let i=(0,s.HW)()?.uid;const r=document.querySelector("input#isPublic")?.value;if(r)i=i??document.querySelector("input#sharingUserId")?.value,i=i??"anonymous";else if(!i)throw new Error("No user id found");const a=t.props,o=T(a?.permissions),l=String(a?.["owner-id"]||i),c={id:a?.fileid||0,source:`${n}${t.filename}`,mtime:new Date(Date.parse(t.lastmod)),mime:t.mime||"application/octet-stream",size:a?.size||Number.parseInt(a.getcontentlength||"0"),permissions:o,owner:l,root:e,attributes:{...t,...a,hasPreview:a?.["has-preview"]}};return delete c.attributes?.props,"file"===t.type?new F(c):new P(c)};window._oc_config,window._oc_config?.blacklist_files_regex&&new RegExp(window._oc_config.blacklist_files_regex);const R=["B","KB","MB","GB","TB","PB"],j=["B","KiB","MiB","GiB","TiB","PiB"];function M(t,e=!1,n=!1,s=!1){n=n&&!s,"string"==typeof t&&(t=Number(t));let i=t>0?Math.floor(Math.log(t)/Math.log(s?1e3:1024)):0;i=Math.min((n?j.length:R.length)-1,i);const r=n?j[i]:R[i];let a=(t/Math.pow(s?1e3:1024,i)).toFixed(1);return!0===e&&0===i?("0.0"!==a?"< 1 ":"0 ")+(n?j[1]:R[1]):(a=i<2?parseFloat(a).toFixed(0):parseFloat(a).toLocaleString((0,u.lO)()),a+" "+r)}class z{_views=[];_currentView=null;register(t){if(this._views.find((e=>e.id===t.id)))throw new Error(`View id ${t.id} is already registered`);this._views.push(t)}remove(t){const e=this._views.findIndex((e=>e.id===t));-1!==e&&this._views.splice(e,1)}get views(){return this._views}setActive(t){this._currentView=t}get active(){return this._currentView}}const V=function(){return void 0===window._nc_navigation&&(window._nc_navigation=new z,d.debug("Navigation service initialized")),window._nc_navigation};class q{_column;constructor(t){$(t),this._column=t}get id(){return this._column.id}get title(){return this._column.title}get render(){return this._column.render}get sort(){return this._column.sort}get summary(){return this._column.summary}}const $=function(t){if(!t.id||"string"!=typeof t.id)throw new Error("A column id is required");if(!t.title||"string"!=typeof t.title)throw new Error("A column title is required");if(!t.render||"function"!=typeof t.render)throw new Error("A render function is required");if(t.sort&&"function"!=typeof t.sort)throw new Error("Column sortFunction must be a function");if(t.summary&&"function"!=typeof t.summary)throw new Error("Column summary must be a function");return!0};var H={},W={};!function(t){const e=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",n="["+e+"]["+e+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*",s=new RegExp("^"+n+"$");t.isExist=function(t){return void 0!==t},t.isEmptyObject=function(t){return 0===Object.keys(t).length},t.merge=function(t,e,n){if(e){const s=Object.keys(e),i=s.length;for(let r=0;r<i;r++)t[s[r]]="strict"===n?[e[s[r]]]:e[s[r]]}},t.getValue=function(e){return t.isExist(e)?e:""},t.isName=function(t){return!(null==s.exec(t))},t.getAllMatches=function(t,e){const n=[];let s=e.exec(t);for(;s;){const i=[];i.startIndex=e.lastIndex-s[0].length;const r=s.length;for(let t=0;t<r;t++)i.push(s[t]);n.push(i),s=e.exec(t)}return n},t.nameRegexp=n}(W);const G=W,Y={allowBooleanAttributes:!1,unpairedTags:[]};function K(t){return" "===t||"\t"===t||"\n"===t||"\r"===t}function Q(t,e){const n=e;for(;e<t.length;e++)if("?"!=t[e]&&" "!=t[e]);else{const s=t.substr(n,e-n);if(e>5&&"xml"===s)return it("InvalidXml","XML declaration allowed only at the start of the document.",at(t,e));if("?"==t[e]&&">"==t[e+1]){e++;break}}return e}function X(t,e){if(t.length>e+5&&"-"===t[e+1]&&"-"===t[e+2]){for(e+=3;e<t.length;e++)if("-"===t[e]&&"-"===t[e+1]&&">"===t[e+2]){e+=2;break}}else if(t.length>e+8&&"D"===t[e+1]&&"O"===t[e+2]&&"C"===t[e+3]&&"T"===t[e+4]&&"Y"===t[e+5]&&"P"===t[e+6]&&"E"===t[e+7]){let n=1;for(e+=8;e<t.length;e++)if("<"===t[e])n++;else if(">"===t[e]&&(n--,0===n))break}else if(t.length>e+9&&"["===t[e+1]&&"C"===t[e+2]&&"D"===t[e+3]&&"A"===t[e+4]&&"T"===t[e+5]&&"A"===t[e+6]&&"["===t[e+7])for(e+=8;e<t.length;e++)if("]"===t[e]&&"]"===t[e+1]&&">"===t[e+2]){e+=2;break}return e}H.validate=function(t,e){e=Object.assign({},Y,e);const n=[];let s=!1,i=!1;"\ufeff"===t[0]&&(t=t.substr(1));for(let a=0;a<t.length;a++)if("<"===t[a]&&"?"===t[a+1]){if(a+=2,a=Q(t,a),a.err)return a}else{if("<"!==t[a]){if(K(t[a]))continue;return it("InvalidChar","char '"+t[a]+"' is not expected.",at(t,a))}{let o=a;if(a++,"!"===t[a]){a=X(t,a);continue}{let l=!1;"/"===t[a]&&(l=!0,a++);let c="";for(;a<t.length&&">"!==t[a]&&" "!==t[a]&&"\t"!==t[a]&&"\n"!==t[a]&&"\r"!==t[a];a++)c+=t[a];if(c=c.trim(),"/"===c[c.length-1]&&(c=c.substring(0,c.length-1),a--),r=c,!G.isName(r)){let e;return e=0===c.trim().length?"Invalid space after '<'.":"Tag '"+c+"' is an invalid name.",it("InvalidTag",e,at(t,a))}const u=tt(t,a);if(!1===u)return it("InvalidAttr","Attributes for '"+c+"' have open quote.",at(t,a));let d=u.value;if(a=u.index,"/"===d[d.length-1]){const n=a-d.length;d=d.substring(0,d.length-1);const i=nt(d,e);if(!0!==i)return it(i.err.code,i.err.msg,at(t,n+i.err.line));s=!0}else if(l){if(!u.tagClosed)return it("InvalidTag","Closing tag '"+c+"' doesn't have proper closing.",at(t,a));if(d.trim().length>0)return it("InvalidTag","Closing tag '"+c+"' can't have attributes or invalid starting.",at(t,o));if(0===n.length)return it("InvalidTag","Closing tag '"+c+"' has not been opened.",at(t,o));{const e=n.pop();if(c!==e.tagName){let n=at(t,e.tagStartPos);return it("InvalidTag","Expected closing tag '"+e.tagName+"' (opened in line "+n.line+", col "+n.col+") instead of closing tag '"+c+"'.",at(t,o))}0==n.length&&(i=!0)}}else{const r=nt(d,e);if(!0!==r)return it(r.err.code,r.err.msg,at(t,a-d.length+r.err.line));if(!0===i)return it("InvalidXml","Multiple possible root nodes found.",at(t,a));-1!==e.unpairedTags.indexOf(c)||n.push({tagName:c,tagStartPos:o}),s=!0}for(a++;a<t.length;a++)if("<"===t[a]){if("!"===t[a+1]){a++,a=X(t,a);continue}if("?"!==t[a+1])break;if(a=Q(t,++a),a.err)return a}else if("&"===t[a]){const e=st(t,a);if(-1==e)return it("InvalidChar","char '&' is not expected.",at(t,a));a=e}else if(!0===i&&!K(t[a]))return it("InvalidXml","Extra text at the end",at(t,a));"<"===t[a]&&a--}}}var r;return s?1==n.length?it("InvalidTag","Unclosed tag '"+n[0].tagName+"'.",at(t,n[0].tagStartPos)):!(n.length>0)||it("InvalidXml","Invalid '"+JSON.stringify(n.map((t=>t.tagName)),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):it("InvalidXml","Start tag expected.",1)};const J='"',Z="'";function tt(t,e){let n="",s="",i=!1;for(;e<t.length;e++){if(t[e]===J||t[e]===Z)""===s?s=t[e]:s!==t[e]||(s="");else if(">"===t[e]&&""===s){i=!0;break}n+=t[e]}return""===s&&{value:n,index:e,tagClosed:i}}const et=new RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function nt(t,e){const n=G.getAllMatches(t,et),s={};for(let t=0;t<n.length;t++){if(0===n[t][1].length)return it("InvalidAttr","Attribute '"+n[t][2]+"' has no space in starting.",ot(n[t]));if(void 0!==n[t][3]&&void 0===n[t][4])return it("InvalidAttr","Attribute '"+n[t][2]+"' is without value.",ot(n[t]));if(void 0===n[t][3]&&!e.allowBooleanAttributes)return it("InvalidAttr","boolean attribute '"+n[t][2]+"' is not allowed.",ot(n[t]));const i=n[t][2];if(!rt(i))return it("InvalidAttr","Attribute '"+i+"' is an invalid name.",ot(n[t]));if(s.hasOwnProperty(i))return it("InvalidAttr","Attribute '"+i+"' is repeated.",ot(n[t]));s[i]=1}return!0}function st(t,e){if(";"===t[++e])return-1;if("#"===t[e])return function(t,e){let n=/\d/;for("x"===t[e]&&(e++,n=/[\da-fA-F]/);e<t.length;e++){if(";"===t[e])return e;if(!t[e].match(n))break}return-1}(t,++e);let n=0;for(;e<t.length;e++,n++)if(!(t[e].match(/\w/)&&n<20)){if(";"===t[e])break;return-1}return e}function it(t,e,n){return{err:{code:t,msg:e,line:n.line||n,col:n.col}}}function rt(t){return G.isName(t)}function at(t,e){const n=t.substring(0,e).split(/\r?\n/);return{line:n.length,col:n[n.length-1].length+1}}function ot(t){return t.startIndex+t[1].length}var lt={};const ct={preserveOrder:!1,attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,removeNSPrefix:!1,allowBooleanAttributes:!1,parseTagValue:!0,parseAttributeValue:!1,trimValues:!0,cdataPropName:!1,numberParseOptions:{hex:!0,leadingZeros:!0,eNotation:!0},tagValueProcessor:function(t,e){return e},attributeValueProcessor:function(t,e){return e},stopNodes:[],alwaysCreateTextNode:!1,isArray:()=>!1,commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:function(t,e,n){return t}};lt.buildOptions=function(t){return Object.assign({},ct,t)},lt.defaultOptions=ct;const ut=W;function dt(t,e){let n="";for(;e<t.length&&"'"!==t[e]&&'"'!==t[e];e++)n+=t[e];if(n=n.trim(),-1!==n.indexOf(" "))throw new Error("External entites are not supported");const s=t[e++];let i="";for(;e<t.length&&t[e]!==s;e++)i+=t[e];return[n,i,e]}function mt(t,e){return"!"===t[e+1]&&"-"===t[e+2]&&"-"===t[e+3]}function pt(t,e){return"!"===t[e+1]&&"E"===t[e+2]&&"N"===t[e+3]&&"T"===t[e+4]&&"I"===t[e+5]&&"T"===t[e+6]&&"Y"===t[e+7]}function ft(t,e){return"!"===t[e+1]&&"E"===t[e+2]&&"L"===t[e+3]&&"E"===t[e+4]&&"M"===t[e+5]&&"E"===t[e+6]&&"N"===t[e+7]&&"T"===t[e+8]}function ht(t,e){return"!"===t[e+1]&&"A"===t[e+2]&&"T"===t[e+3]&&"T"===t[e+4]&&"L"===t[e+5]&&"I"===t[e+6]&&"S"===t[e+7]&&"T"===t[e+8]}function gt(t,e){return"!"===t[e+1]&&"N"===t[e+2]&&"O"===t[e+3]&&"T"===t[e+4]&&"A"===t[e+5]&&"T"===t[e+6]&&"I"===t[e+7]&&"O"===t[e+8]&&"N"===t[e+9]}function vt(t){if(ut.isName(t))return t;throw new Error(`Invalid entity name ${t}`)}const wt=/^[-+]?0x[a-fA-F0-9]+$/,yt=/^([\-\+])?(0*)(\.[0-9]+([eE]\-?[0-9]+)?|[0-9]+(\.[0-9]+([eE]\-?[0-9]+)?)?)$/;!Number.parseInt&&window.parseInt&&(Number.parseInt=window.parseInt),!Number.parseFloat&&window.parseFloat&&(Number.parseFloat=window.parseFloat);const At={hex:!0,leadingZeros:!0,decimalPoint:".",eNotation:!0},bt=W,_t=class{constructor(t){this.tagname=t,this.child=[],this[":@"]={}}add(t,e){"__proto__"===t&&(t="#__proto__"),this.child.push({[t]:e})}addChild(t){"__proto__"===t.tagname&&(t.tagname="#__proto__"),t[":@"]&&Object.keys(t[":@"]).length>0?this.child.push({[t.tagname]:t.child,":@":t[":@"]}):this.child.push({[t.tagname]:t.child})}},Ct=function(t,e){const n={};if("O"!==t[e+3]||"C"!==t[e+4]||"T"!==t[e+5]||"Y"!==t[e+6]||"P"!==t[e+7]||"E"!==t[e+8])throw new Error("Invalid Tag instead of DOCTYPE");{e+=9;let s=1,i=!1,r=!1,a="";for(;e<t.length;e++)if("<"!==t[e]||r)if(">"===t[e]){if(r?"-"===t[e-1]&&"-"===t[e-2]&&(r=!1,s--):s--,0===s)break}else"["===t[e]?i=!0:a+=t[e];else{if(i&&pt(t,e))e+=7,[entityName,val,e]=dt(t,e+1),-1===val.indexOf("&")&&(n[vt(entityName)]={regx:RegExp(`&${entityName};`,"g"),val});else if(i&&ft(t,e))e+=8;else if(i&&ht(t,e))e+=8;else if(i&&gt(t,e))e+=9;else{if(!mt)throw new Error("Invalid DOCTYPE");r=!0}s++,a=""}if(0!==s)throw new Error("Unclosed DOCTYPE")}return{entities:n,i:e}},xt=function(t,e={}){if(e=Object.assign({},At,e),!t||"string"!=typeof t)return t;let n=t.trim();if(void 0!==e.skipLike&&e.skipLike.test(n))return t;if(e.hex&&wt.test(n))return Number.parseInt(n,16);{const i=yt.exec(n);if(i){const r=i[1],a=i[2];let o=(s=i[3])&&-1!==s.indexOf(".")?("."===(s=s.replace(/0+$/,""))?s="0":"."===s[0]?s="0"+s:"."===s[s.length-1]&&(s=s.substr(0,s.length-1)),s):s;const l=i[4]||i[6];if(!e.leadingZeros&&a.length>0&&r&&"."!==n[2])return t;if(!e.leadingZeros&&a.length>0&&!r&&"."!==n[1])return t;{const s=Number(n),i=""+s;return-1!==i.search(/[eE]/)||l?e.eNotation?s:t:-1!==n.indexOf(".")?"0"===i&&""===o||i===o||r&&i==="-"+o?s:t:a?o===i||r+o===i?s:t:n===i||n===r+i?s:t}}return t}var s};function Tt(t){const e=Object.keys(t);for(let n=0;n<e.length;n++){const s=e[n];this.lastEntities[s]={regex:new RegExp("&"+s+";","g"),val:t[s]}}}function St(t,e,n,s,i,r,a){if(void 0!==t&&(this.options.trimValues&&!s&&(t=t.trim()),t.length>0)){a||(t=this.replaceEntitiesValue(t));const s=this.options.tagValueProcessor(e,t,n,i,r);return null==s?t:typeof s!=typeof t||s!==t?s:this.options.trimValues||t.trim()===t?Rt(t,this.options.parseTagValue,this.options.numberParseOptions):t}}function kt(t){if(this.options.removeNSPrefix){const e=t.split(":"),n="/"===t.charAt(0)?"/":"";if("xmlns"===e[0])return"";2===e.length&&(t=n+e[1])}return t}const Et=new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function Lt(t,e,n){if(!this.options.ignoreAttributes&&"string"==typeof t){const n=bt.getAllMatches(t,Et),s=n.length,i={};for(let t=0;t<s;t++){const s=this.resolveNameSpace(n[t][1]);let r=n[t][4],a=this.options.attributeNamePrefix+s;if(s.length)if(this.options.transformAttributeName&&(a=this.options.transformAttributeName(a)),"__proto__"===a&&(a="#__proto__"),void 0!==r){this.options.trimValues&&(r=r.trim()),r=this.replaceEntitiesValue(r);const t=this.options.attributeValueProcessor(s,r,e);i[a]=null==t?r:typeof t!=typeof r||t!==r?t:Rt(r,this.options.parseAttributeValue,this.options.numberParseOptions)}else this.options.allowBooleanAttributes&&(i[a]=!0)}if(!Object.keys(i).length)return;if(this.options.attributesGroupName){const t={};return t[this.options.attributesGroupName]=i,t}return i}}const Nt=function(t){t=t.replace(/\r\n?/g,"\n");const e=new _t("!xml");let n=e,s="",i="";for(let r=0;r<t.length;r++)if("<"===t[r])if("/"===t[r+1]){const e=Ot(t,">",r,"Closing Tag is not closed.");let a=t.substring(r+2,e).trim();if(this.options.removeNSPrefix){const t=a.indexOf(":");-1!==t&&(a=a.substr(t+1))}this.options.transformTagName&&(a=this.options.transformTagName(a)),n&&(s=this.saveTextToParentTag(s,n,i));const o=i.substring(i.lastIndexOf(".")+1);if(a&&-1!==this.options.unpairedTags.indexOf(a))throw new Error(`Unpaired tag can not be used as closing tag: </${a}>`);let l=0;o&&-1!==this.options.unpairedTags.indexOf(o)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),n=this.tagsNodeStack.pop(),s="",r=e}else if("?"===t[r+1]){let e=Ut(t,r,!1,"?>");if(!e)throw new Error("Pi Tag is not closed.");if(s=this.saveTextToParentTag(s,n,i),this.options.ignoreDeclaration&&"?xml"===e.tagName||this.options.ignorePiTags);else{const t=new _t(e.tagName);t.add(this.options.textNodeName,""),e.tagName!==e.tagExp&&e.attrExpPresent&&(t[":@"]=this.buildAttributesMap(e.tagExp,i,e.tagName)),this.addChild(n,t,i)}r=e.closeIndex+1}else if("!--"===t.substr(r+1,3)){const e=Ot(t,"--\x3e",r+4,"Comment is not closed.");if(this.options.commentPropName){const a=t.substring(r+4,e-2);s=this.saveTextToParentTag(s,n,i),n.add(this.options.commentPropName,[{[this.options.textNodeName]:a}])}r=e}else if("!D"===t.substr(r+1,2)){const e=Ct(t,r);this.docTypeEntities=e.entities,r=e.i}else if("!["===t.substr(r+1,2)){const e=Ot(t,"]]>",r,"CDATA is not closed.")-2,a=t.substring(r+9,e);s=this.saveTextToParentTag(s,n,i);let o=this.parseTextData(a,n.tagname,i,!0,!1,!0,!0);null==o&&(o=""),this.options.cdataPropName?n.add(this.options.cdataPropName,[{[this.options.textNodeName]:a}]):n.add(this.options.textNodeName,o),r=e+2}else{let a=Ut(t,r,this.options.removeNSPrefix),o=a.tagName;const l=a.rawTagName;let c=a.tagExp,u=a.attrExpPresent,d=a.closeIndex;this.options.transformTagName&&(o=this.options.transformTagName(o)),n&&s&&"!xml"!==n.tagname&&(s=this.saveTextToParentTag(s,n,i,!1));const m=n;if(m&&-1!==this.options.unpairedTags.indexOf(m.tagname)&&(n=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),o!==e.tagname&&(i+=i?"."+o:o),this.isItStopNode(this.options.stopNodes,i,o)){let e="";if(c.length>0&&c.lastIndexOf("/")===c.length-1)"/"===o[o.length-1]?(o=o.substr(0,o.length-1),i=i.substr(0,i.length-1),c=o):c=c.substr(0,c.length-1),r=a.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(o))r=a.closeIndex;else{const n=this.readStopNodeData(t,l,d+1);if(!n)throw new Error(`Unexpected end of ${l}`);r=n.i,e=n.tagContent}const s=new _t(o);o!==c&&u&&(s[":@"]=this.buildAttributesMap(c,i,o)),e&&(e=this.parseTextData(e,o,i,!0,u,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),s.add(this.options.textNodeName,e),this.addChild(n,s,i)}else{if(c.length>0&&c.lastIndexOf("/")===c.length-1){"/"===o[o.length-1]?(o=o.substr(0,o.length-1),i=i.substr(0,i.length-1),c=o):c=c.substr(0,c.length-1),this.options.transformTagName&&(o=this.options.transformTagName(o));const t=new _t(o);o!==c&&u&&(t[":@"]=this.buildAttributesMap(c,i,o)),this.addChild(n,t,i),i=i.substr(0,i.lastIndexOf("."))}else{const t=new _t(o);this.tagsNodeStack.push(n),o!==c&&u&&(t[":@"]=this.buildAttributesMap(c,i,o)),this.addChild(n,t,i),n=t}s="",r=d}}else s+=t[r];return e.child};function Ft(t,e,n){const s=this.options.updateTag(e.tagname,n,e[":@"]);!1===s||("string"==typeof s?(e.tagname=s,t.addChild(e)):t.addChild(e))}const Pt=function(t){if(this.options.processEntities){for(let e in this.docTypeEntities){const n=this.docTypeEntities[e];t=t.replace(n.regx,n.val)}for(let e in this.lastEntities){const n=this.lastEntities[e];t=t.replace(n.regex,n.val)}if(this.options.htmlEntities)for(let e in this.htmlEntities){const n=this.htmlEntities[e];t=t.replace(n.regex,n.val)}t=t.replace(this.ampEntity.regex,this.ampEntity.val)}return t};function It(t,e,n,s){return t&&(void 0===s&&(s=0===Object.keys(e.child).length),void 0!==(t=this.parseTextData(t,e.tagname,n,!1,!!e[":@"]&&0!==Object.keys(e[":@"]).length,s))&&""!==t&&e.add(this.options.textNodeName,t),t=""),t}function Dt(t,e,n){const s="*."+n;for(const n in t){const i=t[n];if(s===i||e===i)return!0}return!1}function Ot(t,e,n,s){const i=t.indexOf(e,n);if(-1===i)throw new Error(s);return i+e.length-1}function Ut(t,e,n,s=">"){const i=function(t,e,n=">"){let s,i="";for(let r=e;r<t.length;r++){let e=t[r];if(s)e===s&&(s="");else if('"'===e||"'"===e)s=e;else if(e===n[0]){if(!n[1])return{data:i,index:r};if(t[r+1]===n[1])return{data:i,index:r}}else"\t"===e&&(e=" ");i+=e}}(t,e+1,s);if(!i)return;let r=i.data;const a=i.index,o=r.search(/\s/);let l=r,c=!0;-1!==o&&(l=r.substring(0,o),r=r.substring(o+1).trimStart());const u=l;if(n){const t=l.indexOf(":");-1!==t&&(l=l.substr(t+1),c=l!==i.data.substr(t+1))}return{tagName:l,tagExp:r,closeIndex:a,attrExpPresent:c,rawTagName:u}}function Bt(t,e,n){const s=n;let i=1;for(;n<t.length;n++)if("<"===t[n])if("/"===t[n+1]){const r=Ot(t,">",n,`${e} is not closed`);if(t.substring(n+2,r).trim()===e&&(i--,0===i))return{tagContent:t.substring(s,n),i:r};n=r}else if("?"===t[n+1])n=Ot(t,"?>",n+1,"StopNode is not closed.");else if("!--"===t.substr(n+1,3))n=Ot(t,"--\x3e",n+3,"StopNode is not closed.");else if("!["===t.substr(n+1,2))n=Ot(t,"]]>",n,"StopNode is not closed.")-2;else{const s=Ut(t,n,">");s&&((s&&s.tagName)===e&&"/"!==s.tagExp[s.tagExp.length-1]&&i++,n=s.closeIndex)}}function Rt(t,e,n){if(e&&"string"==typeof t){const e=t.trim();return"true"===e||"false"!==e&&xt(t,n)}return bt.isExist(t)?t:""}var jt={};function Mt(t,e,n){let s;const i={};for(let r=0;r<t.length;r++){const a=t[r],o=zt(a);let l="";if(l=void 0===n?o:n+"."+o,o===e.textNodeName)void 0===s?s=a[o]:s+=""+a[o];else{if(void 0===o)continue;if(a[o]){let t=Mt(a[o],e,l);const n=qt(t,e);a[":@"]?Vt(t,a[":@"],l,e):1!==Object.keys(t).length||void 0===t[e.textNodeName]||e.alwaysCreateTextNode?0===Object.keys(t).length&&(e.alwaysCreateTextNode?t[e.textNodeName]="":t=""):t=t[e.textNodeName],void 0!==i[o]&&i.hasOwnProperty(o)?(Array.isArray(i[o])||(i[o]=[i[o]]),i[o].push(t)):e.isArray(o,l,n)?i[o]=[t]:i[o]=t}}}return"string"==typeof s?s.length>0&&(i[e.textNodeName]=s):void 0!==s&&(i[e.textNodeName]=s),i}function zt(t){const e=Object.keys(t);for(let t=0;t<e.length;t++){const n=e[t];if(":@"!==n)return n}}function Vt(t,e,n,s){if(e){const i=Object.keys(e),r=i.length;for(let a=0;a<r;a++){const r=i[a];s.isArray(r,n+"."+r,!0,!0)?t[r]=[e[r]]:t[r]=e[r]}}}function qt(t,e){const{textNodeName:n}=e,s=Object.keys(t).length;return 0===s||!(1!==s||!t[n]&&"boolean"!=typeof t[n]&&0!==t[n])}jt.prettify=function(t,e){return Mt(t,e)};const{buildOptions:$t}=lt,Ht=class{constructor(t){this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:(t,e)=>String.fromCharCode(Number.parseInt(e,10))},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:(t,e)=>String.fromCharCode(Number.parseInt(e,16))}},this.addExternalEntities=Tt,this.parseXml=Nt,this.parseTextData=St,this.resolveNameSpace=kt,this.buildAttributesMap=Lt,this.isItStopNode=Dt,this.replaceEntitiesValue=Pt,this.readStopNodeData=Bt,this.saveTextToParentTag=It,this.addChild=Ft}},{prettify:Wt}=jt,Gt=H;function Yt(t,e,n,s){let i="",r=!1;for(let a=0;a<t.length;a++){const o=t[a],l=Kt(o);if(void 0===l)continue;let c="";if(c=0===n.length?l:`${n}.${l}`,l===e.textNodeName){let t=o[l];Xt(c,e)||(t=e.tagValueProcessor(l,t),t=Jt(t,e)),r&&(i+=s),i+=t,r=!1;continue}if(l===e.cdataPropName){r&&(i+=s),i+=`<![CDATA[${o[l][0][e.textNodeName]}]]>`,r=!1;continue}if(l===e.commentPropName){i+=s+`\x3c!--${o[l][0][e.textNodeName]}--\x3e`,r=!0;continue}if("?"===l[0]){const t=Qt(o[":@"],e),n="?xml"===l?"":s;let a=o[l][0][e.textNodeName];a=0!==a.length?" "+a:"",i+=n+`<${l}${a}${t}?>`,r=!0;continue}let u=s;""!==u&&(u+=e.indentBy);const d=s+`<${l}${Qt(o[":@"],e)}`,m=Yt(o[l],e,c,u);-1!==e.unpairedTags.indexOf(l)?e.suppressUnpairedNode?i+=d+">":i+=d+"/>":m&&0!==m.length||!e.suppressEmptyNode?m&&m.endsWith(">")?i+=d+`>${m}${s}</${l}>`:(i+=d+">",m&&""!==s&&(m.includes("/>")||m.includes("</"))?i+=s+e.indentBy+m+s:i+=m,i+=`</${l}>`):i+=d+"/>",r=!0}return i}function Kt(t){const e=Object.keys(t);for(let n=0;n<e.length;n++){const s=e[n];if(t.hasOwnProperty(s)&&":@"!==s)return s}}function Qt(t,e){let n="";if(t&&!e.ignoreAttributes)for(let s in t){if(!t.hasOwnProperty(s))continue;let i=e.attributeValueProcessor(s,t[s]);i=Jt(i,e),!0===i&&e.suppressBooleanAttributes?n+=` ${s.substr(e.attributeNamePrefix.length)}`:n+=` ${s.substr(e.attributeNamePrefix.length)}="${i}"`}return n}function Xt(t,e){let n=(t=t.substr(0,t.length-e.textNodeName.length-1)).substr(t.lastIndexOf(".")+1);for(let s in e.stopNodes)if(e.stopNodes[s]===t||e.stopNodes[s]==="*."+n)return!0;return!1}function Jt(t,e){if(t&&t.length>0&&e.processEntities)for(let n=0;n<e.entities.length;n++){const s=e.entities[n];t=t.replace(s.regex,s.val)}return t}const Zt=function(t,e){let n="";return e.format&&e.indentBy.length>0&&(n="\n"),Yt(t,e,"",n)},te={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:"  ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(t,e){return e},attributeValueProcessor:function(t,e){return e},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&amp;"},{regex:new RegExp(">","g"),val:"&gt;"},{regex:new RegExp("<","g"),val:"&lt;"},{regex:new RegExp("'","g"),val:"&apos;"},{regex:new RegExp('"',"g"),val:"&quot;"}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ee(t){this.options=Object.assign({},te,t),this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=ie),this.processTextOrObjNode=ne,this.options.format?(this.indentate=se,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function ne(t,e,n){const s=this.j2x(t,n+1);return void 0!==t[this.options.textNodeName]&&1===Object.keys(t).length?this.buildTextValNode(t[this.options.textNodeName],e,s.attrStr,n):this.buildObjectNode(s.val,e,s.attrStr,n)}function se(t){return this.options.indentBy.repeat(t)}function ie(t){return!(!t.startsWith(this.options.attributeNamePrefix)||t===this.options.textNodeName)&&t.substr(this.attrPrefixLen)}ee.prototype.build=function(t){return this.options.preserveOrder?Zt(t,this.options):(Array.isArray(t)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(t={[this.options.arrayNodeName]:t}),this.j2x(t,0).val)},ee.prototype.j2x=function(t,e){let n="",s="";for(let i in t)if(Object.prototype.hasOwnProperty.call(t,i))if(void 0===t[i])this.isAttribute(i)&&(s+="");else if(null===t[i])this.isAttribute(i)?s+="":"?"===i[0]?s+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:s+=this.indentate(e)+"<"+i+"/"+this.tagEndChar;else if(t[i]instanceof Date)s+=this.buildTextValNode(t[i],i,"",e);else if("object"!=typeof t[i]){const r=this.isAttribute(i);if(r)n+=this.buildAttrPairStr(r,""+t[i]);else if(i===this.options.textNodeName){let e=this.options.tagValueProcessor(i,""+t[i]);s+=this.replaceEntitiesValue(e)}else s+=this.buildTextValNode(t[i],i,"",e)}else if(Array.isArray(t[i])){const n=t[i].length;let r="";for(let a=0;a<n;a++){const n=t[i][a];void 0===n||(null===n?"?"===i[0]?s+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:s+=this.indentate(e)+"<"+i+"/"+this.tagEndChar:"object"==typeof n?this.options.oneListGroup?r+=this.j2x(n,e+1).val:r+=this.processTextOrObjNode(n,i,e):r+=this.buildTextValNode(n,i,"",e))}this.options.oneListGroup&&(r=this.buildObjectNode(r,i,"",e)),s+=r}else if(this.options.attributesGroupName&&i===this.options.attributesGroupName){const e=Object.keys(t[i]),s=e.length;for(let r=0;r<s;r++)n+=this.buildAttrPairStr(e[r],""+t[i][e[r]])}else s+=this.processTextOrObjNode(t[i],i,e);return{attrStr:n,val:s}},ee.prototype.buildAttrPairStr=function(t,e){return e=this.options.attributeValueProcessor(t,""+e),e=this.replaceEntitiesValue(e),this.options.suppressBooleanAttributes&&"true"===e?" "+t:" "+t+'="'+e+'"'},ee.prototype.buildObjectNode=function(t,e,n,s){if(""===t)return"?"===e[0]?this.indentate(s)+"<"+e+n+"?"+this.tagEndChar:this.indentate(s)+"<"+e+n+this.closeTag(e)+this.tagEndChar;{let i="</"+e+this.tagEndChar,r="";return"?"===e[0]&&(r="?",i=""),!n&&""!==n||-1!==t.indexOf("<")?!1!==this.options.commentPropName&&e===this.options.commentPropName&&0===r.length?this.indentate(s)+`\x3c!--${t}--\x3e`+this.newLine:this.indentate(s)+"<"+e+n+r+this.tagEndChar+t+this.indentate(s)+i:this.indentate(s)+"<"+e+n+r+">"+t+i}},ee.prototype.closeTag=function(t){let e="";return-1!==this.options.unpairedTags.indexOf(t)?this.options.suppressUnpairedNode||(e="/"):e=this.options.suppressEmptyNode?"/":`></${t}`,e},ee.prototype.buildTextValNode=function(t,e,n,s){if(!1!==this.options.cdataPropName&&e===this.options.cdataPropName)return this.indentate(s)+`<![CDATA[${t}]]>`+this.newLine;if(!1!==this.options.commentPropName&&e===this.options.commentPropName)return this.indentate(s)+`\x3c!--${t}--\x3e`+this.newLine;if("?"===e[0])return this.indentate(s)+"<"+e+n+"?"+this.tagEndChar;{let i=this.options.tagValueProcessor(e,t);return i=this.replaceEntitiesValue(i),""===i?this.indentate(s)+"<"+e+n+this.closeTag(e)+this.tagEndChar:this.indentate(s)+"<"+e+n+">"+i+"</"+e+this.tagEndChar}},ee.prototype.replaceEntitiesValue=function(t){if(t&&t.length>0&&this.options.processEntities)for(let e=0;e<this.options.entities.length;e++){const n=this.options.entities[e];t=t.replace(n.regex,n.val)}return t};var re={XMLParser:class{constructor(t){this.externalEntities={},this.options=$t(t)}parse(t,e){if("string"==typeof t);else{if(!t.toString)throw new Error("XML data is accepted in String or Bytes[] form.");t=t.toString()}if(e){!0===e&&(e={});const n=Gt.validate(t,e);if(!0!==n)throw Error(`${n.err.msg}:${n.err.line}:${n.err.col}`)}const n=new Ht(this.options);n.addExternalEntities(this.externalEntities);const s=n.parseXml(t);return this.options.preserveOrder||void 0===s?s:Wt(s,this.options)}addEntity(t,e){if(-1!==e.indexOf("&"))throw new Error("Entity value can't have '&'");if(-1!==t.indexOf("&")||-1!==t.indexOf(";"))throw new Error("An entity must be set without '&' and ';'. Eg. use '#xD' for '&#xD;'");if("&"===e)throw new Error("An entity with value '&' is not permitted");this.externalEntities[t]=e}},XMLValidator:H,XMLBuilder:ee};class ae{_view;constructor(t){oe(t),this._view=t}get id(){return this._view.id}get name(){return this._view.name}get caption(){return this._view.caption}get emptyTitle(){return this._view.emptyTitle}get emptyCaption(){return this._view.emptyCaption}get getContents(){return this._view.getContents}get icon(){return this._view.icon}set icon(t){this._view.icon=t}get order(){return this._view.order}set order(t){this._view.order=t}get params(){return this._view.params}set params(t){this._view.params=t}get columns(){return this._view.columns}get emptyView(){return this._view.emptyView}get parent(){return this._view.parent}get sticky(){return this._view.sticky}get expanded(){return this._view.expanded}set expanded(t){this._view.expanded=t}get defaultSortKey(){return this._view.defaultSortKey}}const oe=function(t){if(!t.id||"string"!=typeof t.id)throw new Error("View id is required and must be a string");if(!t.name||"string"!=typeof t.name)throw new Error("View name is required and must be a string");if(t.columns&&t.columns.length>0&&(!t.caption||"string"!=typeof t.caption))throw new Error("View caption is required for top-level views and must be a string");if(!t.getContents||"function"!=typeof t.getContents)throw new Error("View getContents is required and must be a function");if(!t.icon||"string"!=typeof t.icon||!function(t){if("string"!=typeof t)throw new TypeError(`Expected a \`string\`, got \`${typeof t}\``);if(0===(t=t.trim()).length)return!1;if(!0!==re.XMLValidator.validate(t))return!1;let e;const n=new re.XMLParser;try{e=n.parse(t)}catch{return!1}return!!e&&!!Object.keys(e).some((t=>"svg"===t.toLowerCase()))}(t.icon))throw new Error("View icon is required and must be a valid svg string");if(!("order"in t)||"number"!=typeof t.order)throw new Error("View order is required and must be a number");if(t.columns&&t.columns.forEach((t=>{if(!(t instanceof q))throw new Error("View columns must be an array of Column. Invalid column found")})),t.emptyView&&"function"!=typeof t.emptyView)throw new Error("View emptyView must be a function");if(t.parent&&"string"!=typeof t.parent)throw new Error("View parent must be a string");if("sticky"in t&&"boolean"!=typeof t.sticky)throw new Error("View sticky must be a boolean");if("expanded"in t&&"boolean"!=typeof t.expanded)throw new Error("View expanded must be a boolean");if(t.defaultSortKey&&"string"!=typeof t.defaultSortKey)throw new Error("View defaultSortKey must be a string");return!0},le=function(t){return(void 0===window._nc_newfilemenu&&(window._nc_newfilemenu=new p,d.debug("NewFileMenu initialized")),window._nc_newfilemenu).getEntries(t).sort(((t,e)=>void 0!==t.order&&void 0!==e.order&&t.order!==e.order?t.order-e.order:t.displayName.localeCompare(e.displayName,void 0,{numeric:!0,sensitivity:"base"})))}},41261:(t,e,n)=>{"use strict";n.d(e,{U:()=>ot,a:()=>it,c:()=>W,g:()=>ct,h:()=>dt,l:()=>Y,n:()=>J,o:()=>ut,t:()=>rt});var s=n(85072),i=n.n(s),r=n(97825),a=n.n(r),o=n(77659),l=n.n(o),c=n(55056),u=n.n(c),d=n(10540),m=n.n(d),p=n(41113),f=n.n(p),h=n(30521),g={};g.styleTagTransform=f(),g.setAttributes=u(),g.insert=l().bind(null,"head"),g.domAPI=a(),g.insertStyleElement=m(),i()(h.A,g),h.A&&h.A.locals&&h.A.locals;var v=n(53110),w=n(71089),y=n(35810),A=n(63814),b=n(21777),_=n(26287);class C extends Error{constructor(t){super(t||"Promise was canceled"),this.name="CancelError"}get isCanceled(){return!0}}const x=Object.freeze({pending:Symbol("pending"),canceled:Symbol("canceled"),resolved:Symbol("resolved"),rejected:Symbol("rejected")});class T{static fn(t){return(...e)=>new T(((n,s,i)=>{e.push(i),t(...e).then(n,s)}))}#t=[];#e=!0;#n=x.pending;#s;#i;constructor(t){this.#s=new Promise(((e,n)=>{this.#i=n;const s=t=>{if(this.#n!==x.pending)throw new Error(`The \`onCancel\` handler was attached after the promise ${this.#n.description}.`);this.#t.push(t)};Object.defineProperties(s,{shouldReject:{get:()=>this.#e,set:t=>{this.#e=t}}}),t((t=>{this.#n===x.canceled&&s.shouldReject||(e(t),this.#r(x.resolved))}),(t=>{this.#n===x.canceled&&s.shouldReject||(n(t),this.#r(x.rejected))}),s)}))}then(t,e){return this.#s.then(t,e)}catch(t){return this.#s.catch(t)}finally(t){return this.#s.finally(t)}cancel(t){if(this.#n===x.pending){if(this.#r(x.canceled),this.#t.length>0)try{for(const t of this.#t)t()}catch(t){return void this.#i(t)}this.#e&&this.#i(new C(t))}}get isCanceled(){return this.#n===x.canceled}#r(t){this.#n===x.pending&&(this.#n=t)}}Object.setPrototypeOf(T.prototype,Promise.prototype);var S=n(9052);class k extends Error{constructor(t){super(t),this.name="TimeoutError"}}class E extends Error{constructor(t){super(),this.name="AbortError",this.message=t}}const L=t=>void 0===globalThis.DOMException?new E(t):new DOMException(t),N=t=>{const e=void 0===t.reason?L("This operation was aborted."):t.reason;return e instanceof Error?e:L(e)};class F{#a=[];enqueue(t,e){const n={priority:(e={priority:0,...e}).priority,run:t};if(this.size&&this.#a[this.size-1].priority>=e.priority)return void this.#a.push(n);const s=function(t,e,n){let s=0,i=t.length;for(;i>0;){const n=Math.trunc(i/2);let a=s+n;r=t[a],e.priority-r.priority<=0?(s=++a,i-=n+1):i=n}var r;return s}(this.#a,n);this.#a.splice(s,0,n)}dequeue(){const t=this.#a.shift();return t?.run}filter(t){return this.#a.filter((e=>e.priority===t.priority)).map((t=>t.run))}get size(){return this.#a.length}}class P extends S{#o;#l;#c=0;#u;#d;#m=0;#p;#f;#a;#h;#g=0;#v;#w;#y;timeout;constructor(t){if(super(),!("number"==typeof(t={carryoverConcurrencyCount:!1,intervalCap:Number.POSITIVE_INFINITY,interval:0,concurrency:Number.POSITIVE_INFINITY,autoStart:!0,queueClass:F,...t}).intervalCap&&t.intervalCap>=1))throw new TypeError(`Expected \`intervalCap\` to be a number from 1 and up, got \`${t.intervalCap?.toString()??""}\` (${typeof t.intervalCap})`);if(void 0===t.interval||!(Number.isFinite(t.interval)&&t.interval>=0))throw new TypeError(`Expected \`interval\` to be a finite number >= 0, got \`${t.interval?.toString()??""}\` (${typeof t.interval})`);this.#o=t.carryoverConcurrencyCount,this.#l=t.intervalCap===Number.POSITIVE_INFINITY||0===t.interval,this.#u=t.intervalCap,this.#d=t.interval,this.#a=new t.queueClass,this.#h=t.queueClass,this.concurrency=t.concurrency,this.timeout=t.timeout,this.#y=!0===t.throwOnTimeout,this.#w=!1===t.autoStart}get#A(){return this.#l||this.#c<this.#u}get#b(){return this.#g<this.#v}#_(){this.#g--,this.#C(),this.emit("next")}#x(){this.#T(),this.#S(),this.#f=void 0}get#k(){const t=Date.now();if(void 0===this.#p){const e=this.#m-t;if(!(e<0))return void 0===this.#f&&(this.#f=setTimeout((()=>{this.#x()}),e)),!0;this.#c=this.#o?this.#g:0}return!1}#C(){if(0===this.#a.size)return this.#p&&clearInterval(this.#p),this.#p=void 0,this.emit("empty"),0===this.#g&&this.emit("idle"),!1;if(!this.#w){const t=!this.#k;if(this.#A&&this.#b){const e=this.#a.dequeue();return!!e&&(this.emit("active"),e(),t&&this.#S(),!0)}}return!1}#S(){this.#l||void 0!==this.#p||(this.#p=setInterval((()=>{this.#T()}),this.#d),this.#m=Date.now()+this.#d)}#T(){0===this.#c&&0===this.#g&&this.#p&&(clearInterval(this.#p),this.#p=void 0),this.#c=this.#o?this.#g:0,this.#E()}#E(){for(;this.#C(););}get concurrency(){return this.#v}set concurrency(t){if(!("number"==typeof t&&t>=1))throw new TypeError(`Expected \`concurrency\` to be a number from 1 and up, got \`${t}\` (${typeof t})`);this.#v=t,this.#E()}async#L(t){return new Promise(((e,n)=>{t.addEventListener("abort",(()=>{n(t.reason)}),{once:!0})}))}async add(t,e={}){return e={timeout:this.timeout,throwOnTimeout:this.#y,...e},new Promise(((n,s)=>{this.#a.enqueue((async()=>{this.#g++,this.#c++;try{e.signal?.throwIfAborted();let s=t({signal:e.signal});e.timeout&&(s=function(t,e){const{milliseconds:n,fallback:s,message:i,customTimers:r={setTimeout,clearTimeout}}=e;let a;const o=new Promise(((o,l)=>{if("number"!=typeof n||1!==Math.sign(n))throw new TypeError(`Expected \`milliseconds\` to be a positive number, got \`${n}\``);if(e.signal){const{signal:t}=e;t.aborted&&l(N(t)),t.addEventListener("abort",(()=>{l(N(t))}))}if(n===Number.POSITIVE_INFINITY)return void t.then(o,l);const c=new k;a=r.setTimeout.call(void 0,(()=>{if(s)try{o(s())}catch(t){l(t)}else"function"==typeof t.cancel&&t.cancel(),!1===i?o():i instanceof Error?l(i):(c.message=i??`Promise timed out after ${n} milliseconds`,l(c))}),n),(async()=>{try{o(await t)}catch(t){l(t)}})()})).finally((()=>{o.clear()}));return o.clear=()=>{r.clearTimeout.call(void 0,a),a=void 0},o}(Promise.resolve(s),{milliseconds:e.timeout})),e.signal&&(s=Promise.race([s,this.#L(e.signal)]));const i=await s;n(i),this.emit("completed",i)}catch(t){if(t instanceof k&&!e.throwOnTimeout)return void n();s(t),this.emit("error",t)}finally{this.#_()}}),e),this.emit("add"),this.#C()}))}async addAll(t,e){return Promise.all(t.map((async t=>this.add(t,e))))}start(){return this.#w?(this.#w=!1,this.#E(),this):this}pause(){this.#w=!0}clear(){this.#a=new this.#h}async onEmpty(){0!==this.#a.size&&await this.#N("empty")}async onSizeLessThan(t){this.#a.size<t||await this.#N("next",(()=>this.#a.size<t))}async onIdle(){0===this.#g&&0===this.#a.size||await this.#N("idle")}async#N(t,e){return new Promise((n=>{const s=()=>{e&&!e()||(this.off(t,s),n())};this.on(t,s)}))}get size(){return this.#a.size}sizeBy(t){return this.#a.filter(t).length}get pending(){return this.#g}get isPaused(){return this.#w}}var I=n(53529),D=n(85168),O=n(75270),U=n(85471),B=n(63420),R=n(24764),j=n(9518),M=n(6695),z=n(95101),V=n(11195);const q=async function(t,e,n,s=(()=>{}),i=void 0,r={}){let a;return a=e instanceof Blob?e:await e(),i&&(r.Destination=i),r["Content-Type"]||(r["Content-Type"]="application/octet-stream"),await _.A.request({method:"PUT",url:t,data:a,signal:n,onUploadProgress:s,headers:r})},$=function(t,e,n){return 0===e&&t.size<=n?Promise.resolve(new Blob([t],{type:t.type||"application/octet-stream"})):Promise.resolve(new Blob([t.slice(e,e+n)],{type:"application/octet-stream"}))},H=function(t=void 0){const e=window.OC?.appConfig?.files?.max_chunk_size;if(e<=0)return 0;if(!Number(e))return 10485760;const n=Math.max(Number(e),5242880);return void 0===t?n:Math.max(n,Math.ceil(t/1e4))};var W=(t=>(t[t.INITIALIZED=0]="INITIALIZED",t[t.UPLOADING=1]="UPLOADING",t[t.ASSEMBLING=2]="ASSEMBLING",t[t.FINISHED=3]="FINISHED",t[t.CANCELLED=4]="CANCELLED",t[t.FAILED=5]="FAILED",t))(W||{});let G=class{_source;_file;_isChunked;_chunks;_size;_uploaded=0;_startTime=0;_status=0;_controller;_response=null;constructor(t,e=!1,n,s){const i=Math.min(H()>0?Math.ceil(n/H()):1,1e4);this._source=t,this._isChunked=e&&H()>0&&i>1,this._chunks=this._isChunked?i:1,this._size=n,this._file=s,this._controller=new AbortController}get source(){return this._source}get file(){return this._file}get isChunked(){return this._isChunked}get chunks(){return this._chunks}get size(){return this._size}get startTime(){return this._startTime}set response(t){this._response=t}get response(){return this._response}get uploaded(){return this._uploaded}set uploaded(t){if(t>=this._size)return this._status=this._isChunked?2:3,void(this._uploaded=this._size);this._status=1,this._uploaded=t,0===this._startTime&&(this._startTime=(new Date).getTime())}get status(){return this._status}set status(t){this._status=t}get signal(){return this._controller.signal}cancel(){this._controller.abort(),this._status=4}};const Y=null===(K=(0,b.HW)())?(0,I.YK)().setApp("uploader").build():(0,I.YK)().setApp("uploader").setUid(K.uid).build();var K,Q=(t=>(t[t.IDLE=0]="IDLE",t[t.UPLOADING=1]="UPLOADING",t[t.PAUSED=2]="PAUSED",t))(Q||{});class X{_destinationFolder;_isPublic;_uploadQueue=[];_jobQueue=new P({concurrency:3});_queueSize=0;_queueProgress=0;_queueStatus=0;_notifiers=[];constructor(t=!1,e){if(this._isPublic=t,!e){const t=(0,b.HW)()?.uid,n=(0,A.dC)(`dav/files/${t}`);if(!t)throw new Error("User is not logged in");e=new y.vd({id:0,owner:t,permissions:y.aX.ALL,root:`/files/${t}`,source:n})}this.destination=e,Y.debug("Upload workspace initialized",{destination:this.destination,root:this.root,isPublic:t,maxChunksSize:H()})}get destination(){return this._destinationFolder}set destination(t){if(!t)throw new Error("Invalid destination folder");Y.debug("Destination set",{folder:t}),this._destinationFolder=t}get root(){return this._destinationFolder.source}get queue(){return this._uploadQueue}reset(){this._uploadQueue.splice(0,this._uploadQueue.length),this._jobQueue.clear(),this._queueSize=0,this._queueProgress=0,this._queueStatus=0}pause(){this._jobQueue.pause(),this._queueStatus=2}start(){this._jobQueue.start(),this._queueStatus=1,this.updateStats()}get info(){return{size:this._queueSize,progress:this._queueProgress,status:this._queueStatus}}updateStats(){const t=this._uploadQueue.map((t=>t.size)).reduce(((t,e)=>t+e),0),e=this._uploadQueue.map((t=>t.uploaded)).reduce(((t,e)=>t+e),0);this._queueSize=t,this._queueProgress=e,2!==this._queueStatus&&(this._queueStatus=this._jobQueue.size>0?1:0)}addNotifier(t){this._notifiers.push(t)}upload(t,e,n){const s=`${n||this.root}/${t.replace(/^\//,"")}`,{origin:i}=new URL(s),r=i+(0,w.O0)(s.slice(i.length));Y.debug(`Uploading ${e.name} to ${r}`);const a=H(e.size),o=0===a||e.size<a||this._isPublic,l=new G(s,!o,e.size,e);return this._uploadQueue.push(l),this.updateStats(),new T((async(t,n,s)=>{if(s(l.cancel),o){Y.debug("Initializing regular upload",{file:e,upload:l});const s=await $(e,0,l.size),i=async()=>{try{l.response=await q(r,s,l.signal,(t=>{l.uploaded=l.uploaded+t.bytes,this.updateStats()}),void 0,{"X-OC-Mtime":e.lastModified/1e3,"Content-Type":e.type}),l.uploaded=l.size,this.updateStats(),Y.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){if(t instanceof v.k3)return l.status=W.FAILED,void n("Upload has been cancelled");t?.response&&(l.response=t.response),l.status=W.FAILED,Y.error(`Failed uploading ${e.name}`,{error:t,file:e,upload:l}),n("Failed uploading the file")}this._notifiers.forEach((t=>{try{t(l)}catch{}}))};this._jobQueue.add(i),this.updateStats()}else{Y.debug("Initializing chunked upload",{file:e,upload:l});const s=await async function(t){const e=`${(0,A.dC)(`dav/uploads/${(0,b.HW)()?.uid}`)}/web-file-upload-${[...Array(16)].map((()=>Math.floor(16*Math.random()).toString(16))).join("")}`,n=t?{Destination:t}:void 0;return await _.A.request({method:"MKCOL",url:e,headers:n}),e}(r),i=[];for(let t=0;t<l.chunks;t++){const n=t*a,o=Math.min(n+a,l.size),c=()=>$(e,n,a),u=()=>q(`${s}/${t+1}`,c,l.signal,(()=>this.updateStats()),r,{"X-OC-Mtime":e.lastModified/1e3,"OC-Total-Length":e.size,"Content-Type":"application/octet-stream"}).then((()=>{l.uploaded=l.uploaded+a})).catch((e=>{throw 507===e?.response?.status?(Y.error("Upload failed, not enough space on the server or quota exceeded. Cancelling the remaining chunks",{error:e,upload:l}),l.cancel(),l.status=W.FAILED,e):(e instanceof v.k3||(Y.error(`Chunk ${t+1} ${n} - ${o} uploading failed`,{error:e,upload:l}),l.cancel(),l.status=W.FAILED),e)}));i.push(this._jobQueue.add(u))}try{await Promise.all(i),this.updateStats(),l.response=await _.A.request({method:"MOVE",url:`${s}/.file`,headers:{"X-OC-Mtime":e.lastModified/1e3,"OC-Total-Length":e.size,Destination:r}}),this.updateStats(),l.status=W.FINISHED,Y.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){t instanceof v.k3?(l.status=W.FAILED,n("Upload has been cancelled")):(l.status=W.FAILED,n("Failed assembling the chunks together")),_.A.request({method:"DELETE",url:`${s}`})}this._notifiers.forEach((t=>{try{t(l)}catch{}}))}return this._jobQueue.onIdle().then((()=>this.reset())),l}))}}function J(t,e,n,s,i,r,a,o){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),s&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),a?(l=function(t){!(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)&&typeof __VUE_SSR_CONTEXT__<"u"&&(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},c._ssrRegister=l):i&&(l=o?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(t,e){return l.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:t,options:c}}const Z=J({name:"CancelIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon cancel-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 2C17.5 2 22 6.5 22 12S17.5 22 12 22 2 17.5 2 12 6.5 2 12 2M12 4C10.1 4 8.4 4.6 7.1 5.7L18.3 16.9C19.3 15.5 20 13.8 20 12C20 7.6 16.4 4 12 4M16.9 18.3L5.7 7.1C4.6 8.4 4 10.1 4 12C4 16.4 7.6 20 12 20C13.9 20 15.6 19.4 16.9 18.3Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,tt=J({name:"PlusIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon plus-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,et=J({name:"UploadIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon upload-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,nt=(0,V.$)().detectLocale();[{locale:"af",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)","Content-Type":"text/plain; charset=UTF-8",Language:"af","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: af\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ar",json:{charset:"utf-8",headers:{"Last-Translator":"Ali <alimahwer@yahoo.com>, 2024","Language-Team":"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)","Content-Type":"text/plain; charset=UTF-8",Language:"ar","Plural-Forms":"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nAli <alimahwer@yahoo.com>, 2024\n"},msgstr:["Last-Translator: Ali <alimahwer@yahoo.com>, 2024\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar\nPlural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} ملف متعارض","{count} ملف متعارض","{count} ملفان متعارضان","{count} ملف متعارض","{count} ملفات متعارضة","{count} ملفات متعارضة"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} ملف متعارض في n {dirname}","{count} ملف متعارض في n {dirname}","{count} ملفان متعارضان في n {dirname}","{count} ملف متعارض في n {dirname}","{count} ملفات متعارضة في n {dirname}","{count} ملفات متعارضة في n {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} ثانية متبقية"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} متبقية"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["باقٍ بضعُ ثوانٍ"]},Cancel:{msgid:"Cancel",msgstr:["إلغاء"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["إلغِ العملية بالكامل"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["إلغاء عمليات رفع الملفات"]},Continue:{msgid:"Continue",msgstr:["إستمر"]},"estimating time left":{msgid:"estimating time left",msgstr:["تقدير الوقت المتبقي"]},"Existing version":{msgid:"Existing version",msgstr:["الإصدار الحالي"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["إذا اخترت الإبقاء على النسختين معاً، فإن الملف المنسوخ سيتم إلحاق رقم تسلسلي في نهاية اسمه."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["تاريخ آخر تعديل غير معلوم"]},New:{msgid:"New",msgstr:["جديد"]},"New version":{msgid:"New version",msgstr:["نسخة جديدة"]},paused:{msgid:"paused",msgstr:["مُجمَّد"]},"Preview image":{msgid:"Preview image",msgstr:["معاينة الصورة"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["حدِّد كل صناديق الخيارات"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["حدِّد كل الملفات الموجودة"]},"Select all new files":{msgid:"Select all new files",msgstr:["حدِّد كل الملفات الجديدة"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف"]},"Unknown size":{msgid:"Unknown size",msgstr:["حجم غير معلوم"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["تمَّ إلغاء الرفع"]},"Upload files":{msgid:"Upload files",msgstr:["رفع ملفات"]},"Upload progress":{msgid:"Upload progress",msgstr:["تقدُّم الرفع "]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["عند تحديد مجلد وارد، أي ملفات متعارضة بداخله ستتم الكتابة فوقها."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["أيُّ الملفات ترغب في الإبقاء عليها؟"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["يجب أن تختار نسخة واحدة على الأقل من كل ملف للاستمرار."]}}}}},{locale:"ar_SA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)","Content-Type":"text/plain; charset=UTF-8",Language:"ar_SA","Plural-Forms":"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar_SA\nPlural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ast",json:{charset:"utf-8",headers:{"Last-Translator":"enolp <enolp@softastur.org>, 2023","Language-Team":"Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)","Content-Type":"text/plain; charset=UTF-8",Language:"ast","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nenolp <enolp@softastur.org>, 2023\n"},msgstr:["Last-Translator: enolp <enolp@softastur.org>, 2023\nLanguage-Team: Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ast\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} ficheru en coflictu","{count} ficheros en coflictu"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} ficheru en coflictu en {dirname}","{count} ficheros en coflictu en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Queden {seconds} segundos"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Tiempu que queda: {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["queden unos segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Encaboxar les xubes"]},Continue:{msgid:"Continue",msgstr:["Siguir"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando'l tiempu que falta"]},"Existing version":{msgid:"Existing version",msgstr:["Versión esistente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si seleiciones dambes versiones, el ficheru copiáu va tener un númberu amestáu al so nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["La data de la última modificación ye desconocida"]},New:{msgid:"New",msgstr:["Nuevu"]},"New version":{msgid:"New version",msgstr:["Versión nueva"]},paused:{msgid:"paused",msgstr:["en posa"]},"Preview image":{msgid:"Preview image",msgstr:["Previsualizar la imaxe"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marcar toles caxelles"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleicionar tolos ficheros esistentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleicionar tolos ficheros nuevos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Saltar esti ficheru","Saltar {count} ficheros"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamañu desconocíu"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Encaboxóse la xuba"]},"Upload files":{msgid:"Upload files",msgstr:["Xubir ficheros"]},"Upload progress":{msgid:"Upload progress",msgstr:["Xuba en cursu"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["¿Qué ficheros quies caltener?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Tienes de seleicionar polo menos una versión de cada ficheru pa siguir."]}}}}},{locale:"az",json:{charset:"utf-8",headers:{"Last-Translator":"Rashad Aliyev <microphprashad@gmail.com>, 2023","Language-Team":"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)","Content-Type":"text/plain; charset=UTF-8",Language:"az","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nRashad Aliyev <microphprashad@gmail.com>, 2023\n"},msgstr:["Last-Translator: Rashad Aliyev <microphprashad@gmail.com>, 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: az\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} saniyə qalıb"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} qalıb"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["bir neçə saniyə qalıb"]},Add:{msgid:"Add",msgstr:["Əlavə et"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Yükləməni imtina et"]},"estimating time left":{msgid:"estimating time left",msgstr:["Təxmini qalan vaxt"]},paused:{msgid:"paused",msgstr:["pauzadadır"]},"Upload files":{msgid:"Upload files",msgstr:["Faylları yüklə"]}}}}},{locale:"be",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)","Content-Type":"text/plain; charset=UTF-8",Language:"be","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: be\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bg_BG",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)","Content-Type":"text/plain; charset=UTF-8",Language:"bg_BG","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bg_BG\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bn_BD",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)","Content-Type":"text/plain; charset=UTF-8",Language:"bn_BD","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bn_BD\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"br",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)","Content-Type":"text/plain; charset=UTF-8",Language:"br","Plural-Forms":"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bs",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)","Content-Type":"text/plain; charset=UTF-8",Language:"bs","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bs\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ca",json:{charset:"utf-8",headers:{"Last-Translator":"Toni Hermoso Pulido <toniher@softcatala.cat>, 2022","Language-Team":"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)","Content-Type":"text/plain; charset=UTF-8",Language:"ca","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMarc Riera <marcriera@softcatala.org>, 2022\nToni Hermoso Pulido <toniher@softcatala.cat>, 2022\n"},msgstr:["Last-Translator: Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Queden {seconds} segons"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["Queden {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Queden uns segons"]},Add:{msgid:"Add",msgstr:["Afegeix"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancel·la les pujades"]},"estimating time left":{msgid:"estimating time left",msgstr:["S'està estimant el temps restant"]},paused:{msgid:"paused",msgstr:["En pausa"]},"Upload files":{msgid:"Upload files",msgstr:["Puja els fitxers"]}}}}},{locale:"cs",json:{charset:"utf-8",headers:{"Last-Translator":"Pavel Borecki <pavel.borecki@gmail.com>, 2022","Language-Team":"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)","Content-Type":"text/plain; charset=UTF-8",Language:"cs","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPavel Borecki <pavel.borecki@gmail.com>, 2022\n"},msgstr:["Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2022\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["zbývá {seconds}"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["zbývá {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["zbývá několik sekund"]},Add:{msgid:"Add",msgstr:["Přidat"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Zrušit nahrávání"]},"estimating time left":{msgid:"estimating time left",msgstr:["odhadovaný zbývající čas"]},paused:{msgid:"paused",msgstr:["pozastaveno"]}}}}},{locale:"cs_CZ",json:{charset:"utf-8",headers:{"Last-Translator":"Michal Šmahel <ceskyDJ@seznam.cz>, 2024","Language-Team":"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)","Content-Type":"text/plain; charset=UTF-8",Language:"cs_CZ","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMichal Šmahel <ceskyDJ@seznam.cz>, 2024\n"},msgstr:["Last-Translator: Michal Šmahel <ceskyDJ@seznam.cz>, 2024\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} kolize souborů","{count} kolize souborů","{count} kolizí souborů","{count} kolize souborů"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} kolize souboru v {dirname}","{count} kolize souboru v {dirname}","{count} kolizí souborů v {dirname}","{count} kolize souboru v {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["zbývá {seconds}"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["zbývá {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["zbývá několik sekund"]},Cancel:{msgid:"Cancel",msgstr:["Zrušit"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Zrušit celou operaci"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Zrušit nahrávání"]},Continue:{msgid:"Continue",msgstr:["Pokračovat"]},"estimating time left":{msgid:"estimating time left",msgstr:["odhaduje se zbývající čas"]},"Existing version":{msgid:"Existing version",msgstr:["Existující verze"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Pokud vyberete obě verze, zkopírovaný soubor bude mít k názvu přidáno číslo."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Neznámé datum poslední úpravy"]},New:{msgid:"New",msgstr:["Nové"]},"New version":{msgid:"New version",msgstr:["Nová verze"]},paused:{msgid:"paused",msgstr:["pozastaveno"]},"Preview image":{msgid:"Preview image",msgstr:["Náhled obrázku"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Označit všechny zaškrtávací kolonky"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Vybrat veškeré stávající soubory"]},"Select all new files":{msgid:"Select all new files",msgstr:["Vybrat veškeré nové soubory"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Přeskočit tento soubor","Přeskočit {count} soubory","Přeskočit {count} souborů","Přeskočit {count} soubory"]},"Unknown size":{msgid:"Unknown size",msgstr:["Neznámá velikost"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Nahrávání zrušeno"]},"Upload files":{msgid:"Upload files",msgstr:["Nahrát soubory"]},"Upload progress":{msgid:"Upload progress",msgstr:["Postup v nahrávání"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Po výběru příchozí složky budou rovněž přepsány všechny v ní obsažené konfliktní soubory"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Které soubory si přejete ponechat?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Aby bylo možné pokračovat, je třeba vybrat alespoň jednu verzi od každého souboru."]}}}}},{locale:"cy_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)","Content-Type":"text/plain; charset=UTF-8",Language:"cy_GB","Plural-Forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cy_GB\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"da",json:{charset:"utf-8",headers:{"Last-Translator":"Martin Bonde <Martin@maboni.dk>, 2024","Language-Team":"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)","Content-Type":"text/plain; charset=UTF-8",Language:"da","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMartin Bonde <Martin@maboni.dk>, 2024\n"},msgstr:["Last-Translator: Martin Bonde <Martin@maboni.dk>, 2024\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} fil konflikt","{count} filer i konflikt"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} fil konflikt i {dirname}","{count} filer i konflikt i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{sekunder} sekunder tilbage"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{tid} tilbage"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["et par sekunder tilbage"]},Cancel:{msgid:"Cancel",msgstr:["Annuller"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Annuller hele handlingen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annuller uploads"]},Continue:{msgid:"Continue",msgstr:["Fortsæt"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimering af resterende tid"]},"Existing version":{msgid:"Existing version",msgstr:["Eksisterende version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Hvis du vælger begge versioner vil den kopierede fil få et nummer tilføjet til sit navn."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Sidste modifikationsdato ukendt"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny version"]},paused:{msgid:"paused",msgstr:["pauset"]},"Preview image":{msgid:"Preview image",msgstr:["Forhåndsvisning af billede"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Vælg alle felter"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Vælg alle eksisterende filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Vælg alle nye filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Spring denne fil over","Spring {count} filer over"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukendt størrelse"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Upload annulleret"]},"Upload files":{msgid:"Upload files",msgstr:["Upload filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Upload fremskridt"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Når en indgående mappe er valgt, vil alle modstridende filer i den også blive overskrevet."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvilke filer ønsker du at beholde?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du skal vælge mindst én version af hver fil for at fortsætte."]}}}}},{locale:"de",json:{charset:"utf-8",headers:{"Last-Translator":"Mario Siegmann <mario_siegmann@web.de>, 2024","Language-Team":"German (https://app.transifex.com/nextcloud/teams/64236/de/)","Content-Type":"text/plain; charset=UTF-8",Language:"de","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n"},msgstr:["Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Datei-Konflikt","{count} Datei-Konflikte"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} Datei-Konflikt in {dirname}","{count} Datei-Konflikte in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} Sekunden verbleibend"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} verbleibend"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["noch ein paar Sekunden"]},Cancel:{msgid:"Cancel",msgstr:["Abbrechen"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hochladen abbrechen"]},Continue:{msgid:"Continue",msgstr:["Fortsetzen"]},"estimating time left":{msgid:"estimating time left",msgstr:["Geschätzte verbleibende Zeit"]},"Existing version":{msgid:"Existing version",msgstr:["Vorhandene Version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Wenn du beide Versionen auswählst, wird der kopierten Datei eine Nummer zum Namen hinzugefügt."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},New:{msgid:"New",msgstr:["Neu"]},"New version":{msgid:"New version",msgstr:["Neue Version"]},paused:{msgid:"paused",msgstr:["Pausiert"]},"Preview image":{msgid:"Preview image",msgstr:["Vorschaubild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},"Select all new files":{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Diese Datei überspringen","{count} Dateien überspringen"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unbekannte Größe"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hochladen abgebrochen"]},"Upload files":{msgid:"Upload files",msgstr:["Dateien hochladen"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fortschritt beim Hochladen"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien möchtest du behalten?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du musst mindestens eine Version jeder Datei auswählen, um fortzufahren."]}}}}},{locale:"de_DE",json:{charset:"utf-8",headers:{"Last-Translator":"Mario Siegmann <mario_siegmann@web.de>, 2024","Language-Team":"German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)","Content-Type":"text/plain; charset=UTF-8",Language:"de_DE","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n"},msgstr:["Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Datei-Konflikt","{count} Datei-Konflikte"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} Datei-Konflikt in {dirname}","{count} Datei-Konflikte in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} Sekunden verbleiben"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} verbleibend"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["ein paar Sekunden verbleiben"]},Cancel:{msgid:"Cancel",msgstr:["Abbrechen"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hochladen abbrechen"]},Continue:{msgid:"Continue",msgstr:["Fortsetzen"]},"estimating time left":{msgid:"estimating time left",msgstr:["Geschätzte verbleibende Zeit"]},"Existing version":{msgid:"Existing version",msgstr:["Vorhandene Version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Wenn Sie beide Versionen auswählen, wird der kopierten Datei eine Nummer zum Namen hinzugefügt."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},New:{msgid:"New",msgstr:["Neu"]},"New version":{msgid:"New version",msgstr:["Neue Version"]},paused:{msgid:"paused",msgstr:["Pausiert"]},"Preview image":{msgid:"Preview image",msgstr:["Vorschaubild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},"Select all new files":{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["{count} Datei überspringen","{count} Dateien überspringen"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unbekannte Größe"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hochladen abgebrochen"]},"Upload files":{msgid:"Upload files",msgstr:["Dateien hochladen"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fortschritt beim Hochladen"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien möchten Sie behalten?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Sie müssen mindestens eine Version jeder Datei auswählen, um fortzufahren."]}}}}},{locale:"el",json:{charset:"utf-8",headers:{"Last-Translator":"Nik Pap, 2022","Language-Team":"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)","Content-Type":"text/plain; charset=UTF-8",Language:"el","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nNik Pap, 2022\n"},msgstr:["Last-Translator: Nik Pap, 2022\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["απομένουν {seconds} δευτερόλεπτα"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["απομένουν {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["απομένουν λίγα δευτερόλεπτα"]},Add:{msgid:"Add",msgstr:["Προσθήκη"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Ακύρωση μεταφορτώσεων"]},"estimating time left":{msgid:"estimating time left",msgstr:["εκτίμηση του χρόνου που απομένει"]},paused:{msgid:"paused",msgstr:["σε παύση"]},"Upload files":{msgid:"Upload files",msgstr:["Μεταφόρτωση αρχείων"]}}}}},{locale:"el_GR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)","Content-Type":"text/plain; charset=UTF-8",Language:"el_GR","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el_GR\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"en_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Andi Chandler <andi@gowling.com>, 2023","Language-Team":"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)","Content-Type":"text/plain; charset=UTF-8",Language:"en_GB","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAndi Chandler <andi@gowling.com>, 2023\n"},msgstr:["Last-Translator: Andi Chandler <andi@gowling.com>, 2023\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: en_GB\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file conflict","{count} files conflict"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file conflict in {dirname}","{count} file conflicts in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} seconds left"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} left"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["a few seconds left"]},Add:{msgid:"Add",msgstr:["Add"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancel uploads"]},Continue:{msgid:"Continue",msgstr:["Continue"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimating time left"]},"Existing version":{msgid:"Existing version",msgstr:["Existing version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["If you select both versions, the copied file will have a number added to its name."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Last modified date unknown"]},"New version":{msgid:"New version",msgstr:["New version"]},paused:{msgid:"paused",msgstr:["paused"]},"Preview image":{msgid:"Preview image",msgstr:["Preview image"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Select all checkboxes"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Select all existing files"]},"Select all new files":{msgid:"Select all new files",msgstr:["Select all new files"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Skip this file","Skip {count} files"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unknown size"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Upload cancelled"]},"Upload files":{msgid:"Upload files",msgstr:["Upload files"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Which files do you want to keep?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["You need to select at least one version of each file to continue."]}}}}},{locale:"eo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)","Content-Type":"text/plain; charset=UTF-8",Language:"eo","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eo\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es",json:{charset:"utf-8",headers:{"Last-Translator":"Julio C. Ortega, 2024","Language-Team":"Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)","Content-Type":"text/plain; charset=UTF-8",Language:"es","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nFranciscoFJ <dev-ooo@satel-sa.com>, 2023\nNext Cloud <nextcloud.translator.es@cgj.es>, 2023\nJulio C. Ortega, 2024\n"},msgstr:["Last-Translator: Julio C. Ortega, 2024\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} archivo en conflicto","{count} archivos en conflicto","{count} archivos en conflicto"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} archivo en conflicto en {dirname}","{count} archivos en conflicto en {dirname}","{count} archivos en conflicto en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan unos segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},"Existing version":{msgid:"Existing version",msgstr:["Versión existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si selecciona ambas versiones, al archivo copiado se le añadirá un número en el nombre."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Última fecha de modificación desconocida"]},New:{msgid:"New",msgstr:["Nuevo"]},"New version":{msgid:"New version",msgstr:["Nueva versión"]},paused:{msgid:"paused",msgstr:["pausado"]},"Preview image":{msgid:"Preview image",msgstr:["Previsualizar imagen"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Seleccionar todas las casillas de verificación"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleccionar todos los archivos existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleccionar todos los archivos nuevos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Saltar este archivo","Saltar {count} archivos","Saltar {count} archivos"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamaño desconocido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Subida cancelada"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progreso de la subida"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["¿Qué archivos desea conservar?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Debe seleccionar al menos una versión de cada archivo para continuar."]}}}}},{locale:"es_419",json:{charset:"utf-8",headers:{"Last-Translator":"ALEJANDRO CASTRO, 2022","Language-Team":"Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_419","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nALEJANDRO CASTRO, 2022\n"},msgstr:["Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_419\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{tiempo} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan pocos segundos"]},Add:{msgid:"Add",msgstr:["agregar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]}}}}},{locale:"es_AR",json:{charset:"utf-8",headers:{"Last-Translator":"Matias Iglesias, 2022","Language-Team":"Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_AR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMatias Iglesias, 2022\n"},msgstr:["Last-Translator: Matias Iglesias, 2022\nLanguage-Team: Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_AR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan unos segundos"]},Add:{msgid:"Add",msgstr:["Añadir"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]}}}}},{locale:"es_CL",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CL","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CL\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_CO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CO","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_CR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_DO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_DO","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_DO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_EC",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_EC","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_EC\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_GT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_GT","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_GT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_HN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_HN","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_HN\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_MX",json:{charset:"utf-8",headers:{"Last-Translator":"ALEJANDRO CASTRO, 2022","Language-Team":"Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_MX","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nLuis Francisco Castro, 2022\nALEJANDRO CASTRO, 2022\n"},msgstr:["Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_MX\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{tiempo} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan pocos segundos"]},Add:{msgid:"Add",msgstr:["agregar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["cancelar las cargas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["en pausa"]},"Upload files":{msgid:"Upload files",msgstr:["cargar archivos"]}}}}},{locale:"es_NI",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_NI","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_NI\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PA","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PA\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PE","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PE\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PY","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_SV",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_SV","Plural-Forms":"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_SV\nPlural-Forms: nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_UY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_UY","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_UY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"et_EE",json:{charset:"utf-8",headers:{"Last-Translator":"Taavo Roos, 2023","Language-Team":"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)","Content-Type":"text/plain; charset=UTF-8",Language:"et_EE","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMait R, 2022\nTaavo Roos, 2023\n"},msgstr:["Last-Translator: Taavo Roos, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: et_EE\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} jäänud sekundid"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} aega jäänud"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["jäänud mõni sekund"]},Add:{msgid:"Add",msgstr:["Lisa"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Tühista üleslaadimine"]},"estimating time left":{msgid:"estimating time left",msgstr:["hinnanguline järelejäänud aeg"]},paused:{msgid:"paused",msgstr:["pausil"]},"Upload files":{msgid:"Upload files",msgstr:["Lae failid üles"]}}}}},{locale:"eu",json:{charset:"utf-8",headers:{"Last-Translator":"Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022","Language-Team":"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)","Content-Type":"text/plain; charset=UTF-8",Language:"eu","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nUnai Tolosa Pontesta <utolosa002@gmail.com>, 2022\n"},msgstr:["Last-Translator: Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundo geratzen dira"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} geratzen da"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["segundo batzuk geratzen dira"]},Add:{msgid:"Add",msgstr:["Gehitu"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Ezeztatu igoerak"]},"estimating time left":{msgid:"estimating time left",msgstr:["kalkulatutako geratzen den denbora"]},paused:{msgid:"paused",msgstr:["geldituta"]},"Upload files":{msgid:"Upload files",msgstr:["Igo fitxategiak"]}}}}},{locale:"fa",json:{charset:"utf-8",headers:{"Last-Translator":"Fatemeh Komeily, 2023","Language-Team":"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)","Content-Type":"text/plain; charset=UTF-8",Language:"fa","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nFatemeh Komeily, 2023\n"},msgstr:["Last-Translator: Fatemeh Komeily, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fa\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["ثانیه های باقی مانده"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["باقی مانده"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["چند ثانیه مانده"]},Add:{msgid:"Add",msgstr:["اضافه کردن"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["کنسل کردن فایل های اپلود شده"]},"estimating time left":{msgid:"estimating time left",msgstr:["تخمین زمان باقی مانده"]},paused:{msgid:"paused",msgstr:["مکث کردن"]},"Upload files":{msgid:"Upload files",msgstr:["بارگذاری فایل ها"]}}}}},{locale:"fi_FI",json:{charset:"utf-8",headers:{"Last-Translator":"Jiri Grönroos <jiri.gronroos@iki.fi>, 2022","Language-Team":"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)","Content-Type":"text/plain; charset=UTF-8",Language:"fi_FI","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJiri Grönroos <jiri.gronroos@iki.fi>, 2022\n"},msgstr:["Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekuntia jäljellä"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} jäljellä"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["muutama sekunti jäljellä"]},Add:{msgid:"Add",msgstr:["Lisää"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Peruuta lähetykset"]},"estimating time left":{msgid:"estimating time left",msgstr:["arvioidaan jäljellä olevaa aikaa"]},paused:{msgid:"paused",msgstr:["keskeytetty"]},"Upload files":{msgid:"Upload files",msgstr:["Lähetä tiedostoja"]}}}}},{locale:"fo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)","Content-Type":"text/plain; charset=UTF-8",Language:"fo","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fo\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"fr",json:{charset:"utf-8",headers:{"Last-Translator":"jed boulahya, 2024","Language-Team":"French (https://app.transifex.com/nextcloud/teams/64236/fr/)","Content-Type":"text/plain; charset=UTF-8",Language:"fr","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nBenoit Pruneau, 2024\njed boulahya, 2024\n"},msgstr:["Last-Translator: jed boulahya, 2024\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} fichier en conflit","{count} fichiers en conflit","{count} fichiers en conflit"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} fichier en conflit dans {dirname}","{count} fichiers en conflit dans {dirname}","{count} fichiers en conflit dans {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secondes restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restant"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quelques secondes restantes"]},Cancel:{msgid:"Cancel",msgstr:["Annuler"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Annuler l'opération entière"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annuler les envois"]},Continue:{msgid:"Continue",msgstr:["Continuer"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimation du temps restant"]},"Existing version":{msgid:"Existing version",msgstr:["Version existante"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si vous sélectionnez les deux versions, le fichier copié aura un numéro ajouté àname."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Date de la dernière modification est inconnue"]},New:{msgid:"New",msgstr:["Nouveau"]},"New version":{msgid:"New version",msgstr:["Nouvelle version"]},paused:{msgid:"paused",msgstr:["en pause"]},"Preview image":{msgid:"Preview image",msgstr:["Aperçu de l'image"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Sélectionner toutes les cases à cocher"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Sélectionner tous les fichiers existants"]},"Select all new files":{msgid:"Select all new files",msgstr:["Sélectionner tous les nouveaux fichiers"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Ignorer ce fichier","Ignorer {count} fichiers","Ignorer {count} fichiers"]},"Unknown size":{msgid:"Unknown size",msgstr:["Taille inconnue"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:[" annulé"]},"Upload files":{msgid:"Upload files",msgstr:["Téléchargement des fichiers"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progression du téléchargement"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Lorsqu'un dossier entrant est sélectionné, tous les fichiers en conflit qu'il contient seront également écrasés."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quels fichiers souhaitez-vous conserver ?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Vous devez sélectionner au moins une version de chaque fichier pour continuer."]}}}}},{locale:"gd",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)","Content-Type":"text/plain; charset=UTF-8",Language:"gd","Plural-Forms":"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gd\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"gl",json:{charset:"utf-8",headers:{"Last-Translator":"Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023","Language-Team":"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)","Content-Type":"text/plain; charset=UTF-8",Language:"gl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nNacho <nacho.vfranco@gmail.com>, 2023\nMiguel Anxo Bouzada <mbouzada@gmail.com>, 2023\n"},msgstr:["Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} conflito de ficheiros","{count} conflitos de ficheiros"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} conflito de ficheiros en {dirname}","{count} conflitos de ficheiros en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["faltan {seconds} segundos"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["falta {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["faltan uns segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar envíos"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["calculando canto tempo falta"]},"Existing version":{msgid:"Existing version",msgstr:["Versión existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se selecciona ambas as versións, o ficheiro copiado terá un número engadido ao seu nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Data da última modificación descoñecida"]},New:{msgid:"New",msgstr:["Nova"]},"New version":{msgid:"New version",msgstr:["Nova versión"]},paused:{msgid:"paused",msgstr:["detido"]},"Preview image":{msgid:"Preview image",msgstr:["Vista previa da imaxe"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marcar todas as caixas de selección"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleccionar todos os ficheiros existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleccionar todos os ficheiros novos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Omita este ficheiro","Omitir {count} ficheiros"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamaño descoñecido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Envío cancelado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar ficheiros"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progreso do envío"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Que ficheiros quere conservar?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Debe seleccionar polo menos unha versión de cada ficheiro para continuar."]}}}}},{locale:"he",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)","Content-Type":"text/plain; charset=UTF-8",Language:"he","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hi_IN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)","Content-Type":"text/plain; charset=UTF-8",Language:"hi_IN","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hi_IN\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hr",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)","Content-Type":"text/plain; charset=UTF-8",Language:"hr","Plural-Forms":"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hr\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hsb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)","Content-Type":"text/plain; charset=UTF-8",Language:"hsb","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hsb\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hu",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)","Content-Type":"text/plain; charset=UTF-8",Language:"hu","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hu_HU",json:{charset:"utf-8",headers:{"Last-Translator":"Balázs Úr, 2022","Language-Team":"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)","Content-Type":"text/plain; charset=UTF-8",Language:"hu_HU","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nBalázs Meskó <meskobalazs@mailbox.org>, 2022\nBalázs Úr, 2022\n"},msgstr:["Last-Translator: Balázs Úr, 2022\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{} másodperc van hátra"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} van hátra"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["pár másodperc van hátra"]},Add:{msgid:"Add",msgstr:["Hozzáadás"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Feltöltések megszakítása"]},"estimating time left":{msgid:"estimating time left",msgstr:["hátralévő idő becslése"]},paused:{msgid:"paused",msgstr:["szüneteltetve"]},"Upload files":{msgid:"Upload files",msgstr:["Fájlok feltöltése"]}}}}},{locale:"hy",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)","Content-Type":"text/plain; charset=UTF-8",Language:"hy","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hy\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ia",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)","Content-Type":"text/plain; charset=UTF-8",Language:"ia","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ia\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"id",json:{charset:"utf-8",headers:{"Last-Translator":"Linerly <linerly@proton.me>, 2023","Language-Team":"Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)","Content-Type":"text/plain; charset=UTF-8",Language:"id","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nEmpty Slot Filler, 2023\nLinerly <linerly@proton.me>, 2023\n"},msgstr:["Last-Translator: Linerly <linerly@proton.me>, 2023\nLanguage-Team: Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: id\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} berkas berkonflik"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} berkas berkonflik dalam {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} detik tersisa"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} tersisa"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["tinggal sebentar lagi"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Batalkan unggahan"]},Continue:{msgid:"Continue",msgstr:["Lanjutkan"]},"estimating time left":{msgid:"estimating time left",msgstr:["memperkirakan waktu yang tersisa"]},"Existing version":{msgid:"Existing version",msgstr:["Versi yang ada"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Jika Anda memilih kedua versi, nama berkas yang disalin akan ditambahi angka."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Tanggal perubahan terakhir tidak diketahui"]},New:{msgid:"New",msgstr:["Baru"]},"New version":{msgid:"New version",msgstr:["Versi baru"]},paused:{msgid:"paused",msgstr:["dijeda"]},"Preview image":{msgid:"Preview image",msgstr:["Gambar pratinjau"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Pilih semua kotak centang"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Pilih semua berkas yang ada"]},"Select all new files":{msgid:"Select all new files",msgstr:["Pilih semua berkas baru"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Lewati {count} berkas"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukuran tidak diketahui"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Unggahan dibatalkan"]},"Upload files":{msgid:"Upload files",msgstr:["Unggah berkas"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Berkas mana yang Anda ingin tetap simpan?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Anda harus memilih setidaknya satu versi dari masing-masing berkas untuk melanjutkan."]}}}}},{locale:"ig",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)","Content-Type":"text/plain; charset=UTF-8",Language:"ig","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ig\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"is",json:{charset:"utf-8",headers:{"Last-Translator":"Sveinn í Felli <sv1@fellsnet.is>, 2023","Language-Team":"Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)","Content-Type":"text/plain; charset=UTF-8",Language:"is","Plural-Forms":"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nSveinn í Felli <sv1@fellsnet.is>, 2023\n"},msgstr:["Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2023\nLanguage-Team: Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} árekstur skráa","{count} árekstrar skráa"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} árekstur skráa í {dirname}","{count} árekstrar skráa í {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekúndur eftir"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} eftir"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["nokkrar sekúndur eftir"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hætta við innsendingar"]},Continue:{msgid:"Continue",msgstr:["Halda áfram"]},"estimating time left":{msgid:"estimating time left",msgstr:["áætla tíma sem eftir er"]},"Existing version":{msgid:"Existing version",msgstr:["Fyrirliggjandi útgáfa"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Ef þú velur báðar útgáfur, þá mun verða bætt tölustaf aftan við heiti afrituðu skrárinnar."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Síðasta breytingadagsetning er óþekkt"]},New:{msgid:"New",msgstr:["Nýtt"]},"New version":{msgid:"New version",msgstr:["Ný útgáfa"]},paused:{msgid:"paused",msgstr:["í bið"]},"Preview image":{msgid:"Preview image",msgstr:["Forskoðun myndar"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Velja gátreiti"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Velja allar fyrirliggjandi skrár"]},"Select all new files":{msgid:"Select all new files",msgstr:["Velja allar nýjar skrár"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Sleppa þessari skrá","Sleppa {count} skrám"]},"Unknown size":{msgid:"Unknown size",msgstr:["Óþekkt stærð"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hætt við innsendingu"]},"Upload files":{msgid:"Upload files",msgstr:["Senda inn skrár"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvaða skrám vilt þú vilt halda eftir?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Þú verður að velja að minnsta kosti eina útgáfu af hverri skrá til að halda áfram."]}}}}},{locale:"it",json:{charset:"utf-8",headers:{"Last-Translator":"Random_R, 2023","Language-Team":"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)","Content-Type":"text/plain; charset=UTF-8",Language:"it","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nLep Lep, 2023\nRandom_R, 2023\n"},msgstr:["Last-Translator: Random_R, 2023\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file in conflitto","{count} file in conflitto","{count} file in conflitto"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file in conflitto in {dirname}","{count} file in conflitto in {dirname}","{count} file in conflitto in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secondi rimanenti "]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} rimanente"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["alcuni secondi rimanenti"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annulla i caricamenti"]},Continue:{msgid:"Continue",msgstr:["Continua"]},"estimating time left":{msgid:"estimating time left",msgstr:["calcolo il tempo rimanente"]},"Existing version":{msgid:"Existing version",msgstr:["Versione esistente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se selezioni entrambe le versioni, nel nome del file copiato verrà aggiunto un numero "]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Ultima modifica sconosciuta"]},New:{msgid:"New",msgstr:["Nuovo"]},"New version":{msgid:"New version",msgstr:["Nuova versione"]},paused:{msgid:"paused",msgstr:["pausa"]},"Preview image":{msgid:"Preview image",msgstr:["Anteprima immagine"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Seleziona tutte le caselle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleziona tutti i file esistenti"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleziona tutti i nuovi file"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Salta questo file","Salta {count} file","Salta {count} file"]},"Unknown size":{msgid:"Unknown size",msgstr:["Dimensione sconosciuta"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Caricamento cancellato"]},"Upload files":{msgid:"Upload files",msgstr:["Carica i file"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quali file vuoi mantenere?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Devi selezionare almeno una versione di ogni file per continuare"]}}}}},{locale:"it_IT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)","Content-Type":"text/plain; charset=UTF-8",Language:"it_IT","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it_IT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ja_JP",json:{charset:"utf-8",headers:{"Last-Translator":"かたかめ, 2022","Language-Team":"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)","Content-Type":"text/plain; charset=UTF-8",Language:"ja_JP","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nT.S, 2022\nかたかめ, 2022\n"},msgstr:["Last-Translator: かたかめ, 2022\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["残り {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["残り {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["残り数秒"]},Add:{msgid:"Add",msgstr:["追加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["アップロードをキャンセル"]},"estimating time left":{msgid:"estimating time left",msgstr:["概算残り時間"]},paused:{msgid:"paused",msgstr:["一時停止中"]},"Upload files":{msgid:"Upload files",msgstr:["ファイルをアップデート"]}}}}},{locale:"ka",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)","Content-Type":"text/plain; charset=UTF-8",Language:"ka","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ka_GE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)","Content-Type":"text/plain; charset=UTF-8",Language:"ka_GE","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka_GE\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"kab",json:{charset:"utf-8",headers:{"Last-Translator":"ZiriSut, 2023","Language-Team":"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)","Content-Type":"text/plain; charset=UTF-8",Language:"kab","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nZiriSut, 2023\n"},msgstr:["Last-Translator: ZiriSut, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kab\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} tesdatin i d-yeqqimen"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} i d-yeqqimen"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["qqiment-d kra n tesdatin kan"]},Add:{msgid:"Add",msgstr:["Rnu"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Sefsex asali"]},"estimating time left":{msgid:"estimating time left",msgstr:["asizel n wakud i d-yeqqimen"]},paused:{msgid:"paused",msgstr:["yeḥbes"]},"Upload files":{msgid:"Upload files",msgstr:["Sali-d ifuyla"]}}}}},{locale:"kk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)","Content-Type":"text/plain; charset=UTF-8",Language:"kk","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kk\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"km",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)","Content-Type":"text/plain; charset=UTF-8",Language:"km","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: km\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"kn",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)","Content-Type":"text/plain; charset=UTF-8",Language:"kn","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kn\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ko",json:{charset:"utf-8",headers:{"Last-Translator":"Brandon Han, 2024","Language-Team":"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)","Content-Type":"text/plain; charset=UTF-8",Language:"ko","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nhosun Lee, 2023\nBrandon Han, 2024\n"},msgstr:["Last-Translator: Brandon Han, 2024\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ko\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count}개의 파일이 충돌함"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname}에서 {count}개의 파일이 충돌함"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} 남음"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} 남음"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["곧 완료"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["업로드 취소"]},Continue:{msgid:"Continue",msgstr:["확인"]},"estimating time left":{msgid:"estimating time left",msgstr:["남은 시간 계산"]},"Existing version":{msgid:"Existing version",msgstr:["현재 버전"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["두 버전을 모두 선택할 경우, 복제된 파일 이름에 숫자가 추가됩니다."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["최근 수정일 알 수 없음"]},New:{msgid:"New",msgstr:["새로 만들기"]},"New version":{msgid:"New version",msgstr:["새 버전"]},paused:{msgid:"paused",msgstr:["일시정지됨"]},"Preview image":{msgid:"Preview image",msgstr:["미리보기 이미지"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["모든 체크박스 선택"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["모든 파일 선택"]},"Select all new files":{msgid:"Select all new files",msgstr:["모든 새 파일 선택"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["{count}개의 파일 넘기기"]},"Unknown size":{msgid:"Unknown size",msgstr:["크기를 알 수 없음"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["업로드 취소됨"]},"Upload files":{msgid:"Upload files",msgstr:["파일 업로드"]},"Upload progress":{msgid:"Upload progress",msgstr:["업로드 진행도"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["어떤 파일을 보존하시겠습니까?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["계속하기 위해서는 한 파일에 최소 하나의 버전을 선택해야 합니다."]}}}}},{locale:"la",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Latin (https://www.transifex.com/nextcloud/teams/64236/la/)","Content-Type":"text/plain; charset=UTF-8",Language:"la","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: la\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)","Content-Type":"text/plain; charset=UTF-8",Language:"lb","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lb\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)","Content-Type":"text/plain; charset=UTF-8",Language:"lo","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lo\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lt_LT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)","Content-Type":"text/plain; charset=UTF-8",Language:"lt_LT","Plural-Forms":"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lv",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)","Content-Type":"text/plain; charset=UTF-8",Language:"lv","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"mk",json:{charset:"utf-8",headers:{"Last-Translator":"Сашко Тодоров <sasetodorov@gmail.com>, 2022","Language-Team":"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)","Content-Type":"text/plain; charset=UTF-8",Language:"mk","Plural-Forms":"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nСашко Тодоров <sasetodorov@gmail.com>, 2022\n"},msgstr:["Last-Translator: Сашко Тодоров <sasetodorov@gmail.com>, 2022\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["преостануваат {seconds} секунди"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["преостанува {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["уште неколку секунди"]},Add:{msgid:"Add",msgstr:["Додади"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Прекини прикачување"]},"estimating time left":{msgid:"estimating time left",msgstr:["приближно преостанато време"]},paused:{msgid:"paused",msgstr:["паузирано"]},"Upload files":{msgid:"Upload files",msgstr:["Прикачување датотеки"]}}}}},{locale:"mn",json:{charset:"utf-8",headers:{"Last-Translator":"BATKHUYAG Ganbold, 2023","Language-Team":"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)","Content-Type":"text/plain; charset=UTF-8",Language:"mn","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nBATKHUYAG Ganbold, 2023\n"},msgstr:["Last-Translator: BATKHUYAG Ganbold, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mn\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} секунд үлдсэн"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} үлдсэн"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["хэдхэн секунд үлдсэн"]},Add:{msgid:"Add",msgstr:["Нэмэх"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Илгээлтийг цуцлах"]},"estimating time left":{msgid:"estimating time left",msgstr:["Үлдсэн хугацааг тооцоолж байна"]},paused:{msgid:"paused",msgstr:["түр зогсоосон"]},"Upload files":{msgid:"Upload files",msgstr:["Файл илгээх"]}}}}},{locale:"mr",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)","Content-Type":"text/plain; charset=UTF-8",Language:"mr","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mr\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ms_MY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)","Content-Type":"text/plain; charset=UTF-8",Language:"ms_MY","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ms_MY\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"my",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)","Content-Type":"text/plain; charset=UTF-8",Language:"my","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: my\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nb_NO",json:{charset:"utf-8",headers:{"Last-Translator":"Syvert Fossdal, 2024","Language-Team":"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)","Content-Type":"text/plain; charset=UTF-8",Language:"nb_NO","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nSyvert Fossdal, 2024\n"},msgstr:["Last-Translator: Syvert Fossdal, 2024\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file conflict","{count} filkonflikter"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file conflict in {dirname}","{count} filkonflikter i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekunder igjen"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} igjen"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["noen få sekunder igjen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Avbryt opplastninger"]},Continue:{msgid:"Continue",msgstr:["Fortsett"]},"estimating time left":{msgid:"estimating time left",msgstr:["Estimerer tid igjen"]},"Existing version":{msgid:"Existing version",msgstr:["Gjeldende versjon"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Hvis du velger begge versjoner, vil den kopierte filen få et tall lagt til navnet."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Siste gang redigert ukjent"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny versjon"]},paused:{msgid:"paused",msgstr:["pauset"]},"Preview image":{msgid:"Preview image",msgstr:["Forhåndsvis bilde"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Velg alle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Velg alle eksisterende filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Velg alle nye filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Skip this file","Hopp over {count} filer"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukjent størrelse"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Opplasting avbrutt"]},"Upload files":{msgid:"Upload files",msgstr:["Last opp filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fremdrift, opplasting"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvilke filer vil du beholde?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du må velge minst en versjon av hver fil for å fortsette."]}}}}},{locale:"ne",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)","Content-Type":"text/plain; charset=UTF-8",Language:"ne","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ne\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nl",json:{charset:"utf-8",headers:{"Last-Translator":"Rico <rico-schwab@hotmail.com>, 2023","Language-Team":"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)","Content-Type":"text/plain; charset=UTF-8",Language:"nl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nRico <rico-schwab@hotmail.com>, 2023\n"},msgstr:["Last-Translator: Rico <rico-schwab@hotmail.com>, 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Nog {seconds} seconden"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{seconds} over"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Nog een paar seconden"]},Add:{msgid:"Add",msgstr:["Voeg toe"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Uploads annuleren"]},"estimating time left":{msgid:"estimating time left",msgstr:["Schatting van de resterende tijd"]},paused:{msgid:"paused",msgstr:["Gepauzeerd"]},"Upload files":{msgid:"Upload files",msgstr:["Upload bestanden"]}}}}},{locale:"nn",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)","Content-Type":"text/plain; charset=UTF-8",Language:"nn","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nn_NO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)","Content-Type":"text/plain; charset=UTF-8",Language:"nn_NO","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"oc",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)","Content-Type":"text/plain; charset=UTF-8",Language:"oc","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"pl",json:{charset:"utf-8",headers:{"Last-Translator":"Valdnet, 2024","Language-Team":"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)","Content-Type":"text/plain; charset=UTF-8",Language:"pl","Plural-Forms":"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nM H <haincu@o2.pl>, 2023\nValdnet, 2024\n"},msgstr:["Last-Translator: Valdnet, 2024\nLanguage-Team: Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["konflikt 1 pliku","{count} konfliktów plików","{count} konfliktów plików","{count} konfliktów plików"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} konfliktowy plik w {dirname}","{count} konfliktowych plików w {dirname}","{count} konfliktowych plików w {dirname}","{count} konfliktowych plików w {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Pozostało {seconds} sekund"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Pozostało {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Pozostało kilka sekund"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Anuluj wysyłanie"]},Continue:{msgid:"Continue",msgstr:["Kontynuuj"]},"estimating time left":{msgid:"estimating time left",msgstr:["Szacowanie pozostałego czasu"]},"Existing version":{msgid:"Existing version",msgstr:["Istniejąca wersja"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Jeżeli wybierzesz obie wersje to do nazw skopiowanych plików zostanie dodany numer"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Nieznana data ostatniej modyfikacji"]},New:{msgid:"New",msgstr:["Nowy"]},"New version":{msgid:"New version",msgstr:["Nowa wersja"]},paused:{msgid:"paused",msgstr:["Wstrzymane"]},"Preview image":{msgid:"Preview image",msgstr:["Podgląd obrazu"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Zaznacz wszystkie boxy"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Zaznacz wszystkie istniejące pliki"]},"Select all new files":{msgid:"Select all new files",msgstr:["Zaznacz wszystkie nowe pliki"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Pomiń 1 plik","Pomiń {count} plików","Pomiń {count} plików","Pomiń {count} plików"]},"Unknown size":{msgid:"Unknown size",msgstr:["Nieznany rozmiar"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Anulowano wysyłanie"]},"Upload files":{msgid:"Upload files",msgstr:["Wyślij pliki"]},"Upload progress":{msgid:"Upload progress",msgstr:["Postęp wysyłania"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Które pliki chcesz zachować"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Aby kontynuować, musisz wybrać co najmniej jedną wersję każdego pliku."]}}}}},{locale:"ps",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)","Content-Type":"text/plain; charset=UTF-8",Language:"ps","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ps\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"pt_BR",json:{charset:"utf-8",headers:{"Last-Translator":"Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024","Language-Team":"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_BR","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nLeonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\n"},msgstr:["Last-Translator: Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} arquivos em conflito","{count} arquivos em conflito","{count} arquivos em conflito"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} conflitos de arquivo em {dirname}","{count} conflitos de arquivo em {dirname}","{count} conflitos de arquivo em {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["alguns segundos restantes"]},Cancel:{msgid:"Cancel",msgstr:["Cancelar"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Cancelar a operação inteira"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar uploads"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tempo restante"]},"Existing version":{msgid:"Existing version",msgstr:["Versão existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se você selecionar ambas as versões, o arquivo copiado terá um número adicionado ao seu nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Data da última modificação desconhecida"]},New:{msgid:"New",msgstr:["Novo"]},"New version":{msgid:"New version",msgstr:["Nova versão"]},paused:{msgid:"paused",msgstr:["pausado"]},"Preview image":{msgid:"Preview image",msgstr:["Visualizar imagem"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marque todas as caixas de seleção"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Selecione todos os arquivos existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Selecione todos os novos arquivos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Ignorar {count} arquivos","Ignorar {count} arquivos","Ignorar {count} arquivos"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamanho desconhecido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Envio cancelado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar arquivos"]},"Upload progress":{msgid:"Upload progress",msgstr:["Envio em progresso"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Quando uma pasta é selecionada, quaisquer arquivos dentro dela também serão sobrescritos."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quais arquivos você deseja manter?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Você precisa selecionar pelo menos uma versão de cada arquivo para continuar."]}}}}},{locale:"pt_PT",json:{charset:"utf-8",headers:{"Last-Translator":"Manuela Silva <mmsrs@sky.com>, 2022","Language-Team":"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_PT","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nManuela Silva <mmsrs@sky.com>, 2022\n"},msgstr:["Last-Translator: Manuela Silva <mmsrs@sky.com>, 2022\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["faltam {seconds} segundo(s)"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["faltam {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["faltam uns segundos"]},Add:{msgid:"Add",msgstr:["Adicionar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar envios"]},"estimating time left":{msgid:"estimating time left",msgstr:["tempo em falta estimado"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar ficheiros"]}}}}},{locale:"ro",json:{charset:"utf-8",headers:{"Last-Translator":"Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022","Language-Team":"Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)","Content-Type":"text/plain; charset=UTF-8",Language:"ro","Plural-Forms":"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMădălin Vasiliu <contact@madalinvasiliu.com>, 2022\n"},msgstr:["Last-Translator: Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\nLanguage-Team: Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ro\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secunde rămase"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} rămas"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["câteva secunde rămase"]},Add:{msgid:"Add",msgstr:["Adaugă"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Anulați încărcările"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimarea timpului rămas"]},paused:{msgid:"paused",msgstr:["pus pe pauză"]},"Upload files":{msgid:"Upload files",msgstr:["Încarcă fișiere"]}}}}},{locale:"ru",json:{charset:"utf-8",headers:{"Last-Translator":"Александр, 2023","Language-Team":"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)","Content-Type":"text/plain; charset=UTF-8",Language:"ru","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMax Smith <sevinfolds@gmail.com>, 2023\nАлександр, 2023\n"},msgstr:["Last-Translator: Александр, 2023\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["конфликт {count} файла","конфликт {count} файлов","конфликт {count} файлов","конфликт {count} файлов"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["конфликт {count} файла в {dirname}","конфликт {count} файлов в {dirname}","конфликт {count} файлов в {dirname}","конфликт {count} файлов в {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["осталось {seconds} секунд"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["осталось {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["осталось несколько секунд"]},Add:{msgid:"Add",msgstr:["Добавить"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Отменить загрузки"]},Continue:{msgid:"Continue",msgstr:["Продолжить"]},"estimating time left":{msgid:"estimating time left",msgstr:["оценка оставшегося времени"]},"Existing version":{msgid:"Existing version",msgstr:["Текущая версия"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Если вы выберете обе версии, к имени скопированного файла будет добавлен номер."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Дата последнего изменения неизвестна"]},"New version":{msgid:"New version",msgstr:["Новая версия"]},paused:{msgid:"paused",msgstr:["приостановлено"]},"Preview image":{msgid:"Preview image",msgstr:["Предварительный просмотр"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Установить все флажки"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Выбрать все существующие файлы"]},"Select all new files":{msgid:"Select all new files",msgstr:["Выбрать все новые файлы"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Пропустить файл","Пропустить {count} файла","Пропустить {count} файлов","Пропустить {count} файлов"]},"Unknown size":{msgid:"Unknown size",msgstr:["Неизвестный размер"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Загрузка отменена"]},"Upload files":{msgid:"Upload files",msgstr:["Загрузка файлов"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Какие файлы вы хотите сохранить?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Для продолжения вам нужно выбрать по крайней мере одну версию каждого файла."]}}}}},{locale:"ru_RU",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)","Content-Type":"text/plain; charset=UTF-8",Language:"ru_RU","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru_RU\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sc",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)","Content-Type":"text/plain; charset=UTF-8",Language:"sc","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sc\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"si",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)","Content-Type":"text/plain; charset=UTF-8",Language:"si","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"si_LK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)","Content-Type":"text/plain; charset=UTF-8",Language:"si_LK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sk_SK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)","Content-Type":"text/plain; charset=UTF-8",Language:"sk_SK","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sl",json:{charset:"utf-8",headers:{"Last-Translator":"Matej Urbančič <>, 2022","Language-Team":"Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)","Content-Type":"text/plain; charset=UTF-8",Language:"sl","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMatej Urbančič <>, 2022\n"},msgstr:["Last-Translator: Matej Urbančič <>, 2022\nLanguage-Team: Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["še {seconds} sekund"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["še {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["še nekaj sekund"]},Add:{msgid:"Add",msgstr:["Dodaj"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Prekliči pošiljanje"]},"estimating time left":{msgid:"estimating time left",msgstr:["ocenjen čas do konca"]},paused:{msgid:"paused",msgstr:["v premoru"]},"Upload files":{msgid:"Upload files",msgstr:["Pošlji datoteke"]}}}}},{locale:"sl_SI",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)","Content-Type":"text/plain; charset=UTF-8",Language:"sl_SI","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl_SI\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sq",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)","Content-Type":"text/plain; charset=UTF-8",Language:"sq","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sq\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sr",json:{charset:"utf-8",headers:{"Last-Translator":"Иван Пешић, 2023","Language-Team":"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)","Content-Type":"text/plain; charset=UTF-8",Language:"sr","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nИван Пешић, 2023\n"},msgstr:["Last-Translator: Иван Пешић, 2023\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} фајл конфликт","{count} фајл конфликта","{count} фајл конфликта"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} фајл конфликт у {dirname}","{count} фајл конфликта у {dirname}","{count} фајл конфликта у {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["преостало је {seconds} секунди"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} преостало"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["преостало је неколико секунди"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Обустави отпремања"]},Continue:{msgid:"Continue",msgstr:["Настави"]},"estimating time left":{msgid:"estimating time left",msgstr:["процена преосталог времена"]},"Existing version":{msgid:"Existing version",msgstr:["Постојећа верзија"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Ако изаберете обе верзије, на име копираног фајла ће се додати број."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Није познат датум последње измене"]},New:{msgid:"New",msgstr:["Ново"]},"New version":{msgid:"New version",msgstr:["Нова верзија"]},paused:{msgid:"paused",msgstr:["паузирано"]},"Preview image":{msgid:"Preview image",msgstr:["Слика прегледа"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Штиклирај сва поља за штиклирање"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Изабери све постојеће фајлове"]},"Select all new files":{msgid:"Select all new files",msgstr:["Изабери све нове фајлове"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Прескочи овај фајл","Прескочи {count} фајла","Прескочи {count} фајлова"]},"Unknown size":{msgid:"Unknown size",msgstr:["Непозната величина"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Отпремање је отказано"]},"Upload files":{msgid:"Upload files",msgstr:["Отпреми фајлове"]},"Upload progress":{msgid:"Upload progress",msgstr:["Напредак отпремања"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Које фајлове желите да задржите?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Морате да изаберете барем једну верзију сваког фајла да наставите."]}}}}},{locale:"sr@latin",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)","Content-Type":"text/plain; charset=UTF-8",Language:"sr@latin","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr@latin\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sv",json:{charset:"utf-8",headers:{"Last-Translator":"Magnus Höglund, 2024","Language-Team":"Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)","Content-Type":"text/plain; charset=UTF-8",Language:"sv","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMagnus Höglund, 2024\n"},msgstr:["Last-Translator: Magnus Höglund, 2024\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} filkonflikt","{count} filkonflikter"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} filkonflikt i {dirname}","{count} filkonflikter i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekunder kvarstår"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} kvarstår"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["några sekunder kvar"]},Cancel:{msgid:"Cancel",msgstr:["Avbryt"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Avbryt hela operationen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Avbryt uppladdningar"]},Continue:{msgid:"Continue",msgstr:["Fortsätt"]},"estimating time left":{msgid:"estimating time left",msgstr:["uppskattar kvarstående tid"]},"Existing version":{msgid:"Existing version",msgstr:["Nuvarande version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Om du väljer båda versionerna kommer den kopierade filen att få ett nummer tillagt  i namnet."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Senaste ändringsdatum okänt"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny version"]},paused:{msgid:"paused",msgstr:["pausad"]},"Preview image":{msgid:"Preview image",msgstr:["Förhandsgranska bild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Markera alla kryssrutor"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Välj alla befintliga filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Välj alla nya filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Hoppa över denna fil","Hoppa över {count} filer"]},"Unknown size":{msgid:"Unknown size",msgstr:["Okänd storlek"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Uppladdningen avbröts"]},"Upload files":{msgid:"Upload files",msgstr:["Ladda upp filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Uppladdningsförlopp"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["När en inkommande mapp väljs skrivs även alla konfliktande filer i den över."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Vilka filer vill du behålla?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du måste välja minst en version av varje fil för att fortsätta."]}}}}},{locale:"sw",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)","Content-Type":"text/plain; charset=UTF-8",Language:"sw","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sw\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ta",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)","Content-Type":"text/plain; charset=UTF-8",Language:"ta","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ta_LK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)","Content-Type":"text/plain; charset=UTF-8",Language:"ta_LK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"th",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Thai (https://www.transifex.com/nextcloud/teams/64236/th/)","Content-Type":"text/plain; charset=UTF-8",Language:"th","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"th_TH",json:{charset:"utf-8",headers:{"Last-Translator":"Phongpanot Phairat <ppnplus@protonmail.com>, 2022","Language-Team":"Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)","Content-Type":"text/plain; charset=UTF-8",Language:"th_TH","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPhongpanot Phairat <ppnplus@protonmail.com>, 2022\n"},msgstr:["Last-Translator: Phongpanot Phairat <ppnplus@protonmail.com>, 2022\nLanguage-Team: Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th_TH\nPlural-Forms: nplurals=1; plural=0;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["เหลืออีก {seconds} วินาที"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["เหลืออีก {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["เหลืออีกไม่กี่วินาที"]},Add:{msgid:"Add",msgstr:["เพิ่ม"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["ยกเลิกการอัปโหลด"]},"estimating time left":{msgid:"estimating time left",msgstr:["กำลังคำนวณเวลาที่เหลือ"]},paused:{msgid:"paused",msgstr:["หยุดชั่วคราว"]},"Upload files":{msgid:"Upload files",msgstr:["อัปโหลดไฟล์"]}}}}},{locale:"tk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)","Content-Type":"text/plain; charset=UTF-8",Language:"tk","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tk\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"tr",json:{charset:"utf-8",headers:{"Last-Translator":"Kaya Zeren <kayazeren@gmail.com>, 2024","Language-Team":"Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)","Content-Type":"text/plain; charset=UTF-8",Language:"tr","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nKaya Zeren <kayazeren@gmail.com>, 2024\n"},msgstr:["Last-Translator: Kaya Zeren <kayazeren@gmail.com>, 2024\nLanguage-Team: Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} dosya çakışması var","{count} dosya çakışması var"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} klasöründe {count} dosya çakışması var","{dirname} klasöründe {count} dosya çakışması var"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} saniye kaldı"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} kaldı"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["bir kaç saniye kaldı"]},Cancel:{msgid:"Cancel",msgstr:["İptal"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Tüm işlemi iptal et"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Yüklemeleri iptal et"]},Continue:{msgid:"Continue",msgstr:["İlerle"]},"estimating time left":{msgid:"estimating time left",msgstr:["öngörülen kalan süre"]},"Existing version":{msgid:"Existing version",msgstr:["Var olan sürüm"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["İki sürümü de seçerseniz, kopyalanan dosyanın adına bir sayı eklenir."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Son değiştirilme tarihi bilinmiyor"]},New:{msgid:"New",msgstr:["Yeni"]},"New version":{msgid:"New version",msgstr:["Yeni sürüm"]},paused:{msgid:"paused",msgstr:["duraklatıldı"]},"Preview image":{msgid:"Preview image",msgstr:["Görsel ön izlemesi"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Tüm kutuları işaretle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Tüm var olan dosyaları seç"]},"Select all new files":{msgid:"Select all new files",msgstr:["Tüm yeni dosyaları seç"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Bu dosyayı atla","{count} dosyayı atla"]},"Unknown size":{msgid:"Unknown size",msgstr:["Boyut bilinmiyor"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Yükleme iptal edildi"]},"Upload files":{msgid:"Upload files",msgstr:["Dosyaları yükle"]},"Upload progress":{msgid:"Upload progress",msgstr:["Yükleme ilerlemesi"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Bir gelen klasör seçildiğinde, içindeki çakışan dosyaların da üzerine yazılır."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hangi dosyaları tutmak istiyorsunuz?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["İlerlemek için her dosyanın en az bir sürümünü seçmelisiniz."]}}}}},{locale:"ug",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)","Content-Type":"text/plain; charset=UTF-8",Language:"ug","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ug\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"uk",json:{charset:"utf-8",headers:{"Last-Translator":"O St <oleksiy.stasevych@gmail.com>, 2024","Language-Team":"Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)","Content-Type":"text/plain; charset=UTF-8",Language:"uk","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nO St <oleksiy.stasevych@gmail.com>, 2024\n"},msgstr:["Last-Translator: O St <oleksiy.stasevych@gmail.com>, 2024\nLanguage-Team: Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} конфліктний файл","{count} конфліктних файли","{count} конфліктних файлів","{count} конфліктних файлів"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} конфліктний файл у каталозі {dirname}","{count} конфліктних файли у каталозі {dirname}","{count} конфліктних файлів у каталозі {dirname}","{count} конфліктних файлів у каталозі {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Залишилося {seconds} секунд"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Залишилося {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["залишилося кілька секунд"]},Cancel:{msgid:"Cancel",msgstr:["Скасувати"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Скасувати операцію повністю"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Скасувати завантаження"]},Continue:{msgid:"Continue",msgstr:["Продовжити"]},"estimating time left":{msgid:"estimating time left",msgstr:["оцінка часу, що залишився"]},"Existing version":{msgid:"Existing version",msgstr:["Присутня версія"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Якщо ви виберете обидві версії, то буде створено копію файлу, до назви якої буде додано цифру."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Дата останньої зміни невідома"]},New:{msgid:"New",msgstr:["Нове"]},"New version":{msgid:"New version",msgstr:["Нова версія"]},paused:{msgid:"paused",msgstr:["призупинено"]},"Preview image":{msgid:"Preview image",msgstr:["Попередній перегляд"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Вибрати все"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Вибрати усі присутні файли"]},"Select all new files":{msgid:"Select all new files",msgstr:["Вибрати усі нові файли"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Пропустити файл","Пропустити {count} файли","Пропустити {count} файлів","Пропустити {count} файлів"]},"Unknown size":{msgid:"Unknown size",msgstr:["Невідомий розмір"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Завантаження скасовано"]},"Upload files":{msgid:"Upload files",msgstr:["Завантажити файли"]},"Upload progress":{msgid:"Upload progress",msgstr:["Поступ завантаження"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Усі конфліктні файли у вибраному каталозі призначення буде перезаписано поверх."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Які файли залишити?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Для продовження потрібно вибрати принаймні одну версію для кожного файлу."]}}}}},{locale:"ur_PK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)","Content-Type":"text/plain; charset=UTF-8",Language:"ur_PK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ur_PK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"uz",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)","Content-Type":"text/plain; charset=UTF-8",Language:"uz","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uz\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"vi",json:{charset:"utf-8",headers:{"Last-Translator":"Tung DangQuang, 2023","Language-Team":"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)","Content-Type":"text/plain; charset=UTF-8",Language:"vi","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nTung DangQuang, 2023\n"},msgstr:["Last-Translator: Tung DangQuang, 2023\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: vi\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Tập tin xung đột"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} tập tin lỗi trong {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Còn {second} giây"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Còn lại {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Còn lại một vài giây"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Huỷ tải lên"]},Continue:{msgid:"Continue",msgstr:["Tiếp Tục"]},"estimating time left":{msgid:"estimating time left",msgstr:["Thời gian còn lại dự kiến"]},"Existing version":{msgid:"Existing version",msgstr:["Phiên Bản Hiện Tại"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Nếu bạn chọn cả hai phiên bản, tệp được sao chép sẽ có thêm một số vào tên của nó."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Ngày sửa dổi lần cuối không xác định"]},New:{msgid:"New",msgstr:["Tạo Mới"]},"New version":{msgid:"New version",msgstr:["Phiên Bản Mới"]},paused:{msgid:"paused",msgstr:["đã tạm dừng"]},"Preview image":{msgid:"Preview image",msgstr:["Xem Trước Ảnh"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Chọn tất cả hộp checkbox"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Chọn tất cả các tập tin có sẵn"]},"Select all new files":{msgid:"Select all new files",msgstr:["Chọn tất cả các tập tin mới"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Bỏ Qua {count} tập tin"]},"Unknown size":{msgid:"Unknown size",msgstr:["Không rõ dung lượng"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Dừng Tải Lên"]},"Upload files":{msgid:"Upload files",msgstr:["Tập tin tải lên"]},"Upload progress":{msgid:"Upload progress",msgstr:["Đang Tải Lên"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Bạn muốn giữ tập tin nào?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Bạn cần chọn ít nhất một phiên bản tập tin mới có thể tiếp tục"]}}}}},{locale:"zh_CN",json:{charset:"utf-8",headers:{"Last-Translator":"Hongbo Chen, 2023","Language-Team":"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_CN","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nHongbo Chen, 2023\n"},msgstr:["Last-Translator: Hongbo Chen, 2023\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count}文件冲突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["在{dirname}目录下有{count}个文件冲突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩余 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩余 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["还剩几秒"]},Add:{msgid:"Add",msgstr:["添加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上传"]},Continue:{msgid:"Continue",msgstr:["继续"]},"estimating time left":{msgid:"estimating time left",msgstr:["估计剩余时间"]},"Existing version":{msgid:"Existing version",msgstr:["版本已存在"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["如果选择所有的版本,新增版本的文件名为原文件名加数字"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["文件最后修改日期未知"]},"New version":{msgid:"New version",msgstr:["新版本"]},paused:{msgid:"paused",msgstr:["已暂停"]},"Preview image":{msgid:"Preview image",msgstr:["图片预览"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["选择所有的选择框"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["选择所有存在的文件"]},"Select all new files":{msgid:"Select all new files",msgstr:["选择所有的新文件"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["跳过{count}个文件"]},"Unknown size":{msgid:"Unknown size",msgstr:["文件大小未知"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["取消上传"]},"Upload files":{msgid:"Upload files",msgstr:["上传文件"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["你要保留哪些文件?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["每个文件至少选择一个版本"]}}}}},{locale:"zh_HK",json:{charset:"utf-8",headers:{"Last-Translator":"Café Tango, 2023","Language-Team":"Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_HK","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nCafé Tango, 2023\n"},msgstr:["Last-Translator: Café Tango, 2023\nLanguage-Team: Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_HK\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} 個檔案衝突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} 中有 {count} 個檔案衝突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩餘 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩餘 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["還剩幾秒"]},Add:{msgid:"Add",msgstr:["添加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上傳"]},Continue:{msgid:"Continue",msgstr:["繼續"]},"estimating time left":{msgid:"estimating time left",msgstr:["估計剩餘時間"]},"Existing version":{msgid:"Existing version",msgstr:["既有版本"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["若您選取兩個版本,複製的檔案的名稱將會新增編號。"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["最後修改日期不詳"]},"New version":{msgid:"New version",msgstr:["新版本 "]},paused:{msgid:"paused",msgstr:["已暫停"]},"Preview image":{msgid:"Preview image",msgstr:["預覽圖片"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["選取所有核取方塊"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["選取所有既有檔案"]},"Select all new files":{msgid:"Select all new files",msgstr:["選取所有新檔案"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["略過 {count} 個檔案"]},"Unknown size":{msgid:"Unknown size",msgstr:["大小不詳"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["已取消上傳"]},"Upload files":{msgid:"Upload files",msgstr:["上傳檔案"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["您想保留哪些檔案?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["您必須為每個檔案都至少選取一個版本以繼續。"]}}}}},{locale:"zh_TW",json:{charset:"utf-8",headers:{"Last-Translator":"黃柏諺 <s8321414@gmail.com>, 2024","Language-Team":"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_TW","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\n黃柏諺 <s8321414@gmail.com>, 2024\n"},msgstr:["Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2024\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} 個檔案衝突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} 中有 {count} 個檔案衝突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩餘 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩餘 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["還剩幾秒"]},Cancel:{msgid:"Cancel",msgstr:["取消"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["取消整個操作"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上傳"]},Continue:{msgid:"Continue",msgstr:["繼續"]},"estimating time left":{msgid:"estimating time left",msgstr:["估計剩餘時間"]},"Existing version":{msgid:"Existing version",msgstr:["既有版本"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["若您選取兩個版本,複製的檔案的名稱將會新增編號。"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["最後修改日期未知"]},New:{msgid:"New",msgstr:["新增"]},"New version":{msgid:"New version",msgstr:["新版本"]},paused:{msgid:"paused",msgstr:["已暫停"]},"Preview image":{msgid:"Preview image",msgstr:["預覽圖片"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["選取所有核取方塊"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["選取所有既有檔案"]},"Select all new files":{msgid:"Select all new files",msgstr:["選取所有新檔案"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["略過 {count} 檔案"]},"Unknown size":{msgid:"Unknown size",msgstr:["未知大小"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["已取消上傳"]},"Upload files":{msgid:"Upload files",msgstr:["上傳檔案"]},"Upload progress":{msgid:"Upload progress",msgstr:["上傳進度"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["選取傳入資料夾後,其中任何的衝突檔案都會被覆寫。"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["您想保留哪些檔案?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["您必須為每個檔案都至少選取一個版本以繼續。"]}}}}}].map((t=>nt.addTranslation(t.locale,t.json)));const st=nt.build(),it=st.ngettext.bind(st),rt=st.gettext.bind(st),at=U.Ay.extend({name:"UploadPicker",components:{Cancel:Z,NcActionButton:B.A,NcActions:R.A,NcButton:j.A,NcIconSvgWrapper:M.A,NcProgressBar:z.A,Plus:tt,Upload:et},props:{accept:{type:Array,default:null},disabled:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},destination:{type:y.vd,default:void 0},content:{type:Array,default:()=>[]},forbiddenCharacters:{type:Array,default:()=>[]}},data:()=>({addLabel:rt("New"),cancelLabel:rt("Cancel uploads"),uploadLabel:rt("Upload files"),progressLabel:rt("Upload progress"),progressTimeId:`nc-uploader-progress-${Math.random().toString(36).slice(7)}`,eta:null,timeLeft:"",newFileMenuEntries:[],uploadManager:ct()}),computed:{totalQueueSize(){return this.uploadManager.info?.size||0},uploadedQueueSize(){return this.uploadManager.info?.progress||0},progress(){return Math.round(this.uploadedQueueSize/this.totalQueueSize*100)||0},queue(){return this.uploadManager.queue},hasFailure(){return 0!==this.queue?.filter((t=>t.status===W.FAILED)).length},isUploading(){return this.queue?.length>0},isAssembling(){return 0!==this.queue?.filter((t=>t.status===W.ASSEMBLING)).length},isPaused(){return this.uploadManager.info?.status===Q.PAUSED},buttonName(){if(!this.isUploading)return this.addLabel}},watch:{destination(t){this.setDestination(t)},totalQueueSize(t){this.eta=O({min:0,max:t}),this.updateStatus()},uploadedQueueSize(t){this.eta?.report?.(t),this.updateStatus()},isPaused(t){t?this.$emit("paused",this.queue):this.$emit("resumed",this.queue)}},beforeMount(){this.destination&&this.setDestination(this.destination),this.uploadManager.addNotifier(this.onUploadCompletion),Y.debug("UploadPicker initialised")},methods:{onClick(){this.$refs.input.click()},async onPick(){let t=[...this.$refs.input.files];if(dt(t,this.content)){const e=t.filter((t=>this.content.find((e=>e.basename===t.name)))).filter(Boolean),n=t.filter((t=>!e.includes(t)));try{const{selected:s,renamed:i}=await ut(this.destination.basename,e,this.content);t=[...n,...s,...i]}catch{return void(0,D.Qg)(rt("Upload cancelled"))}}t.forEach((t=>{const e=(this.forbiddenCharacters||[]).find((e=>t.name.includes(e)));e?(0,D.Qg)(rt(`"${e}" is not allowed inside a file name.`)):this.uploadManager.upload(t.name,t).catch((()=>{}))})),this.$refs.form.reset()},onCancel(){this.uploadManager.queue.forEach((t=>{t.cancel()})),this.$refs.form.reset()},updateStatus(){if(this.isPaused)return void(this.timeLeft=rt("paused"));const t=Math.round(this.eta.estimate());if(t!==1/0)if(t<10)this.timeLeft=rt("a few seconds left");else if(t>60){const e=new Date(0);e.setSeconds(t);const n=e.toISOString().slice(11,19);this.timeLeft=rt("{time} left",{time:n})}else this.timeLeft=rt("{seconds} seconds left",{seconds:t});else this.timeLeft=rt("estimating time left")},setDestination(t){this.destination?(this.uploadManager.destination=t,this.newFileMenuEntries=(0,y.m1)(t)):Y.debug("Invalid destination")},onUploadCompletion(t){t.status===W.FAILED?this.$emit("failed",t):this.$emit("uploaded",t)}}}),ot=J(at,(function(){var t=this,e=t._self._c;return t._self._setupProxy,t.destination?e("form",{ref:"form",staticClass:"upload-picker",class:{"upload-picker--uploading":t.isUploading,"upload-picker--paused":t.isPaused},attrs:{"data-cy-upload-picker":""}},[t.newFileMenuEntries&&0===t.newFileMenuEntries.length?e("NcButton",{attrs:{disabled:t.disabled,"data-cy-upload-picker-add":"",type:"secondary"},on:{click:t.onClick},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Plus",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,2954875042)},[t._v(" "+t._s(t.buttonName)+" ")]):e("NcActions",{attrs:{"menu-name":t.buttonName,"menu-title":t.addLabel,type:"secondary"},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Plus",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,2954875042)},[e("NcActionButton",{attrs:{"data-cy-upload-picker-add":"","close-after-click":!0},on:{click:t.onClick},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Upload",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,3606034491)},[t._v(" "+t._s(t.uploadLabel)+" ")]),t._l(t.newFileMenuEntries,(function(n){return e("NcActionButton",{key:n.id,staticClass:"upload-picker__menu-entry",attrs:{icon:n.iconClass,"close-after-click":!0},on:{click:function(e){return n.handler(t.destination,t.content)}},scopedSlots:t._u([n.iconSvgInline?{key:"icon",fn:function(){return[e("NcIconSvgWrapper",{attrs:{svg:n.iconSvgInline}})]},proxy:!0}:null],null,!0)},[t._v(" "+t._s(n.displayName)+" ")])}))],2),e("div",{directives:[{name:"show",rawName:"v-show",value:t.isUploading,expression:"isUploading"}],staticClass:"upload-picker__progress"},[e("NcProgressBar",{attrs:{"aria-label":t.progressLabel,"aria-describedby":t.progressTimeId,error:t.hasFailure,value:t.progress,size:"medium"}}),e("p",{attrs:{id:t.progressTimeId}},[t._v(" "+t._s(t.timeLeft)+" ")])],1),t.isUploading?e("NcButton",{staticClass:"upload-picker__cancel",attrs:{type:"tertiary","aria-label":t.cancelLabel,"data-cy-upload-picker-cancel":""},on:{click:t.onCancel},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Cancel",{attrs:{title:"",size:20}})]},proxy:!0}],null,!1,4076886712)}):t._e(),e("input",{directives:[{name:"show",rawName:"v-show",value:!1,expression:"false"}],ref:"input",attrs:{type:"file",accept:t.accept?.join?.(", "),multiple:t.multiple,"data-cy-upload-picker-input":""},on:{change:t.onPick}})],1):t._e()}),[],!1,null,"eca9500a",null,null).exports;let lt=null;function ct(){const t=null!==document.querySelector('input[name="isPublic"][value="1"]');return lt instanceof X||(lt=new X(t)),lt}async function ut(t,e,s){const i=(0,U.$V)((()=>Promise.all([n.e(4208),n.e(6075)]).then(n.bind(n,56075))));return new Promise(((n,r)=>{const a=new U.Ay({name:"ConflictPickerRoot",render:o=>o(i,{props:{dirname:t,conflicts:e,content:s},on:{submit(t){n(t),a.$destroy(),a.$el?.parentNode?.removeChild(a.$el)},cancel(t){r(t??new Error("Canceled")),a.$destroy(),a.$el?.parentNode?.removeChild(a.$el)}}})});a.$mount(),document.body.appendChild(a.$el)}))}function dt(t,e){const n=e.map((t=>t.basename));return t.filter((t=>{const e=t instanceof File?t.name:t.basename;return-1!==n.indexOf(e)})).length>0}},53110:(t,e,n)=>{"use strict";n.d(e,{k3:()=>a,pe:()=>r});var s=n(28893);const{Axios:i,AxiosError:r,CanceledError:a,isCancel:o,CancelToken:l,VERSION:c,all:u,Cancel:d,isAxiosError:m,spread:p,toFormData:f,AxiosHeaders:h,HttpStatusCode:g,formToJSON:v,getAdapter:w,mergeConfig:y}=s.A}},r={};function a(t){var e=r[t];if(void 0!==e)return e.exports;var n=r[t]={id:t,loaded:!1,exports:{}};return i[t].call(n.exports,n,n.exports,a),n.loaded=!0,n.exports}a.m=i,e=[],a.O=(t,n,s,i)=>{if(!n){var r=1/0;for(u=0;u<e.length;u++){n=e[u][0],s=e[u][1],i=e[u][2];for(var o=!0,l=0;l<n.length;l++)(!1&i||r>=i)&&Object.keys(a.O).every((t=>a.O[t](n[l])))?n.splice(l--,1):(o=!1,i<r&&(r=i));if(o){e.splice(u--,1);var c=s();void 0!==c&&(t=c)}}return t}i=i||0;for(var u=e.length;u>0&&e[u-1][2]>i;u--)e[u]=e[u-1];e[u]=[n,s,i]},a.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return a.d(e,{a:e}),e},a.d=(t,e)=>{for(var n in e)a.o(e,n)&&!a.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},a.f={},a.e=t=>Promise.all(Object.keys(a.f).reduce(((e,n)=>(a.f[n](t,e),e)),[])),a.u=t=>t+"-"+t+".js?v="+{6075:"b0265ee919d9196a6424",7560:"8bb59db6d769c5865c25",8618:"d30d39583cd1936d2676"}[t],a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),a.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n={},s="nextcloud:",a.l=(t,e,i,r)=>{if(n[t])n[t].push(e);else{var o,l;if(void 0!==i)for(var c=document.getElementsByTagName("script"),u=0;u<c.length;u++){var d=c[u];if(d.getAttribute("src")==t||d.getAttribute("data-webpack")==s+i){o=d;break}}o||(l=!0,(o=document.createElement("script")).charset="utf-8",o.timeout=120,a.nc&&o.setAttribute("nonce",a.nc),o.setAttribute("data-webpack",s+i),o.src=t),n[t]=[e];var m=(e,s)=>{o.onerror=o.onload=null,clearTimeout(p);var i=n[t];if(delete n[t],o.parentNode&&o.parentNode.removeChild(o),i&&i.forEach((t=>t(s))),e)return e(s)},p=setTimeout(m.bind(null,void 0,{type:"timeout",target:o}),12e4);o.onerror=m.bind(null,o.onerror),o.onload=m.bind(null,o.onload),l&&document.head.appendChild(o)}},a.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},a.nmd=t=>(t.paths=[],t.children||(t.children=[]),t),a.j=2882,(()=>{var t;a.g.importScripts&&(t=a.g.location+"");var e=a.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var n=e.getElementsByTagName("script");if(n.length)for(var s=n.length-1;s>-1&&(!t||!/^http(s?):/.test(t));)t=n[s--].src}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),a.p=t})(),(()=>{a.b=document.baseURI||self.location.href;var t={2882:0};a.f.j=(e,n)=>{var s=a.o(t,e)?t[e]:void 0;if(0!==s)if(s)n.push(s[2]);else{var i=new Promise(((n,i)=>s=t[e]=[n,i]));n.push(s[2]=i);var r=a.p+a.u(e),o=new Error;a.l(r,(n=>{if(a.o(t,e)&&(0!==(s=t[e])&&(t[e]=void 0),s)){var i=n&&("load"===n.type?"missing":n.type),r=n&&n.target&&n.target.src;o.message="Loading chunk "+e+" failed.\n("+i+": "+r+")",o.name="ChunkLoadError",o.type=i,o.request=r,s[1](o)}}),"chunk-"+e,e)}},a.O.j=e=>0===t[e];var e=(e,n)=>{var s,i,r=n[0],o=n[1],l=n[2],c=0;if(r.some((e=>0!==t[e]))){for(s in o)a.o(o,s)&&(a.m[s]=o[s]);if(l)var u=l(a)}for(e&&e(n);c<r.length;c++)i=r[c],a.o(t,i)&&t[i]&&t[i][0](),t[i]=0;return a.O(u)},n=self.webpackChunknextcloud=self.webpackChunknextcloud||[];n.forEach(e.bind(null,0)),n.push=e.bind(null,n.push.bind(n))})(),a.nc=void 0;var o=a.O(void 0,[4208],(()=>a(34898)));o=a.O(o)})();
-//# sourceMappingURL=files-main.js.map?v=addef92475a9b35bc34d
\ No newline at end of file
+(()=>{var e,n,s,i={9052:t=>{"use strict";var e=Object.prototype.hasOwnProperty,n="~";function s(){}function i(t,e,n){this.fn=t,this.context=e,this.once=n||!1}function r(t,e,s,r,o){if("function"!=typeof s)throw new TypeError("The listener must be a function");var a=new i(s,r||t,o),l=n?n+e:e;return t._events[l]?t._events[l].fn?t._events[l]=[t._events[l],a]:t._events[l].push(a):(t._events[l]=a,t._eventsCount++),t}function o(t,e){0==--t._eventsCount?t._events=new s:delete t._events[e]}function a(){this._events=new s,this._eventsCount=0}Object.create&&(s.prototype=Object.create(null),(new s).__proto__||(n=!1)),a.prototype.eventNames=function(){var t,s,i=[];if(0===this._eventsCount)return i;for(s in t=this._events)e.call(t,s)&&i.push(n?s.slice(1):s);return Object.getOwnPropertySymbols?i.concat(Object.getOwnPropertySymbols(t)):i},a.prototype.listeners=function(t){var e=n?n+t:t,s=this._events[e];if(!s)return[];if(s.fn)return[s.fn];for(var i=0,r=s.length,o=new Array(r);i<r;i++)o[i]=s[i].fn;return o},a.prototype.listenerCount=function(t){var e=n?n+t:t,s=this._events[e];return s?s.fn?1:s.length:0},a.prototype.emit=function(t,e,s,i,r,o){var a=n?n+t:t;if(!this._events[a])return!1;var l,c,u=this._events[a],d=arguments.length;if(u.fn){switch(u.once&&this.removeListener(t,u.fn,void 0,!0),d){case 1:return u.fn.call(u.context),!0;case 2:return u.fn.call(u.context,e),!0;case 3:return u.fn.call(u.context,e,s),!0;case 4:return u.fn.call(u.context,e,s,i),!0;case 5:return u.fn.call(u.context,e,s,i,r),!0;case 6:return u.fn.call(u.context,e,s,i,r,o),!0}for(c=1,l=new Array(d-1);c<d;c++)l[c-1]=arguments[c];u.fn.apply(u.context,l)}else{var m,p=u.length;for(c=0;c<p;c++)switch(u[c].once&&this.removeListener(t,u[c].fn,void 0,!0),d){case 1:u[c].fn.call(u[c].context);break;case 2:u[c].fn.call(u[c].context,e);break;case 3:u[c].fn.call(u[c].context,e,s);break;case 4:u[c].fn.call(u[c].context,e,s,i);break;default:if(!l)for(m=1,l=new Array(d-1);m<d;m++)l[m-1]=arguments[m];u[c].fn.apply(u[c].context,l)}}return!0},a.prototype.on=function(t,e,n){return r(this,t,e,n,!1)},a.prototype.once=function(t,e,n){return r(this,t,e,n,!0)},a.prototype.removeListener=function(t,e,s,i){var r=n?n+t:t;if(!this._events[r])return this;if(!e)return o(this,r),this;var a=this._events[r];if(a.fn)a.fn!==e||i&&!a.once||s&&a.context!==s||o(this,r);else{for(var l=0,c=[],u=a.length;l<u;l++)(a[l].fn!==e||i&&!a[l].once||s&&a[l].context!==s)&&c.push(a[l]);c.length?this._events[r]=1===c.length?c[0]:c:o(this,r)}return this},a.prototype.removeAllListeners=function(t){var e;return t?(e=n?n+t:t,this._events[e]&&o(this,e)):(this._events=new s,this._eventsCount=0),this},a.prototype.off=a.prototype.removeListener,a.prototype.addListener=a.prototype.on,a.prefixed=n,a.EventEmitter=a,t.exports=a},88425:(e,n,s)=>{"use strict";var i={};s.r(i),s.d(i,{exclude:()=>I,extract:()=>k,parse:()=>E,parseUrl:()=>N,pick:()=>P,stringify:()=>L,stringifyUrl:()=>F});var r=s(65899),o=s(35810),a=s(21777),l=s(85471);const c=(0,r.Ey)();var u=s(63814);const d="%[a-f0-9]{2}",m=new RegExp("("+d+")|([^%]+?)","gi"),p=new RegExp("("+d+")+","gi");function f(t,e){try{return[decodeURIComponent(t.join(""))]}catch{}if(1===t.length)return t;e=e||1;const n=t.slice(0,e),s=t.slice(e);return Array.prototype.concat.call([],f(n),f(s))}function h(t){try{return decodeURIComponent(t)}catch{let e=t.match(m)||[];for(let n=1;n<e.length;n++)e=(t=f(e,n).join("")).match(m)||[];return t}}function g(t,e){if("string"!=typeof t||"string"!=typeof e)throw new TypeError("Expected the arguments to be of type `string`");if(""===t||""===e)return[];const n=t.indexOf(e);return-1===n?[]:[t.slice(0,n),t.slice(n+e.length)]}function v(t,e){const n={};if(Array.isArray(e))for(const s of e){const e=Object.getOwnPropertyDescriptor(t,s);e?.enumerable&&Object.defineProperty(n,s,e)}else for(const s of Reflect.ownKeys(t)){const i=Object.getOwnPropertyDescriptor(t,s);i.enumerable&&e(s,t[s],t)&&Object.defineProperty(n,s,i)}return n}const w=t=>null==t,y=t=>encodeURIComponent(t).replaceAll(/[!'()*]/g,(t=>`%${t.charCodeAt(0).toString(16).toUpperCase()}`)),A=Symbol("encodeFragmentIdentifier");function b(t){if("string"!=typeof t||1!==t.length)throw new TypeError("arrayFormatSeparator must be single character string")}function _(t,e){return e.encode?e.strict?y(t):encodeURIComponent(t):t}function C(t,e){return e.decode?function(t){if("string"!=typeof t)throw new TypeError("Expected `encodedURI` to be of type `string`, got `"+typeof t+"`");try{return decodeURIComponent(t)}catch{return function(t){const e={"%FE%FF":"��","%FF%FE":"��"};let n=p.exec(t);for(;n;){try{e[n[0]]=decodeURIComponent(n[0])}catch{const t=h(n[0]);t!==n[0]&&(e[n[0]]=t)}n=p.exec(t)}e["%C2"]="�";const s=Object.keys(e);for(const n of s)t=t.replace(new RegExp(n,"g"),e[n]);return t}(t)}}(t):t}function x(t){return Array.isArray(t)?t.sort():"object"==typeof t?x(Object.keys(t)).sort(((t,e)=>Number(t)-Number(e))).map((e=>t[e])):t}function T(t){const e=t.indexOf("#");return-1!==e&&(t=t.slice(0,e)),t}function S(t,e){return e.parseNumbers&&!Number.isNaN(Number(t))&&"string"==typeof t&&""!==t.trim()?t=Number(t):!e.parseBooleans||null===t||"true"!==t.toLowerCase()&&"false"!==t.toLowerCase()||(t="true"===t.toLowerCase()),t}function k(t){const e=(t=T(t)).indexOf("?");return-1===e?"":t.slice(e+1)}function E(t,e){b((e={decode:!0,sort:!0,arrayFormat:"none",arrayFormatSeparator:",",parseNumbers:!1,parseBooleans:!1,...e}).arrayFormatSeparator);const n=function(t){let e;switch(t.arrayFormat){case"index":return(t,n,s)=>{e=/\[(\d*)]$/.exec(t),t=t.replace(/\[\d*]$/,""),e?(void 0===s[t]&&(s[t]={}),s[t][e[1]]=n):s[t]=n};case"bracket":return(t,n,s)=>{e=/(\[])$/.exec(t),t=t.replace(/\[]$/,""),e?void 0!==s[t]?s[t]=[...s[t],n]:s[t]=[n]:s[t]=n};case"colon-list-separator":return(t,n,s)=>{e=/(:list)$/.exec(t),t=t.replace(/:list$/,""),e?void 0!==s[t]?s[t]=[...s[t],n]:s[t]=[n]:s[t]=n};case"comma":case"separator":return(e,n,s)=>{const i="string"==typeof n&&n.includes(t.arrayFormatSeparator),r="string"==typeof n&&!i&&C(n,t).includes(t.arrayFormatSeparator);n=r?C(n,t):n;const o=i||r?n.split(t.arrayFormatSeparator).map((e=>C(e,t))):null===n?n:C(n,t);s[e]=o};case"bracket-separator":return(e,n,s)=>{const i=/(\[])$/.test(e);if(e=e.replace(/\[]$/,""),!i)return void(s[e]=n?C(n,t):n);const r=null===n?[]:n.split(t.arrayFormatSeparator).map((e=>C(e,t)));void 0!==s[e]?s[e]=[...s[e],...r]:s[e]=r};default:return(t,e,n)=>{void 0!==n[t]?n[t]=[...[n[t]].flat(),e]:n[t]=e}}}(e),s=Object.create(null);if("string"!=typeof t)return s;if(!(t=t.trim().replace(/^[?#&]/,"")))return s;for(const i of t.split("&")){if(""===i)continue;const t=e.decode?i.replaceAll("+"," "):i;let[r,o]=g(t,"=");void 0===r&&(r=t),o=void 0===o?null:["comma","separator","bracket-separator"].includes(e.arrayFormat)?o:C(o,e),n(C(r,e),o,s)}for(const[t,n]of Object.entries(s))if("object"==typeof n&&null!==n)for(const[t,s]of Object.entries(n))n[t]=S(s,e);else s[t]=S(n,e);return!1===e.sort?s:(!0===e.sort?Object.keys(s).sort():Object.keys(s).sort(e.sort)).reduce(((t,e)=>{const n=s[e];return t[e]=Boolean(n)&&"object"==typeof n&&!Array.isArray(n)?x(n):n,t}),Object.create(null))}function L(t,e){if(!t)return"";b((e={encode:!0,strict:!0,arrayFormat:"none",arrayFormatSeparator:",",...e}).arrayFormatSeparator);const n=n=>e.skipNull&&w(t[n])||e.skipEmptyString&&""===t[n],s=function(t){switch(t.arrayFormat){case"index":return e=>(n,s)=>{const i=n.length;return void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[_(e,t),"[",i,"]"].join("")]:[...n,[_(e,t),"[",_(i,t),"]=",_(s,t)].join("")]};case"bracket":return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[_(e,t),"[]"].join("")]:[...n,[_(e,t),"[]=",_(s,t)].join("")];case"colon-list-separator":return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[_(e,t),":list="].join("")]:[...n,[_(e,t),":list=",_(s,t)].join("")];case"comma":case"separator":case"bracket-separator":{const e="bracket-separator"===t.arrayFormat?"[]=":"=";return n=>(s,i)=>void 0===i||t.skipNull&&null===i||t.skipEmptyString&&""===i?s:(i=null===i?"":i,0===s.length?[[_(n,t),e,_(i,t)].join("")]:[[s,_(i,t)].join(t.arrayFormatSeparator)])}default:return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,_(e,t)]:[...n,[_(e,t),"=",_(s,t)].join("")]}}(e),i={};for(const[e,s]of Object.entries(t))n(e)||(i[e]=s);const r=Object.keys(i);return!1!==e.sort&&r.sort(e.sort),r.map((n=>{const i=t[n];return void 0===i?"":null===i?_(n,e):Array.isArray(i)?0===i.length&&"bracket-separator"===e.arrayFormat?_(n,e)+"[]":i.reduce(s(n),[]).join("&"):_(n,e)+"="+_(i,e)})).filter((t=>t.length>0)).join("&")}function N(t,e){e={decode:!0,...e};let[n,s]=g(t,"#");return void 0===n&&(n=t),{url:n?.split("?")?.[0]??"",query:E(k(t),e),...e&&e.parseFragmentIdentifier&&s?{fragmentIdentifier:C(s,e)}:{}}}function F(t,e){e={encode:!0,strict:!0,[A]:!0,...e};const n=T(t.url).split("?")[0]||"";let s=L({...E(k(t.url),{sort:!1}),...t.query},e);s&&=`?${s}`;let i=function(t){let e="";const n=t.indexOf("#");return-1!==n&&(e=t.slice(n)),e}(t.url);if("string"==typeof t.fragmentIdentifier){const s=new URL(n);s.hash=t.fragmentIdentifier,i=e[A]?s.hash:`#${t.fragmentIdentifier}`}return`${n}${s}${i}`}function P(t,e,n){n={parseFragmentIdentifier:!0,[A]:!1,...n};const{url:s,query:i,fragmentIdentifier:r}=N(t,n);return F({url:s,query:v(i,e),fragmentIdentifier:r},n)}function I(t,e,n){return P(t,Array.isArray(e)?t=>!e.includes(t):(t,n)=>!e(t,n),n)}const D=i;var O=s(96763);function U(t,e){for(var n in e)t[n]=e[n];return t}var B=/[!'()*]/g,R=function(t){return"%"+t.charCodeAt(0).toString(16)},j=/%2C/g,M=function(t){return encodeURIComponent(t).replace(B,R).replace(j,",")};function z(t){try{return decodeURIComponent(t)}catch(t){}return t}var V=function(t){return null==t||"object"==typeof t?t:String(t)};function q(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach((function(t){var n=t.replace(/\+/g," ").split("="),s=z(n.shift()),i=n.length>0?z(n.join("=")):null;void 0===e[s]?e[s]=i:Array.isArray(e[s])?e[s].push(i):e[s]=[e[s],i]})),e):e}function $(t){var e=t?Object.keys(t).map((function(e){var n=t[e];if(void 0===n)return"";if(null===n)return M(e);if(Array.isArray(n)){var s=[];return n.forEach((function(t){void 0!==t&&(null===t?s.push(M(e)):s.push(M(e)+"="+M(t)))})),s.join("&")}return M(e)+"="+M(n)})).filter((function(t){return t.length>0})).join("&"):null;return e?"?"+e:""}var H=/\/?$/;function W(t,e,n,s){var i=s&&s.options.stringifyQuery,r=e.query||{};try{r=G(r)}catch(t){}var o={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:r,params:e.params||{},fullPath:Q(e,i),matched:t?K(t):[]};return n&&(o.redirectedFrom=Q(n,i)),Object.freeze(o)}function G(t){if(Array.isArray(t))return t.map(G);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=G(t[n]);return e}return t}var Y=W(null,{path:"/"});function K(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}function Q(t,e){var n=t.path,s=t.query;void 0===s&&(s={});var i=t.hash;return void 0===i&&(i=""),(n||"/")+(e||$)(s)+i}function X(t,e,n){return e===Y?t===e:!!e&&(t.path&&e.path?t.path.replace(H,"")===e.path.replace(H,"")&&(n||t.hash===e.hash&&J(t.query,e.query)):!(!t.name||!e.name)&&t.name===e.name&&(n||t.hash===e.hash&&J(t.query,e.query)&&J(t.params,e.params)))}function J(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t).sort(),s=Object.keys(e).sort();return n.length===s.length&&n.every((function(n,i){var r=t[n];if(s[i]!==n)return!1;var o=e[n];return null==r||null==o?r===o:"object"==typeof r&&"object"==typeof o?J(r,o):String(r)===String(o)}))}function Z(t){for(var e=0;e<t.matched.length;e++){var n=t.matched[e];for(var s in n.instances){var i=n.instances[s],r=n.enteredCbs[s];if(i&&r){delete n.enteredCbs[s];for(var o=0;o<r.length;o++)i._isBeingDestroyed||r[o](i)}}}}var tt={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,s=e.children,i=e.parent,r=e.data;r.routerView=!0;for(var o=i.$createElement,a=n.name,l=i.$route,c=i._routerViewCache||(i._routerViewCache={}),u=0,d=!1;i&&i._routerRoot!==i;){var m=i.$vnode?i.$vnode.data:{};m.routerView&&u++,m.keepAlive&&i._directInactive&&i._inactive&&(d=!0),i=i.$parent}if(r.routerViewDepth=u,d){var p=c[a],f=p&&p.component;return f?(p.configProps&&et(f,r,p.route,p.configProps),o(f,r,s)):o()}var h=l.matched[u],g=h&&h.components[a];if(!h||!g)return c[a]=null,o();c[a]={component:g},r.registerRouteInstance=function(t,e){var n=h.instances[a];(e&&n!==t||!e&&n===t)&&(h.instances[a]=e)},(r.hook||(r.hook={})).prepatch=function(t,e){h.instances[a]=e.componentInstance},r.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==h.instances[a]&&(h.instances[a]=t.componentInstance),Z(l)};var v=h.props&&h.props[a];return v&&(U(c[a],{route:l,configProps:v}),et(g,r,l,v)),o(g,r,s)}};function et(t,e,n,s){var i=e.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0}}(n,s);if(i){i=e.props=U({},i);var r=e.attrs=e.attrs||{};for(var o in i)t.props&&o in t.props||(r[o]=i[o],delete i[o])}}function nt(t,e,n){var s=t.charAt(0);if("/"===s)return t;if("?"===s||"#"===s)return e+t;var i=e.split("/");n&&i[i.length-1]||i.pop();for(var r=t.replace(/^\//,"").split("/"),o=0;o<r.length;o++){var a=r[o];".."===a?i.pop():"."!==a&&i.push(a)}return""!==i[0]&&i.unshift(""),i.join("/")}function st(t){return t.replace(/\/(?:\s*\/)+/g,"/")}var it=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},rt=function t(e,n,s){return it(n)||(s=n||s,n=[]),s=s||{},e instanceof RegExp?function(t,e){var n=t.source.match(/\((?!\?)/g);if(n)for(var s=0;s<n.length;s++)e.push({name:s,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return ht(t,e)}(e,n):it(e)?function(e,n,s){for(var i=[],r=0;r<e.length;r++)i.push(t(e[r],n,s).source);return ht(new RegExp("(?:"+i.join("|")+")",gt(s)),n)}(e,n,s):function(t,e,n){return vt(ut(t,n),e,n)}(e,n,s)},ot=ut,at=mt,lt=vt,ct=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function ut(t,e){for(var n,s=[],i=0,r=0,o="",a=e&&e.delimiter||"/";null!=(n=ct.exec(t));){var l=n[0],c=n[1],u=n.index;if(o+=t.slice(r,u),r=u+l.length,c)o+=c[1];else{var d=t[r],m=n[2],p=n[3],f=n[4],h=n[5],g=n[6],v=n[7];o&&(s.push(o),o="");var w=null!=m&&null!=d&&d!==m,y="+"===g||"*"===g,A="?"===g||"*"===g,b=n[2]||a,_=f||h;s.push({name:p||i++,prefix:m||"",delimiter:b,optional:A,repeat:y,partial:w,asterisk:!!v,pattern:_?ft(_):v?".*":"[^"+pt(b)+"]+?"})}}return r<t.length&&(o+=t.substr(r)),o&&s.push(o),s}function dt(t){return encodeURI(t).replace(/[\/?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()}))}function mt(t,e){for(var n=new Array(t.length),s=0;s<t.length;s++)"object"==typeof t[s]&&(n[s]=new RegExp("^(?:"+t[s].pattern+")$",gt(e)));return function(e,s){for(var i="",r=e||{},o=(s||{}).pretty?dt:encodeURIComponent,a=0;a<t.length;a++){var l=t[a];if("string"!=typeof l){var c,u=r[l.name];if(null==u){if(l.optional){l.partial&&(i+=l.prefix);continue}throw new TypeError('Expected "'+l.name+'" to be defined')}if(it(u)){if(!l.repeat)throw new TypeError('Expected "'+l.name+'" to not repeat, but received `'+JSON.stringify(u)+"`");if(0===u.length){if(l.optional)continue;throw new TypeError('Expected "'+l.name+'" to not be empty')}for(var d=0;d<u.length;d++){if(c=o(u[d]),!n[a].test(c))throw new TypeError('Expected all "'+l.name+'" to match "'+l.pattern+'", but received `'+JSON.stringify(c)+"`");i+=(0===d?l.prefix:l.delimiter)+c}}else{if(c=l.asterisk?encodeURI(u).replace(/[?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})):o(u),!n[a].test(c))throw new TypeError('Expected "'+l.name+'" to match "'+l.pattern+'", but received "'+c+'"');i+=l.prefix+c}}else i+=l}return i}}function pt(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function ft(t){return t.replace(/([=!:$\/()])/g,"\\$1")}function ht(t,e){return t.keys=e,t}function gt(t){return t&&t.sensitive?"":"i"}function vt(t,e,n){it(e)||(n=e||n,e=[]);for(var s=(n=n||{}).strict,i=!1!==n.end,r="",o=0;o<t.length;o++){var a=t[o];if("string"==typeof a)r+=pt(a);else{var l=pt(a.prefix),c="(?:"+a.pattern+")";e.push(a),a.repeat&&(c+="(?:"+l+c+")*"),r+=c=a.optional?a.partial?l+"("+c+")?":"(?:"+l+"("+c+"))?":l+"("+c+")"}}var u=pt(n.delimiter||"/"),d=r.slice(-u.length)===u;return s||(r=(d?r.slice(0,-u.length):r)+"(?:"+u+"(?=$))?"),r+=i?"$":s&&d?"":"(?="+u+"|$)",ht(new RegExp("^"+r,gt(n)),e)}rt.parse=ot,rt.compile=function(t,e){return mt(ut(t,e),e)},rt.tokensToFunction=at,rt.tokensToRegExp=lt;var wt=Object.create(null);function yt(t,e,n){e=e||{};try{var s=wt[t]||(wt[t]=rt.compile(t));return"string"==typeof e.pathMatch&&(e[0]=e.pathMatch),s(e,{pretty:!0})}catch(t){return""}finally{delete e[0]}}function At(t,e,n,s){var i="string"==typeof t?{path:t}:t;if(i._normalized)return i;if(i.name){var r=(i=U({},t)).params;return r&&"object"==typeof r&&(i.params=U({},r)),i}if(!i.path&&i.params&&e){(i=U({},i))._normalized=!0;var o=U(U({},e.params),i.params);if(e.name)i.name=e.name,i.params=o;else if(e.matched.length){var a=e.matched[e.matched.length-1].path;i.path=yt(a,o,e.path)}return i}var l=function(t){var e="",n="",s=t.indexOf("#");s>=0&&(e=t.slice(s),t=t.slice(0,s));var i=t.indexOf("?");return i>=0&&(n=t.slice(i+1),t=t.slice(0,i)),{path:t,query:n,hash:e}}(i.path||""),c=e&&e.path||"/",u=l.path?nt(l.path,c,n||i.append):c,d=function(t,e,n){void 0===e&&(e={});var s,i=n||q;try{s=i(t||"")}catch(t){s={}}for(var r in e){var o=e[r];s[r]=Array.isArray(o)?o.map(V):V(o)}return s}(l.query,i.query,s&&s.options.parseQuery),m=i.hash||l.hash;return m&&"#"!==m.charAt(0)&&(m="#"+m),{_normalized:!0,path:u,query:d,hash:m}}var bt,_t=function(){},Ct={name:"RouterLink",props:{to:{type:[String,Object],required:!0},tag:{type:String,default:"a"},custom:Boolean,exact:Boolean,exactPath:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:"page"},event:{type:[String,Array],default:"click"}},render:function(t){var e=this,n=this.$router,s=this.$route,i=n.resolve(this.to,s,this.append),r=i.location,o=i.route,a=i.href,l={},c=n.options.linkActiveClass,u=n.options.linkExactActiveClass,d=null==c?"router-link-active":c,m=null==u?"router-link-exact-active":u,p=null==this.activeClass?d:this.activeClass,f=null==this.exactActiveClass?m:this.exactActiveClass,h=o.redirectedFrom?W(null,At(o.redirectedFrom),null,n):o;l[f]=X(s,h,this.exactPath),l[p]=this.exact||this.exactPath?l[f]:function(t,e){return 0===t.path.replace(H,"/").indexOf(e.path.replace(H,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(s,h);var g=l[f]?this.ariaCurrentValue:null,v=function(t){xt(t)&&(e.replace?n.replace(r,_t):n.push(r,_t))},w={click:xt};Array.isArray(this.event)?this.event.forEach((function(t){w[t]=v})):w[this.event]=v;var y={class:l},A=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:a,route:o,navigate:v,isActive:l[p],isExactActive:l[f]});if(A){if(1===A.length)return A[0];if(A.length>1||!A.length)return 0===A.length?t():t("span",{},A)}if("a"===this.tag)y.on=w,y.attrs={href:a,"aria-current":g};else{var b=Tt(this.$slots.default);if(b){b.isStatic=!1;var _=b.data=U({},b.data);for(var C in _.on=_.on||{},_.on){var x=_.on[C];C in w&&(_.on[C]=Array.isArray(x)?x:[x])}for(var T in w)T in _.on?_.on[T].push(w[T]):_.on[T]=v;var S=b.data.attrs=U({},b.data.attrs);S.href=a,S["aria-current"]=g}else y.on=w}return t(this.tag,y,this.$slots.default)}};function xt(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey||t.defaultPrevented||void 0!==t.button&&0!==t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function Tt(t){if(t)for(var e,n=0;n<t.length;n++){if("a"===(e=t[n]).tag)return e;if(e.children&&(e=Tt(e.children)))return e}}var St="undefined"!=typeof window;function kt(t,e,n,s,i){var r=e||[],o=n||Object.create(null),a=s||Object.create(null);t.forEach((function(t){Et(r,o,a,t,i)}));for(var l=0,c=r.length;l<c;l++)"*"===r[l]&&(r.push(r.splice(l,1)[0]),c--,l--);return{pathList:r,pathMap:o,nameMap:a}}function Et(t,e,n,s,i,r){var o=s.path,a=s.name,l=s.pathToRegexpOptions||{},c=function(t,e,n){return n||(t=t.replace(/\/$/,"")),"/"===t[0]||null==e?t:st(e.path+"/"+t)}(o,i,l.strict);"boolean"==typeof s.caseSensitive&&(l.sensitive=s.caseSensitive);var u={path:c,regex:Lt(c,l),components:s.components||{default:s.component},alias:s.alias?"string"==typeof s.alias?[s.alias]:s.alias:[],instances:{},enteredCbs:{},name:a,parent:i,matchAs:r,redirect:s.redirect,beforeEnter:s.beforeEnter,meta:s.meta||{},props:null==s.props?{}:s.components?s.props:{default:s.props}};if(s.children&&s.children.forEach((function(s){var i=r?st(r+"/"+s.path):void 0;Et(t,e,n,s,u,i)})),e[u.path]||(t.push(u.path),e[u.path]=u),void 0!==s.alias)for(var d=Array.isArray(s.alias)?s.alias:[s.alias],m=0;m<d.length;++m){var p={path:d[m],children:s.children};Et(t,e,n,p,i,u.path||"/")}a&&(n[a]||(n[a]=u))}function Lt(t,e){return rt(t,[],e)}function Nt(t,e){var n=kt(t),s=n.pathList,i=n.pathMap,r=n.nameMap;function o(t,n,o){var l=At(t,n,!1,e),c=l.name;if(c){var u=r[c];if(!u)return a(null,l);var d=u.regex.keys.filter((function(t){return!t.optional})).map((function(t){return t.name}));if("object"!=typeof l.params&&(l.params={}),n&&"object"==typeof n.params)for(var m in n.params)!(m in l.params)&&d.indexOf(m)>-1&&(l.params[m]=n.params[m]);return l.path=yt(u.path,l.params),a(u,l,o)}if(l.path){l.params={};for(var p=0;p<s.length;p++){var f=s[p],h=i[f];if(Ft(h.regex,l.path,l.params))return a(h,l,o)}}return a(null,l)}function a(t,n,s){return t&&t.redirect?function(t,n){var s=t.redirect,i="function"==typeof s?s(W(t,n,null,e)):s;if("string"==typeof i&&(i={path:i}),!i||"object"!=typeof i)return a(null,n);var l=i,c=l.name,u=l.path,d=n.query,m=n.hash,p=n.params;if(d=l.hasOwnProperty("query")?l.query:d,m=l.hasOwnProperty("hash")?l.hash:m,p=l.hasOwnProperty("params")?l.params:p,c)return r[c],o({_normalized:!0,name:c,query:d,hash:m,params:p},void 0,n);if(u){var f=function(t,e){return nt(t,e.parent?e.parent.path:"/",!0)}(u,t);return o({_normalized:!0,path:yt(f,p),query:d,hash:m},void 0,n)}return a(null,n)}(t,s||n):t&&t.matchAs?function(t,e,n){var s=o({_normalized:!0,path:yt(n,e.params)});if(s){var i=s.matched,r=i[i.length-1];return e.params=s.params,a(r,e)}return a(null,e)}(0,n,t.matchAs):W(t,n,s,e)}return{match:o,addRoute:function(t,e){var n="object"!=typeof t?r[t]:void 0;kt([e||t],s,i,r,n),n&&n.alias.length&&kt(n.alias.map((function(t){return{path:t,children:[e]}})),s,i,r,n)},getRoutes:function(){return s.map((function(t){return i[t]}))},addRoutes:function(t){kt(t,s,i,r)}}}function Ft(t,e,n){var s=e.match(t);if(!s)return!1;if(!n)return!0;for(var i=1,r=s.length;i<r;++i){var o=t.keys[i-1];o&&(n[o.name||"pathMatch"]="string"==typeof s[i]?z(s[i]):s[i])}return!0}var Pt=St&&window.performance&&window.performance.now?window.performance:Date;function It(){return Pt.now().toFixed(3)}var Dt=It();function Ot(){return Dt}function Ut(t){return Dt=t}var Bt=Object.create(null);function Rt(){"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual");var t=window.location.protocol+"//"+window.location.host,e=window.location.href.replace(t,""),n=U({},window.history.state);return n.key=Ot(),window.history.replaceState(n,"",e),window.addEventListener("popstate",zt),function(){window.removeEventListener("popstate",zt)}}function jt(t,e,n,s){if(t.app){var i=t.options.scrollBehavior;i&&t.app.$nextTick((function(){var r=function(){var t=Ot();if(t)return Bt[t]}(),o=i.call(t,e,n,s?r:null);o&&("function"==typeof o.then?o.then((function(t){Wt(t,r)})).catch((function(t){})):Wt(o,r))}))}}function Mt(){var t=Ot();t&&(Bt[t]={x:window.pageXOffset,y:window.pageYOffset})}function zt(t){Mt(),t.state&&t.state.key&&Ut(t.state.key)}function Vt(t){return $t(t.x)||$t(t.y)}function qt(t){return{x:$t(t.x)?t.x:window.pageXOffset,y:$t(t.y)?t.y:window.pageYOffset}}function $t(t){return"number"==typeof t}var Ht=/^#\d/;function Wt(t,e){var n,s="object"==typeof t;if(s&&"string"==typeof t.selector){var i=Ht.test(t.selector)?document.getElementById(t.selector.slice(1)):document.querySelector(t.selector);if(i){var r=t.offset&&"object"==typeof t.offset?t.offset:{};e=function(t,e){var n=document.documentElement.getBoundingClientRect(),s=t.getBoundingClientRect();return{x:s.left-n.left-e.x,y:s.top-n.top-e.y}}(i,r={x:$t((n=r).x)?n.x:0,y:$t(n.y)?n.y:0})}else Vt(t)&&(e=qt(t))}else s&&Vt(t)&&(e=qt(t));e&&("scrollBehavior"in document.documentElement.style?window.scrollTo({left:e.x,top:e.y,behavior:t.behavior}):window.scrollTo(e.x,e.y))}var Gt,Yt=St&&(-1===(Gt=window.navigator.userAgent).indexOf("Android 2.")&&-1===Gt.indexOf("Android 4.0")||-1===Gt.indexOf("Mobile Safari")||-1!==Gt.indexOf("Chrome")||-1!==Gt.indexOf("Windows Phone"))&&window.history&&"function"==typeof window.history.pushState;function Kt(t,e){Mt();var n=window.history;try{if(e){var s=U({},n.state);s.key=Ot(),n.replaceState(s,"",t)}else n.pushState({key:Ut(It())},"",t)}catch(n){window.location[e?"replace":"assign"](t)}}function Qt(t){Kt(t,!0)}var Xt={redirected:2,aborted:4,cancelled:8,duplicated:16};function Jt(t,e){return Zt(t,e,Xt.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Zt(t,e,n,s){var i=new Error(s);return i._isRouter=!0,i.from=t,i.to=e,i.type=n,i}var te=["params","query","hash"];function ee(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function ne(t,e){return ee(t)&&t._isRouter&&(null==e||t.type===e)}function se(t,e,n){var s=function(i){i>=t.length?n():t[i]?e(t[i],(function(){s(i+1)})):s(i+1)};s(0)}function ie(t,e){return re(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function re(t){return Array.prototype.concat.apply([],t)}var oe="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function ae(t){var e=!1;return function(){for(var n=[],s=arguments.length;s--;)n[s]=arguments[s];if(!e)return e=!0,t.apply(this,n)}}var le=function(t,e){this.router=t,this.base=function(t){if(!t)if(St){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}(e),this.current=Y,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function ce(t,e,n,s){var i=ie(t,(function(t,s,i,r){var o=function(t,e){return"function"!=typeof t&&(t=bt.extend(t)),t.options[e]}(t,e);if(o)return Array.isArray(o)?o.map((function(t){return n(t,s,i,r)})):n(o,s,i,r)}));return re(s?i.reverse():i)}function ue(t,e){if(e)return function(){return t.apply(e,arguments)}}le.prototype.listen=function(t){this.cb=t},le.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},le.prototype.onError=function(t){this.errorCbs.push(t)},le.prototype.transitionTo=function(t,e,n){var s,i=this;try{s=this.router.match(t,this.current)}catch(t){throw this.errorCbs.forEach((function(e){e(t)})),t}var r=this.current;this.confirmTransition(s,(function(){i.updateRoute(s),e&&e(s),i.ensureURL(),i.router.afterHooks.forEach((function(t){t&&t(s,r)})),i.ready||(i.ready=!0,i.readyCbs.forEach((function(t){t(s)})))}),(function(t){n&&n(t),t&&!i.ready&&(ne(t,Xt.redirected)&&r===Y||(i.ready=!0,i.readyErrorCbs.forEach((function(e){e(t)}))))}))},le.prototype.confirmTransition=function(t,e,n){var s=this,i=this.current;this.pending=t;var r,o,a=function(t){!ne(t)&&ee(t)&&(s.errorCbs.length?s.errorCbs.forEach((function(e){e(t)})):O.error(t)),n&&n(t)},l=t.matched.length-1,c=i.matched.length-1;if(X(t,i)&&l===c&&t.matched[l]===i.matched[c])return this.ensureURL(),t.hash&&jt(this.router,i,t,!1),a(((o=Zt(r=i,t,Xt.duplicated,'Avoided redundant navigation to current location: "'+r.fullPath+'".')).name="NavigationDuplicated",o));var u,d=function(t,e){var n,s=Math.max(t.length,e.length);for(n=0;n<s&&t[n]===e[n];n++);return{updated:e.slice(0,n),activated:e.slice(n),deactivated:t.slice(n)}}(this.current.matched,t.matched),m=d.updated,p=d.deactivated,f=d.activated,h=[].concat(function(t){return ce(t,"beforeRouteLeave",ue,!0)}(p),this.router.beforeHooks,function(t){return ce(t,"beforeRouteUpdate",ue)}(m),f.map((function(t){return t.beforeEnter})),(u=f,function(t,e,n){var s=!1,i=0,r=null;ie(u,(function(t,e,o,a){if("function"==typeof t&&void 0===t.cid){s=!0,i++;var l,c=ae((function(e){var s;((s=e).__esModule||oe&&"Module"===s[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:bt.extend(e),o.components[a]=e,--i<=0&&n()})),u=ae((function(t){var e="Failed to resolve async component "+a+": "+t;r||(r=ee(t)?t:new Error(e),n(r))}));try{l=t(c,u)}catch(t){u(t)}if(l)if("function"==typeof l.then)l.then(c,u);else{var d=l.component;d&&"function"==typeof d.then&&d.then(c,u)}}})),s||n()})),g=function(e,n){if(s.pending!==t)return a(Jt(i,t));try{e(t,i,(function(e){!1===e?(s.ensureURL(!0),a(function(t,e){return Zt(t,e,Xt.aborted,'Navigation aborted from "'+t.fullPath+'" to "'+e.fullPath+'" via a navigation guard.')}(i,t))):ee(e)?(s.ensureURL(!0),a(e)):"string"==typeof e||"object"==typeof e&&("string"==typeof e.path||"string"==typeof e.name)?(a(function(t,e){return Zt(t,e,Xt.redirected,'Redirected when going from "'+t.fullPath+'" to "'+function(t){if("string"==typeof t)return t;if("path"in t)return t.path;var e={};return te.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}(e)+'" via a navigation guard.')}(i,t)),"object"==typeof e&&e.replace?s.replace(e):s.push(e)):n(e)}))}catch(t){a(t)}};se(h,g,(function(){var n=function(t){return ce(t,"beforeRouteEnter",(function(t,e,n,s){return function(t,e,n){return function(s,i,r){return t(s,i,(function(t){"function"==typeof t&&(e.enteredCbs[n]||(e.enteredCbs[n]=[]),e.enteredCbs[n].push(t)),r(t)}))}}(t,n,s)}))}(f);se(n.concat(s.router.resolveHooks),g,(function(){if(s.pending!==t)return a(Jt(i,t));s.pending=null,e(t),s.router.app&&s.router.app.$nextTick((function(){Z(t)}))}))}))},le.prototype.updateRoute=function(t){this.current=t,this.cb&&this.cb(t)},le.prototype.setupListeners=function(){},le.prototype.teardown=function(){this.listeners.forEach((function(t){t()})),this.listeners=[],this.current=Y,this.pending=null};var de=function(t){function e(e,n){t.call(this,e,n),this._startLocation=me(this.base)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,s=Yt&&n;s&&this.listeners.push(Rt());var i=function(){var n=t.current,i=me(t.base);t.current===Y&&i===t._startLocation||t.transitionTo(i,(function(t){s&&jt(e,t,n,!0)}))};window.addEventListener("popstate",i),this.listeners.push((function(){window.removeEventListener("popstate",i)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){Kt(st(s.base+t.fullPath)),jt(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){Qt(st(s.base+t.fullPath)),jt(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(me(this.base)!==this.current.fullPath){var e=st(this.base+this.current.fullPath);t?Kt(e):Qt(e)}},e.prototype.getCurrentLocation=function(){return me(this.base)},e}(le);function me(t){var e=window.location.pathname,n=e.toLowerCase(),s=t.toLowerCase();return!t||n!==s&&0!==n.indexOf(st(s+"/"))||(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var pe=function(t){function e(e,n,s){t.call(this,e,n),s&&function(t){var e=me(t);if(!/^\/#/.test(e))return window.location.replace(st(t+"/#"+e)),!0}(this.base)||fe()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router.options.scrollBehavior,n=Yt&&e;n&&this.listeners.push(Rt());var s=function(){var e=t.current;fe()&&t.transitionTo(he(),(function(s){n&&jt(t.router,s,e,!0),Yt||we(s.fullPath)}))},i=Yt?"popstate":"hashchange";window.addEventListener(i,s),this.listeners.push((function(){window.removeEventListener(i,s)}))}},e.prototype.push=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){ve(t.fullPath),jt(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){we(t.fullPath),jt(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;he()!==e&&(t?ve(e):we(e))},e.prototype.getCurrentLocation=function(){return he()},e}(le);function fe(){var t=he();return"/"===t.charAt(0)||(we("/"+t),!1)}function he(){var t=window.location.href,e=t.indexOf("#");return e<0?"":t=t.slice(e+1)}function ge(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function ve(t){Yt?Kt(ge(t)):window.location.hash=t}function we(t){Yt?Qt(ge(t)):window.location.replace(ge(t))}var ye=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var s=this;this.transitionTo(t,(function(t){s.stack=s.stack.slice(0,s.index+1).concat(t),s.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this;this.transitionTo(t,(function(t){s.stack=s.stack.slice(0,s.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var s=this.stack[n];this.confirmTransition(s,(function(){var t=e.current;e.index=n,e.updateRoute(s),e.router.afterHooks.forEach((function(e){e&&e(s,t)}))}),(function(t){ne(t,Xt.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(le),Ae=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Nt(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!Yt&&!1!==t.fallback,this.fallback&&(e="hash"),St||(e="abstract"),this.mode=e,e){case"history":this.history=new de(this,t.base);break;case"hash":this.history=new pe(this,t.base,this.fallback);break;case"abstract":this.history=new ye(this,t.base)}},be={currentRoute:{configurable:!0}};Ae.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},be.currentRoute.get=function(){return this.history&&this.history.current},Ae.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()})),!this.app){this.app=t;var n=this.history;if(n instanceof de||n instanceof pe){var s=function(t){n.setupListeners(),function(t){var s=n.current,i=e.options.scrollBehavior;Yt&&i&&"fullPath"in t&&jt(e,t,s,!1)}(t)};n.transitionTo(n.getCurrentLocation(),s,s)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},Ae.prototype.beforeEach=function(t){return Ce(this.beforeHooks,t)},Ae.prototype.beforeResolve=function(t){return Ce(this.resolveHooks,t)},Ae.prototype.afterEach=function(t){return Ce(this.afterHooks,t)},Ae.prototype.onReady=function(t,e){this.history.onReady(t,e)},Ae.prototype.onError=function(t){this.history.onError(t)},Ae.prototype.push=function(t,e,n){var s=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){s.history.push(t,e,n)}));this.history.push(t,e,n)},Ae.prototype.replace=function(t,e,n){var s=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){s.history.replace(t,e,n)}));this.history.replace(t,e,n)},Ae.prototype.go=function(t){this.history.go(t)},Ae.prototype.back=function(){this.go(-1)},Ae.prototype.forward=function(){this.go(1)},Ae.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},Ae.prototype.resolve=function(t,e,n){var s=At(t,e=e||this.history.current,n,this),i=this.match(s,e),r=i.redirectedFrom||i.fullPath,o=function(t,e,n){var s="hash"===n?"#"+e:e;return t?st(t+"/"+s):s}(this.history.base,r,this.mode);return{location:s,route:i,href:o,normalizedTo:s,resolved:i}},Ae.prototype.getRoutes=function(){return this.matcher.getRoutes()},Ae.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==Y&&this.history.transitionTo(this.history.getCurrentLocation())},Ae.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==Y&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(Ae.prototype,be);var _e=Ae;function Ce(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}Ae.install=function t(e){if(!t.installed||bt!==e){t.installed=!0,bt=e;var n=function(t){return void 0!==t},s=function(t,e){var s=t.$options._parentVnode;n(s)&&n(s=s.data)&&n(s=s.registerRouteInstance)&&s(t,e)};e.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,s(this,this)},destroyed:function(){s(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("RouterView",tt),e.component("RouterLink",Ct);var i=e.config.optionMergeStrategies;i.beforeRouteEnter=i.beforeRouteLeave=i.beforeRouteUpdate=i.created}},Ae.version="3.6.5",Ae.isNavigationFailure=ne,Ae.NavigationFailureType=Xt,Ae.START_LOCATION=Y,St&&window.Vue&&window.Vue.use(Ae),l.Ay.use(_e);const xe=_e.prototype.push;_e.prototype.push=function(t,e,n){return e||n?xe.call(this,t,e,n):xe.call(this,t).catch((t=>t))};const Te=new _e({mode:"history",base:(0,u.Jv)("/apps/files"),linkActiveClass:"active",routes:[{path:"/",redirect:{name:"filelist",params:{view:"files"}}},{path:"/:view/:fileid(\\d+)?",name:"filelist",props:!0}],stringifyQuery(t){const e=D.stringify(t).replace(/%2F/gim,"/");return e?"?"+e:""}});function Se(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var ke=s(96763);var Ee=s(22378),Le=s(61338),Ne=s(53334);const Fe={name:"CogIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Pe=s(14486);const Ie=(0,Pe.A)(Fe,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon cog-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var De=s(42530),Oe=s(52439),Ue=s(6695),Be=s(38613),Re=s(26287);const je=(0,Be.C)("files","viewConfigs",{}),Me=function(){const t=(0,r.nY)("viewconfig",{state:()=>({viewConfig:je}),getters:{getConfig:t=>e=>t.viewConfig[e]||{}},actions:{onUpdate(t,e,n){this.viewConfig[t]||l.Ay.set(this.viewConfig,t,{}),l.Ay.set(this.viewConfig[t],e,n)},async update(t,e,n){Re.A.put((0,u.Jv)("/apps/files/api/v1/views/".concat(t,"/").concat(e)),{value:n}),(0,Le.Ic)("files:viewconfig:updated",{view:t,key:e,value:n})},setSortingBy(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"basename",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"files";this.update(e,"sorting_mode",t),this.update(e,"sorting_direction","asc")},toggleSortingDirection(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"files";const e="asc"===(this.getConfig(t)||{sorting_direction:"asc"}).sorting_direction?"desc":"asc";this.update(t,"sorting_direction",e)}}}),e=t(...arguments);return e._initialized||((0,Le.B1)("files:viewconfig:updated",(function(t){let{view:n,key:s,value:i}=t;e.onUpdate(n,s,i)})),e._initialized=!0),e},ze=(0,s(53529).YK)().setApp("files").detectUser().build();function Ve(t,e,n){var s,i=n||{},r=i.noTrailing,o=void 0!==r&&r,a=i.noLeading,l=void 0!==a&&a,c=i.debounceMode,u=void 0===c?void 0:c,d=!1,m=0;function p(){s&&clearTimeout(s)}function f(){for(var n=arguments.length,i=new Array(n),r=0;r<n;r++)i[r]=arguments[r];var a=this,c=Date.now()-m;function f(){m=Date.now(),e.apply(a,i)}function h(){s=void 0}d||(l||!u||s||f(),p(),void 0===u&&c>t?l?(m=Date.now(),o||(s=setTimeout(u?h:f,t))):f():!0!==o&&(s=setTimeout(u?h:f,void 0===u?t-c:t)))}return f.cancel=function(t){var e=(t||{}).upcomingOnly,n=void 0!==e&&e;p(),d=!n},f}var qe=s(85168);const $e={name:"ChartPieIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},He=(0,Pe.A)($e,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon chart-pie-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var We=s(95101);const Ge={name:"NavigationQuota",components:{ChartPie:He,NcAppNavigationItem:Oe.A,NcProgressBar:We.A},data:()=>({loadingStorageStats:!1,storageStats:(0,Be.C)("files","storageStats",null)}),computed:{storageStatsTitle(){var t,e,n;const s=(0,o.v7)(null===(t=this.storageStats)||void 0===t?void 0:t.used,!1,!1),i=(0,o.v7)(null===(e=this.storageStats)||void 0===e?void 0:e.quota,!1,!1);return(null===(n=this.storageStats)||void 0===n?void 0:n.quota)<0?this.t("files","{usedQuotaByte} used",{usedQuotaByte:s}):this.t("files","{used} of {quota} used",{used:s,quota:i})},storageStatsTooltip(){return this.storageStats.relative?this.t("files","{relative}% used",this.storageStats):""}},beforeMount(){setInterval(this.throttleUpdateStorageStats,6e4),(0,Le.B1)("files:node:created",this.throttleUpdateStorageStats),(0,Le.B1)("files:node:deleted",this.throttleUpdateStorageStats),(0,Le.B1)("files:node:moved",this.throttleUpdateStorageStats),(0,Le.B1)("files:node:updated",this.throttleUpdateStorageStats)},mounted(){var t,e;(null===(t=this.storageStats)||void 0===t?void 0:t.quota)>0&&(null===(e=this.storageStats)||void 0===e?void 0:e.free)<=0&&this.showStorageFullWarning()},methods:{debounceUpdateStorageStats:(Ye={}.atBegin,Ve(200,(function(t){this.updateStorageStats(t)}),{debounceMode:!1!==(void 0!==Ye&&Ye)})),throttleUpdateStorageStats:Ve(1e3,(function(t){this.updateStorageStats(t)})),async updateStorageStats(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if(!this.loadingStorageStats){this.loadingStorageStats=!0;try{var n,s,i,r;const t=await Re.A.get((0,u.Jv)("/apps/files/api/v1/stats"));if(null==t||null===(n=t.data)||void 0===n||!n.data)throw new Error("Invalid storage stats");(null===(s=this.storageStats)||void 0===s?void 0:s.free)>0&&(null===(i=t.data.data)||void 0===i?void 0:i.free)<=0&&(null===(r=t.data.data)||void 0===r?void 0:r.quota)>0&&this.showStorageFullWarning(),this.storageStats=t.data.data}catch(n){ze.error("Could not refresh storage stats",{error:n}),e&&(0,qe.Qg)(t("files","Could not refresh storage stats"))}finally{this.loadingStorageStats=!1}}},showStorageFullWarning(){(0,qe.Qg)(this.t("files","Your storage is full, files can not be updated or synced anymore!"))},t:Ne.Tl}};var Ye,Ke=s(85072),Qe=s.n(Ke),Xe=s(97825),Je=s.n(Xe),Ze=s(77659),tn=s.n(Ze),en=s(55056),nn=s.n(en),sn=s(10540),rn=s.n(sn),on=s(41113),an=s.n(on),ln=s(33149),cn={};cn.styleTagTransform=an(),cn.setAttributes=nn(),cn.insert=tn().bind(null,"head"),cn.domAPI=Je(),cn.insertStyleElement=rn(),Qe()(ln.A,cn),ln.A&&ln.A.locals&&ln.A.locals;const un=(0,Pe.A)(Ge,(function(){var t=this,e=t._self._c;return t.storageStats?e("NcAppNavigationItem",{staticClass:"app-navigation-entry__settings-quota",class:{"app-navigation-entry__settings-quota--not-unlimited":t.storageStats.quota>=0},attrs:{"aria-label":t.t("files","Storage informations"),loading:t.loadingStorageStats,name:t.storageStatsTitle,title:t.storageStatsTooltip,"data-cy-files-navigation-settings-quota":""},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.debounceUpdateStorageStats.apply(null,arguments)}}},[e("ChartPie",{attrs:{slot:"icon",size:20},slot:"icon"}),t._v(" "),t.storageStats.quota>=0?e("NcProgressBar",{attrs:{slot:"extra",error:t.storageStats.relative>80,value:Math.min(t.storageStats.relative,100)},slot:"extra"}):t._e()],1):t._e()}),[],!1,null,"063ed938",null).exports;var dn=s(89902),mn=s(947),pn=s(32073);const fn={name:"ClipboardIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},hn=(0,Pe.A)(fn,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon clipboard-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var gn=s(44492);const vn={name:"Setting",props:{el:{type:Function,required:!0}},mounted(){this.$el.appendChild(this.el())}},wn=(0,Pe.A)(vn,(function(){return(0,this._self._c)("div")}),[],!1,null,null,null).exports,yn=(0,Be.C)("files","config",{show_hidden:!1,crop_image_previews:!0,sort_favorites_first:!0,sort_folders_first:!0,grid_view:!1}),An=function(){const t=(0,r.nY)("userconfig",{state:()=>({userConfig:yn}),actions:{onUpdate(t,e){l.Ay.set(this.userConfig,t,e)},async update(t,e){await Re.A.put((0,u.Jv)("/apps/files/api/v1/config/"+t),{value:e}),(0,Le.Ic)("files:config:updated",{key:t,value:e})}}})(...arguments);return t._initialized||((0,Le.B1)("files:config:updated",(function(e){let{key:n,value:s}=e;t.onUpdate(n,s)})),t._initialized=!0),t},bn={name:"Settings",components:{Clipboard:hn,NcAppSettingsDialog:dn.N,NcAppSettingsSection:mn.A,NcCheckboxRadioSwitch:pn.A,NcInputField:gn.A,Setting:wn},props:{open:{type:Boolean,default:!1}},setup:()=>({userConfigStore:An()}),data(){var t,e,n;return{settings:(null===(t=window.OCA)||void 0===t||null===(t=t.Files)||void 0===t||null===(t=t.Settings)||void 0===t?void 0:t.settings)||[],webdavUrl:(0,u.dC)("dav/files/"+encodeURIComponent(null===(e=(0,a.HW)())||void 0===e?void 0:e.uid)),webdavDocs:"https://docs.nextcloud.com/server/stable/go.php?to=user-webdav",appPasswordUrl:(0,u.Jv)("/settings/user/security#generate-app-token-section"),webdavUrlCopied:!1,enableGridView:null===(n=(0,Be.C)("core","config",[])["enable_non-accessible_features"])||void 0===n||n}},computed:{userConfig(){return this.userConfigStore.userConfig}},beforeMount(){this.settings.forEach((t=>t.open()))},beforeDestroy(){this.settings.forEach((t=>t.close()))},methods:{onClose(){this.$emit("close")},setConfig(t,e){this.userConfigStore.update(t,e)},async copyCloudId(){document.querySelector("input#webdav-url-input").select(),navigator.clipboard?(await navigator.clipboard.writeText(this.webdavUrl),this.webdavUrlCopied=!0,(0,qe.Te)(t("files","WebDAV URL copied to clipboard")),setTimeout((()=>{this.webdavUrlCopied=!1}),5e3)):(0,qe.Qg)(t("files","Clipboard is not available"))},t:Ne.Tl}},_n=bn;var Cn=s(60335),xn={};xn.styleTagTransform=an(),xn.setAttributes=nn(),xn.insert=tn().bind(null,"head"),xn.domAPI=Je(),xn.insertStyleElement=rn(),Qe()(Cn.A,xn),Cn.A&&Cn.A.locals&&Cn.A.locals;const Tn=(0,Pe.A)(_n,(function(){var t=this,e=t._self._c;return e("NcAppSettingsDialog",{attrs:{open:t.open,"show-navigation":!0,name:t.t("files","Files settings")},on:{"update:open":t.onClose}},[e("NcAppSettingsSection",{attrs:{id:"settings",name:t.t("files","Files settings")}},[e("NcCheckboxRadioSwitch",{attrs:{"data-cy-files-settings-setting":"sort_favorites_first",checked:t.userConfig.sort_favorites_first},on:{"update:checked":function(e){return t.setConfig("sort_favorites_first",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Sort favorites first"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{"data-cy-files-settings-setting":"sort_folders_first",checked:t.userConfig.sort_folders_first},on:{"update:checked":function(e){return t.setConfig("sort_folders_first",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Sort folders before files"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{"data-cy-files-settings-setting":"show_hidden",checked:t.userConfig.show_hidden},on:{"update:checked":function(e){return t.setConfig("show_hidden",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Show hidden files"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{"data-cy-files-settings-setting":"crop_image_previews",checked:t.userConfig.crop_image_previews},on:{"update:checked":function(e){return t.setConfig("crop_image_previews",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Crop image previews"))+"\n\t\t")]),t._v(" "),t.enableGridView?e("NcCheckboxRadioSwitch",{attrs:{"data-cy-files-settings-setting":"grid_view",checked:t.userConfig.grid_view},on:{"update:checked":function(e){return t.setConfig("grid_view",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Enable the grid view"))+"\n\t\t")]):t._e()],1),t._v(" "),0!==t.settings.length?e("NcAppSettingsSection",{attrs:{id:"more-settings",name:t.t("files","Additional settings")}},[t._l(t.settings,(function(t){return[e("Setting",{key:t.name,attrs:{el:t.el}})]}))],2):t._e(),t._v(" "),e("NcAppSettingsSection",{attrs:{id:"webdav",name:t.t("files","WebDAV")}},[e("NcInputField",{attrs:{id:"webdav-url-input",label:t.t("files","WebDAV URL"),"show-trailing-button":!0,success:t.webdavUrlCopied,"trailing-button-label":t.t("files","Copy to clipboard"),value:t.webdavUrl,readonly:"readonly",type:"url"},on:{focus:function(t){return t.target.select()},"trailing-button-click":t.copyCloudId},scopedSlots:t._u([{key:"trailing-button-icon",fn:function(){return[e("Clipboard",{attrs:{size:20}})]},proxy:!0}])}),t._v(" "),e("em",[e("a",{staticClass:"setting-link",attrs:{href:t.webdavDocs,target:"_blank",rel:"noreferrer noopener"}},[t._v("\n\t\t\t\t"+t._s(t.t("files","Use this address to access your Files via WebDAV"))+" ↗\n\t\t\t")])]),t._v(" "),e("br"),t._v(" "),e("em",[e("a",{staticClass:"setting-link",attrs:{href:t.appPasswordUrl}},[t._v("\n\t\t\t\t"+t._s(t.t("files","If you have enabled 2FA, you must create and use a new app password by clicking here."))+" ↗\n\t\t\t")])])],1)],1)}),[],!1,null,"00f09e69",null).exports,Sn={name:"Navigation",components:{Cog:Ie,NavigationQuota:un,NcAppNavigation:De.A,NcAppNavigationItem:Oe.A,NcIconSvgWrapper:Ue.A,SettingsModal:Tn},setup:()=>({viewConfigStore:Me()}),data:()=>({settingsOpened:!1}),computed:{currentViewId(){var t;return(null===(t=this.$route)||void 0===t||null===(t=t.params)||void 0===t?void 0:t.view)||"files"},currentView(){return this.views.find((t=>t.id===this.currentViewId))},views(){return this.$navigation.views},parentViews(){return this.views.filter((t=>!t.parent)).sort(((t,e)=>t.order-e.order))},childViews(){return this.views.filter((t=>!!t.parent)).reduce(((t,e)=>(t[e.parent]=[...t[e.parent]||[],e],t[e.parent].sort(((t,e)=>t.order-e.order)),t)),{})}},watch:{currentView(t,e){t.id!==(null==e?void 0:e.id)&&(this.$navigation.setActive(t),ze.debug("Navigation changed from ".concat(e.id," to ").concat(t.id),{from:e,to:t}),this.showView(t))}},beforeMount(){this.currentView&&(ze.debug("Navigation mounted. Showing requested view",{view:this.currentView}),this.showView(this.currentView))},methods:{useExactRouteMatching(t){var e;return(null===(e=this.childViews[t.id])||void 0===e?void 0:e.length)>0},showView(t){var e,n;null===(e=window)||void 0===e||null===(e=e.OCA)||void 0===e||null===(e=e.Files)||void 0===e||null===(e=e.Sidebar)||void 0===e||null===(n=e.close)||void 0===n||n.call(e),this.$navigation.setActive(t),(0,Le.Ic)("files:navigation:changed",t)},onToggleExpand(t){const e=this.isExpanded(t);t.expanded=!e,this.viewConfigStore.update(t.id,"expanded",!e)},isExpanded(t){var e;return"boolean"==typeof(null===(e=this.viewConfigStore.getConfig(t.id))||void 0===e?void 0:e.expanded)?!0===this.viewConfigStore.getConfig(t.id).expanded:!0===t.expanded},generateToNavigation(t){if(t.params){const{dir:e}=t.params;return{name:"filelist",params:t.params,query:{dir:e}}}return{name:"filelist",params:{view:t.id}}},openSettings(){this.settingsOpened=!0},onSettingsClose(){this.settingsOpened=!1},t:Ne.Tl}};var kn=s(56834),En={};En.styleTagTransform=an(),En.setAttributes=nn(),En.insert=tn().bind(null,"head"),En.domAPI=Je(),En.insertStyleElement=rn(),Qe()(kn.A,En),kn.A&&kn.A.locals&&kn.A.locals;const Ln=(0,Pe.A)(Sn,(function(){var t=this,e=t._self._c;return e("NcAppNavigation",{attrs:{"data-cy-files-navigation":"","aria-label":t.t("files","Files")},scopedSlots:t._u([{key:"list",fn:function(){return t._l(t.parentViews,(function(n){return e("NcAppNavigationItem",{key:n.id,attrs:{"allow-collapse":!0,"data-cy-files-navigation-item":n.id,exact:t.useExactRouteMatching(n),icon:n.iconClass,name:n.name,open:t.isExpanded(n),pinned:n.sticky,to:t.generateToNavigation(n)},on:{"update:open":function(e){return t.onToggleExpand(n)}}},[n.icon?e("NcIconSvgWrapper",{attrs:{slot:"icon",svg:n.icon},slot:"icon"}):t._e(),t._v(" "),t._l(t.childViews[n.id],(function(n){return e("NcAppNavigationItem",{key:n.id,attrs:{"data-cy-files-navigation-item":n.id,"exact-path":!0,icon:n.iconClass,name:n.name,to:t.generateToNavigation(n)}},[n.icon?e("NcIconSvgWrapper",{attrs:{slot:"icon",svg:n.icon},slot:"icon"}):t._e()],1)}))],2)}))},proxy:!0},{key:"footer",fn:function(){return[e("ul",{staticClass:"app-navigation-entry__settings"},[e("NavigationQuota"),t._v(" "),e("NcAppNavigationItem",{attrs:{"aria-label":t.t("files","Open the files app settings"),name:t.t("files","Files settings"),"data-cy-files-navigation-settings-button":""},on:{click:function(e){return e.preventDefault(),e.stopPropagation(),t.openSettings.apply(null,arguments)}}},[e("Cog",{attrs:{slot:"icon",size:20},slot:"icon"})],1)],1)]},proxy:!0}])},[t._v(" "),t._v(" "),e("SettingsModal",{attrs:{open:t.settingsOpened,"data-cy-files-navigation-settings":""},on:{close:t.onSettingsClose}})],1)}),[],!1,null,"476b6b93",null).exports;var Nn=s(87485),Fn=s(43627),Pn=s(38805),In=s(52129),Dn=s(41261),On=s(89979);const Un={name:"FormatListBulletedSquareIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Bn=(0,Pe.A)(Un,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon format-list-bulleted-square-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var Rn=s(18195),jn=s(9518),Mn=s(10833),zn=s(46222),Vn=s(27577);const qn={name:"AccountPlusIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},$n=(0,Pe.A)(qn,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon account-plus-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Hn={name:"ViewGridIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Wn=(0,Pe.A)(Hn,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon view-grid-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var Gn=s(49981);const Yn=new o.hY({id:"details",displayName:()=>(0,Ne.Tl)("files","Open details"),iconSvgInline:()=>Gn,enabled:t=>{var e,n,s;return 1===t.length&&!!t[0]&&!(null===(e=window)||void 0===e||null===(e=e.OCA)||void 0===e||null===(e=e.Files)||void 0===e||!e.Sidebar)&&null!==(n=(null===(s=t[0].root)||void 0===s?void 0:s.startsWith("/files/"))&&t[0].permissions!==o.aX.NONE)&&void 0!==n&&n},async exec(t,e,n){try{return await window.OCA.Files.Sidebar.open(t.path),window.OCP.Files.Router.goToRoute(null,{view:e.id,fileid:t.fileid},{dir:n},!0),null}catch(t){return ze.error("Error while opening sidebar",{error:t}),!1}},order:-50}),Kn=function(){const t=(0,r.nY)("files",{state:()=>({files:{},roots:{}}),getters:{getNode:t=>e=>t.files[e],getNodes:t=>e=>e.map((e=>t.files[e])).filter(Boolean),getRoot:t=>e=>t.roots[e]},actions:{updateNodes(t){const e=t.reduce(((t,e)=>e.fileid?(t[e.fileid]=e,t):(ze.error("Trying to update/set a node without fileid",e),t)),{});l.Ay.set(this,"files",{...this.files,...e})},deleteNodes(t){t.forEach((t=>{t.fileid&&l.Ay.delete(this.files,t.fileid)}))},setRoot(t){let{service:e,root:n}=t;l.Ay.set(this.roots,e,n)},onDeletedNode(t){this.deleteNodes([t])},onCreatedNode(t){this.updateNodes([t])},onUpdatedNode(t){this.updateNodes([t])}}})(...arguments);return t._initialized||((0,Le.B1)("files:node:created",t.onCreatedNode),(0,Le.B1)("files:node:deleted",t.onDeletedNode),(0,Le.B1)("files:node:updated",t.onUpdatedNode),t._initialized=!0),t},Qn=function(){const t=Kn(),e=(0,r.nY)("paths",{state:()=>({paths:{}}),getters:{getPath:t=>(e,n)=>{if(t.paths[e])return t.paths[e][n]}},actions:{addPath(t){this.paths[t.service]||l.Ay.set(this.paths,t.service,{}),l.Ay.set(this.paths[t.service],t.path,t.fileid)},onCreatedNode(e){var n;const s=(null===(n=(0,o.bh)())||void 0===n||null===(n=n.active)||void 0===n?void 0:n.id)||"files";if(e.fileid){if(e.type===o.pt.Folder&&this.addPath({service:s,path:e.path,fileid:e.fileid}),"/"===e.dirname){const n=t.getRoot(s);return n._children||l.Ay.set(n,"_children",[]),void n._children.push(e.fileid)}if(this.paths[s][e.dirname]){const n=this.paths[s][e.dirname],i=t.getNode(n);return ze.debug("Path already exists, updating children",{parentFolder:i,node:e}),i?(i._children||l.Ay.set(i,"_children",[]),void i._children.push(e.fileid)):void ze.error("Parent folder not found",{parentId:n})}ze.debug("Parent path does not exists, skipping children update",{node:e})}else ze.error("Node has no fileid",{node:e})}}})(...arguments);return e._initialized||((0,Le.B1)("files:node:created",e.onCreatedNode),e._initialized=!0),e},Xn=(0,r.nY)("selection",{state:()=>({selected:[],lastSelection:[],lastSelectedIndex:null}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];l.Ay.set(this,"selected",[...new Set(t)])},setLastIndex(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;l.Ay.set(this,"lastSelection",t?this.selected:[]),l.Ay.set(this,"lastSelectedIndex",t)},reset(){l.Ay.set(this,"selected",[]),l.Ay.set(this,"lastSelection",[]),l.Ay.set(this,"lastSelectedIndex",null)}}});let Jn;const Zn=function(){return Jn=(0,Dn.g)(),(0,r.nY)("uploader",{state:()=>({queue:Jn.queue})})(...arguments)};function ts(t){return t instanceof Date?t.toISOString():String(t)}var es=s(91680),ns=s(49296),ss=s(71089),is=s(96763);class rs extends File{constructor(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];var n,s,i;super([],t,{type:"httpd/unix-directory"}),n=this,i=void 0,(s=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}(s="_contents"))in n?Object.defineProperty(n,s,{value:i,enumerable:!0,configurable:!0,writable:!0}):n[s]=i,this._contents=e}set contents(t){this._contents=t}get contents(){return this._contents}get size(){return this._computeDirectorySize(this)}get lastModified(){return 0===this._contents.length?Date.now():this._computeDirectoryMtime(this)}_computeDirectoryMtime(t){return t.contents.reduce(((t,e)=>e.lastModified>t?e.lastModified:t),0)}_computeDirectorySize(t){return t.contents.reduce(((t,e)=>t+e.size),0)}}const os=async t=>{if(t.isFile)return new Promise(((e,n)=>{t.file(e,n)}));ze.debug("Handling recursive file tree",{entry:t.name});const e=t,n=await as(e),s=(await Promise.all(n.map(os))).flat();return new rs(e.name,s)},as=t=>{const e=t.createReader();return new Promise(((t,n)=>{const s=[],i=()=>{e.readEntries((e=>{e.length?(s.push(...e),i()):t(s)}),(t=>{n(t)}))};i()}))},ls=async t=>{const e=(0,o.H4)();if(!await e.exists(t)){ze.debug("Directory does not exist, creating it",{absolutePath:t}),await e.createDirectory(t,{recursive:!0});const n=await e.stat(t,{details:!0,data:(0,o.VL)()});(0,Le.Ic)("files:node:created",(0,o.Al)(n.data))}},cs=async(t,e,n)=>{try{const s=t.filter((t=>n.find((e=>e.basename===(t instanceof File?t.name:t.basename))))).filter(Boolean),i=t.filter((t=>!s.includes(t))),{selected:r,renamed:o}=await(0,Dn.o)(e.path,s,n);return ze.debug("Conflict resolution",{uploads:i,selected:r,renamed:o}),0===r.length&&0===o.length?((0,qe.cf)((0,Ne.Tl)("files","Conflicts resolution skipped")),ze.info("User skipped the conflict resolution"),[]):[...i,...r,...o]}catch(t){is.error(t),(0,qe.Qg)((0,Ne.Tl)("files","Upload cancelled")),ze.error("User cancelled the upload")}return[]};s(18205);var us=s(53110),ds=s(36882),ms=s(39285),ps=s(49264);let fs;const hs=()=>(fs||(fs=new ps.A({concurrency:3})),fs);var gs;!function(t){t.MOVE="Move",t.COPY="Copy",t.MOVE_OR_COPY="move-or-copy"}(gs||(gs={}));const vs=t=>0!=(t.reduce(((t,e)=>Math.min(t,e.permissions)),o.aX.ALL)&o.aX.UPDATE),ws=t=>(t=>t.every((t=>{var e,n;return!JSON.parse(null!==(e=null===(n=t.attributes)||void 0===n?void 0:n["share-attributes"])&&void 0!==e?e:"[]").some((t=>"permissions"===t.scope&&!1===t.enabled&&"download"===t.key))})))(t);var ys,As=s(36117),bs=s(44719);const _s="/files/".concat(null===(ys=(0,a.HW)())||void 0===ys?void 0:ys.uid),Cs=(0,u.dC)("dav"+_s),xs=function(t){return t.split("").reduce((function(t,e){return(t=(t<<5)-t+e.charCodeAt(0))&t}),0)},Ts=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Cs;const e=(0,bs.UU)(t),n=t=>{null==e||e.setHeaders({"X-Requested-With":"XMLHttpRequest",requesttoken:null!=t?t:""})};return(0,a.zo)(n),n((0,a.do)()),(0,bs.Gu)().patch("fetch",((t,e)=>{const n=e.headers;return null!=n&&n.method&&(e.method=n.method,delete n.method),fetch(t,e)})),e}(),Ss=function(t){var e;const n=null===(e=(0,a.HW)())||void 0===e?void 0:e.uid;if(!n)throw new Error("No user id found");const s=t.props,i=(0,o.vb)(null==s?void 0:s.permissions),r=(s["owner-id"]||n).toString(),l=(0,u.dC)("dav"+_s+t.filename),c={id:(null==s?void 0:s.fileid)<0?xs(l):(null==s?void 0:s.fileid)||0,source:l,mtime:new Date(t.lastmod),mime:t.mime||"application/octet-stream",size:(null==s?void 0:s.size)||0,permissions:i,owner:r,root:_s,attributes:{...t,...s,hasPreview:null==s?void 0:s["has-preview"],failed:(null==s?void 0:s.fileid)<0}};return delete c.attributes.props,"file"===t.type?new o.ZH(c):new o.vd(c)},ks=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/";const e=new AbortController,n=(0,o.VL)();return new As.CancelablePromise((async(s,i,r)=>{r((()=>e.abort()));try{const i=await Ts.getDirectoryContents(t,{details:!0,data:n,includeSelf:!0,signal:e.signal}),r=i.data[0],o=i.data.slice(1);if(r.filename!==t)throw new Error("Root node does not match requested path");s({folder:Ss(r),contents:o.map((t=>{try{return Ss(t)}catch(e){return ze.error("Invalid node detected '".concat(t.basename,"'"),{error:e}),null}})).filter(Boolean)})}catch(t){i(t)}}))},Es=t=>{const e=t.filter((t=>t.type===o.pt.File)).length,n=t.filter((t=>t.type===o.pt.Folder)).length;return 0===e?(0,Ne.zw)("files","{folderCount} folder","{folderCount} folders",n,{folderCount:n}):0===n?(0,Ne.zw)("files","{fileCount} file","{fileCount} files",e,{fileCount:e}):1===e?(0,Ne.zw)("files","1 file and {folderCount} folder","1 file and {folderCount} folders",n,{folderCount:n}):1===n?(0,Ne.zw)("files","{fileCount} file and 1 folder","{fileCount} files and 1 folder",e,{fileCount:e}):(0,Ne.Tl)("files","{fileCount} files and {folderCount} folders",{fileCount:e,folderCount:n})},Ls=t=>vs(t)?ws(t)?gs.MOVE_OR_COPY:gs.MOVE:gs.COPY,Ns=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!e)return;if(e.type!==o.pt.Folder)throw new Error((0,Ne.Tl)("files","Destination is not a folder"));if(n===gs.MOVE&&t.dirname===e.path)throw new Error((0,Ne.Tl)("files","This file/folder is already in that directory"));if("".concat(e.path,"/").startsWith("".concat(t.path,"/")))throw new Error((0,Ne.Tl)("files","You cannot move a file/folder onto itself or into a subfolder of itself"));l.Ay.set(t,"status",o.zI.LOADING);const i=hs();return await i.add((async()=>{const i=t=>1===t?(0,Ne.Tl)("files","(copy)"):(0,Ne.Tl)("files","(copy %n)",void 0,t);try{const r=(0,o.H4)(),a=(0,Fn.join)(o.lJ,t.path),l=(0,Fn.join)(o.lJ,e.path);if(n===gs.COPY){let n=t.basename;if(!s){const e=await r.getDirectoryContents(l);n=function(t,e){const n={suffix:t=>"(".concat(t,")"),ignoreFileExtension:!1,...arguments.length>2&&void 0!==arguments[2]?arguments[2]:{}};let s=t,i=1;for(;e.includes(s);){const e=n.ignoreFileExtension?"":(0,Fn.extname)(t),r=(0,Fn.basename)(t,e);s="".concat(r," ").concat(n.suffix(i++)).concat(e)}return s}(t.basename,e.map((t=>t.basename)),{suffix:i,ignoreFileExtension:t.type===o.pt.Folder})}if(await r.copyFile(a,(0,Fn.join)(l,n)),t.dirname===e.path){const{data:t}=await r.stat((0,Fn.join)(l,n),{details:!0,data:(0,o.VL)()});(0,Le.Ic)("files:node:created",(0,o.Al)(t))}}else{const n=await ks(e.path);if((0,Dn.h)([t],n.contents))try{const{selected:s,renamed:i}=await(0,Dn.o)(e.path,[t],n.contents);if(!s.length&&!i.length)return await r.deleteFile(a),void(0,Le.Ic)("files:node:deleted",t)}catch(t){return void(0,qe.Qg)((0,Ne.Tl)("files","Move cancelled"))}await r.moveFile(a,(0,Fn.join)(l,t.basename)),(0,Le.Ic)("files:node:deleted",t)}}catch(t){if(t instanceof us.pe){var r,a,c;if(412===(null==t||null===(r=t.response)||void 0===r?void 0:r.status))throw new Error((0,Ne.Tl)("files","A file or folder with that name already exists in this folder"));if(423===(null==t||null===(a=t.response)||void 0===a?void 0:a.status))throw new Error((0,Ne.Tl)("files","The files are locked"));if(404===(null==t||null===(c=t.response)||void 0===c?void 0:c.status))throw new Error((0,Ne.Tl)("files","The file does not exist anymore"));if(t.message)throw new Error(t.message)}throw ze.debug(t),new Error}finally{l.Ay.set(t,"status",void 0)}}))},Fs=async function(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"/",n=arguments.length>2?arguments[2]:void 0;const s=n.map((t=>t.fileid)).filter(Boolean),i=(0,qe.a1)((0,Ne.Tl)("files","Choose destination")).allowDirectories(!0).setFilter((t=>0!=(t.permissions&o.aX.CREATE)&&!s.includes(t.fileid))).setMimeTypeFilter([]).setMultiSelect(!1).startAt(e);return new Promise(((e,s)=>{i.setButtonFactory(((s,i)=>{const r=[],o=(0,Fn.basename)(i),a=n.map((t=>t.dirname)),l=n.map((t=>t.path));return t!==gs.COPY&&t!==gs.MOVE_OR_COPY||r.push({label:o?(0,Ne.Tl)("files","Copy to {target}",{target:o},void 0,{escape:!1,sanitize:!1}):(0,Ne.Tl)("files","Copy"),type:"primary",icon:ds,async callback(t){e({destination:t[0],action:gs.COPY})}}),a.includes(i)||l.includes(i)||t!==gs.MOVE&&t!==gs.MOVE_OR_COPY||r.push({label:o?(0,Ne.Tl)("files","Move to {target}",{target:o},void 0,{escape:!1,sanitize:!1}):(0,Ne.Tl)("files","Move"),type:t===gs.MOVE?"primary":"secondary",icon:ms,async callback(t){e({destination:t[0],action:gs.MOVE})}}),r})),i.build().pick().catch((t=>{ze.debug(t),t instanceof qe.vT?s(new Error((0,Ne.Tl)("files","Cancelled move or copy operation"))):s(new Error((0,Ne.Tl)("files","Move or copy operation failed")))}))}))};new o.hY({id:"move-copy",displayName(t){switch(Ls(t)){case gs.MOVE:return(0,Ne.Tl)("files","Move");case gs.COPY:return(0,Ne.Tl)("files","Copy");case gs.MOVE_OR_COPY:return(0,Ne.Tl)("files","Move or copy")}},iconSvgInline:()=>ms,enabled:t=>!!t.every((t=>{var e;return null===(e=t.root)||void 0===e?void 0:e.startsWith("/files/")}))&&t.length>0&&(vs(t)||ws(t)),async exec(t,e,n){const s=Ls([t]);let i;try{i=await Fs(s,n,[t])}catch(t){return ze.error(t),!1}try{return await Ns(t,i.destination,i.action),!0}catch(t){return!!(t instanceof Error&&t.message)&&((0,qe.Qg)(t.message),null)}},async execBatch(t,e,n){const s=Ls(t),i=await Fs(s,n,t),r=t.map((async t=>{try{return await Ns(t,i.destination,i.action),!0}catch(e){return ze.error("Failed to ".concat(i.action," node"),{node:t,error:e}),!1}}));return await Promise.all(r)},order:15});var Ps=s(96763);const Is=async t=>{const e=t.filter((t=>"file"===t.kind||(ze.debug("Skipping dropped item",{kind:t.kind,type:t.type}),!1))).map((t=>{var e,n,s,i;return null!==(e=null!==(n=null==t||null===(s=t.getAsEntry)||void 0===s?void 0:s.call(t))&&void 0!==n?n:null==t||null===(i=t.webkitGetAsEntry)||void 0===i?void 0:i.call(t))&&void 0!==e?e:t}));let n=!1;const s=new rs("root");for(const t of e)if(t instanceof DataTransferItem){ze.warn("Could not get FilesystemEntry of item, falling back to file");const e=t.getAsFile();if(null===e){ze.warn("Could not process DataTransferItem",{type:t.type,kind:t.kind}),(0,qe.Qg)((0,Ne.Tl)("files","One of the dropped files could not be processed"));continue}if("httpd/unix-directory"===e.type||!e.type){n||(ze.warn("Browser does not support Filesystem API. Directories will not be uploaded"),(0,qe.I9)((0,Ne.Tl)("files","Your browser does not support the Filesystem API. Directories will not be uploaded")),n=!0);continue}s.contents.push(e)}else try{s.contents.push(await os(t))}catch(t){ze.error("Error while traversing file tree",{error:t})}return s},Ds=async(t,e,n)=>{const s=(0,Dn.g)();if(await(0,Dn.h)(t.contents,n)&&(t.contents=await cs(t.contents,e,n)),0===t.contents.length)return ze.info("No files to upload",{root:t}),(0,qe.cf)((0,Ne.Tl)("files","No files to upload")),[];ze.debug("Uploading files to ".concat(e.path),{root:t,contents:t.contents});const i=[],r=async(t,n)=>{for(const a of t.contents){const t=(0,Fn.join)(n,a.name);if(a instanceof rs){const n=(0,ss.HS)(o.lJ,e.path,t);try{Ps.debug("Processing directory",{relativePath:t}),await ls(n),await r(a,t)}catch(t){(0,qe.Qg)((0,Ne.Tl)("files","Unable to create the directory {directory}",{directory:a.name})),ze.error("",{error:t,absolutePath:n,directory:a})}}else ze.debug("Uploading file to "+(0,Fn.join)(e.path,t),{file:a}),i.push(s.upload(t,a,e.source))}};s.pause(),await r(t,"/"),s.start();const a=(await Promise.allSettled(i)).filter((t=>"rejected"===t.status));return a.length>0?(ze.error("Error while uploading files",{errors:a}),(0,qe.Qg)((0,Ne.Tl)("files","Some files could not be uploaded")),[]):(ze.debug("Files uploaded successfully"),(0,qe.Te)((0,Ne.Tl)("files","Files uploaded successfully")),Promise.all(i))},Os=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];const i=[];if(await(0,Dn.h)(t,n)&&(t=await cs(t,e,n)),0===t.length)return ze.info("No files to process",{nodes:t}),void(0,qe.cf)((0,Ne.Tl)("files","No files to process"));for(const n of t)l.Ay.set(n,"status",o.zI.LOADING),i.push(Ns(n,e,s?gs.COPY:gs.MOVE));const r=await Promise.allSettled(i);t.forEach((t=>l.Ay.set(t,"status",void 0)));const a=r.filter((t=>"rejected"===t.status));if(a.length>0)return ze.error("Error while copying or moving files",{errors:a}),void(0,qe.Qg)(s?(0,Ne.Tl)("files","Some files could not be copied"):(0,Ne.Tl)("files","Some files could not be moved"));ze.debug("Files copy/move successful"),(0,qe.Te)(s?(0,Ne.Tl)("files","Files copied successfully"):(0,Ne.Tl)("files","Files moved successfully"))},Us=(0,r.nY)("dragging",{state:()=>({dragging:[]}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];l.Ay.set(this,"dragging",t)},reset(){l.Ay.set(this,"dragging",[])}}}),Bs=l.Ay.extend({data:()=>({filesListWidth:null}),mounted(){var t;const e=document.querySelector("#app-content-vue");this.filesListWidth=null!==(t=null==e?void 0:e.clientWidth)&&void 0!==t?t:null,this.$resizeObserver=new ResizeObserver((t=>{t.length>0&&t[0].target===e&&(this.filesListWidth=t[0].contentRect.width)})),this.$resizeObserver.observe(e)},beforeDestroy(){this.$resizeObserver.disconnect()}}),Rs=(0,l.pM)({name:"BreadCrumbs",components:{NcBreadcrumbs:ns.N,NcBreadcrumb:es.N,NcIconSvgWrapper:Ue.A},mixins:[Bs],props:{path:{type:String,default:"/"}},setup:()=>({draggingStore:Us(),filesStore:Kn(),pathsStore:Qn(),selectionStore:Xn(),uploaderStore:Zn()}),computed:{currentView(){return this.$navigation.active},dirs(){var t;return["/",...this.path.split("/").filter(Boolean).map((t="/",e=>t+="".concat(e,"/"))).map((t=>t.replace(/^(.+)\/$/,"$1")))]},sections(){return this.dirs.map(((t,e)=>{const n=this.getFileIdFromPath(t),s={...this.$route,params:{fileid:n},query:{dir:t}};return{dir:t,exact:!0,name:this.getDirDisplayName(t),to:s,disableDrop:e===this.dirs.length-1}}))},isUploadInProgress(){return 0!==this.uploaderStore.queue.length},wrapUploadProgressBar(){return this.isUploadInProgress&&this.filesListWidth<512},viewIcon(){var t,e;return null!==(t=null===(e=this.currentView)||void 0===e?void 0:e.icon)&&void 0!==t?t:'<svg xmlns="http://www.w3.org/2000/svg" id="mdi-home" viewBox="0 0 24 24"><path d="M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z" /></svg>'},selectedFiles(){return this.selectionStore.selected},draggingFiles(){return this.draggingStore.dragging}},methods:{getNodeFromId(t){return this.filesStore.getNode(t)},getFileIdFromPath(t){var e;return this.pathsStore.getPath(null===(e=this.currentView)||void 0===e?void 0:e.id,t)},getDirDisplayName(t){var e,n;if("/"===t)return(null===(n=this.$navigation)||void 0===n||null===(n=n.active)||void 0===n?void 0:n.name)||(0,Ne.Tl)("files","Home");const s=this.getFileIdFromPath(t),i=s?this.getNodeFromId(s):void 0;return(null==i||null===(e=i.attributes)||void 0===e?void 0:e.displayName)||(0,Fn.basename)(t)},onClick(t){var e;(null==t||null===(e=t.query)||void 0===e?void 0:e.dir)===this.$route.query.dir&&this.$emit("reload")},onDragOver(t,e){e!==this.dirs[this.dirs.length-1]?t.ctrlKey?t.dataTransfer.dropEffect="copy":t.dataTransfer.dropEffect="move":t.dataTransfer.dropEffect="none"},async onDrop(t,e){var n,s,i;if(!(this.draggingFiles||null!==(n=t.dataTransfer)&&void 0!==n&&null!==(n=n.items)&&void 0!==n&&n.length))return;t.preventDefault();const r=this.draggingFiles,a=[...(null===(s=t.dataTransfer)||void 0===s?void 0:s.items)||[]],l=await Is(a),c=await(null===(i=this.currentView)||void 0===i?void 0:i.getContents(e)),u=null==c?void 0:c.folder;if(!u)return void(0,qe.Qg)(this.t("files","Target folder does not exist any more"));const d=0!=(u.permissions&o.aX.CREATE),m=t.ctrlKey;if(!d||0!==t.button)return;if(ze.debug("Dropped",{event:t,folder:u,selection:r,fileTree:l}),l.contents.length>0)return void await Ds(l,u,c.contents);const p=r.map((t=>this.filesStore.getNode(t)));await Os(p,u,c.contents,m),r.some((t=>this.selectedFiles.includes(t)))&&(ze.debug("Dropped selection, resetting select store..."),this.selectionStore.reset())},titleForSection(t,e){var n;return(null==e||null===(n=e.to)||void 0===n||null===(n=n.query)||void 0===n?void 0:n.dir)===this.$route.query.dir?(0,Ne.Tl)("files","Reload current directory"):0===t?(0,Ne.Tl)("files",'Go to the "{dir}" directory',e):null},ariaForSection(t){var e;return(null==t||null===(e=t.to)||void 0===e||null===(e=e.query)||void 0===e?void 0:e.dir)===this.$route.query.dir?(0,Ne.Tl)("files","Reload current directory"):null},t:Ne.Tl}});var js=s(35833),Ms={};Ms.styleTagTransform=an(),Ms.setAttributes=nn(),Ms.insert=tn().bind(null,"head"),Ms.domAPI=Je(),Ms.insertStyleElement=rn(),Qe()(js.A,Ms),js.A&&js.A.locals&&js.A.locals;const zs=(0,Pe.A)(Rs,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcBreadcrumbs",{staticClass:"files-list__breadcrumbs",class:{"files-list__breadcrumbs--with-progress":t.wrapUploadProgressBar},attrs:{"data-cy-files-content-breadcrumbs":"","aria-label":t.t("files","Current directory path")},scopedSlots:t._u([{key:"actions",fn:function(){return[t._t("actions")]},proxy:!0}],null,!0)},t._l(t.sections,(function(n,s){return e("NcBreadcrumb",t._b({key:n.dir,attrs:{dir:"auto",to:n.to,"force-icon-text":0===s&&t.filesListWidth>=486,title:t.titleForSection(s,n),"aria-description":t.ariaForSection(n)},on:{drop:function(e){return t.onDrop(e,n.dir)}},nativeOn:{click:function(e){return t.onClick(n.to)},dragover:function(e){return t.onDragOver(e,n.dir)}},scopedSlots:t._u([0===s?{key:"icon",fn:function(){return[e("NcIconSvgWrapper",{attrs:{size:20,svg:t.viewIcon}})]},proxy:!0}:null],null,!0)},"NcBreadcrumb",n,!1))})),1)}),[],!1,null,"499e1525",null).exports;var Vs=s(51651);const qs=(0,r.nY)("actionsmenu",{state:()=>({opened:null})}),$s=function(){const t=(0,r.nY)("renaming",{state:()=>({renamingNode:void 0,newName:""})})(...arguments);return t._initialized||((0,Le.B1)("files:node:rename",(function(e){t.renamingNode=e,t.newName=e.basename})),t._initialized=!0),t};var Hs=s(55042);const Ws={name:"FileMultipleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Gs=(0,Pe.A)(Ws,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon file-multiple-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var Ys=s(11358);const Ks=l.Ay.extend({name:"DragAndDropPreview",components:{FileMultipleIcon:Gs,FolderIcon:Ys.A},data:()=>({nodes:[]}),computed:{isSingleNode(){return 1===this.nodes.length},isSingleFolder(){return this.isSingleNode&&this.nodes[0].type===o.pt.Folder},name(){return this.size?"".concat(this.summary," – ").concat(this.size):this.summary},size(){const t=this.nodes.reduce(((t,e)=>t+e.size||0),0),e=parseInt(t,10)||0;return"number"!=typeof e||e<0?null:(0,o.v7)(e,!0)},summary(){if(this.isSingleNode){var t;const e=this.nodes[0];return(null===(t=e.attributes)||void 0===t?void 0:t.displayName)||e.basename}return Es(this.nodes)}},methods:{update(t){this.nodes=t,this.$refs.previewImg.replaceChildren(),t.slice(0,3).forEach((t=>{const e=document.querySelector('[data-cy-files-list-row-fileid="'.concat(t.fileid,'"] .files-list__row-icon img'));e&&this.$refs.previewImg.appendChild(e.parentNode.cloneNode(!0))})),this.$nextTick((()=>{this.$emit("loaded",this.$el)}))}}}),Qs=Ks;var Xs=s(52608),Js={};Js.styleTagTransform=an(),Js.setAttributes=nn(),Js.insert=tn().bind(null,"head"),Js.domAPI=Je(),Js.insertStyleElement=rn(),Qe()(Xs.A,Js),Xs.A&&Xs.A.locals&&Xs.A.locals;const Zs=(0,Pe.A)(Qs,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list-drag-image"},[e("span",{staticClass:"files-list-drag-image__icon"},[e("span",{ref:"previewImg"}),t._v(" "),t.isSingleFolder?e("FolderIcon"):e("FileMultipleIcon")],1),t._v(" "),e("span",{staticClass:"files-list-drag-image__name"},[t._v(t._s(t.name))])])}),[],!1,null,null,null).exports,ti=l.Ay.extend(Zs);let ei;l.Ay.directive("onClickOutside",Hs.z0);const ni=(0,l.pM)({props:{source:{type:[o.vd,o.ZH,o.bP],required:!0},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},data:()=>({loading:"",dragover:!1,gridMode:!1}),computed:{currentView(){return this.$navigation.active},currentDir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentFileId(){var t,e;return(null===(t=this.$route.params)||void 0===t?void 0:t.fileid)||(null===(e=this.$route.query)||void 0===e?void 0:e.fileid)||null},fileid(){var t;return null===(t=this.source)||void 0===t?void 0:t.fileid},uniqueId(){return xs(this.source.source)},isLoading(){return this.source.status===o.zI.LOADING},extension(){var t;return null!==(t=this.source.attributes)&&void 0!==t&&t.displayName?(0,Fn.extname)(this.source.attributes.displayName):this.source.extension||""},displayName(){const t=this.extension,e=this.source.attributes.displayName||this.source.basename;return t?e.slice(0,0-t.length):e},draggingFiles(){return this.draggingStore.dragging},selectedFiles(){return this.selectionStore.selected},isSelected(){return this.fileid&&this.selectedFiles.includes(this.fileid)},isRenaming(){return this.renamingStore.renamingNode===this.source},isRenamingSmallScreen(){return this.isRenaming&&this.filesListWidth<512},isActive(){var t,e,n,s;return(null===(t=this.fileid)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t))===(null===(n=this.currentFileId)||void 0===n||null===(s=n.toString)||void 0===s?void 0:s.call(n))},canDrag(){if(this.isRenaming)return!1;const t=t=>0!=((null==t?void 0:t.permissions)&o.aX.UPDATE);return this.selectedFiles.length>0?this.selectedFiles.map((t=>this.filesStore.getNode(t))).every(t):t(this.source)},canDrop(){return!(this.source.type!==o.pt.Folder||this.fileid&&this.draggingFiles.includes(this.fileid)||0==(this.source.permissions&o.aX.CREATE))},openedMenu:{get(){return this.actionsMenuStore.opened===this.uniqueId.toString()},set(t){if(t){var e;const t=null===(e=this.$el)||void 0===e?void 0:e.closest("main.app-content");t.style.removeProperty("--mouse-pos-x"),t.style.removeProperty("--mouse-pos-y")}this.actionsMenuStore.opened=t?this.uniqueId.toString():null}}},watch:{source(t,e){t.source!==e.source&&this.resetState()}},beforeDestroy(){this.resetState()},methods:{resetState(){var t,e;this.loading="",null===(t=this.$refs)||void 0===t||null===(t=t.preview)||void 0===t||null===(e=t.reset)||void 0===e||e.call(t),this.openedMenu=!1},onRightClick(t){if(this.openedMenu)return;if(!this.gridMode){var e;const n=null===(e=this.$el)||void 0===e?void 0:e.closest("main.app-content"),s=n.getBoundingClientRect();n.style.setProperty("--mouse-pos-x",Math.max(0,t.clientX-s.left-200)+"px"),n.style.setProperty("--mouse-pos-y",Math.max(0,t.clientY-s.top)+"px")}const n=this.selectedFiles.length>1;this.actionsMenuStore.opened=this.isSelected&&n?"global":this.uniqueId.toString(),t.preventDefault(),t.stopPropagation()},execDefaultAction(t){if(t.ctrlKey||t.metaKey)return t.preventDefault(),window.open((0,u.Jv)("/f/{fileId}",{fileId:this.fileid})),!1;this.$refs.actions.execDefaultAction(t)},openDetailsIfAvailable(t){var e;t.preventDefault(),t.stopPropagation(),null!=Yn&&null!==(e=Yn.enabled)&&void 0!==e&&e.call(Yn,[this.source],this.currentView)&&Yn.exec(this.source,this.currentView,this.currentDir)},onDragOver(t){this.dragover=this.canDrop,this.canDrop?t.ctrlKey?t.dataTransfer.dropEffect="copy":t.dataTransfer.dropEffect="move":t.dataTransfer.dropEffect="none"},onDragLeave(t){const e=t.currentTarget;null!=e&&e.contains(t.relatedTarget)||(this.dragover=!1)},async onDragStart(t){var e,n,s;if(t.stopPropagation(),!this.canDrag||!this.fileid)return t.preventDefault(),void t.stopPropagation();ze.debug("Drag started",{event:t}),null===(e=t.dataTransfer)||void 0===e||null===(n=e.clearData)||void 0===n||n.call(e),this.renamingStore.$reset(),this.selectedFiles.includes(this.fileid)?this.draggingStore.set(this.selectedFiles):this.draggingStore.set([this.fileid]);const i=this.draggingStore.dragging.map((t=>this.filesStore.getNode(t))),r=await(async t=>new Promise((e=>{ei||(ei=(new ti).$mount(),document.body.appendChild(ei.$el)),ei.update(t),ei.$on("loaded",(()=>{e(ei.$el),ei.$off("loaded")}))})))(i);null===(s=t.dataTransfer)||void 0===s||s.setDragImage(r,-10,-10)},onDragEnd(){this.draggingStore.reset(),this.dragover=!1,ze.debug("Drag ended")},async onDrop(t){var e,n,s;if(!(this.draggingFiles||null!==(e=t.dataTransfer)&&void 0!==e&&null!==(e=e.items)&&void 0!==e&&e.length))return;t.preventDefault(),t.stopPropagation();const i=this.draggingFiles,r=[...(null===(n=t.dataTransfer)||void 0===n?void 0:n.items)||[]],o=await Is(r),a=await(null===(s=this.currentView)||void 0===s?void 0:s.getContents(this.source.path)),l=null==a?void 0:a.folder;if(!l)return void(0,qe.Qg)(this.t("files","Target folder does not exist any more"));if(!this.canDrop||t.button)return;const c=t.ctrlKey;if(this.dragover=!1,ze.debug("Dropped",{event:t,folder:l,selection:i,fileTree:o}),o.contents.length>0)return void await Ds(o,l,a.contents);const u=i.map((t=>this.filesStore.getNode(t)));await Os(u,l,a.contents,c),i.some((t=>this.selectedFiles.includes(t)))&&(ze.debug("Dropped selection, resetting select store..."),this.selectionStore.reset())},t:Ne.Tl}});var si=s(4604);const ii={name:"CustomElementRender",props:{source:{type:Object,required:!0},currentView:{type:Object,required:!0},render:{type:Function,required:!0}},watch:{source(){this.updateRootElement()},currentView(){this.updateRootElement()}},mounted(){this.updateRootElement()},methods:{async updateRootElement(){const t=await this.render(this.source,this.currentView);t?this.$el.replaceChildren(t):this.$el.replaceChildren()}}},ri=(0,Pe.A)(ii,(function(){return(0,this._self._c)("span")}),[],!1,null,null,null).exports;var oi=s(63420),ai=s(24764),li=s(10501);const ci={name:"ArrowLeftIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ui=(0,Pe.A)(ci,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon arrow-left-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,di=(0,o.qK)(),mi=(0,l.pM)({name:"FileEntryActions",components:{ArrowLeftIcon:ui,CustomElementRender:ri,NcActionButton:oi.A,NcActions:ai.A,NcActionSeparator:li.A,NcIconSvgWrapper:Ue.A,NcLoadingIcon:zn.A},props:{filesListWidth:{type:Number,required:!0},loading:{type:String,required:!0},opened:{type:Boolean,default:!1},source:{type:Object,required:!0},gridMode:{type:Boolean,default:!1}},data:()=>({openedSubmenu:null}),computed:{currentDir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentView(){return this.$navigation.active},isLoading(){return this.source.status===o.zI.LOADING},enabledActions(){return this.source.attributes.failed?[]:di.filter((t=>!t.enabled||t.enabled([this.source],this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0)))},enabledInlineActions(){return this.filesListWidth<768||this.gridMode?[]:this.enabledActions.filter((t=>{var e;return null==t||null===(e=t.inline)||void 0===e?void 0:e.call(t,this.source,this.currentView)}))},enabledRenderActions(){return this.gridMode?[]:this.enabledActions.filter((t=>"function"==typeof t.renderInline))},enabledDefaultActions(){return this.enabledActions.filter((t=>!(null==t||!t.default)))},enabledMenuActions(){if(this.openedSubmenu)return this.enabledInlineActions;const t=[...this.enabledInlineActions,...this.enabledActions.filter((t=>t.default!==o.m9.HIDDEN&&"function"!=typeof t.renderInline))].filter(((t,e,n)=>e===n.findIndex((e=>e.id===t.id)))),e=t.filter((t=>!t.parent)).map((t=>t.id));return t.filter((t=>!(t.parent&&e.includes(t.parent))))},enabledSubmenuActions(){return this.enabledActions.filter((t=>t.parent)).reduce(((t,e)=>(t[e.parent]||(t[e.parent]=[]),t[e.parent].push(e),t)),{})},openedMenu:{get(){return this.opened},set(t){this.$emit("update:opened",t)}},getBoundariesElement:()=>document.querySelector(".app-content > .files-list"),mountType(){return this.source._attributes["mount-type"]}},methods:{actionDisplayName(t){if((this.gridMode||this.filesListWidth<768&&t.inline)&&"function"==typeof t.title){const e=t.title([this.source],this.currentView);if(e)return e}return t.displayName([this.source],this.currentView)},async onActionClick(t){let e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(this.isLoading||""!==this.loading)return;if(this.enabledSubmenuActions[t.id])return void(this.openedSubmenu=t);const n=t.displayName([this.source],this.currentView);try{this.$emit("update:loading",t.id),l.Ay.set(this.source,"status",o.zI.LOADING);const e=await t.exec(this.source,this.currentView,this.currentDir);if(null==e)return;if(e)return void(0,qe.Te)((0,Ne.Tl)("files",'"{displayName}" action executed successfully',{displayName:n}));(0,qe.Qg)((0,Ne.Tl)("files",'"{displayName}" action failed',{displayName:n}))}catch(e){ze.error("Error while executing action",{action:t,e}),(0,qe.Qg)((0,Ne.Tl)("files",'"{displayName}" action failed',{displayName:n}))}finally{this.$emit("update:loading",""),l.Ay.set(this.source,"status",void 0),e&&(this.openedSubmenu=null)}},execDefaultAction(t){this.enabledDefaultActions.length>0&&(t.preventDefault(),t.stopPropagation(),this.enabledDefaultActions[0].exec(this.source,this.currentView,this.currentDir))},isMenu(t){var e;return(null===(e=this.enabledSubmenuActions[t])||void 0===e?void 0:e.length)>0},async onBackToMenuClick(t){this.openedSubmenu=null,await this.$nextTick(),this.$nextTick((()=>{var e;const n=null===(e=this.$refs["action-".concat(t.id)])||void 0===e?void 0:e[0];var s;n&&(null===(s=n.$el.querySelector("button"))||void 0===s||s.focus())}))},t:Ne.Tl}}),pi=mi;var fi=s(90908),hi={};hi.styleTagTransform=an(),hi.setAttributes=nn(),hi.insert=tn().bind(null,"head"),hi.domAPI=Je(),hi.insertStyleElement=rn(),Qe()(fi.A,hi),fi.A&&fi.A.locals&&fi.A.locals;var gi=s(81640),vi={};vi.styleTagTransform=an(),vi.setAttributes=nn(),vi.insert=tn().bind(null,"head"),vi.domAPI=Je(),vi.insertStyleElement=rn(),Qe()(gi.A,vi),gi.A&&gi.A.locals&&gi.A.locals;var wi=(0,Pe.A)(pi,(function(){var t,e,n=this,s=n._self._c;return n._self._setupProxy,s("td",{staticClass:"files-list__row-actions",attrs:{"data-cy-files-list-row-actions":""}},[n._l(n.enabledRenderActions,(function(t){return s("CustomElementRender",{key:t.id,staticClass:"files-list__row-action--inline",class:"files-list__row-action-"+t.id,attrs:{"current-view":n.currentView,render:t.renderInline,source:n.source}})})),n._v(" "),s("NcActions",{ref:"actionsMenu",attrs:{"boundaries-element":n.getBoundariesElement,container:n.getBoundariesElement,"force-name":!0,type:"tertiary","force-menu":0===n.enabledInlineActions.length,inline:n.enabledInlineActions.length,open:n.openedMenu},on:{"update:open":function(t){n.openedMenu=t},close:function(t){n.openedSubmenu=null}}},[n._l(n.enabledMenuActions,(function(t){var e;return s("NcActionButton",{key:t.id,ref:"action-".concat(t.id),refInFor:!0,class:{["files-list__row-action-".concat(t.id)]:!0,"files-list__row-action--menu":n.isMenu(t.id)},attrs:{"close-after-click":!n.isMenu(t.id),"data-cy-files-list-row-action":t.id,"is-menu":n.isMenu(t.id),title:null===(e=t.title)||void 0===e?void 0:e.call(t,[n.source],n.currentView)},on:{click:function(e){return n.onActionClick(t)}},scopedSlots:n._u([{key:"icon",fn:function(){return[n.loading===t.id?s("NcLoadingIcon",{attrs:{size:18}}):s("NcIconSvgWrapper",{attrs:{svg:t.iconSvgInline([n.source],n.currentView)}})]},proxy:!0}],null,!0)},[n._v("\n\t\t\t"+n._s("shared"===n.mountType&&"sharing-status"===t.id?"":n.actionDisplayName(t))+"\n\t\t")])})),n._v(" "),n.openedSubmenu&&n.enabledSubmenuActions[null===(t=n.openedSubmenu)||void 0===t?void 0:t.id]?[s("NcActionButton",{staticClass:"files-list__row-action-back",on:{click:function(t){return n.onBackToMenuClick(n.openedSubmenu)}},scopedSlots:n._u([{key:"icon",fn:function(){return[s("ArrowLeftIcon")]},proxy:!0}],null,!1,3001860362)},[n._v("\n\t\t\t\t"+n._s(n.actionDisplayName(n.openedSubmenu))+"\n\t\t\t")]),n._v(" "),s("NcActionSeparator"),n._v(" "),n._l(n.enabledSubmenuActions[null===(e=n.openedSubmenu)||void 0===e?void 0:e.id],(function(t){var e;return s("NcActionButton",{key:t.id,staticClass:"files-list__row-action--submenu",class:"files-list__row-action-".concat(t.id),attrs:{"close-after-click":"","data-cy-files-list-row-action":t.id,title:null===(e=t.title)||void 0===e?void 0:e.call(t,[n.source],n.currentView)},on:{click:function(e){return n.onActionClick(t)}},scopedSlots:n._u([{key:"icon",fn:function(){return[n.loading===t.id?s("NcLoadingIcon",{attrs:{size:18}}):s("NcIconSvgWrapper",{attrs:{svg:t.iconSvgInline([n.source],n.currentView)}})]},proxy:!0}],null,!0)},[n._v("\n\t\t\t\t"+n._s(n.actionDisplayName(t))+"\n\t\t\t")])}))]:n._e()],2)],2)}),[],!1,null,"5edd44ea",null);const yi=wi.exports,Ai=(0,l.pM)({name:"FileEntryCheckbox",components:{NcCheckboxRadioSwitch:pn.A,NcLoadingIcon:zn.A},props:{fileid:{type:Number,required:!0},isLoading:{type:Boolean,default:!1},nodes:{type:Array,required:!0},source:{type:Object,required:!0}},setup(){const t=Xn(),e=function(){const t=(0,r.nY)("keyboard",{state:()=>({altKey:!1,ctrlKey:!1,metaKey:!1,shiftKey:!1}),actions:{onEvent(t){t||(t=window.event),l.Ay.set(this,"altKey",!!t.altKey),l.Ay.set(this,"ctrlKey",!!t.ctrlKey),l.Ay.set(this,"metaKey",!!t.metaKey),l.Ay.set(this,"shiftKey",!!t.shiftKey)}}})(...arguments);return t._initialized||(window.addEventListener("keydown",t.onEvent),window.addEventListener("keyup",t.onEvent),window.addEventListener("mousemove",t.onEvent),t._initialized=!0),t}();return{keyboardStore:e,selectionStore:t}},computed:{selectedFiles(){return this.selectionStore.selected},isSelected(){return this.selectedFiles.includes(this.fileid)},index(){return this.nodes.findIndex((t=>t.fileid===this.fileid))},isFile(){return this.source.type===o.pt.File},ariaLabel(){return this.isFile?(0,Ne.Tl)("files",'Toggle selection for file "{displayName}"',{displayName:this.source.basename}):(0,Ne.Tl)("files",'Toggle selection for folder "{displayName}"',{displayName:this.source.basename})}},methods:{onSelectionChange(t){var e;const n=this.index,s=this.selectionStore.lastSelectedIndex;if(null!==(e=this.keyboardStore)&&void 0!==e&&e.shiftKey&&null!==s){const t=this.selectedFiles.includes(this.fileid),e=Math.min(n,s),i=Math.max(s,n),r=this.selectionStore.lastSelection,o=this.nodes.map((t=>t.fileid)).slice(e,i+1).filter(Boolean),a=[...r,...o].filter((e=>!t||e!==this.fileid));return ze.debug("Shift key pressed, selecting all files in between",{start:e,end:i,filesToSelect:o,isAlreadySelected:t}),void this.selectionStore.set(a)}const i=t?[...this.selectedFiles,this.fileid]:this.selectedFiles.filter((t=>t!==this.fileid));ze.debug("Updating selection",{selection:i}),this.selectionStore.set(i),this.selectionStore.setLastIndex(n)},resetSelection(){this.selectionStore.reset()},t:Ne.Tl}}),bi=(0,Pe.A)(Ai,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("td",{staticClass:"files-list__row-checkbox",on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.resetSelection.apply(null,arguments)}}},[t.isLoading?e("NcLoadingIcon"):e("NcCheckboxRadioSwitch",{attrs:{"aria-label":t.ariaLabel,checked:t.isSelected},on:{"update:checked":t.onSelectionChange}})],1)}),[],!1,null,null,null).exports;var _i=s(82182);const Ci=(0,Be.C)("files","forbiddenCharacters",""),xi=l.Ay.extend({name:"FileEntryName",components:{NcTextField:_i.A},props:{displayName:{type:String,required:!0},extension:{type:String,required:!0},filesListWidth:{type:Number,required:!0},nodes:{type:Array,required:!0},source:{type:Object,required:!0},gridMode:{type:Boolean,default:!1}},setup:()=>({renamingStore:$s()}),computed:{isRenaming(){return this.renamingStore.renamingNode===this.source},isRenamingSmallScreen(){return this.isRenaming&&this.filesListWidth<512},newName:{get(){return this.renamingStore.newName},set(t){this.renamingStore.newName=t}},renameLabel(){return{[o.pt.File]:(0,Ne.Tl)("files","File name"),[o.pt.Folder]:(0,Ne.Tl)("files","Folder name")}[this.source.type]},linkTo(){var t,e;if(this.source.attributes.failed)return{is:"span",params:{title:(0,Ne.Tl)("files","This node is unavailable")}};const n=null===(t=this.$parent)||void 0===t||null===(t=t.$refs)||void 0===t||null===(t=t.actions)||void 0===t?void 0:t.enabledDefaultActions;return(null==n?void 0:n.length)>0?{is:"a",params:{title:n[0].displayName([this.source],this.currentView),role:"button",tabindex:"0"}}:(null===(e=this.source)||void 0===e?void 0:e.permissions)&o.aX.READ?{is:"a",params:{download:this.source.basename,href:this.source.source,title:(0,Ne.Tl)("files","Download file {name}",{name:this.displayName}),tabindex:"0"}}:{is:"span"}}},watch:{isRenaming:{immediate:!0,handler(t){t&&this.startRenaming()}}},methods:{checkInputValidity(t){var e,n;const s=t.target,i=(null===(e=(n=this.newName).trim)||void 0===e?void 0:e.call(n))||"";ze.debug("Checking input validity",{newName:i});try{this.isFileNameValid(i),s.setCustomValidity(""),s.title=""}catch(t){s.setCustomValidity(t.message),s.title=t.message}finally{s.reportValidity()}},isFileNameValid(t){const e=t.trim();if("."===e||".."===e)throw new Error((0,Ne.Tl)("files",'"{name}" is an invalid file name.',{name:t}));if(0===e.length)throw new Error((0,Ne.Tl)("files","File name cannot be empty."));if(-1!==e.indexOf("/"))throw new Error((0,Ne.Tl)("files",'"/" is not allowed inside a file name.'));if(e.match(OC.config.blacklist_files_regex))throw new Error((0,Ne.Tl)("files",'"{name}" is not an allowed filetype.',{name:t}));if(this.checkIfNodeExists(t))throw new Error((0,Ne.Tl)("files","{newName} already exists.",{newName:t}));return e.split("").forEach((t=>{if(-1!==Ci.indexOf(t))throw new Error(this.t("files",'"{char}" is not allowed inside a file name.',{char:t}))})),!0},checkIfNodeExists(t){return this.nodes.find((e=>e.basename===t&&e!==this.source))},startRenaming(){this.$nextTick((()=>{var t;const e=(this.source.extension||"").split("").length,n=this.source.basename.split("").length-e,s=null===(t=this.$refs.renameInput)||void 0===t||null===(t=t.$refs)||void 0===t||null===(t=t.inputField)||void 0===t||null===(t=t.$refs)||void 0===t?void 0:t.input;s?(s.setSelectionRange(0,n),s.focus(),s.dispatchEvent(new Event("keyup"))):ze.error("Could not find the rename input")}))},stopRenaming(){this.isRenaming&&this.renamingStore.$reset()},async onRename(){var t,e;const n=this.source.basename,s=this.source.encodedSource,i=(null===(t=(e=this.newName).trim)||void 0===t?void 0:t.call(e))||"";if(""!==i)if(n!==i)if(this.checkIfNodeExists(i))(0,qe.Qg)((0,Ne.Tl)("files","Another entry with the same name already exists"));else{this.loading="renaming",l.Ay.set(this.source,"status",o.zI.LOADING),this.source.rename(i),ze.debug("Moving file to",{destination:this.source.encodedSource,oldEncodedSource:s});try{await(0,Re.A)({method:"MOVE",url:s,headers:{Destination:this.source.encodedSource,Overwrite:"F"}}),(0,Le.Ic)("files:node:updated",this.source),(0,Le.Ic)("files:node:renamed",this.source),(0,qe.Te)((0,Ne.Tl)("files",'Renamed "{oldName}" to "{newName}"',{oldName:n,newName:i})),this.stopRenaming(),this.$nextTick((()=>{this.$refs.basename.focus()}))}catch(t){var r,a;if(ze.error("Error while renaming file",{error:t}),this.source.rename(n),this.$refs.renameInput.focus(),404===(null==t||null===(r=t.response)||void 0===r?void 0:r.status))return void(0,qe.Qg)((0,Ne.Tl)("files",'Could not rename "{oldName}", it does not exist any more',{oldName:n}));if(412===(null==t||null===(a=t.response)||void 0===a?void 0:a.status))return void(0,qe.Qg)((0,Ne.Tl)("files",'The name "{newName}" is already used in the folder "{dir}". Please choose a different name.',{newName:i,dir:this.currentDir}));(0,qe.Qg)((0,Ne.Tl)("files",'Could not rename "{oldName}"',{oldName:n}))}finally{this.loading=!1,l.Ay.set(this.source,"status",void 0)}}else this.stopRenaming();else(0,qe.Qg)((0,Ne.Tl)("files","Name cannot be empty"))},t:Ne.Tl}}),Ti=(0,Pe.A)(xi,(function(){var t=this,e=t._self._c;return t._self._setupProxy,t.isRenaming?e("form",{directives:[{name:"on-click-outside",rawName:"v-on-click-outside",value:t.stopRenaming,expression:"stopRenaming"}],staticClass:"files-list__row-rename",attrs:{"aria-label":t.t("files","Rename file")},on:{submit:function(e){return e.preventDefault(),e.stopPropagation(),t.onRename.apply(null,arguments)}}},[e("NcTextField",{ref:"renameInput",attrs:{label:t.renameLabel,autofocus:!0,minlength:1,required:!0,value:t.newName,enterkeyhint:"done"},on:{"update:value":function(e){t.newName=e},keyup:[t.checkInputValidity,function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.stopRenaming.apply(null,arguments)}]}})],1):e(t.linkTo.is,t._b({ref:"basename",tag:"component",staticClass:"files-list__row-name-link",attrs:{"aria-hidden":t.isRenaming,"data-cy-files-list-row-name-link":""},on:{click:function(e){return t.$emit("click",e)}}},"component",t.linkTo.params,!1),[e("span",{staticClass:"files-list__row-name-text"},[e("span",{staticClass:"files-list__row-name-",domProps:{textContent:t._s(t.displayName)}}),t._v(" "),e("span",{staticClass:"files-list__row-name-ext",domProps:{textContent:t._s(t.extension)}})])])}),[],!1,null,null,null).exports;var Si=s(72755);const ki={name:"FileIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ei=(0,Pe.A)(ki,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon file-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Li={name:"FolderOpenIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ni=(0,Pe.A)(Li,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon folder-open-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Fi={name:"KeyIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Pi=(0,Pe.A)(Fi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon key-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Ii={name:"NetworkIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Di=(0,Pe.A)(Ii,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon network-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Oi={name:"TagIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ui=(0,Pe.A)(Oi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon tag-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Bi={name:"PlayCircleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ri=(0,Pe.A)(Bi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon play-circle-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,ji={name:"CollectivesIcon",props:{title:{type:String,default:""},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Mi=(0,Pe.A)(ji,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon collectives-icon",attrs:{"aria-hidden":!t.title,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 16 16"}},[e("path",{attrs:{d:"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z"}}),t._v(" "),e("path",{attrs:{d:"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z"}}),t._v(" "),e("path",{attrs:{d:"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z"}}),t._v(" "),e("path",{attrs:{d:"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z"}}),t._v(" "),e("path",{attrs:{d:"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z"}}),t._v(" "),e("path",{attrs:{d:"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z"}})])])}),[],!1,null,null,null).exports,zi=(0,l.pM)({name:"FavoriteIcon",components:{NcIconSvgWrapper:Ue.A},data:()=>({StarSvg:'<svg xmlns="http://www.w3.org/2000/svg" id="mdi-star" viewBox="0 0 24 24"><path d="M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z" /></svg>'}),async mounted(){var t;await this.$nextTick();const e=this.$el.querySelector("svg");null==e||null===(t=e.setAttribute)||void 0===t||t.call(e,"viewBox","-4 -4 30 30")},methods:{t:Ne.Tl}});var Vi=s(14781),qi={};qi.styleTagTransform=an(),qi.setAttributes=nn(),qi.insert=tn().bind(null,"head"),qi.domAPI=Je(),qi.insertStyleElement=rn(),Qe()(Vi.A,qi),Vi.A&&Vi.A.locals&&Vi.A.locals;const $i=(0,Pe.A)(zi,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcIconSvgWrapper",{staticClass:"favorite-marker-icon",attrs:{name:t.t("files","Favorite"),svg:t.StarSvg}})}),[],!1,null,"42ea6dd4",null).exports,Hi=l.Ay.extend({name:"FileEntryPreview",components:{AccountGroupIcon:Si.A,AccountPlusIcon:$n,CollectivesIcon:Mi,FavoriteIcon:$i,FileIcon:Ei,FolderIcon:Ys.A,FolderOpenIcon:Ni,KeyIcon:Pi,LinkIcon:On.A,NetworkIcon:Di,TagIcon:Ui},props:{source:{type:Object,required:!0},dragover:{type:Boolean,default:!1},gridMode:{type:Boolean,default:!1}},setup:()=>({userConfigStore:An()}),data:()=>({backgroundFailed:void 0}),computed:{fileid(){var t,e;return null===(t=this.source)||void 0===t||null===(t=t.fileid)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t)},isFavorite(){return 1===this.source.attributes.favorite},userConfig(){return this.userConfigStore.userConfig},cropPreviews(){return!0===this.userConfig.crop_image_previews},previewUrl(){if(this.source.type===o.pt.Folder)return null;if(!0===this.backgroundFailed)return null;try{const t=this.source.attributes.previewUrl||(0,u.Jv)("/core/preview?fileId={fileid}",{fileid:this.fileid}),e=new URL(window.location.origin+t);return e.searchParams.set("x",this.gridMode?"128":"32"),e.searchParams.set("y",this.gridMode?"128":"32"),e.searchParams.set("mimeFallback","true"),e.searchParams.set("a",!0===this.cropPreviews?"0":"1"),e.href}catch(t){return null}},fileOverlay(){return void 0!==this.source.attributes["metadata-files-live-photo"]?Ri:null},folderOverlay(){var t,e,n,s;if(this.source.type!==o.pt.Folder)return null;if(1===(null===(t=this.source)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["is-encrypted"]))return Pi;if(null!==(e=this.source)&&void 0!==e&&null!==(e=e.attributes)&&void 0!==e&&e["is-tag"])return Ui;const i=Object.values((null===(n=this.source)||void 0===n||null===(n=n.attributes)||void 0===n?void 0:n["share-types"])||{}).flat();if(i.some((t=>t===In.Z.SHARE_TYPE_LINK||t===In.Z.SHARE_TYPE_EMAIL)))return On.A;if(i.length>0)return $n;switch(null===(s=this.source)||void 0===s||null===(s=s.attributes)||void 0===s?void 0:s["mount-type"]){case"external":case"external-session":return Di;case"group":return Si.A;case"collective":return Mi}return null}},methods:{reset(){this.backgroundFailed=void 0,this.$refs.previewImg&&(this.$refs.previewImg.src="")},onBackgroundError(t){var e;""!==(null===(e=t.target)||void 0===e?void 0:e.src)&&(this.backgroundFailed=!0)},t:Ne.Tl}}),Wi=(0,Pe.A)(Hi,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("span",{staticClass:"files-list__row-icon"},["folder"===t.source.type?[t.dragover?t._m(0):[t._m(1),t._v(" "),t.folderOverlay?e(t.folderOverlay,{tag:"OverlayIcon",staticClass:"files-list__row-icon-overlay"}):t._e()]]:t.previewUrl&&!0!==t.backgroundFailed?e("img",{ref:"previewImg",staticClass:"files-list__row-icon-preview",class:{"files-list__row-icon-preview--loaded":!1===t.backgroundFailed},attrs:{alt:"",loading:"lazy",src:t.previewUrl},on:{error:t.onBackgroundError,load:function(e){t.backgroundFailed=!1}}}):t._m(2),t._v(" "),t.isFavorite?e("span",{staticClass:"files-list__row-icon-favorite"},[t._m(3)],1):t._e(),t._v(" "),t.fileOverlay?e(t.fileOverlay,{tag:"OverlayIcon",staticClass:"files-list__row-icon-overlay files-list__row-icon-overlay--file"}):t._e()],2)}),[function(){var t=this._self._c;return this._self._setupProxy,t("FolderOpenIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FolderIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FileIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FavoriteIcon")}],!1,null,null,null).exports,Gi=(0,l.pM)({name:"FileEntry",components:{CustomElementRender:ri,FileEntryActions:yi,FileEntryCheckbox:bi,FileEntryName:Ti,FileEntryPreview:Wi,NcDateTime:si.A},mixins:[ni],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},compact:{type:Boolean,default:!1}},setup:()=>({actionsMenuStore:qs(),draggingStore:Us(),filesStore:Kn(),renamingStore:$s(),selectionStore:Xn()}),computed:{rowListeners(){return{...this.isRenaming?{}:{dragstart:this.onDragStart,dragover:this.onDragOver},contextmenu:this.onRightClick,dragleave:this.onDragLeave,dragend:this.onDragEnd,drop:this.onDrop}},columns(){var t;return this.filesListWidth<512||this.compact?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},size(){const t=parseInt(this.source.size,10)||0;return"number"!=typeof t||t<0?this.t("files","Pending"):(0,o.v7)(t,!0)},sizeOpacity(){const t=parseInt(this.source.size,10)||0;if(!t||t<0)return{};const e=Math.round(Math.min(100,100*Math.pow(this.source.size/10485760,2)));return{color:"color-mix(in srgb, var(--color-main-text) ".concat(e,"%, var(--color-text-maxcontrast))")}},mtimeOpacity(){var t,e;const n=26784e5,s=null===(t=this.source.mtime)||void 0===t||null===(e=t.getTime)||void 0===e?void 0:e.call(t);if(!s)return{};const i=Math.round(Math.min(100,100*(n-(Date.now()-s))/n));return i<0?{}:{color:"color-mix(in srgb, var(--color-main-text) ".concat(i,"%, var(--color-text-maxcontrast))")}},mtimeTitle(){return this.source.mtime?(0,Vs.A)(this.source.mtime).format("LLL"):""},isActive(){var t,e;return this.fileid===(null===(t=this.currentFileId)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t))}},methods:{formatFileSize:o.v7}}),Yi=(0,Pe.A)(Gi,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",t._g({staticClass:"files-list__row",class:{"files-list__row--dragover":t.dragover,"files-list__row--loading":t.isLoading,"files-list__row--active":t.isActive},attrs:{"data-cy-files-list-row":"","data-cy-files-list-row-fileid":t.fileid,"data-cy-files-list-row-name":t.source.basename,draggable:t.canDrag}},t.rowListeners),[t.source.attributes.failed?e("span",{staticClass:"files-list__row--failed"}):t._e(),t._v(" "),e("FileEntryCheckbox",{attrs:{fileid:t.fileid,"is-loading":t.isLoading,nodes:t.nodes,source:t.source}}),t._v(" "),e("td",{staticClass:"files-list__row-name",attrs:{"data-cy-files-list-row-name":""}},[e("FileEntryPreview",{ref:"preview",attrs:{source:t.source,dragover:t.dragover},nativeOn:{click:function(e){return t.execDefaultAction.apply(null,arguments)}}}),t._v(" "),e("FileEntryName",{ref:"name",attrs:{"display-name":t.displayName,extension:t.extension,"files-list-width":t.filesListWidth,nodes:t.nodes,source:t.source},on:{click:t.execDefaultAction}})],1),t._v(" "),e("FileEntryActions",{directives:[{name:"show",rawName:"v-show",value:!t.isRenamingSmallScreen,expression:"!isRenamingSmallScreen"}],ref:"actions",class:"files-list__row-actions-".concat(t.uniqueId),attrs:{"files-list-width":t.filesListWidth,loading:t.loading,opened:t.openedMenu,source:t.source},on:{"update:loading":function(e){t.loading=e},"update:opened":function(e){t.openedMenu=e}}}),t._v(" "),!t.compact&&t.isSizeAvailable?e("td",{staticClass:"files-list__row-size",style:t.sizeOpacity,attrs:{"data-cy-files-list-row-size":""},on:{click:t.openDetailsIfAvailable}},[e("span",[t._v(t._s(t.size))])]):t._e(),t._v(" "),!t.compact&&t.isMtimeAvailable?e("td",{staticClass:"files-list__row-mtime",style:t.mtimeOpacity,attrs:{"data-cy-files-list-row-mtime":""},on:{click:t.openDetailsIfAvailable}},[e("NcDateTime",{attrs:{timestamp:t.source.mtime,"ignore-seconds":!0}})],1):t._e(),t._v(" "),t._l(t.columns,(function(n){var s;return e("td",{key:n.id,staticClass:"files-list__row-column-custom",class:"files-list__row-".concat(null===(s=t.currentView)||void 0===s?void 0:s.id,"-").concat(n.id),attrs:{"data-cy-files-list-row-column-custom":n.id},on:{click:t.openDetailsIfAvailable}},[e("CustomElementRender",{attrs:{"current-view":t.currentView,render:n.render,source:t.source}})],1)}))],2)}),[],!1,null,null,null).exports,Ki=(0,l.pM)({name:"FileEntryGrid",components:{FileEntryActions:yi,FileEntryCheckbox:bi,FileEntryName:Ti,FileEntryPreview:Wi},mixins:[ni],inheritAttrs:!1,setup:()=>({actionsMenuStore:qs(),draggingStore:Us(),filesStore:Kn(),renamingStore:$s(),selectionStore:Xn()}),data:()=>({gridMode:!0})}),Qi=(0,Pe.A)(Ki,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",{staticClass:"files-list__row",class:{"files-list__row--active":t.isActive,"files-list__row--dragover":t.dragover,"files-list__row--loading":t.isLoading},attrs:{"data-cy-files-list-row":"","data-cy-files-list-row-fileid":t.fileid,"data-cy-files-list-row-name":t.source.basename,draggable:t.canDrag},on:{contextmenu:t.onRightClick,dragover:t.onDragOver,dragleave:t.onDragLeave,dragstart:t.onDragStart,dragend:t.onDragEnd,drop:t.onDrop}},[t.source.attributes.failed?e("span",{staticClass:"files-list__row--failed"}):t._e(),t._v(" "),e("FileEntryCheckbox",{attrs:{fileid:t.fileid,"is-loading":t.isLoading,nodes:t.nodes,source:t.source}}),t._v(" "),e("td",{staticClass:"files-list__row-name",attrs:{"data-cy-files-list-row-name":""}},[e("FileEntryPreview",{ref:"preview",attrs:{dragover:t.dragover,"grid-mode":!0,source:t.source},nativeOn:{click:function(e){return t.execDefaultAction.apply(null,arguments)}}}),t._v(" "),e("FileEntryName",{ref:"name",attrs:{"display-name":t.displayName,extension:t.extension,"files-list-width":t.filesListWidth,"grid-mode":!0,nodes:t.nodes,source:t.source},on:{click:t.execDefaultAction}})],1),t._v(" "),e("FileEntryActions",{ref:"actions",class:"files-list__row-actions-".concat(t.uniqueId),attrs:{"files-list-width":t.filesListWidth,"grid-mode":!0,loading:t.loading,opened:t.openedMenu,source:t.source},on:{"update:loading":function(e){t.loading=e},"update:opened":function(e){t.openedMenu=e}}})],1)}),[],!1,null,null,null).exports;var Xi=s(96763);const Ji={name:"FilesListHeader",props:{header:{type:Object,required:!0},currentFolder:{type:Object,required:!0},currentView:{type:Object,required:!0}},computed:{enabled(){return this.header.enabled(this.currentFolder,this.currentView)}},watch:{enabled(t){t&&this.header.updated(this.currentFolder,this.currentView)},currentFolder(){this.header.updated(this.currentFolder,this.currentView)}},mounted(){Xi.debug("Mounted",this.header.id),this.header.render(this.$refs.mount,this.currentFolder,this.currentView)}},Zi=(0,Pe.A)(Ji,(function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"show",rawName:"v-show",value:t.enabled,expression:"enabled"}],class:"files-list__header-".concat(t.header.id)},[e("span",{ref:"mount"})])}),[],!1,null,null,null).exports,tr=l.Ay.extend({name:"FilesListTableFooter",components:{},props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},summary:{type:String,default:""},filesListWidth:{type:Number,default:0}},setup(){const t=Qn();return{filesStore:Kn(),pathsStore:t}},computed:{currentView(){return this.$navigation.active},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},currentFolder(){var t;if(null===(t=this.currentView)||void 0===t||!t.id)return;if("/"===this.dir)return this.filesStore.getRoot(this.currentView.id);const e=this.pathsStore.getPath(this.currentView.id,this.dir);return this.filesStore.getNode(e)},columns(){var t;return this.filesListWidth<512?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},totalSize(){var t;return null!==(t=this.currentFolder)&&void 0!==t&&t.size?(0,o.v7)(this.currentFolder.size,!0):(0,o.v7)(this.nodes.reduce(((t,e)=>t+e.size||0),0),!0)}},methods:{classForColumn(t){return{"files-list__row-column-custom":!0,["files-list__row-".concat(this.currentView.id,"-").concat(t.id)]:!0}},t:Ne.Tl}});var er=s(31840),nr={};nr.styleTagTransform=an(),nr.setAttributes=nn(),nr.insert=tn().bind(null,"head"),nr.domAPI=Je(),nr.insertStyleElement=rn(),Qe()(er.A,nr),er.A&&er.A.locals&&er.A.locals;const sr=(0,Pe.A)(tr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",[e("th",{staticClass:"files-list__row-checkbox"},[e("span",{staticClass:"hidden-visually"},[t._v(t._s(t.t("files","Total rows summary")))])]),t._v(" "),e("td",{staticClass:"files-list__row-name"},[e("span",{staticClass:"files-list__row-icon"}),t._v(" "),e("span",[t._v(t._s(t.summary))])]),t._v(" "),e("td",{staticClass:"files-list__row-actions"}),t._v(" "),t.isSizeAvailable?e("td",{staticClass:"files-list__column files-list__row-size"},[e("span",[t._v(t._s(t.totalSize))])]):t._e(),t._v(" "),t.isMtimeAvailable?e("td",{staticClass:"files-list__column files-list__row-mtime"}):t._e(),t._v(" "),t._l(t.columns,(function(n){var s;return e("th",{key:n.id,class:t.classForColumn(n)},[e("span",[t._v(t._s(null===(s=n.summary)||void 0===s?void 0:s.call(n,t.nodes,t.currentView)))])])}))],2)}),[],!1,null,"a85bde20",null).exports;var ir=s(1795),rr=s(33017);const or=l.Ay.extend({computed:{...(0,r.aH)(Me,["getConfig","setSortingBy","toggleSortingDirection"]),currentView(){return this.$navigation.active},sortingMode(){var t,e;return(null===(t=this.getConfig(this.currentView.id))||void 0===t?void 0:t.sorting_mode)||(null===(e=this.currentView)||void 0===e?void 0:e.defaultSortKey)||"basename"},isAscSorting(){var t;return"desc"!==(null===(t=this.getConfig(this.currentView.id))||void 0===t?void 0:t.sorting_direction)}},methods:{toggleSortBy(t){this.sortingMode!==t?this.setSortingBy(t,this.currentView.id):this.toggleSortingDirection(this.currentView.id)}}}),ar=(0,l.pM)({name:"FilesListTableHeaderButton",components:{MenuDown:ir.A,MenuUp:rr.A,NcButton:jn.A},mixins:[or],props:{name:{type:String,required:!0},mode:{type:String,required:!0}},methods:{t:Ne.Tl}});var lr=s(69426),cr={};cr.styleTagTransform=an(),cr.setAttributes=nn(),cr.insert=tn().bind(null,"head"),cr.domAPI=Je(),cr.insertStyleElement=rn(),Qe()(lr.A,cr),lr.A&&lr.A.locals&&lr.A.locals;const ur=(0,Pe.A)(ar,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcButton",{class:["files-list__column-sort-button",{"files-list__column-sort-button--active":t.sortingMode===t.mode,"files-list__column-sort-button--size":"size"===t.sortingMode}],attrs:{alignment:"size"===t.mode?"end":"start-reverse",type:"tertiary"},on:{click:function(e){return t.toggleSortBy(t.mode)}},scopedSlots:t._u([{key:"icon",fn:function(){return[t.sortingMode!==t.mode||t.isAscSorting?e("MenuUp",{staticClass:"files-list__column-sort-button-icon"}):e("MenuDown",{staticClass:"files-list__column-sort-button-icon"})]},proxy:!0}])},[t._v(" "),e("span",{staticClass:"files-list__column-sort-button-text"},[t._v(t._s(t.name))])])}),[],!1,null,"2dd1845e",null).exports,dr=(0,l.pM)({name:"FilesListTableHeader",components:{FilesListTableHeaderButton:ur,NcCheckboxRadioSwitch:pn.A},mixins:[or],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},setup:()=>({filesStore:Kn(),selectionStore:Xn()}),computed:{currentView(){return this.$navigation.active},columns(){var t;return this.filesListWidth<512?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},selectAllBind(){const t=(0,Ne.Tl)("files","Toggle selection for all files and folders");return{"aria-label":t,checked:this.isAllSelected,indeterminate:this.isSomeSelected,title:t}},selectedNodes(){return this.selectionStore.selected},isAllSelected(){return this.selectedNodes.length===this.nodes.length},isNoneSelected(){return 0===this.selectedNodes.length},isSomeSelected(){return!this.isAllSelected&&!this.isNoneSelected}},methods:{ariaSortForMode(t){return this.sortingMode===t?this.isAscSorting?"ascending":"descending":null},classForColumn(t){var e;return{"files-list__column":!0,"files-list__column--sortable":!!t.sort,"files-list__row-column-custom":!0,["files-list__row-".concat(null===(e=this.currentView)||void 0===e?void 0:e.id,"-").concat(t.id)]:!0}},onToggleAll(t){if(t){const t=this.nodes.map((t=>t.fileid)).filter(Boolean);ze.debug("Added all nodes to selection",{selection:t}),this.selectionStore.setLastIndex(null),this.selectionStore.set(t)}else ze.debug("Cleared selection"),this.selectionStore.reset()},resetSelection(){this.selectionStore.reset()},t:Ne.Tl}});var mr=s(60799),pr={};pr.styleTagTransform=an(),pr.setAttributes=nn(),pr.insert=tn().bind(null,"head"),pr.domAPI=Je(),pr.insertStyleElement=rn(),Qe()(mr.A,pr),mr.A&&mr.A.locals&&mr.A.locals;const fr=(0,Pe.A)(dr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",{staticClass:"files-list__row-head"},[e("th",{staticClass:"files-list__column files-list__row-checkbox",on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.resetSelection.apply(null,arguments)}}},[e("NcCheckboxRadioSwitch",t._b({on:{"update:checked":t.onToggleAll}},"NcCheckboxRadioSwitch",t.selectAllBind,!1))],1),t._v(" "),e("th",{staticClass:"files-list__column files-list__row-name files-list__column--sortable",attrs:{"aria-sort":t.ariaSortForMode("basename")}},[e("span",{staticClass:"files-list__row-icon"}),t._v(" "),e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Name"),mode:"basename"}})],1),t._v(" "),e("th",{staticClass:"files-list__row-actions"}),t._v(" "),t.isSizeAvailable?e("th",{staticClass:"files-list__column files-list__row-size",class:{"files-list__column--sortable":t.isSizeAvailable},attrs:{"aria-sort":t.ariaSortForMode("size")}},[e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Size"),mode:"size"}})],1):t._e(),t._v(" "),t.isMtimeAvailable?e("th",{staticClass:"files-list__column files-list__row-mtime",class:{"files-list__column--sortable":t.isMtimeAvailable},attrs:{"aria-sort":t.ariaSortForMode("mtime")}},[e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Modified"),mode:"mtime"}})],1):t._e(),t._v(" "),t._l(t.columns,(function(n){return e("th",{key:n.id,class:t.classForColumn(n),attrs:{"aria-sort":t.ariaSortForMode(n.id)}},[n.sort?e("FilesListTableHeaderButton",{attrs:{name:n.title,mode:n.id}}):e("span",[t._v("\n\t\t\t"+t._s(n.title)+"\n\t\t")])],1)}))],2)}),[],!1,null,"952162c2",null).exports;var hr=s(17334),gr=s.n(hr),vr=s(96763);const wr=l.Ay.extend({name:"VirtualList",mixins:[Bs],props:{dataComponent:{type:[Object,Function],required:!0},dataKey:{type:String,required:!0},dataSources:{type:Array,required:!0},extraProps:{type:Object,default:()=>({})},scrollToIndex:{type:Number,default:0},gridMode:{type:Boolean,default:!1},caption:{type:String,default:""}},data(){return{index:this.scrollToIndex,beforeHeight:0,headerHeight:0,tableHeight:0,resizeObserver:null}},computed:{isReady(){return this.tableHeight>0},bufferItems(){return this.gridMode?this.columnCount:3},itemHeight(){return this.gridMode?197:55},itemWidth:()=>175,rowCount(){return Math.ceil((this.tableHeight-this.headerHeight)/this.itemHeight)+this.bufferItems/this.columnCount*2+1},columnCount(){return this.gridMode?Math.floor(this.filesListWidth/this.itemWidth):1},startIndex(){return Math.max(0,this.index-this.bufferItems)},shownItems(){return this.gridMode?this.rowCount*this.columnCount:this.rowCount},renderedItems(){if(!this.isReady)return[];const t=this.dataSources.slice(this.startIndex,this.startIndex+this.shownItems),e=t.filter((t=>Object.values(this.$_recycledPool).includes(t[this.dataKey]))).map((t=>t[this.dataKey])),n=Object.keys(this.$_recycledPool).filter((t=>!e.includes(this.$_recycledPool[t])));return t.map((t=>{const e=Object.values(this.$_recycledPool).indexOf(t[this.dataKey]);if(-1!==e)return{key:Object.keys(this.$_recycledPool)[e],item:t};const s=n.pop()||Math.random().toString(36).substr(2);return this.$_recycledPool[s]=t[this.dataKey],{key:s,item:t}}))},tbodyStyle(){const t=this.startIndex+this.rowCount>this.dataSources.length,e=this.dataSources.length-this.startIndex-this.shownItems,n=Math.floor(Math.min(this.dataSources.length-this.startIndex,e)/this.columnCount);return{paddingTop:"".concat(Math.floor(this.startIndex/this.columnCount)*this.itemHeight,"px"),paddingBottom:t?0:"".concat(n*this.itemHeight,"px")}}},watch:{scrollToIndex(t){this.scrollTo(t)},columnCount(t,e){0!==e?this.scrollTo(this.index):vr.debug("VirtualList: columnCount is 0, skipping scroll")}},mounted(){var t,e;const n=null===(t=this.$refs)||void 0===t?void 0:t.before,s=this.$el,i=null===(e=this.$refs)||void 0===e?void 0:e.thead;this.resizeObserver=new ResizeObserver((0,hr.debounce)((()=>{var t,e,r;this.beforeHeight=null!==(t=null==n?void 0:n.clientHeight)&&void 0!==t?t:0,this.headerHeight=null!==(e=null==i?void 0:i.clientHeight)&&void 0!==e?e:0,this.tableHeight=null!==(r=null==s?void 0:s.clientHeight)&&void 0!==r?r:0,ze.debug("VirtualList: resizeObserver updated"),this.onScroll()}),100,!1)),this.resizeObserver.observe(n),this.resizeObserver.observe(s),this.resizeObserver.observe(i),this.scrollToIndex&&this.scrollTo(this.scrollToIndex),this.$el.addEventListener("scroll",this.onScroll,{passive:!0}),this.$_recycledPool={}},beforeDestroy(){this.resizeObserver&&this.resizeObserver.disconnect()},methods:{scrollTo(t){const e=Math.ceil(this.dataSources.length/this.columnCount);if(e<this.rowCount)return void ze.debug("VirtualList: Skip scrolling. nothing to scroll",{index:t,targetRow:e,rowCount:this.rowCount});this.index=t;const n=(Math.floor(t/this.columnCount)-.5)*this.itemHeight+this.beforeHeight;ze.debug("VirtualList: scrolling to index "+t,{scrollTop:n,columnCount:this.columnCount}),this.$el.scrollTop=n},onScroll(){var t;null!==(t=this._onScrollHandle)&&void 0!==t||(this._onScrollHandle=requestAnimationFrame((()=>{this._onScrollHandle=null;const t=this.$el.scrollTop-this.beforeHeight,e=Math.floor(t/this.itemHeight)*this.columnCount;this.index=Math.max(0,e),this.$emit("scroll")})))}}}),yr=(0,Pe.A)(wr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list",attrs:{"data-cy-files-list":""}},[e("div",{ref:"before",staticClass:"files-list__before"},[t._t("before")],2),t._v(" "),t.$scopedSlots["header-overlay"]?e("div",{staticClass:"files-list__thead-overlay"},[t._t("header-overlay")],2):t._e(),t._v(" "),e("table",{staticClass:"files-list__table",class:{"files-list__table--with-thead-overlay":!!t.$scopedSlots["header-overlay"]}},[t.caption?e("caption",{staticClass:"hidden-visually"},[t._v("\n\t\t\t"+t._s(t.caption)+"\n\t\t")]):t._e(),t._v(" "),e("thead",{ref:"thead",staticClass:"files-list__thead",attrs:{"data-cy-files-list-thead":""}},[t._t("header")],2),t._v(" "),e("tbody",{staticClass:"files-list__tbody",class:t.gridMode?"files-list__tbody--grid":"files-list__tbody--list",style:t.tbodyStyle,attrs:{"data-cy-files-list-tbody":""}},t._l(t.renderedItems,(function(n,s){let{key:i,item:r}=n;return e(t.dataComponent,t._b({key:i,tag:"component",attrs:{source:r,index:s}},"component",t.extraProps,!1))})),1),t._v(" "),e("tfoot",{directives:[{name:"show",rawName:"v-show",value:t.isReady,expression:"isReady"}],staticClass:"files-list__tfoot",attrs:{"data-cy-files-list-tfoot":""}},[t._t("footer")],2)])])}),[],!1,null,null,null).exports,Ar=(0,o.qK)(),br=(0,l.pM)({name:"FilesListTableHeaderActions",components:{NcActions:ai.A,NcActionButton:oi.A,NcIconSvgWrapper:Ue.A,NcLoadingIcon:zn.A},mixins:[Bs],props:{currentView:{type:Object,required:!0},selectedNodes:{type:Array,default:()=>[]}},setup:()=>({actionsMenuStore:qs(),filesStore:Kn(),selectionStore:Xn()}),data:()=>({loading:null}),computed:{dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},enabledActions(){return Ar.filter((t=>t.execBatch)).filter((t=>!t.enabled||t.enabled(this.nodes,this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0)))},nodes(){return this.selectedNodes.map((t=>this.getNode(t))).filter(Boolean)},areSomeNodesLoading(){return this.nodes.some((t=>t.status===o.zI.LOADING))},openedMenu:{get(){return"global"===this.actionsMenuStore.opened},set(t){this.actionsMenuStore.opened=t?"global":null}},inlineActions(){return this.filesListWidth<512?0:this.filesListWidth<768?1:this.filesListWidth<1024?2:3}},methods:{getNode(t){return this.filesStore.getNode(t)},async onActionClick(t){const e=t.displayName(this.nodes,this.currentView),n=this.selectedNodes;try{this.loading=t.id,this.nodes.forEach((t=>{l.Ay.set(t,"status",o.zI.LOADING)}));const s=await t.execBatch(this.nodes,this.currentView,this.dir);if(!s.some((t=>null!==t)))return void this.selectionStore.reset();if(s.some((t=>!1===t))){const t=n.filter(((t,e)=>!1===s[e]));if(this.selectionStore.set(t),s.some((t=>null===t)))return;return void(0,qe.Qg)(this.t("files",'"{displayName}" failed on some elements ',{displayName:e}))}(0,qe.Te)(this.t("files",'"{displayName}" batch action executed successfully',{displayName:e})),this.selectionStore.reset()}catch(n){ze.error("Error while executing action",{action:t,e:n}),(0,qe.Qg)(this.t("files",'"{displayName}" action failed',{displayName:e}))}finally{this.loading=null,this.nodes.forEach((t=>{l.Ay.set(t,"status",void 0)}))}},t:Ne.Tl}}),_r=br;var Cr=s(58017),xr={};xr.styleTagTransform=an(),xr.setAttributes=nn(),xr.insert=tn().bind(null,"head"),xr.domAPI=Je(),xr.insertStyleElement=rn(),Qe()(Cr.A,xr),Cr.A&&Cr.A.locals&&Cr.A.locals;var Tr=(0,Pe.A)(_r,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list__column files-list__row-actions-batch"},[e("NcActions",{ref:"actionsMenu",attrs:{disabled:!!t.loading||t.areSomeNodesLoading,"force-name":!0,inline:t.inlineActions,"menu-name":t.inlineActions<=1?t.t("files","Actions"):null,open:t.openedMenu},on:{"update:open":function(e){t.openedMenu=e}}},t._l(t.enabledActions,(function(n){return e("NcActionButton",{key:n.id,class:"files-list__row-actions-batch-"+n.id,on:{click:function(e){return t.onActionClick(n)}},scopedSlots:t._u([{key:"icon",fn:function(){return[t.loading===n.id?e("NcLoadingIcon",{attrs:{size:18}}):e("NcIconSvgWrapper",{attrs:{svg:n.iconSvgInline(t.nodes,t.currentView)}})]},proxy:!0}],null,!0)},[t._v("\n\t\t\t"+t._s(n.displayName(t.nodes,t.currentView))+"\n\t\t")])})),1)],1)}),[],!1,null,"d939292c",null);const Sr=Tr.exports,kr=(0,l.pM)({name:"FilesListVirtual",components:{FilesListHeader:Zi,FilesListTableFooter:sr,FilesListTableHeader:fr,VirtualList:yr,FilesListTableHeaderActions:Sr},mixins:[Bs],props:{currentView:{type:o.Ss,required:!0},currentFolder:{type:o.vd,required:!0},nodes:{type:Array,required:!0}},setup:()=>({userConfigStore:An(),selectionStore:Xn()}),data:()=>({FileEntry:Yi,FileEntryGrid:Qi,headers:(0,o.By)(),scrollToIndex:0,openFileId:null}),computed:{userConfig(){return this.userConfigStore.userConfig},fileId(){return parseInt(this.$route.params.fileid)||null},openFile(){return!!this.$route.query.openfile},summary(){return Es(this.nodes)},isMtimeAvailable(){return!(this.filesListWidth<768)&&this.nodes.some((t=>void 0!==t.mtime))},isSizeAvailable(){return!(this.filesListWidth<768)&&this.nodes.some((t=>void 0!==t.size))},sortedHeaders(){return this.currentFolder&&this.currentView?[...this.headers].sort(((t,e)=>t.order-e.order)):[]},caption(){const t=(0,Ne.Tl)("files","List of files and folders."),e=this.currentView.caption||t,n=(0,Ne.Tl)("files","Column headers with buttons are sortable."),s=(0,Ne.Tl)("files","This list is not fully rendered for performance reasons. The files will be rendered as you navigate through the list.");return"".concat(e,"\n").concat(n,"\n").concat(s)},selectedNodes(){return this.selectionStore.selected},isNoneSelected(){return 0===this.selectedNodes.length}},watch:{fileId(t){this.scrollToFile(t,!1)},openFile(t){t&&this.$nextTick((()=>this.handleOpenFile(this.fileId)))}},mounted(){window.document.querySelector("main.app-content").addEventListener("dragover",this.onDragOver);const{id:t}=(0,Be.C)("files","openFileInfo",{});this.scrollToFile(null!=t?t:this.fileId),this.openSidebarForFile(null!=t?t:this.fileId),this.handleOpenFile(null!=t?t:null)},beforeDestroy(){window.document.querySelector("main.app-content").removeEventListener("dragover",this.onDragOver)},methods:{openSidebarForFile(t){if(document.documentElement.clientWidth>1024&&this.currentFolder.fileid!==t){var e;const n=this.nodes.find((e=>e.fileid===t));n&&null!=Yn&&null!==(e=Yn.enabled)&&void 0!==e&&e.call(Yn,[n],this.currentView)&&(ze.debug("Opening sidebar on file "+n.path,{node:n}),Yn.exec(n,this.currentView,this.currentFolder.path))}},scrollToFile(t){let e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(t){const n=this.nodes.findIndex((e=>e.fileid===t));e&&-1===n&&t!==this.currentFolder.fileid&&(0,qe.Qg)(this.t("files","File not found")),this.scrollToIndex=Math.max(0,n)}},handleOpenFile(t){if(null===t||this.openFileId===t)return;const e=this.nodes.find((e=>e.fileid===t));if(void 0===e||e.type===o.pt.Folder)return;ze.debug("Opening file "+e.path,{node:e}),this.openFileId=t;const n=(0,o.qK)().filter((t=>!(null==t||!t.default))).filter((t=>!t.enabled||t.enabled([e],this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0))).at(0);null==n||n.exec(e,this.currentView,this.currentFolder.path)},onDragOver(t){var e;if(null===(e=t.dataTransfer)||void 0===e?void 0:e.types.includes("Files"))return;t.preventDefault(),t.stopPropagation();const n=this.$refs.table.$el.getBoundingClientRect().top,s=n+this.$refs.table.$el.getBoundingClientRect().height;t.clientY<n+100?this.$refs.table.$el.scrollTop=this.$refs.table.$el.scrollTop-25:t.clientY>s-50&&(this.$refs.table.$el.scrollTop=this.$refs.table.$el.scrollTop+25)},t:Ne.Tl}});var Er=s(79655),Lr={};Lr.styleTagTransform=an(),Lr.setAttributes=nn(),Lr.insert=tn().bind(null,"head"),Lr.domAPI=Je(),Lr.insertStyleElement=rn(),Qe()(Er.A,Lr),Er.A&&Er.A.locals&&Er.A.locals;var Nr=s(8591),Fr={};Fr.styleTagTransform=an(),Fr.setAttributes=nn(),Fr.insert=tn().bind(null,"head"),Fr.domAPI=Je(),Fr.insertStyleElement=rn(),Qe()(Nr.A,Fr),Nr.A&&Nr.A.locals&&Nr.A.locals;const Pr=(0,Pe.A)(kr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("VirtualList",{ref:"table",attrs:{"data-component":t.userConfig.grid_view?t.FileEntryGrid:t.FileEntry,"data-key":"source","data-sources":t.nodes,"grid-mode":t.userConfig.grid_view,"extra-props":{isMtimeAvailable:t.isMtimeAvailable,isSizeAvailable:t.isSizeAvailable,nodes:t.nodes,filesListWidth:t.filesListWidth},"scroll-to-index":t.scrollToIndex,caption:t.caption},scopedSlots:t._u([t.isNoneSelected?null:{key:"header-overlay",fn:function(){return[e("span",{staticClass:"files-list__selected"},[t._v(t._s(t.t("files","{count} selected",{count:t.selectedNodes.length})))]),t._v(" "),e("FilesListTableHeaderActions",{attrs:{"current-view":t.currentView,"selected-nodes":t.selectedNodes}})]},proxy:!0},{key:"before",fn:function(){return t._l(t.sortedHeaders,(function(n){return e("FilesListHeader",{key:n.id,attrs:{"current-folder":t.currentFolder,"current-view":t.currentView,header:n}})}))},proxy:!0},{key:"header",fn:function(){return[e("FilesListTableHeader",{ref:"thead",attrs:{"files-list-width":t.filesListWidth,"is-mtime-available":t.isMtimeAvailable,"is-size-available":t.isSizeAvailable,nodes:t.nodes}})]},proxy:!0},{key:"footer",fn:function(){return[e("FilesListTableFooter",{attrs:{"files-list-width":t.filesListWidth,"is-mtime-available":t.isMtimeAvailable,"is-size-available":t.isSizeAvailable,nodes:t.nodes,summary:t.summary}})]},proxy:!0}],null,!0)})}),[],!1,null,"2e1b1dc8",null).exports,Ir={name:"TrayArrowDownIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Dr=(0,Pe.A)(Ir,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon tray-arrow-down-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Or=(0,l.pM)({name:"DragAndDropNotice",components:{TrayArrowDownIcon:Dr},props:{currentFolder:{type:o.vd,required:!0}},data:()=>({dragover:!1}),computed:{currentView(){return this.$navigation.active},canUpload(){return this.currentFolder&&0!=(this.currentFolder.permissions&o.aX.CREATE)},isQuotaExceeded(){var t;return 0===(null===(t=this.currentFolder)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["quota-available-bytes"])},cantUploadLabel(){return this.isQuotaExceeded?this.t("files","Your have used your space quota and cannot upload files anymore"):this.canUpload?null:this.t("files","You don’t have permission to upload or create files here")}},mounted(){const t=window.document.querySelector("main.app-content");t.addEventListener("dragover",this.onDragOver),t.addEventListener("dragleave",this.onDragLeave),t.addEventListener("drop",this.onContentDrop)},beforeDestroy(){const t=window.document.querySelector("main.app-content");t.removeEventListener("dragover",this.onDragOver),t.removeEventListener("dragleave",this.onDragLeave),t.removeEventListener("drop",this.onContentDrop)},methods:{onDragOver(t){var e;t.preventDefault(),(null===(e=t.dataTransfer)||void 0===e?void 0:e.types.includes("Files"))&&(this.dragover=!0)},onDragLeave(t){var e;const n=t.currentTarget;null!=n&&n.contains(null!==(e=t.relatedTarget)&&void 0!==e?e:t.target)||this.dragover&&(this.dragover=!1)},onContentDrop(t){ze.debug("Drag and drop cancelled, dropped on empty space",{event:t}),t.preventDefault(),this.dragover&&(this.dragover=!1)},async onDrop(t){var e,n,s;if(this.cantUploadLabel)return void(0,qe.Qg)(this.cantUploadLabel);if(null!==(e=this.$el.querySelector("tbody"))&&void 0!==e&&e.contains(t.target))return;t.preventDefault(),t.stopPropagation();const i=[...(null===(n=t.dataTransfer)||void 0===n?void 0:n.items)||[]],r=await Is(i),o=await(null===(s=this.currentView)||void 0===s?void 0:s.getContents(this.currentFolder.path)),a=null==o?void 0:o.folder;if(!a)return void(0,qe.Qg)(this.t("files","Target folder does not exist any more"));if(t.button)return;ze.debug("Dropped",{event:t,folder:a,fileTree:r});const l=(await Ds(r,a,o.contents)).findLast((t=>{var e;return t.status!==Dn.c.FAILED&&!t.file.webkitRelativePath.includes("/")&&(null===(e=t.response)||void 0===e||null===(e=e.headers)||void 0===e?void 0:e["oc-fileid"])&&2===t.source.replace(a.source,"").split("/").length}));var c,u;void 0!==l&&(ze.debug("Scrolling to last upload in current folder",{lastUpload:l}),this.$router.push({...this.$route,params:{view:null!==(c=null===(u=this.$route.params)||void 0===u?void 0:u.view)&&void 0!==c?c:"files",fileid:parseInt(l.response.headers["oc-fileid"])}})),this.dragover=!1},t:Ne.Tl}});var Ur=s(82915),Br={};Br.styleTagTransform=an(),Br.setAttributes=nn(),Br.insert=tn().bind(null,"head"),Br.domAPI=Je(),Br.insertStyleElement=rn(),Qe()(Ur.A,Br),Ur.A&&Ur.A.locals&&Ur.A.locals;const Rr=(0,Pe.A)(Or,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{directives:[{name:"show",rawName:"v-show",value:t.dragover,expression:"dragover"}],staticClass:"files-list__drag-drop-notice",attrs:{"data-cy-files-drag-drop-area":""},on:{drop:t.onDrop}},[e("div",{staticClass:"files-list__drag-drop-notice-wrapper"},[t.canUpload&&!t.isQuotaExceeded?[e("TrayArrowDownIcon",{attrs:{size:48}}),t._v(" "),e("h3",{staticClass:"files-list-drag-drop-notice__title"},[t._v("\n\t\t\t\t"+t._s(t.t("files","Drag and drop files here to upload"))+"\n\t\t\t")])]:[e("h3",{staticClass:"files-list-drag-drop-notice__title"},[t._v("\n\t\t\t\t"+t._s(t.cantUploadLabel)+"\n\t\t\t")])]],2)])}),[],!1,null,"02c943a6",null).exports;var jr,Mr=s(96763);const zr=void 0!==(null===(jr=(0,Nn.F)())||void 0===jr?void 0:jr.files_sharing),Vr=(0,l.pM)({name:"FilesList",components:{BreadCrumbs:zs,DragAndDropNotice:Rr,FilesListVirtual:Pr,LinkIcon:On.A,ListViewIcon:Bn,NcAppContent:Rn.A,NcButton:jn.A,NcEmptyContent:Mn.A,NcIconSvgWrapper:Ue.A,NcLoadingIcon:zn.A,PlusIcon:Vn.A,AccountPlusIcon:$n,UploadPicker:Dn.U,ViewGridIcon:Wn},mixins:[Bs,or],setup(){var t;return{filesStore:Kn(),pathsStore:Qn(),selectionStore:Xn(),uploaderStore:Zn(),userConfigStore:An(),viewConfigStore:Me(),enableGridView:null===(t=(0,Be.C)("core","config",[])["enable_non-accessible_features"])||void 0===t||t}},data:()=>({filterText:"",loading:!0,promise:null,Type:In.Z,_unsubscribeStore:()=>{}}),computed:{userConfig(){return this.userConfigStore.userConfig},currentView(){return this.$navigation.active||this.$navigation.views.find((t=>{var e,n;return t.id===(null!==(e=null===(n=this.$route.params)||void 0===n?void 0:n.view)&&void 0!==e?e:"files")}))},pageHeading(){var t,e;return null!==(t=null===(e=this.currentView)||void 0===e?void 0:e.name)&&void 0!==t?t:this.t("files","Files")},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentFolder(){var t;if(null===(t=this.currentView)||void 0===t||!t.id)return;if("/"===this.dir)return this.filesStore.getRoot(this.currentView.id);const e=this.pathsStore.getPath(this.currentView.id,this.dir);return this.filesStore.getNode(e)},sortingParameters(){return[[...this.userConfig.sort_favorites_first?[t=>{var e;return 1!==(null===(e=t.attributes)||void 0===e?void 0:e.favorite)}]:[],...this.userConfig.sort_folders_first?[t=>"folder"!==t.type]:[],..."basename"!==this.sortingMode?[t=>t[this.sortingMode]]:[],t=>{var e;return(null===(e=t.attributes)||void 0===e?void 0:e.displayName)||t.basename},t=>t.basename],[...this.userConfig.sort_favorites_first?["asc"]:[],...this.userConfig.sort_folders_first?["asc"]:[],..."mtime"===this.sortingMode?[this.isAscSorting?"desc":"asc"]:[],..."mtime"!==this.sortingMode&&"basename"!==this.sortingMode?[this.isAscSorting?"asc":"desc"]:[],this.isAscSorting?"asc":"desc",this.isAscSorting?"asc":"desc"]]},dirContentsSorted(){var t;if(!this.currentView)return[];let e=[...this.dirContents];this.filterText&&(e=e.filter((t=>t.basename.toLowerCase().includes(this.filterText.toLowerCase()))),Mr.debug("Files view filtered",e));const n=((null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]).find((t=>t.id===this.sortingMode));if(null!=n&&n.sort&&"function"==typeof n.sort){const t=[...this.dirContents].sort(n.sort);return this.isAscSorting?t:t.reverse()}return function(t,e,n){var s,i;e=null!==(s=e)&&void 0!==s?s:[t=>t],n=null!==(i=n)&&void 0!==i?i:[];const r=e.map(((t,e)=>{var s;return"asc"===(null!==(s=n[e])&&void 0!==s?s:"asc")?1:-1})),o=Intl.Collator([(0,Ne.Z0)(),(0,Ne.lO)()],{numeric:!0,usage:"sort"});return[...t].sort(((t,n)=>{for(const[s,i]of e.entries()){const e=o.compare(ts(i(t)),ts(i(n)));if(0!==e)return e*r[s]}return 0}))}(e,...this.sortingParameters)},dirContents(){var t,e;const n=null===(t=this.userConfigStore)||void 0===t?void 0:t.userConfig.show_hidden;return((null===(e=this.currentFolder)||void 0===e?void 0:e._children)||[]).map(this.getNode).filter((t=>{var e;return n?!!t:t&&!0!==(null==t||null===(e=t.attributes)||void 0===e?void 0:e.hidden)&&!(null!=t&&t.basename.startsWith("."))}))},isEmptyDir(){return 0===this.dirContents.length},isRefreshing(){return void 0!==this.currentFolder&&!this.isEmptyDir&&this.loading},toPreviousDir(){const t=this.dir.split("/").slice(0,-1).join("/")||"/";return{...this.$route,query:{dir:t}}},shareAttributes(){var t,e;if(null!==(t=this.currentFolder)&&void 0!==t&&null!==(t=t.attributes)&&void 0!==t&&t["share-types"])return Object.values((null===(e=this.currentFolder)||void 0===e||null===(e=e.attributes)||void 0===e?void 0:e["share-types"])||{}).flat()},shareButtonLabel(){return this.shareAttributes?this.shareButtonType===In.Z.SHARE_TYPE_LINK?this.t("files","Shared by link"):this.t("files","Shared"):this.t("files","Share")},shareButtonType(){return this.shareAttributes?this.shareAttributes.some((t=>t===In.Z.SHARE_TYPE_LINK))?In.Z.SHARE_TYPE_LINK:In.Z.SHARE_TYPE_USER:null},gridViewButtonLabel(){return this.userConfig.grid_view?this.t("files","Switch to list view"):this.t("files","Switch to grid view")},canUpload(){return this.currentFolder&&0!=(this.currentFolder.permissions&o.aX.CREATE)},isQuotaExceeded(){var t;return 0===(null===(t=this.currentFolder)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["quota-available-bytes"])},cantUploadLabel(){return this.isQuotaExceeded?this.t("files","Your have used your space quota and cannot upload files anymore"):this.t("files","You don’t have permission to upload or create files here")},canShare(){return zr&&this.currentFolder&&0!=(this.currentFolder.permissions&o.aX.SHARE)}},watch:{currentView(t,e){(null==t?void 0:t.id)!==(null==e?void 0:e.id)&&(ze.debug("View changed",{newView:t,oldView:e}),this.selectionStore.reset(),this.resetSearch(),this.fetchContent())},dir(t,e){var n;ze.debug("Directory changed",{newDir:t,oldDir:e}),this.selectionStore.reset(),this.resetSearch(),this.fetchContent(),null!==(n=this.$refs)&&void 0!==n&&null!==(n=n.filesListVirtual)&&void 0!==n&&n.$el&&(this.$refs.filesListVirtual.$el.scrollTop=0)},dirContents(t){ze.debug("Directory contents changed",{view:this.currentView,folder:this.currentFolder,contents:t}),(0,Le.Ic)("files:list:updated",{view:this.currentView,folder:this.currentFolder,contents:t})}},mounted(){this.fetchContent(),(0,Le.B1)("files:node:updated",this.onUpdatedNode),(0,Le.B1)("nextcloud:unified-search.search",this.onSearch),(0,Le.B1)("nextcloud:unified-search.reset",this.onSearch),this._unsubscribeStore=this.userConfigStore.$subscribe((()=>this.fetchContent()),{deep:!0})},unmounted(){(0,Le.al)("files:node:updated",this.onUpdatedNode),(0,Le.al)("nextcloud:unified-search.search",this.onSearch),(0,Le.al)("nextcloud:unified-search.reset",this.onSearch),this._unsubscribeStore()},methods:{async fetchContent(){var t;this.loading=!0;const e=this.dir,n=this.currentView;if(n){"function"==typeof(null===(t=this.promise)||void 0===t?void 0:t.cancel)&&(this.promise.cancel(),ze.debug("Cancelled previous ongoing fetch")),this.promise=n.getContents(e);try{const{folder:t,contents:s}=await this.promise;ze.debug("Fetched contents",{dir:e,folder:t,contents:s}),this.filesStore.updateNodes(s),this.$set(t,"_children",s.map((t=>t.fileid))),"/"===e?this.filesStore.setRoot({service:n.id,root:t}):t.fileid?(this.filesStore.updateNodes([t]),this.pathsStore.addPath({service:n.id,fileid:t.fileid,path:e})):ze.error("Invalid root folder returned",{dir:e,folder:t,currentView:n}),s.filter((t=>"folder"===t.type)).forEach((t=>{this.pathsStore.addPath({service:n.id,fileid:t.fileid,path:(0,Fn.join)(e,t.basename)})}))}catch(t){ze.error("Error while fetching content",{error:t})}finally{this.loading=!1}}else ze.debug("The current view doesn't exists or is not ready.",{currentView:n})},getNode(t){return this.filesStore.getNode(t)},onUpload(t){var e;(0,Fn.dirname)(t.source)===(null===(e=this.currentFolder)||void 0===e?void 0:e.source)&&this.fetchContent()},async onUploadFail(t){var e;const n=(null===(e=t.response)||void 0===e?void 0:e.status)||0;if(507!==n)if(404!==n&&409!==n)if(403!==n){try{var s;const e=new Pn.Parser({trim:!0,explicitRoot:!1}),n=(await e.parseStringPromise(null===(s=t.response)||void 0===s?void 0:s.data))["s:message"][0];if("string"==typeof n&&""!==n.trim())return void(0,qe.Qg)(this.t("files","Error during upload: {message}",{message:n}))}catch(t){ze.error("Error while parsing",{error:t})}0===n?(0,qe.Qg)(this.t("files","Unknown error during upload")):(0,qe.Qg)(this.t("files","Error during upload, status code {status}",{status:n}))}else(0,qe.Qg)(this.t("files","Operation is blocked by access control"));else(0,qe.Qg)(this.t("files","Target folder does not exist any more"));else(0,qe.Qg)(this.t("files","Not enough free space"))},onUpdatedNode(t){var e;(null==t?void 0:t.fileid)===(null===(e=this.currentFolder)||void 0===e?void 0:e.fileid)&&this.fetchContent()},onSearch:gr()((function(t){Mr.debug("Files app handling search event from unified search...",t),this.filterText=t.query}),500),resetSearch(){this.filterText=""},openSharingSidebar(){var t;this.currentFolder?(null!==(t=window)&&void 0!==t&&null!==(t=t.OCA)&&void 0!==t&&null!==(t=t.Files)&&void 0!==t&&null!==(t=t.Sidebar)&&void 0!==t&&t.setActiveTab&&window.OCA.Files.Sidebar.setActiveTab("sharing"),Yn.exec(this.currentFolder,this.currentView,this.currentFolder.path)):ze.debug("No current folder found for opening sharing sidebar")},toggleGridView(){this.userConfigStore.update("grid_view",!this.userConfig.grid_view)},t:Ne.Tl,n:Ne.zw}});var qr=s(61608),$r={};$r.styleTagTransform=an(),$r.setAttributes=nn(),$r.insert=tn().bind(null,"head"),$r.domAPI=Je(),$r.insertStyleElement=rn(),Qe()(qr.A,$r),qr.A&&qr.A.locals&&qr.A.locals;const Hr=(0,Pe.A)(Vr,(function(){var t,e,n=this,s=n._self._c;return n._self._setupProxy,s("NcAppContent",{attrs:{"page-heading":n.pageHeading,"data-cy-files-content":""}},[s("div",{staticClass:"files-list__header"},[s("BreadCrumbs",{attrs:{path:n.dir},on:{reload:n.fetchContent},scopedSlots:n._u([{key:"actions",fn:function(){return[n.canShare&&n.filesListWidth>=512?s("NcButton",{staticClass:"files-list__header-share-button",class:{"files-list__header-share-button--shared":n.shareButtonType},attrs:{"aria-label":n.shareButtonLabel,title:n.shareButtonLabel,type:"tertiary"},on:{click:n.openSharingSidebar},scopedSlots:n._u([{key:"icon",fn:function(){return[n.shareButtonType===n.Type.SHARE_TYPE_LINK?s("LinkIcon"):s("AccountPlusIcon",{attrs:{size:20}})]},proxy:!0}],null,!1,2969853559)}):n._e(),n._v(" "),!n.canUpload||n.isQuotaExceeded?s("NcButton",{staticClass:"files-list__header-upload-button--disabled",attrs:{"aria-label":n.cantUploadLabel,title:n.cantUploadLabel,disabled:!0,type:"secondary"},scopedSlots:n._u([{key:"icon",fn:function(){return[s("PlusIcon",{attrs:{size:20}})]},proxy:!0}],null,!1,2953566425)},[n._v("\n\t\t\t\t\t"+n._s(n.t("files","New"))+"\n\t\t\t\t")]):n.currentFolder?s("UploadPicker",{staticClass:"files-list__header-upload-button",attrs:{content:n.dirContents,destination:n.currentFolder,multiple:!0},on:{failed:n.onUploadFail,uploaded:n.onUpload}}):n._e()]},proxy:!0}])}),n._v(" "),n.filesListWidth>=512&&n.enableGridView?s("NcButton",{staticClass:"files-list__header-grid-button",attrs:{"aria-label":n.gridViewButtonLabel,title:n.gridViewButtonLabel,type:"tertiary"},on:{click:n.toggleGridView},scopedSlots:n._u([{key:"icon",fn:function(){return[n.userConfig.grid_view?s("ListViewIcon"):s("ViewGridIcon")]},proxy:!0}],null,!1,1682960703)}):n._e(),n._v(" "),n.isRefreshing?s("NcLoadingIcon",{staticClass:"files-list__refresh-icon"}):n._e()],1),n._v(" "),!n.loading&&n.canUpload?s("DragAndDropNotice",{attrs:{"current-folder":n.currentFolder}}):n._e(),n._v(" "),n.loading&&!n.isRefreshing?s("NcLoadingIcon",{staticClass:"files-list__loading-icon",attrs:{size:38,name:n.t("files","Loading current folder")}}):!n.loading&&n.isEmptyDir?s("NcEmptyContent",{attrs:{name:(null===(t=n.currentView)||void 0===t?void 0:t.emptyTitle)||n.t("files","No files in here"),description:(null===(e=n.currentView)||void 0===e?void 0:e.emptyCaption)||n.t("files","Upload some content or sync with your devices!"),"data-cy-files-content-empty":""},scopedSlots:n._u([{key:"action",fn:function(){return["/"!==n.dir?s("NcButton",{attrs:{"aria-label":n.t("files","Go to the previous folder"),type:"primary",to:n.toPreviousDir}},[n._v("\n\t\t\t\t"+n._s(n.t("files","Go back"))+"\n\t\t\t")]):n._e()]},proxy:!0},{key:"icon",fn:function(){return[s("NcIconSvgWrapper",{attrs:{svg:n.currentView.icon}})]},proxy:!0}])}):s("FilesListVirtual",{ref:"filesListVirtual",attrs:{"current-folder":n.currentFolder,"current-view":n.currentView,nodes:n.dirContentsSorted}})],1)}),[],!1,null,"5c37291f",null).exports,Wr=(0,l.pM)({name:"FilesApp",components:{NcContent:Ee.A,FilesList:Hr,Navigation:Ln}}),Gr=(0,Pe.A)(Wr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcContent",{attrs:{"app-name":"files"}},[e("Navigation"),t._v(" "),e("FilesList")],1)}),[],!1,null,null,null).exports;var Yr,Kr;s.nc=btoa((0,a.do)()),window.OCA.Files=null!==(Yr=window.OCA.Files)&&void 0!==Yr?Yr:{},window.OCP.Files=null!==(Kr=window.OCP.Files)&&void 0!==Kr?Kr:{};const Qr=new class{constructor(t){var e,n,s;e=this,s=void 0,(n=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}(n="_router"))in e?Object.defineProperty(e,n,{value:s,enumerable:!0,configurable:!0,writable:!0}):e[n]=s,this._router=t}get name(){return this._router.currentRoute.name}get query(){return this._router.currentRoute.query||{}}get params(){return this._router.currentRoute.params||{}}goTo(t){let e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return this._router.push({path:t,replace:e})}goToRoute(t,e,n,s){return this._router.push({name:t,query:n,params:e,replace:s})}}(Te);Object.assign(window.OCP.Files,{Router:Qr}),l.Ay.use(r.R2);const Xr=l.Ay.observable((0,o.bh)());l.Ay.prototype.$navigation=Xr;const Jr=new class{constructor(){var t,e,n;t=this,n=void 0,(e=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}(e="_settings"))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,this._settings=[],ke.debug("OCA.Files.Settings initialized")}register(t){return this._settings.filter((e=>e.name===t.name)).length>0?(ke.error("A setting with the same name is already registered"),!1):(this._settings.push(t),!0)}get settings(){return this._settings}};Object.assign(window.OCA.Files,{Settings:Jr}),Object.assign(window.OCA.Files.Settings,{Setting:class{constructor(t,e){let{el:n,open:s,close:i}=e;Se(this,"_close",void 0),Se(this,"_el",void 0),Se(this,"_name",void 0),Se(this,"_open",void 0),this._name=t,this._el=n,this._open=s,this._close=i,"function"!=typeof this._open&&(this._open=()=>{}),"function"!=typeof this._close&&(this._close=()=>{})}get name(){return this._name}get el(){return this._el}get open(){return this._open}get close(){return this._close}}}),new(l.Ay.extend(Gr))({router:Te,pinia:c}).$mount("#content")},30521:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".upload-picker[data-v-eca9500a] {\n  display: inline-flex;\n  align-items: center;\n  height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n  width: 200px;\n  max-width: 0;\n  transition: max-width var(--animation-quick) ease-in-out;\n  margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n  max-width: 200px;\n  margin-right: 20px;\n  margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n  animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n  0% {\n    opacity: .5;\n  }\n  25% {\n    opacity: 1;\n  }\n  60% {\n    opacity: .5;\n  }\n  to {\n    opacity: .5;\n  }\n}\n","",{version:3,sources:["webpack://./node_modules/@nextcloud/upload/dist/assets/index-Ussc_ol3.css"],names:[],mappings:"AAAA;EACE,oBAAoB;EACpB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,YAAY;EACZ,YAAY;EACZ,wDAAwD;EACxD,eAAe;AACjB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,gBAAgB;EAChB,kBAAkB;EAClB,gBAAgB;AAClB;AACA;EACE,yDAAyD;AAC3D;AACA;EACE;IACE,WAAW;EACb;EACA;IACE,UAAU;EACZ;EACA;IACE,WAAW;EACb;EACA;IACE,WAAW;EACb;AACF",sourcesContent:[".upload-picker[data-v-eca9500a] {\n  display: inline-flex;\n  align-items: center;\n  height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n  width: 200px;\n  max-width: 0;\n  transition: max-width var(--animation-quick) ease-in-out;\n  margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n  max-width: 200px;\n  margin-right: 20px;\n  margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n  animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n  0% {\n    opacity: .5;\n  }\n  25% {\n    opacity: 1;\n  }\n  60% {\n    opacity: .5;\n  }\n  to {\n    opacity: .5;\n  }\n}\n"],sourceRoot:""}]);const a=o},35833:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__breadcrumbs[data-v-499e1525]{flex:1 1 100% !important;width:100%;height:100%;margin-block:0;margin-inline:10px}.files-list__breadcrumbs[data-v-499e1525]  a{cursor:pointer !important}.files-list__breadcrumbs--with-progress[data-v-499e1525]{flex-direction:column !important;align-items:flex-start !important}","",{version:3,sources:["webpack://./apps/files/src/components/BreadCrumbs.vue"],names:[],mappings:"AACA,0CAEC,wBAAA,CACA,UAAA,CACA,WAAA,CACA,cAAA,CACA,kBAAA,CAGC,6CACC,yBAAA,CAIF,yDACC,gCAAA,CACA,iCAAA",sourcesContent:["\n.files-list__breadcrumbs {\n\t// Take as much space as possible\n\tflex: 1 1 100% !important;\n\twidth: 100%;\n\theight: 100%;\n\tmargin-block: 0;\n\tmargin-inline: 10px;\n\n\t:deep() {\n\t\ta {\n\t\t\tcursor: pointer !important;\n\t\t}\n\t}\n\n\t&--with-progress {\n\t\tflex-direction: column !important;\n\t\talign-items: flex-start !important;\n\t}\n}\n"],sourceRoot:""}]);const a=o},82915:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__drag-drop-notice[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;width:100%;min-height:113px;margin:0;user-select:none;color:var(--color-text-maxcontrast);background-color:var(--color-main-background);border-color:#000}.files-list__drag-drop-notice h3[data-v-02c943a6]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;height:15vh;max-height:70%;padding:0 5vw;border:2px var(--color-border-dark) dashed;border-radius:var(--border-radius-large)}","",{version:3,sources:["webpack://./apps/files/src/components/DragAndDropNotice.vue"],names:[],mappings:"AACA,+CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAEA,gBAAA,CACA,QAAA,CACA,gBAAA,CACA,mCAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kDACC,gBAAA,CACA,aAAA,CAGD,uDACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,WAAA,CACA,cAAA,CACA,aAAA,CACA,0CAAA,CACA,wCAAA",sourcesContent:["\n.files-list__drag-drop-notice {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\twidth: 100%;\n\t// Breadcrumbs height + row thead height\n\tmin-height: calc(58px + 55px);\n\tmargin: 0;\n\tuser-select: none;\n\tcolor: var(--color-text-maxcontrast);\n\tbackground-color: var(--color-main-background);\n\tborder-color: black;\n\n\th3 {\n\t\tmargin-left: 16px;\n\t\tcolor: inherit;\n\t}\n\n\t&-wrapper {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\theight: 15vh;\n\t\tmax-height: 70%;\n\t\tpadding: 0 5vw;\n\t\tborder: 2px var(--color-border-dark) dashed;\n\t\tborder-radius: var(--border-radius-large);\n\t}\n}\n\n"],sourceRoot:""}]);const a=o},52608:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list-drag-image{position:absolute;top:-9999px;left:-9999px;display:flex;overflow:hidden;align-items:center;height:44px;padding:6px 12px;background:var(--color-main-background)}.files-list-drag-image__icon,.files-list-drag-image .files-list__row-icon{display:flex;overflow:hidden;align-items:center;justify-content:center;width:32px;height:32px;border-radius:var(--border-radius)}.files-list-drag-image__icon{overflow:visible;margin-right:12px}.files-list-drag-image__icon img{max-width:100%;max-height:100%}.files-list-drag-image__icon .material-design-icon{color:var(--color-text-maxcontrast)}.files-list-drag-image__icon .material-design-icon.folder-icon{color:var(--color-primary-element)}.files-list-drag-image__icon>span{display:flex}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon{margin-top:6px;margin-left:-26px}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon+.files-list__row-icon{margin-top:12px}.files-list-drag-image__icon>span:not(:empty)+*{display:none}.files-list-drag-image__name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}","",{version:3,sources:["webpack://./apps/files/src/components/DragAndDropPreview.vue"],names:[],mappings:"AAIA,uBACC,iBAAA,CACA,WAAA,CACA,YAAA,CACA,YAAA,CACA,eAAA,CACA,kBAAA,CACA,WAAA,CACA,gBAAA,CACA,uCAAA,CAEA,0EAEC,YAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kCAAA,CAGD,6BACC,gBAAA,CACA,iBAAA,CAEA,iCACC,cAAA,CACA,eAAA,CAGD,mDACC,mCAAA,CACA,+DACC,kCAAA,CAKF,kCACC,YAAA,CAGA,8EACC,cA9CU,CA+CV,iBAAA,CACA,oGACC,eAAA,CAKF,gDACC,YAAA,CAKH,6BACC,eAAA,CACA,kBAAA,CACA,sBAAA",sourcesContent:["\n$size: 32px;\n$stack-shift: 6px;\n\n.files-list-drag-image {\n\tposition: absolute;\n\ttop: -9999px;\n\tleft: -9999px;\n\tdisplay: flex;\n\toverflow: hidden;\n\talign-items: center;\n\theight: 44px;\n\tpadding: 6px 12px;\n\tbackground: var(--color-main-background);\n\n\t&__icon,\n\t.files-list__row-icon {\n\t\tdisplay: flex;\n\t\toverflow: hidden;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 32px;\n\t\theight: 32px;\n\t\tborder-radius: var(--border-radius);\n\t}\n\n\t&__icon {\n\t\toverflow: visible;\n\t\tmargin-right: 12px;\n\n\t\timg {\n\t\t\tmax-width: 100%;\n\t\t\tmax-height: 100%;\n\t\t}\n\n\t\t.material-design-icon {\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\t&.folder-icon {\n\t\t\t\tcolor: var(--color-primary-element);\n\t\t\t}\n\t\t}\n\n\t\t// Previews container\n\t\t> span {\n\t\t\tdisplay: flex;\n\n\t\t\t// Stack effect if more than one element\n\t\t\t.files-list__row-icon + .files-list__row-icon {\n\t\t\t\tmargin-top: $stack-shift;\n\t\t\t\tmargin-left: $stack-shift - $size;\n\t\t\t\t& + .files-list__row-icon {\n\t\t\t\t\tmargin-top: $stack-shift * 2;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// If we have manually clone the preview,\n\t\t\t// let's hide any fallback icons\n\t\t\t&:not(:empty) + * {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n\n\t&__name {\n\t\toverflow: hidden;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t}\n}\n\n"],sourceRoot:""}]);const a=o},14781:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".favorite-marker-icon[data-v-42ea6dd4]{color:var(--color-favorite);min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-42ea6dd4]  svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-42ea6dd4]  svg path{stroke:var(--color-main-background);stroke-width:8px;stroke-linejoin:round;paint-order:stroke}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FavoriteIcon.vue"],names:[],mappings:"AACA,uCACC,2BAAA,CAEA,0BAAA,CACG,2BAAA,CAGF,4CAEC,qBAAA,CACA,sBAAA,CAGA,0BAAA,CACA,2BAAA,CAGA,iDACC,mCAAA,CACA,gBAAA,CACA,qBAAA,CACA,kBAAA",sourcesContent:["\n.favorite-marker-icon {\n\tcolor: var(--color-favorite);\n\t// Override NcIconSvgWrapper defaults (clickable area)\n\tmin-width: unset !important;\n    min-height: unset !important;\n\n\t:deep() {\n\t\tsvg {\n\t\t\t// We added a stroke for a11y so we must increase the size to include the stroke\n\t\t\twidth: 26px !important;\n\t\t\theight: 26px !important;\n\n\t\t\t// Override NcIconSvgWrapper defaults of 20px\n\t\t\tmax-width: unset !important;\n\t\t\tmax-height: unset !important;\n\n\t\t\t// Sow a border around the icon for better contrast\n\t\t\tpath {\n\t\t\t\tstroke: var(--color-main-background);\n\t\t\t\tstroke-width: 8px;\n\t\t\t\tstroke-linejoin: round;\n\t\t\t\tpaint-order: stroke;\n\t\t\t}\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const a=o},90908:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"main.app-content[style*=mouse-pos-x] .v-popper__popper{transform:translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper[data-popper-placement=top]{transform:translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper .v-popper__arrow-container{display:none}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue"],names:[],mappings:"AAGA,uDACC,6EAAA,CAGA,kFAEC,iGAAA,CAGD,kFACC,YAAA",sourcesContent:['\n// Allow right click to define the position of the menu\n// only if defined\nmain.app-content[style*="mouse-pos-x"] .v-popper__popper {\n\ttransform: translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important;\n\n\t// If the menu is too close to the bottom, we move it up\n\t&[data-popper-placement="top"] {\n\t\t// 34px added to align with the top of the cursor\n\t\ttransform: translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important;\n\t}\n\t// Hide arrow if floating\n\t.v-popper__arrow-container {\n\t\tdisplay: none;\n\t}\n}\n'],sourceRoot:""}]);const a=o},81640:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"[data-v-5edd44ea] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-5edd44ea] .button-vue--icon-and-text .button-vue__icon{color:var(--color-primary-element)}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue"],names:[],mappings:"AAEC,+DACC,kCAAA,CAED,+DACC,kCAAA",sourcesContent:["\n:deep(.button-vue--icon-and-text, .files-list__row-action-sharing-status) {\n\t.button-vue__text {\n\t\tcolor: var(--color-primary-element);\n\t}\n\t.button-vue__icon {\n\t\tcolor: var(--color-primary-element);\n\t}\n}\n"],sourceRoot:""}]);const a=o},31840:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"tr[data-v-a85bde20]{margin-bottom:300px;border-top:1px solid var(--color-border);background-color:rgba(0,0,0,0) !important;border-bottom:none !important}tr td[data-v-a85bde20]{user-select:none;color:var(--color-text-maxcontrast) !important}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableFooter.vue"],names:[],mappings:"AAEA,oBACC,mBAAA,CACA,wCAAA,CAEA,yCAAA,CACA,6BAAA,CAEA,uBACC,gBAAA,CAEA,8CAAA",sourcesContent:["\n// Scoped row\ntr {\n\tmargin-bottom: 300px;\n\tborder-top: 1px solid var(--color-border);\n\t// Prevent hover effect on the whole row\n\tbackground-color: transparent !important;\n\tborder-bottom: none !important;\n\n\ttd {\n\t\tuser-select: none;\n\t\t// Make sure the cell colors don't apply to column headers\n\t\tcolor: var(--color-text-maxcontrast) !important;\n\t}\n}\n"],sourceRoot:""}]);const a=o},60799:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__column[data-v-952162c2]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-952162c2]{cursor:pointer}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeader.vue"],names:[],mappings:"AACA,qCACC,gBAAA,CAEA,8CAAA,CAEA,+CACC,cAAA",sourcesContent:["\n.files-list__column {\n\tuser-select: none;\n\t// Make sure the cell colors don't apply to column headers\n\tcolor: var(--color-text-maxcontrast) !important;\n\n\t&--sortable {\n\t\tcursor: pointer;\n\t}\n}\n\n"],sourceRoot:""}]);const a=o},58017:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__row-actions-batch[data-v-d939292c]{flex:1 1 100% !important;max-width:100%}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeaderActions.vue"],names:[],mappings:"AACA,gDACC,wBAAA,CACA,cAAA",sourcesContent:["\n.files-list__row-actions-batch {\n\tflex: 1 1 100% !important;\n\tmax-width: 100%;\n}\n"],sourceRoot:""}]);const a=o},69426:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__column-sort-button[data-v-2dd1845e]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-2dd1845e]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-2dd1845e]{color:var(--color-text-maxcontrast);opacity:0;transition:opacity var(--animation-quick);inset-inline-start:-10px}.files-list__column-sort-button--size .files-list__column-sort-button-icon[data-v-2dd1845e]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-2dd1845e]{opacity:1}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeaderButton.vue"],names:[],mappings:"AACA,iDAEC,oCAAA,CACA,sDAAA,CAEA,sDACC,mCAAA,CACA,kBAAA,CAGD,sDACC,mCAAA,CACA,SAAA,CACA,yCAAA,CACA,wBAAA,CAGD,4FACC,uBAAA,CAGD,mXAIC,SAAA",sourcesContent:["\n.files-list__column-sort-button {\n\t// Compensate for cells margin\n\tmargin: 0 calc(var(--cell-margin) * -1);\n\tmin-width: calc(100% - 3 * var(--cell-margin))!important;\n\n\t&-text {\n\t\tcolor: var(--color-text-maxcontrast);\n\t\tfont-weight: normal;\n\t}\n\n\t&-icon {\n\t\tcolor: var(--color-text-maxcontrast);\n\t\topacity: 0;\n\t\ttransition: opacity var(--animation-quick);\n\t\tinset-inline-start: -10px;\n\t}\n\n\t&--size &-icon {\n\t\tinset-inline-start: 10px;\n\t}\n\n\t&--active &-icon,\n\t&:hover &-icon,\n\t&:focus &-icon,\n\t&:active &-icon {\n\t\topacity: 1;\n\t}\n}\n"],sourceRoot:""}]);const a=o},79655:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list[data-v-2e1b1dc8]{--row-height: 55px;--cell-margin: 14px;--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);--checkbox-size: 24px;--clickable-area: 44px;--icon-preview-size: 32px;overflow:auto;height:100%;will-change:scroll-position}.files-list[data-v-2e1b1dc8]  tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-2e1b1dc8]  tbody tr{contain:strict}.files-list[data-v-2e1b1dc8]  tbody tr:hover,.files-list[data-v-2e1b1dc8]  tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-2e1b1dc8]  .files-list__before{display:flex;flex-direction:column}.files-list[data-v-2e1b1dc8]  .files-list__selected{padding-right:12px;white-space:nowrap}.files-list[data-v-2e1b1dc8]  .files-list__table{display:block}.files-list[data-v-2e1b1dc8]  .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-2e1b1dc8]  .files-list__thead-overlay{position:sticky;top:0;margin-left:var(--row-height);z-index:20;display:flex;align-items:center;background-color:var(--color-main-background);border-bottom:1px solid var(--color-border);height:var(--row-height)}.files-list[data-v-2e1b1dc8]  .files-list__thead,.files-list[data-v-2e1b1dc8]  .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-2e1b1dc8]  .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-2e1b1dc8]  .files-list__tfoot{min-height:300px}.files-list[data-v-2e1b1dc8]  tr{position:relative;display:flex;align-items:center;width:100%;user-select:none;border-bottom:1px solid var(--color-border);box-sizing:border-box;user-select:none;height:var(--row-height)}.files-list[data-v-2e1b1dc8]  td,.files-list[data-v-2e1b1dc8]  th{display:flex;align-items:center;flex:0 0 auto;justify-content:left;width:var(--row-height);height:var(--row-height);margin:0;padding:0;color:var(--color-text-maxcontrast);border:none}.files-list[data-v-2e1b1dc8]  td span,.files-list[data-v-2e1b1dc8]  th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-2e1b1dc8]  .files-list__row--failed{position:absolute;display:block;top:0;left:0;right:0;bottom:0;opacity:.1;z-index:-1;background:var(--color-error)}.files-list[data-v-2e1b1dc8]  .files-list__row-checkbox{justify-content:center}.files-list[data-v-2e1b1dc8]  .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-2e1b1dc8]  .files-list__row-checkbox .checkbox-radio-switch label.checkbox-radio-switch__label{width:var(--clickable-area);height:var(--clickable-area);margin:0;padding:calc((var(--clickable-area) - var(--checkbox-size))/2)}.files-list[data-v-2e1b1dc8]  .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-2e1b1dc8]  .files-list__row:hover,.files-list[data-v-2e1b1dc8]  .files-list__row:focus,.files-list[data-v-2e1b1dc8]  .files-list__row:active,.files-list[data-v-2e1b1dc8]  .files-list__row--active,.files-list[data-v-2e1b1dc8]  .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-2e1b1dc8]  .files-list__row:hover>*,.files-list[data-v-2e1b1dc8]  .files-list__row:focus>*,.files-list[data-v-2e1b1dc8]  .files-list__row:active>*,.files-list[data-v-2e1b1dc8]  .files-list__row--active>*,.files-list[data-v-2e1b1dc8]  .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-2e1b1dc8]  .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-2e1b1dc8]  .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-2e1b1dc8]  .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-2e1b1dc8]  .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-2e1b1dc8]  .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-2e1b1dc8]  .files-list__row--dragover *{pointer-events:none}.files-list[data-v-2e1b1dc8]  .files-list__row-icon{position:relative;display:flex;overflow:visible;align-items:center;flex:0 0 var(--icon-preview-size);justify-content:center;width:var(--icon-preview-size);height:100%;margin-right:var(--checkbox-padding);color:var(--color-primary-element)}.files-list[data-v-2e1b1dc8]  .files-list__row-icon *{cursor:pointer}.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span:not(.files-list__row-icon-favorite) svg{width:var(--icon-preview-size);height:var(--icon-preview-size)}.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span.folder-icon,.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span.folder-icon svg,.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span.folder-open-icon svg{width:calc(var(--icon-preview-size) + 6px);height:calc(var(--icon-preview-size) + 6px)}.files-list[data-v-2e1b1dc8]  .files-list__row-icon-preview{overflow:hidden;width:var(--icon-preview-size);height:var(--icon-preview-size);border-radius:var(--border-radius);object-fit:contain;object-position:center}.files-list[data-v-2e1b1dc8]  .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-2e1b1dc8]  .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-2e1b1dc8]  .files-list__row-icon-overlay{position:absolute;max-height:calc(var(--icon-preview-size)*.5);max-width:calc(var(--icon-preview-size)*.5);color:var(--color-primary-element-text);margin-top:2px}.files-list[data-v-2e1b1dc8]  .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-2e1b1dc8]  .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-2e1b1dc8]  .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-2e1b1dc8]  .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-2e1b1dc8]  .files-list__row-name a:focus .files-list__row-name-text{outline:2px solid var(--color-main-text) !important;border-radius:20px}.files-list[data-v-2e1b1dc8]  .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-2e1b1dc8]  .files-list__row-name .files-list__row-name-text{color:var(--color-main-text);padding:5px 10px;margin-left:-10px;display:inline-flex}.files-list[data-v-2e1b1dc8]  .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-2e1b1dc8]  .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-2e1b1dc8]  .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-2e1b1dc8]  .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-2e1b1dc8]  .files-list__row-actions{width:auto}.files-list[data-v-2e1b1dc8]  .files-list__row-actions~td,.files-list[data-v-2e1b1dc8]  .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-2e1b1dc8]  .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-2e1b1dc8]  .files-list__row-action--inline{margin-right:7px}.files-list[data-v-2e1b1dc8]  .files-list__row-mtime,.files-list[data-v-2e1b1dc8]  .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-2e1b1dc8]  .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-2e1b1dc8]  .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-2e1b1dc8]  .files-list__row-column-custom{width:calc(var(--row-height)*2)}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListVirtual.vue"],names:[],mappings:"AACA,6BACC,kBAAA,CACA,mBAAA,CAEA,wEAAA,CACA,qBAAA,CACA,sBAAA,CACA,yBAAA,CAEA,aAAA,CACA,WAAA,CACA,2BAAA,CAIC,oCACC,mBAAA,CACA,0BAAA,CACA,YAAA,CACA,qBAAA,CACA,UAAA,CAEA,iBAAA,CAGA,uCACC,cAAA,CACA,0FAEC,6CAAA,CAMH,kDACC,YAAA,CACA,qBAAA,CAGD,oDACC,kBAAA,CACA,kBAAA,CAGD,iDACC,aAAA,CAEA,uFAEC,qCAAA,CAIF,yDAEC,eAAA,CACA,KAAA,CAEA,6BAAA,CAEA,UAAA,CAEA,YAAA,CACA,kBAAA,CAGA,6CAAA,CACA,2CAAA,CACA,wBAAA,CAGD,kGAEC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,6CAAA,CAKD,iDAEC,eAAA,CACA,UAAA,CACA,KAAA,CAID,iDACC,gBAAA,CAGD,iCACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CACA,2CAAA,CACA,qBAAA,CACA,gBAAA,CACA,wBAAA,CAGD,kEACC,YAAA,CACA,kBAAA,CACA,aAAA,CACA,oBAAA,CACA,uBAAA,CACA,wBAAA,CACA,QAAA,CACA,SAAA,CACA,mCAAA,CACA,WAAA,CAKA,4EACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAIF,uDACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAAA,CACA,UAAA,CACA,6BAAA,CAGD,wDACC,sBAAA,CAEA,+EACC,YAAA,CACA,sBAAA,CAEA,iCAAA,CAEA,kHACC,2BAAA,CACA,4BAAA,CACA,QAAA,CACA,8DAAA,CAGD,4GACC,mBAAA,CAMF,gRAEC,8CAAA,CAGA,gDAAA,CACA,0RACC,wCAAA,CAID,2aACC,oCAAA,CAIF,2DAEC,mBAAA,CAKF,oDACC,iBAAA,CACA,YAAA,CACA,gBAAA,CACA,kBAAA,CAEA,iCAAA,CACA,sBAAA,CACA,8BAAA,CACA,WAAA,CAEA,oCAAA,CACA,kCAAA,CAGA,sDACC,cAAA,CAGD,yDACC,0BAAA,CAEA,iGACC,8BAAA,CACA,+BAAA,CAID,+IAEC,WAAA,CACA,uJACC,0CAAA,CACA,2CAAA,CAKH,4DACC,eAAA,CACA,8BAAA,CACA,+BAAA,CACA,kCAAA,CAEA,kBAAA,CACA,sBAAA,CAGA,uGACC,oCAAA,CAKF,6DACC,iBAAA,CACA,OAAA,CACA,WAAA,CAID,4DACC,iBAAA,CACA,4CAAA,CACA,2CAAA,CACA,uCAAA,CAEA,cAAA,CAGA,kEACC,4BAAA,CACA,uCAAA,CACA,kBAAA,CAMH,oDAEC,eAAA,CAEA,aAAA,CAEA,sDACC,YAAA,CACA,kBAAA,CAEA,UAAA,CACA,WAAA,CAEA,WAAA,CAGA,oEACC,YAAA,CAID,uFACC,mDAAA,CACA,kBAAA,CAED,2GACC,uBAAA,CAIF,+EACC,4BAAA,CAEA,gBAAA,CACA,iBAAA,CAEA,mBAAA,CAGD,8EACC,mCAAA,CAEA,gBAAA,CAKF,sDACC,UAAA,CACA,eAAA,CACA,4DACC,UAAA,CAEA,gBAAA,CACA,eAAA,CACA,gBAAA,CAEA,oEAEC,+BAAA,CACA,SAAA,CAKH,uDAEC,UAAA,CAGA,oHAEC,2BAAA,CAIA,gFAEC,kBAAA,CAKH,8DACC,gBAAA,CAGD,yGAEC,mCAAA,CAED,oDACC,iCAAA,CAEA,wBAAA,CAGD,qDACC,+BAAA,CAGD,6DACC,+BAAA",sourcesContent:["\n.files-list {\n\t--row-height: 55px;\n\t--cell-margin: 14px;\n\n\t--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);\n\t--checkbox-size: 24px;\n\t--clickable-area: 44px;\n\t--icon-preview-size: 32px;\n\n\toverflow: auto;\n\theight: 100%;\n\twill-change: scroll-position;\n\n\t& :deep() {\n\t\t// Table head, body and footer\n\t\ttbody {\n\t\t\twill-change: padding;\n\t\t\tcontain: layout paint style;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\twidth: 100%;\n\t\t\t// Necessary for virtual scrolling absolute\n\t\t\tposition: relative;\n\n\t\t\t/* Hover effect on tbody lines only */\n\t\t\ttr {\n\t\t\t\tcontain: strict;\n\t\t\t\t&:hover,\n\t\t\t\t&:focus {\n\t\t\t\t\tbackground-color: var(--color-background-dark);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Before table and thead\n\t\t.files-list__before {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t}\n\n\t\t.files-list__selected {\n\t\t\tpadding-right: 12px;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t.files-list__table {\n\t\t\tdisplay: block;\n\n\t\t\t&.files-list__table--with-thead-overlay {\n\t\t\t\t// Hide the table header below the overlay\n\t\t\t\tmargin-top: calc(-1 * var(--row-height));\n\t\t\t}\n\t\t}\n\n\t\t.files-list__thead-overlay {\n\t\t\t// Pinned on top when scrolling\n\t\t\tposition: sticky;\n\t\t\ttop: 0;\n\t\t\t// Save space for a row checkbox\n\t\t\tmargin-left: var(--row-height);\n\t\t\t// More than .files-list__thead\n\t\t\tz-index: 20;\n\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\n\t\t\t// Reuse row styles\n\t\t\tbackground-color: var(--color-main-background);\n\t\t\tborder-bottom: 1px solid var(--color-border);\n\t\t\theight: var(--row-height);\n\t\t}\n\n\t\t.files-list__thead,\n\t\t.files-list__tfoot {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\twidth: 100%;\n\t\t\tbackground-color: var(--color-main-background);\n\n\t\t}\n\n\t\t// Table header\n\t\t.files-list__thead {\n\t\t\t// Pinned on top when scrolling\n\t\t\tposition: sticky;\n\t\t\tz-index: 10;\n\t\t\ttop: 0;\n\t\t}\n\n\t\t// Table footer\n\t\t.files-list__tfoot {\n\t\t\tmin-height: 300px;\n\t\t}\n\n\t\ttr {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\twidth: 100%;\n\t\t\tuser-select: none;\n\t\t\tborder-bottom: 1px solid var(--color-border);\n\t\t\tbox-sizing: border-box;\n\t\t\tuser-select: none;\n\t\t\theight: var(--row-height);\n\t\t}\n\n\t\ttd, th {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tflex: 0 0 auto;\n\t\t\tjustify-content: left;\n\t\t\twidth: var(--row-height);\n\t\t\theight: var(--row-height);\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\tborder: none;\n\n\t\t\t// Columns should try to add any text\n\t\t\t// node wrapped in a span. That should help\n\t\t\t// with the ellipsis on overflow.\n\t\t\tspan {\n\t\t\t\toverflow: hidden;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row--failed {\n\t\t\tposition: absolute;\n\t\t\tdisplay: block;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\topacity: .1;\n\t\t\tz-index: -1;\n\t\t\tbackground: var(--color-error);\n\t\t}\n\n\t\t.files-list__row-checkbox {\n\t\t\tjustify-content: center;\n\n\t\t\t.checkbox-radio-switch {\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: center;\n\n\t\t\t\t--icon-size: var(--checkbox-size);\n\n\t\t\t\tlabel.checkbox-radio-switch__label {\n\t\t\t\t\twidth: var(--clickable-area);\n\t\t\t\t\theight: var(--clickable-area);\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);\n\t\t\t\t}\n\n\t\t\t\t.checkbox-radio-switch__icon {\n\t\t\t\t\tmargin: 0 !important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row {\n\t\t\t&:hover, &:focus, &:active, &--active, &--dragover {\n\t\t\t\t// WCAG AA compliant\n\t\t\t\tbackground-color: var(--color-background-hover);\n\t\t\t\t// text-maxcontrast have been designed to pass WCAG AA over\n\t\t\t\t// a white background, we need to adjust then.\n\t\t\t\t--color-text-maxcontrast: var(--color-main-text);\n\t\t\t\t> * {\n\t\t\t\t\t--color-border: var(--color-border-dark);\n\t\t\t\t}\n\n\t\t\t\t// Hover state of the row should also change the favorite markers background\n\t\t\t\t.favorite-marker-icon svg path {\n\t\t\t\t\tstroke: var(--color-background-hover);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&--dragover * {\n\t\t\t\t// Prevent dropping on row children\n\t\t\t\tpointer-events: none;\n\t\t\t}\n\t\t}\n\n\t\t// Entry preview or mime icon\n\t\t.files-list__row-icon {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\toverflow: visible;\n\t\t\talign-items: center;\n\t\t\t// No shrinking or growing allowed\n\t\t\tflex: 0 0 var(--icon-preview-size);\n\t\t\tjustify-content: center;\n\t\t\twidth: var(--icon-preview-size);\n\t\t\theight: 100%;\n\t\t\t// Show same padding as the checkbox right padding for visual balance\n\t\t\tmargin-right: var(--checkbox-padding);\n\t\t\tcolor: var(--color-primary-element);\n\n\t\t\t// Icon is also clickable\n\t\t\t* {\n\t\t\t\tcursor: pointer;\n\t\t\t}\n\n\t\t\t& > span {\n\t\t\t\tjustify-content: flex-start;\n\n\t\t\t\t&:not(.files-list__row-icon-favorite) svg {\n\t\t\t\t\twidth: var(--icon-preview-size);\n\t\t\t\t\theight: var(--icon-preview-size);\n\t\t\t\t}\n\n\t\t\t\t// Slightly increase the size of the folder icon\n\t\t\t\t&.folder-icon,\n\t\t\t\t&.folder-open-icon {\n\t\t\t\t\tmargin: -3px;\n\t\t\t\t\tsvg {\n\t\t\t\t\t\twidth: calc(var(--icon-preview-size) + 6px);\n\t\t\t\t\t\theight: calc(var(--icon-preview-size) + 6px);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&-preview {\n\t\t\t\toverflow: hidden;\n\t\t\t\twidth: var(--icon-preview-size);\n\t\t\t\theight: var(--icon-preview-size);\n\t\t\t\tborder-radius: var(--border-radius);\n\t\t\t\t// Center and contain the preview\n\t\t\t\tobject-fit: contain;\n\t\t\t\tobject-position: center;\n\n\t\t\t\t/* Preview not loaded animation effect */\n\t\t\t\t&:not(.files-list__row-icon-preview--loaded) {\n\t\t\t\t\tbackground: var(--color-loading-dark);\n\t\t\t\t\t// animation: preview-gradient-fade 1.2s ease-in-out infinite;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&-favorite {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 0px;\n\t\t\t\tright: -10px;\n\t\t\t}\n\n\t\t\t// File and folder overlay\n\t\t\t&-overlay {\n\t\t\t\tposition: absolute;\n\t\t\t\tmax-height: calc(var(--icon-preview-size) * 0.5);\n\t\t\t\tmax-width: calc(var(--icon-preview-size) * 0.5);\n\t\t\t\tcolor: var(--color-primary-element-text);\n\t\t\t\t// better alignment with the folder icon\n\t\t\t\tmargin-top: 2px;\n\n\t\t\t\t// Improve icon contrast with a background for files\n\t\t\t\t&--file {\n\t\t\t\t\tcolor: var(--color-main-text);\n\t\t\t\t\tbackground: var(--color-main-background);\n\t\t\t\t\tborder-radius: 100%;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Entry link\n\t\t.files-list__row-name {\n\t\t\t// Prevent link from overflowing\n\t\t\toverflow: hidden;\n\t\t\t// Take as much space as possible\n\t\t\tflex: 1 1 auto;\n\n\t\t\ta {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\t// Fill cell height and width\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\t// Necessary for flex grow to work\n\t\t\t\tmin-width: 0;\n\n\t\t\t\t// Already added to the inner text, see rule below\n\t\t\t\t&:focus-visible {\n\t\t\t\t\toutline: none;\n\t\t\t\t}\n\n\t\t\t\t// Keyboard indicator a11y\n\t\t\t\t&:focus .files-list__row-name-text {\n\t\t\t\t\toutline: 2px solid var(--color-main-text) !important;\n\t\t\t\t\tborder-radius: 20px;\n\t\t\t\t}\n\t\t\t\t&:focus:not(:focus-visible) .files-list__row-name-text {\n\t\t\t\t\toutline: none !important;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.files-list__row-name-text {\n\t\t\t\tcolor: var(--color-main-text);\n\t\t\t\t// Make some space for the outline\n\t\t\t\tpadding: 5px 10px;\n\t\t\t\tmargin-left: -10px;\n\t\t\t\t// Align two name and ext\n\t\t\t\tdisplay: inline-flex;\n\t\t\t}\n\n\t\t\t.files-list__row-name-ext {\n\t\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\t\t// always show the extension\n\t\t\t\toverflow: visible;\n\t\t\t}\n\t\t}\n\n\t\t// Rename form\n\t\t.files-list__row-rename {\n\t\t\twidth: 100%;\n\t\t\tmax-width: 600px;\n\t\t\tinput {\n\t\t\t\twidth: 100%;\n\t\t\t\t// Align with text, 0 - padding - border\n\t\t\t\tmargin-left: -8px;\n\t\t\t\tpadding: 2px 6px;\n\t\t\t\tborder-width: 2px;\n\n\t\t\t\t&:invalid {\n\t\t\t\t\t// Show red border on invalid input\n\t\t\t\t\tborder-color: var(--color-error);\n\t\t\t\t\tcolor: red;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row-actions {\n\t\t\t// take as much space as necessary\n\t\t\twidth: auto;\n\n\t\t\t// Add margin to all cells after the actions\n\t\t\t& ~ td,\n\t\t\t& ~ th {\n\t\t\t\tmargin: 0 var(--cell-margin);\n\t\t\t}\n\n\t\t\tbutton {\n\t\t\t\t.button-vue__text {\n\t\t\t\t\t// Remove bold from default button styling\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row-action--inline {\n\t\t\tmargin-right: 7px;\n\t\t}\n\n\t\t.files-list__row-mtime,\n\t\t.files-list__row-size {\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t}\n\t\t.files-list__row-size {\n\t\t\twidth: calc(var(--row-height) * 1.5);\n\t\t\t// Right align content/text\n\t\t\tjustify-content: flex-end;\n\t\t}\n\n\t\t.files-list__row-mtime {\n\t\t\twidth: calc(var(--row-height) * 2);\n\t\t}\n\n\t\t.files-list__row-column-custom {\n\t\t\twidth: calc(var(--row-height) * 2);\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const a=o},8591:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"tbody.files-list__tbody.files-list__tbody--grid{--half-clickable-area: calc(var(--clickable-area) / 2);--row-width: 160px;--row-height: calc(var(--row-width) - var(--half-clickable-area));--icon-preview-size: calc(var(--row-width) - var(--clickable-area));--checkbox-padding: 0px;display:grid;grid-template-columns:repeat(auto-fill, var(--row-width));grid-gap:15px;row-gap:15px;align-content:center;align-items:center;justify-content:space-around;justify-items:center}tbody.files-list__tbody.files-list__tbody--grid tr{width:var(--row-width);height:calc(var(--row-height) + var(--clickable-area));border:none;border-radius:var(--border-radius)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-checkbox{position:absolute;z-index:9;top:0;left:0;overflow:hidden;width:var(--clickable-area);height:var(--clickable-area);border-radius:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-icon-favorite{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;width:var(--clickable-area);height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name{display:grid;justify-content:stretch;width:100%;height:100%;grid-auto-rows:var(--row-height) var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name span.files-list__row-icon{width:100%;height:100%;padding-top:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name a.files-list__row-name-link{width:calc(100% - var(--clickable-area));height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name .files-list__row-name-text{margin:0;padding-right:0}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-actions{position:absolute;right:0;bottom:0;width:var(--clickable-area);height:var(--clickable-area)}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListVirtual.vue"],names:[],mappings:"AAEA,gDACC,sDAAA,CACA,kBAAA,CAEA,iEAAA,CACA,mEAAA,CACA,uBAAA,CAEA,YAAA,CACA,yDAAA,CACA,aAAA,CACA,YAAA,CAEA,oBAAA,CACA,kBAAA,CACA,4BAAA,CACA,oBAAA,CAEA,mDACC,sBAAA,CACA,sDAAA,CACA,WAAA,CACA,kCAAA,CAID,0EACC,iBAAA,CACA,SAAA,CACA,KAAA,CACA,MAAA,CACA,eAAA,CACA,2BAAA,CACA,4BAAA,CACA,wCAAA,CAID,+EACC,iBAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,2BAAA,CACA,4BAAA,CAGD,sEACC,YAAA,CACA,uBAAA,CACA,UAAA,CACA,WAAA,CACA,sDAAA,CAEA,gGACC,UAAA,CACA,WAAA,CAGA,sCAAA,CAGD,kGAEC,wCAAA,CACA,4BAAA,CAGD,iGACC,QAAA,CACA,eAAA,CAIF,yEACC,iBAAA,CACA,OAAA,CACA,QAAA,CACA,2BAAA,CACA,4BAAA",sourcesContent:["\n// Grid mode\ntbody.files-list__tbody.files-list__tbody--grid {\n\t--half-clickable-area: calc(var(--clickable-area) / 2);\n\t--row-width: 160px;\n\t// We use half of the clickable area as visual balance margin\n\t--row-height: calc(var(--row-width) - var(--half-clickable-area));\n\t--icon-preview-size: calc(var(--row-width) - var(--clickable-area));\n\t--checkbox-padding: 0px;\n\n\tdisplay: grid;\n\tgrid-template-columns: repeat(auto-fill, var(--row-width));\n\tgrid-gap: 15px;\n\trow-gap: 15px;\n\n\talign-content: center;\n\talign-items: center;\n\tjustify-content: space-around;\n\tjustify-items: center;\n\n\ttr {\n\t\twidth: var(--row-width);\n\t\theight: calc(var(--row-height) + var(--clickable-area));\n\t\tborder: none;\n\t\tborder-radius: var(--border-radius);\n\t}\n\n\t// Checkbox in the top left\n\t.files-list__row-checkbox {\n\t\tposition: absolute;\n\t\tz-index: 9;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\toverflow: hidden;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t\tborder-radius: var(--half-clickable-area);\n\t}\n\n\t// Star icon in the top right\n\t.files-list__row-icon-favorite {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t}\n\n\t.files-list__row-name {\n\t\tdisplay: grid;\n\t\tjustify-content: stretch;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tgrid-auto-rows: var(--row-height) var(--clickable-area);\n\n\t\tspan.files-list__row-icon {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\t// Visual balance, we use half of the clickable area\n\t\t\t// as a margin around the preview\n\t\t\tpadding-top: var(--half-clickable-area);\n\t\t}\n\n\t\ta.files-list__row-name-link {\n\t\t\t// Minus action menu\n\t\t\twidth: calc(100% - var(--clickable-area));\n\t\t\theight: var(--clickable-area);\n\t\t}\n\n\t\t.files-list__row-name-text {\n\t\t\tmargin: 0;\n\t\t\tpadding-right: 0;\n\t\t}\n\t}\n\n\t.files-list__row-actions {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t}\n}\n"],sourceRoot:""}]);const a=o},33149:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".app-navigation-entry__settings-quota--not-unlimited[data-v-063ed938] .app-navigation-entry__name{margin-top:-6px}.app-navigation-entry__settings-quota progress[data-v-063ed938]{position:absolute;bottom:12px;margin-left:44px;width:calc(100% - 44px - 22px)}","",{version:3,sources:["webpack://./apps/files/src/components/NavigationQuota.vue"],names:[],mappings:"AAIC,kGACC,eAAA,CAGD,gEACC,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,8BAAA",sourcesContent:["\n// User storage stats display\n.app-navigation-entry__settings-quota {\n\t// Align title with progress and icon\n\t&--not-unlimited::v-deep .app-navigation-entry__name {\n\t\tmargin-top: -6px;\n\t}\n\n\tprogress {\n\t\tposition: absolute;\n\t\tbottom: 12px;\n\t\tmargin-left: 44px;\n\t\twidth: calc(100% - 44px - 22px);\n\t}\n}\n"],sourceRoot:""}]);const a=o},61608:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".app-content[data-v-5c37291f]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-5c37291f]{display:flex;align-items:center;flex:0 0;max-width:100%;margin-block:var(--app-navigation-padding, 4px);margin-inline:calc(var(--default-clickable-area, 44px) + 2*var(--app-navigation-padding, 4px)) var(--app-navigation-padding, 4px)}.files-list__header>*[data-v-5c37291f]{flex:0 0}.files-list__header-share-button[data-v-5c37291f]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-5c37291f]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-5c37291f]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-5c37291f]{margin:auto}","",{version:3,sources:["webpack://./apps/files/src/views/FilesList.vue"],names:[],mappings:"AACA,8BAEC,YAAA,CACA,eAAA,CACA,qBAAA,CACA,eAAA,CACA,4BAAA,CAIA,qCACC,YAAA,CACA,kBAAA,CAEA,QAAA,CACA,cAAA,CAEA,+CAAA,CACA,iIAAA,CAEA,uCAGC,QAAA,CAGD,kDACC,8CAAA,CAEA,0DACC,uCAAA,CAKH,2CACC,aAAA,CACA,UAAA,CACA,WAAA,CAGD,2CACC,WAAA",sourcesContent:["\n.app-content {\n\t// Virtual list needs to be full height and is scrollable\n\tdisplay: flex;\n\toverflow: hidden;\n\tflex-direction: column;\n\tmax-height: 100%;\n\tposition: relative !important;\n}\n\n.files-list {\n\t&__header {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\t// Do not grow or shrink (vertically)\n\t\tflex: 0 0;\n\t\tmax-width: 100%;\n\t\t// Align with the navigation toggle icon\n\t\tmargin-block: var(--app-navigation-padding, 4px);\n\t\tmargin-inline: calc(var(--default-clickable-area, 44px) + 2 * var(--app-navigation-padding, 4px)) var(--app-navigation-padding, 4px);\n\n\t\t>* {\n\t\t\t// Do not grow or shrink (horizontally)\n\t\t\t// Only the breadcrumbs shrinks\n\t\t\tflex: 0 0;\n\t\t}\n\n\t\t&-share-button {\n\t\t\tcolor: var(--color-text-maxcontrast) !important;\n\n\t\t\t&--shared {\n\t\t\t\tcolor: var(--color-main-text) !important;\n\t\t\t}\n\t\t}\n\t}\n\n\t&__refresh-icon {\n\t\tflex: 0 0 44px;\n\t\twidth: 44px;\n\t\theight: 44px;\n\t}\n\n\t&__loading-icon {\n\t\tmargin: auto;\n\t}\n}\n"],sourceRoot:""}]);const a=o},56834:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".app-navigation[data-v-476b6b93] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-476b6b93] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-476b6b93]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-476b6b93]{height:auto !important;overflow:hidden !important;padding-top:0 !important;flex:0 0 auto}","",{version:3,sources:["webpack://./apps/files/src/views/Navigation.vue"],names:[],mappings:"AAEA,4DACC,2BAAA,CACA,0BAAA,CAGD,oGACC,uCAAA,CAGD,yDAEC,gDAAA,CAGD,iDACC,sBAAA,CACA,0BAAA,CACA,wBAAA,CAEA,aAAA",sourcesContent:["\n// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in\n.app-navigation::v-deep .app-navigation-entry-icon {\n\tbackground-repeat: no-repeat;\n\tbackground-position: center;\n}\n\n.app-navigation::v-deep .app-navigation-entry.active .button-vue.icon-collapse:not(:hover) {\n\tcolor: var(--color-primary-element-text);\n}\n\n.app-navigation > ul.app-navigation__list {\n\t// Use flex gap value for more elegant spacing\n\tpadding-bottom: var(--default-grid-baseline, 4px);\n}\n\n.app-navigation-entry__settings {\n\theight: auto !important;\n\toverflow: hidden !important;\n\tpadding-top: 0 !important;\n\t// Prevent shrinking or growing\n\tflex: 0 0 auto;\n}\n"],sourceRoot:""}]);const a=o},60335:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".setting-link[data-v-00f09e69]:hover{text-decoration:underline}","",{version:3,sources:["webpack://./apps/files/src/views/Settings.vue"],names:[],mappings:"AACA,qCACC,yBAAA",sourcesContent:["\n.setting-link:hover {\n\ttext-decoration: underline;\n}\n"],sourceRoot:""}]);const a=o},37007:(t,e,n)=>{"use strict";var s,i=n(96763),r="object"==typeof Reflect?Reflect:null,o=r&&"function"==typeof r.apply?r.apply:function(t,e,n){return Function.prototype.apply.call(t,e,n)};s=r&&"function"==typeof r.ownKeys?r.ownKeys:Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:function(t){return Object.getOwnPropertyNames(t)};var a=Number.isNaN||function(t){return t!=t};function l(){l.init.call(this)}t.exports=l,t.exports.once=function(t,e){return new Promise((function(n,s){function i(n){t.removeListener(e,r),s(n)}function r(){"function"==typeof t.removeListener&&t.removeListener("error",i),n([].slice.call(arguments))}w(t,e,r,{once:!0}),"error"!==e&&function(t,e,n){"function"==typeof t.on&&w(t,"error",e,{once:!0})}(t,i)}))},l.EventEmitter=l,l.prototype._events=void 0,l.prototype._eventsCount=0,l.prototype._maxListeners=void 0;var c=10;function u(t){if("function"!=typeof t)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}function d(t){return void 0===t._maxListeners?l.defaultMaxListeners:t._maxListeners}function m(t,e,n,s){var r,o,a,l;if(u(n),void 0===(o=t._events)?(o=t._events=Object.create(null),t._eventsCount=0):(void 0!==o.newListener&&(t.emit("newListener",e,n.listener?n.listener:n),o=t._events),a=o[e]),void 0===a)a=o[e]=n,++t._eventsCount;else if("function"==typeof a?a=o[e]=s?[n,a]:[a,n]:s?a.unshift(n):a.push(n),(r=d(t))>0&&a.length>r&&!a.warned){a.warned=!0;var c=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");c.name="MaxListenersExceededWarning",c.emitter=t,c.type=e,c.count=a.length,l=c,i&&i.warn&&i.warn(l)}return t}function p(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function f(t,e,n){var s={fired:!1,wrapFn:void 0,target:t,type:e,listener:n},i=p.bind(s);return i.listener=n,s.wrapFn=i,i}function h(t,e,n){var s=t._events;if(void 0===s)return[];var i=s[e];return void 0===i?[]:"function"==typeof i?n?[i.listener||i]:[i]:n?function(t){for(var e=new Array(t.length),n=0;n<e.length;++n)e[n]=t[n].listener||t[n];return e}(i):v(i,i.length)}function g(t){var e=this._events;if(void 0!==e){var n=e[t];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function v(t,e){for(var n=new Array(e),s=0;s<e;++s)n[s]=t[s];return n}function w(t,e,n,s){if("function"==typeof t.on)s.once?t.once(e,n):t.on(e,n);else{if("function"!=typeof t.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t);t.addEventListener(e,(function i(r){s.once&&t.removeEventListener(e,i),n(r)}))}}Object.defineProperty(l,"defaultMaxListeners",{enumerable:!0,get:function(){return c},set:function(t){if("number"!=typeof t||t<0||a(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");c=t}}),l.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},l.prototype.setMaxListeners=function(t){if("number"!=typeof t||t<0||a(t))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+t+".");return this._maxListeners=t,this},l.prototype.getMaxListeners=function(){return d(this)},l.prototype.emit=function(t){for(var e=[],n=1;n<arguments.length;n++)e.push(arguments[n]);var s="error"===t,i=this._events;if(void 0!==i)s=s&&void 0===i.error;else if(!s)return!1;if(s){var r;if(e.length>0&&(r=e[0]),r instanceof Error)throw r;var a=new Error("Unhandled error."+(r?" ("+r.message+")":""));throw a.context=r,a}var l=i[t];if(void 0===l)return!1;if("function"==typeof l)o(l,this,e);else{var c=l.length,u=v(l,c);for(n=0;n<c;++n)o(u[n],this,e)}return!0},l.prototype.addListener=function(t,e){return m(this,t,e,!1)},l.prototype.on=l.prototype.addListener,l.prototype.prependListener=function(t,e){return m(this,t,e,!0)},l.prototype.once=function(t,e){return u(e),this.on(t,f(this,t,e)),this},l.prototype.prependOnceListener=function(t,e){return u(e),this.prependListener(t,f(this,t,e)),this},l.prototype.removeListener=function(t,e){var n,s,i,r,o;if(u(e),void 0===(s=this._events))return this;if(void 0===(n=s[t]))return this;if(n===e||n.listener===e)0==--this._eventsCount?this._events=Object.create(null):(delete s[t],s.removeListener&&this.emit("removeListener",t,n.listener||e));else if("function"!=typeof n){for(i=-1,r=n.length-1;r>=0;r--)if(n[r]===e||n[r].listener===e){o=n[r].listener,i=r;break}if(i<0)return this;0===i?n.shift():function(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}(n,i),1===n.length&&(s[t]=n[0]),void 0!==s.removeListener&&this.emit("removeListener",t,o||e)}return this},l.prototype.off=l.prototype.removeListener,l.prototype.removeAllListeners=function(t){var e,n,s;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[t]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[t]),this;if(0===arguments.length){var i,r=Object.keys(n);for(s=0;s<r.length;++s)"removeListener"!==(i=r[s])&&this.removeAllListeners(i);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(e=n[t]))this.removeListener(t,e);else if(void 0!==e)for(s=e.length-1;s>=0;s--)this.removeListener(t,e[s]);return this},l.prototype.listeners=function(t){return h(this,t,!0)},l.prototype.rawListeners=function(t){return h(this,t,!1)},l.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):g.call(t,e)},l.prototype.listenerCount=g,l.prototype.eventNames=function(){return this._eventsCount>0?s(this._events):[]}},86048:t=>{"use strict";var e={};function n(t,n,s){s||(s=Error);var i=function(t){var e,s;function i(e,s,i){return t.call(this,function(t,e,s){return"string"==typeof n?n:n(t,e,s)}(e,s,i))||this}return s=t,(e=i).prototype=Object.create(s.prototype),e.prototype.constructor=e,e.__proto__=s,i}(s);i.prototype.name=s.name,i.prototype.code=t,e[t]=i}function s(t,e){if(Array.isArray(t)){var n=t.length;return t=t.map((function(t){return String(t)})),n>2?"one of ".concat(e," ").concat(t.slice(0,n-1).join(", "),", or ")+t[n-1]:2===n?"one of ".concat(e," ").concat(t[0]," or ").concat(t[1]):"of ".concat(e," ").concat(t[0])}return"of ".concat(e," ").concat(String(t))}n("ERR_INVALID_OPT_VALUE",(function(t,e){return'The value "'+e+'" is invalid for option "'+t+'"'}),TypeError),n("ERR_INVALID_ARG_TYPE",(function(t,e,n){var i,r,o,a,l;if("string"==typeof e&&(r="not ",e.substr(0,4)===r)?(i="must not be",e=e.replace(/^not /,"")):i="must be",function(t,e,n){return(void 0===n||n>t.length)&&(n=t.length),t.substring(n-9,n)===e}(t," argument"))o="The ".concat(t," ").concat(i," ").concat(s(e,"type"));else{var c=("number"!=typeof l&&(l=0),l+1>(a=t).length||-1===a.indexOf(".",l)?"argument":"property");o='The "'.concat(t,'" ').concat(c," ").concat(i," ").concat(s(e,"type"))}return o+". Received type ".concat(typeof n)}),TypeError),n("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),n("ERR_METHOD_NOT_IMPLEMENTED",(function(t){return"The "+t+" method is not implemented"})),n("ERR_STREAM_PREMATURE_CLOSE","Premature close"),n("ERR_STREAM_DESTROYED",(function(t){return"Cannot call "+t+" after a stream was destroyed"})),n("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),n("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),n("ERR_STREAM_WRITE_AFTER_END","write after end"),n("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),n("ERR_UNKNOWN_ENCODING",(function(t){return"Unknown encoding: "+t}),TypeError),n("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),t.exports.F=e},25382:(t,e,n)=>{"use strict";var s=n(65606),i=Object.keys||function(t){var e=[];for(var n in t)e.push(n);return e};t.exports=u;var r=n(45412),o=n(16708);n(56698)(u,r);for(var a=i(o.prototype),l=0;l<a.length;l++){var c=a[l];u.prototype[c]||(u.prototype[c]=o.prototype[c])}function u(t){if(!(this instanceof u))return new u(t);r.call(this,t),o.call(this,t),this.allowHalfOpen=!0,t&&(!1===t.readable&&(this.readable=!1),!1===t.writable&&(this.writable=!1),!1===t.allowHalfOpen&&(this.allowHalfOpen=!1,this.once("end",d)))}function d(){this._writableState.ended||s.nextTick(m,this)}function m(t){t.end()}Object.defineProperty(u.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(u.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(u.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(u.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._readableState&&void 0!==this._writableState&&this._readableState.destroyed&&this._writableState.destroyed},set:function(t){void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed=t,this._writableState.destroyed=t)}})},63600:(t,e,n)=>{"use strict";t.exports=i;var s=n(74610);function i(t){if(!(this instanceof i))return new i(t);s.call(this,t)}n(56698)(i,s),i.prototype._transform=function(t,e,n){n(null,t)}},45412:(t,e,n)=>{"use strict";var s,i=n(65606);t.exports=T,T.ReadableState=x,n(37007).EventEmitter;var r,o=function(t,e){return t.listeners(e).length},a=n(40345),l=n(48287).Buffer,c=(void 0!==n.g?n.g:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){},u=n(79838);r=u&&u.debuglog?u.debuglog("stream"):function(){};var d,m,p,f=n(80345),h=n(75896),g=n(65291).getHighWaterMark,v=n(86048).F,w=v.ERR_INVALID_ARG_TYPE,y=v.ERR_STREAM_PUSH_AFTER_EOF,A=v.ERR_METHOD_NOT_IMPLEMENTED,b=v.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;n(56698)(T,a);var _=h.errorOrDestroy,C=["error","close","destroy","pause","resume"];function x(t,e,i){s=s||n(25382),t=t||{},"boolean"!=typeof i&&(i=e instanceof s),this.objectMode=!!t.objectMode,i&&(this.objectMode=this.objectMode||!!t.readableObjectMode),this.highWaterMark=g(this,t,"readableHighWaterMark",i),this.buffer=new f,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==t.emitClose,this.autoDestroy=!!t.autoDestroy,this.destroyed=!1,this.defaultEncoding=t.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,t.encoding&&(d||(d=n(83141).I),this.decoder=new d(t.encoding),this.encoding=t.encoding)}function T(t){if(s=s||n(25382),!(this instanceof T))return new T(t);var e=this instanceof s;this._readableState=new x(t,this,e),this.readable=!0,t&&("function"==typeof t.read&&(this._read=t.read),"function"==typeof t.destroy&&(this._destroy=t.destroy)),a.call(this)}function S(t,e,n,s,i){r("readableAddChunk",e);var o,a=t._readableState;if(null===e)a.reading=!1,function(t,e){if(r("onEofChunk"),!e.ended){if(e.decoder){var n=e.decoder.end();n&&n.length&&(e.buffer.push(n),e.length+=e.objectMode?1:n.length)}e.ended=!0,e.sync?N(t):(e.needReadable=!1,e.emittedReadable||(e.emittedReadable=!0,F(t)))}}(t,a);else if(i||(o=function(t,e){var n,s;return s=e,l.isBuffer(s)||s instanceof c||"string"==typeof e||void 0===e||t.objectMode||(n=new w("chunk",["string","Buffer","Uint8Array"],e)),n}(a,e)),o)_(t,o);else if(a.objectMode||e&&e.length>0)if("string"==typeof e||a.objectMode||Object.getPrototypeOf(e)===l.prototype||(e=function(t){return l.from(t)}(e)),s)a.endEmitted?_(t,new b):k(t,a,e,!0);else if(a.ended)_(t,new y);else{if(a.destroyed)return!1;a.reading=!1,a.decoder&&!n?(e=a.decoder.write(e),a.objectMode||0!==e.length?k(t,a,e,!1):P(t,a)):k(t,a,e,!1)}else s||(a.reading=!1,P(t,a));return!a.ended&&(a.length<a.highWaterMark||0===a.length)}function k(t,e,n,s){e.flowing&&0===e.length&&!e.sync?(e.awaitDrain=0,t.emit("data",n)):(e.length+=e.objectMode?1:n.length,s?e.buffer.unshift(n):e.buffer.push(n),e.needReadable&&N(t)),P(t,e)}Object.defineProperty(T.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._readableState&&this._readableState.destroyed},set:function(t){this._readableState&&(this._readableState.destroyed=t)}}),T.prototype.destroy=h.destroy,T.prototype._undestroy=h.undestroy,T.prototype._destroy=function(t,e){e(t)},T.prototype.push=function(t,e){var n,s=this._readableState;return s.objectMode?n=!0:"string"==typeof t&&((e=e||s.defaultEncoding)!==s.encoding&&(t=l.from(t,e),e=""),n=!0),S(this,t,e,!1,n)},T.prototype.unshift=function(t){return S(this,t,null,!0,!1)},T.prototype.isPaused=function(){return!1===this._readableState.flowing},T.prototype.setEncoding=function(t){d||(d=n(83141).I);var e=new d(t);this._readableState.decoder=e,this._readableState.encoding=this._readableState.decoder.encoding;for(var s=this._readableState.buffer.head,i="";null!==s;)i+=e.write(s.data),s=s.next;return this._readableState.buffer.clear(),""!==i&&this._readableState.buffer.push(i),this._readableState.length=i.length,this};var E=1073741824;function L(t,e){return t<=0||0===e.length&&e.ended?0:e.objectMode?1:t!=t?e.flowing&&e.length?e.buffer.head.data.length:e.length:(t>e.highWaterMark&&(e.highWaterMark=function(t){return t>=E?t=E:(t--,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t++),t}(t)),t<=e.length?t:e.ended?e.length:(e.needReadable=!0,0))}function N(t){var e=t._readableState;r("emitReadable",e.needReadable,e.emittedReadable),e.needReadable=!1,e.emittedReadable||(r("emitReadable",e.flowing),e.emittedReadable=!0,i.nextTick(F,t))}function F(t){var e=t._readableState;r("emitReadable_",e.destroyed,e.length,e.ended),e.destroyed||!e.length&&!e.ended||(t.emit("readable"),e.emittedReadable=!1),e.needReadable=!e.flowing&&!e.ended&&e.length<=e.highWaterMark,B(t)}function P(t,e){e.readingMore||(e.readingMore=!0,i.nextTick(I,t,e))}function I(t,e){for(;!e.reading&&!e.ended&&(e.length<e.highWaterMark||e.flowing&&0===e.length);){var n=e.length;if(r("maybeReadMore read 0"),t.read(0),n===e.length)break}e.readingMore=!1}function D(t){var e=t._readableState;e.readableListening=t.listenerCount("readable")>0,e.resumeScheduled&&!e.paused?e.flowing=!0:t.listenerCount("data")>0&&t.resume()}function O(t){r("readable nexttick read 0"),t.read(0)}function U(t,e){r("resume",e.reading),e.reading||t.read(0),e.resumeScheduled=!1,t.emit("resume"),B(t),e.flowing&&!e.reading&&t.read(0)}function B(t){var e=t._readableState;for(r("flow",e.flowing);e.flowing&&null!==t.read(););}function R(t,e){return 0===e.length?null:(e.objectMode?n=e.buffer.shift():!t||t>=e.length?(n=e.decoder?e.buffer.join(""):1===e.buffer.length?e.buffer.first():e.buffer.concat(e.length),e.buffer.clear()):n=e.buffer.consume(t,e.decoder),n);var n}function j(t){var e=t._readableState;r("endReadable",e.endEmitted),e.endEmitted||(e.ended=!0,i.nextTick(M,e,t))}function M(t,e){if(r("endReadableNT",t.endEmitted,t.length),!t.endEmitted&&0===t.length&&(t.endEmitted=!0,e.readable=!1,e.emit("end"),t.autoDestroy)){var n=e._writableState;(!n||n.autoDestroy&&n.finished)&&e.destroy()}}function z(t,e){for(var n=0,s=t.length;n<s;n++)if(t[n]===e)return n;return-1}T.prototype.read=function(t){r("read",t),t=parseInt(t,10);var e=this._readableState,n=t;if(0!==t&&(e.emittedReadable=!1),0===t&&e.needReadable&&((0!==e.highWaterMark?e.length>=e.highWaterMark:e.length>0)||e.ended))return r("read: emitReadable",e.length,e.ended),0===e.length&&e.ended?j(this):N(this),null;if(0===(t=L(t,e))&&e.ended)return 0===e.length&&j(this),null;var s,i=e.needReadable;return r("need readable",i),(0===e.length||e.length-t<e.highWaterMark)&&r("length less than watermark",i=!0),e.ended||e.reading?r("reading or ended",i=!1):i&&(r("do read"),e.reading=!0,e.sync=!0,0===e.length&&(e.needReadable=!0),this._read(e.highWaterMark),e.sync=!1,e.reading||(t=L(n,e))),null===(s=t>0?R(t,e):null)?(e.needReadable=e.length<=e.highWaterMark,t=0):(e.length-=t,e.awaitDrain=0),0===e.length&&(e.ended||(e.needReadable=!0),n!==t&&e.ended&&j(this)),null!==s&&this.emit("data",s),s},T.prototype._read=function(t){_(this,new A("_read()"))},T.prototype.pipe=function(t,e){var n=this,s=this._readableState;switch(s.pipesCount){case 0:s.pipes=t;break;case 1:s.pipes=[s.pipes,t];break;default:s.pipes.push(t)}s.pipesCount+=1,r("pipe count=%d opts=%j",s.pipesCount,e);var a=e&&!1===e.end||t===i.stdout||t===i.stderr?h:l;function l(){r("onend"),t.end()}s.endEmitted?i.nextTick(a):n.once("end",a),t.on("unpipe",(function e(i,o){r("onunpipe"),i===n&&o&&!1===o.hasUnpiped&&(o.hasUnpiped=!0,r("cleanup"),t.removeListener("close",p),t.removeListener("finish",f),t.removeListener("drain",c),t.removeListener("error",m),t.removeListener("unpipe",e),n.removeListener("end",l),n.removeListener("end",h),n.removeListener("data",d),u=!0,!s.awaitDrain||t._writableState&&!t._writableState.needDrain||c())}));var c=function(t){return function(){var e=t._readableState;r("pipeOnDrain",e.awaitDrain),e.awaitDrain&&e.awaitDrain--,0===e.awaitDrain&&o(t,"data")&&(e.flowing=!0,B(t))}}(n);t.on("drain",c);var u=!1;function d(e){r("ondata");var i=t.write(e);r("dest.write",i),!1===i&&((1===s.pipesCount&&s.pipes===t||s.pipesCount>1&&-1!==z(s.pipes,t))&&!u&&(r("false write response, pause",s.awaitDrain),s.awaitDrain++),n.pause())}function m(e){r("onerror",e),h(),t.removeListener("error",m),0===o(t,"error")&&_(t,e)}function p(){t.removeListener("finish",f),h()}function f(){r("onfinish"),t.removeListener("close",p),h()}function h(){r("unpipe"),n.unpipe(t)}return n.on("data",d),function(t,e,n){if("function"==typeof t.prependListener)return t.prependListener(e,n);t._events&&t._events[e]?Array.isArray(t._events[e])?t._events[e].unshift(n):t._events[e]=[n,t._events[e]]:t.on(e,n)}(t,"error",m),t.once("close",p),t.once("finish",f),t.emit("pipe",n),s.flowing||(r("pipe resume"),n.resume()),t},T.prototype.unpipe=function(t){var e=this._readableState,n={hasUnpiped:!1};if(0===e.pipesCount)return this;if(1===e.pipesCount)return t&&t!==e.pipes||(t||(t=e.pipes),e.pipes=null,e.pipesCount=0,e.flowing=!1,t&&t.emit("unpipe",this,n)),this;if(!t){var s=e.pipes,i=e.pipesCount;e.pipes=null,e.pipesCount=0,e.flowing=!1;for(var r=0;r<i;r++)s[r].emit("unpipe",this,{hasUnpiped:!1});return this}var o=z(e.pipes,t);return-1===o||(e.pipes.splice(o,1),e.pipesCount-=1,1===e.pipesCount&&(e.pipes=e.pipes[0]),t.emit("unpipe",this,n)),this},T.prototype.on=function(t,e){var n=a.prototype.on.call(this,t,e),s=this._readableState;return"data"===t?(s.readableListening=this.listenerCount("readable")>0,!1!==s.flowing&&this.resume()):"readable"===t&&(s.endEmitted||s.readableListening||(s.readableListening=s.needReadable=!0,s.flowing=!1,s.emittedReadable=!1,r("on readable",s.length,s.reading),s.length?N(this):s.reading||i.nextTick(O,this))),n},T.prototype.addListener=T.prototype.on,T.prototype.removeListener=function(t,e){var n=a.prototype.removeListener.call(this,t,e);return"readable"===t&&i.nextTick(D,this),n},T.prototype.removeAllListeners=function(t){var e=a.prototype.removeAllListeners.apply(this,arguments);return"readable"!==t&&void 0!==t||i.nextTick(D,this),e},T.prototype.resume=function(){var t=this._readableState;return t.flowing||(r("resume"),t.flowing=!t.readableListening,function(t,e){e.resumeScheduled||(e.resumeScheduled=!0,i.nextTick(U,t,e))}(this,t)),t.paused=!1,this},T.prototype.pause=function(){return r("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(r("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},T.prototype.wrap=function(t){var e=this,n=this._readableState,s=!1;for(var i in t.on("end",(function(){if(r("wrapped end"),n.decoder&&!n.ended){var t=n.decoder.end();t&&t.length&&e.push(t)}e.push(null)})),t.on("data",(function(i){r("wrapped data"),n.decoder&&(i=n.decoder.write(i)),n.objectMode&&null==i||(n.objectMode||i&&i.length)&&(e.push(i)||(s=!0,t.pause()))})),t)void 0===this[i]&&"function"==typeof t[i]&&(this[i]=function(e){return function(){return t[e].apply(t,arguments)}}(i));for(var o=0;o<C.length;o++)t.on(C[o],this.emit.bind(this,C[o]));return this._read=function(e){r("wrapped _read",e),s&&(s=!1,t.resume())},this},"function"==typeof Symbol&&(T.prototype[Symbol.asyncIterator]=function(){return void 0===m&&(m=n(2955)),m(this)}),Object.defineProperty(T.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),Object.defineProperty(T.prototype,"readableBuffer",{enumerable:!1,get:function(){return this._readableState&&this._readableState.buffer}}),Object.defineProperty(T.prototype,"readableFlowing",{enumerable:!1,get:function(){return this._readableState.flowing},set:function(t){this._readableState&&(this._readableState.flowing=t)}}),T._fromList=R,Object.defineProperty(T.prototype,"readableLength",{enumerable:!1,get:function(){return this._readableState.length}}),"function"==typeof Symbol&&(T.from=function(t,e){return void 0===p&&(p=n(55157)),p(T,t,e)})},74610:(t,e,n)=>{"use strict";t.exports=u;var s=n(86048).F,i=s.ERR_METHOD_NOT_IMPLEMENTED,r=s.ERR_MULTIPLE_CALLBACK,o=s.ERR_TRANSFORM_ALREADY_TRANSFORMING,a=s.ERR_TRANSFORM_WITH_LENGTH_0,l=n(25382);function c(t,e){var n=this._transformState;n.transforming=!1;var s=n.writecb;if(null===s)return this.emit("error",new r);n.writechunk=null,n.writecb=null,null!=e&&this.push(e),s(t);var i=this._readableState;i.reading=!1,(i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}function u(t){if(!(this instanceof u))return new u(t);l.call(this,t),this._transformState={afterTransform:c.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,t&&("function"==typeof t.transform&&(this._transform=t.transform),"function"==typeof t.flush&&(this._flush=t.flush)),this.on("prefinish",d)}function d(){var t=this;"function"!=typeof this._flush||this._readableState.destroyed?m(this,null,null):this._flush((function(e,n){m(t,e,n)}))}function m(t,e,n){if(e)return t.emit("error",e);if(null!=n&&t.push(n),t._writableState.length)throw new a;if(t._transformState.transforming)throw new o;return t.push(null)}n(56698)(u,l),u.prototype.push=function(t,e){return this._transformState.needTransform=!1,l.prototype.push.call(this,t,e)},u.prototype._transform=function(t,e,n){n(new i("_transform()"))},u.prototype._write=function(t,e,n){var s=this._transformState;if(s.writecb=n,s.writechunk=t,s.writeencoding=e,!s.transforming){var i=this._readableState;(s.needTransform||i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}},u.prototype._read=function(t){var e=this._transformState;null===e.writechunk||e.transforming?e.needTransform=!0:(e.transforming=!0,this._transform(e.writechunk,e.writeencoding,e.afterTransform))},u.prototype._destroy=function(t,e){l.prototype._destroy.call(this,t,(function(t){e(t)}))}},16708:(t,e,n)=>{"use strict";var s,i=n(65606);function r(t){var e=this;this.next=null,this.entry=null,this.finish=function(){!function(t,e,n){var s=t.entry;for(t.entry=null;s;){var i=s.callback;e.pendingcb--,i(undefined),s=s.next}e.corkedRequestsFree.next=t}(e,t)}}t.exports=T,T.WritableState=x;var o,a={deprecate:n(94643)},l=n(40345),c=n(48287).Buffer,u=(void 0!==n.g?n.g:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){},d=n(75896),m=n(65291).getHighWaterMark,p=n(86048).F,f=p.ERR_INVALID_ARG_TYPE,h=p.ERR_METHOD_NOT_IMPLEMENTED,g=p.ERR_MULTIPLE_CALLBACK,v=p.ERR_STREAM_CANNOT_PIPE,w=p.ERR_STREAM_DESTROYED,y=p.ERR_STREAM_NULL_VALUES,A=p.ERR_STREAM_WRITE_AFTER_END,b=p.ERR_UNKNOWN_ENCODING,_=d.errorOrDestroy;function C(){}function x(t,e,o){s=s||n(25382),t=t||{},"boolean"!=typeof o&&(o=e instanceof s),this.objectMode=!!t.objectMode,o&&(this.objectMode=this.objectMode||!!t.writableObjectMode),this.highWaterMark=m(this,t,"writableHighWaterMark",o),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var a=!1===t.decodeStrings;this.decodeStrings=!a,this.defaultEncoding=t.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(t){!function(t,e){var n=t._writableState,s=n.sync,r=n.writecb;if("function"!=typeof r)throw new g;if(function(t){t.writing=!1,t.writecb=null,t.length-=t.writelen,t.writelen=0}(n),e)!function(t,e,n,s,r){--e.pendingcb,n?(i.nextTick(r,s),i.nextTick(F,t,e),t._writableState.errorEmitted=!0,_(t,s)):(r(s),t._writableState.errorEmitted=!0,_(t,s),F(t,e))}(t,n,s,e,r);else{var o=L(n)||t.destroyed;o||n.corked||n.bufferProcessing||!n.bufferedRequest||E(t,n),s?i.nextTick(k,t,n,o,r):k(t,n,o,r)}}(e,t)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==t.emitClose,this.autoDestroy=!!t.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new r(this)}function T(t){var e=this instanceof(s=s||n(25382));if(!e&&!o.call(T,this))return new T(t);this._writableState=new x(t,this,e),this.writable=!0,t&&("function"==typeof t.write&&(this._write=t.write),"function"==typeof t.writev&&(this._writev=t.writev),"function"==typeof t.destroy&&(this._destroy=t.destroy),"function"==typeof t.final&&(this._final=t.final)),l.call(this)}function S(t,e,n,s,i,r,o){e.writelen=s,e.writecb=o,e.writing=!0,e.sync=!0,e.destroyed?e.onwrite(new w("write")):n?t._writev(i,e.onwrite):t._write(i,r,e.onwrite),e.sync=!1}function k(t,e,n,s){n||function(t,e){0===e.length&&e.needDrain&&(e.needDrain=!1,t.emit("drain"))}(t,e),e.pendingcb--,s(),F(t,e)}function E(t,e){e.bufferProcessing=!0;var n=e.bufferedRequest;if(t._writev&&n&&n.next){var s=e.bufferedRequestCount,i=new Array(s),o=e.corkedRequestsFree;o.entry=n;for(var a=0,l=!0;n;)i[a]=n,n.isBuf||(l=!1),n=n.next,a+=1;i.allBuffers=l,S(t,e,!0,e.length,i,"",o.finish),e.pendingcb++,e.lastBufferedRequest=null,o.next?(e.corkedRequestsFree=o.next,o.next=null):e.corkedRequestsFree=new r(e),e.bufferedRequestCount=0}else{for(;n;){var c=n.chunk,u=n.encoding,d=n.callback;if(S(t,e,!1,e.objectMode?1:c.length,c,u,d),n=n.next,e.bufferedRequestCount--,e.writing)break}null===n&&(e.lastBufferedRequest=null)}e.bufferedRequest=n,e.bufferProcessing=!1}function L(t){return t.ending&&0===t.length&&null===t.bufferedRequest&&!t.finished&&!t.writing}function N(t,e){t._final((function(n){e.pendingcb--,n&&_(t,n),e.prefinished=!0,t.emit("prefinish"),F(t,e)}))}function F(t,e){var n=L(e);if(n&&(function(t,e){e.prefinished||e.finalCalled||("function"!=typeof t._final||e.destroyed?(e.prefinished=!0,t.emit("prefinish")):(e.pendingcb++,e.finalCalled=!0,i.nextTick(N,t,e)))}(t,e),0===e.pendingcb&&(e.finished=!0,t.emit("finish"),e.autoDestroy))){var s=t._readableState;(!s||s.autoDestroy&&s.endEmitted)&&t.destroy()}return n}n(56698)(T,l),x.prototype.getBuffer=function(){for(var t=this.bufferedRequest,e=[];t;)e.push(t),t=t.next;return e},function(){try{Object.defineProperty(x.prototype,"buffer",{get:a.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(t){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(o=Function.prototype[Symbol.hasInstance],Object.defineProperty(T,Symbol.hasInstance,{value:function(t){return!!o.call(this,t)||this===T&&t&&t._writableState instanceof x}})):o=function(t){return t instanceof this},T.prototype.pipe=function(){_(this,new v)},T.prototype.write=function(t,e,n){var s,r=this._writableState,o=!1,a=!r.objectMode&&(s=t,c.isBuffer(s)||s instanceof u);return a&&!c.isBuffer(t)&&(t=function(t){return c.from(t)}(t)),"function"==typeof e&&(n=e,e=null),a?e="buffer":e||(e=r.defaultEncoding),"function"!=typeof n&&(n=C),r.ending?function(t,e){var n=new A;_(t,n),i.nextTick(e,n)}(this,n):(a||function(t,e,n,s){var r;return null===n?r=new y:"string"==typeof n||e.objectMode||(r=new f("chunk",["string","Buffer"],n)),!r||(_(t,r),i.nextTick(s,r),!1)}(this,r,t,n))&&(r.pendingcb++,o=function(t,e,n,s,i,r){if(!n){var o=function(t,e,n){return t.objectMode||!1===t.decodeStrings||"string"!=typeof e||(e=c.from(e,n)),e}(e,s,i);s!==o&&(n=!0,i="buffer",s=o)}var a=e.objectMode?1:s.length;e.length+=a;var l=e.length<e.highWaterMark;if(l||(e.needDrain=!0),e.writing||e.corked){var u=e.lastBufferedRequest;e.lastBufferedRequest={chunk:s,encoding:i,isBuf:n,callback:r,next:null},u?u.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else S(t,e,!1,a,s,i,r);return l}(this,r,a,t,e,n)),o},T.prototype.cork=function(){this._writableState.corked++},T.prototype.uncork=function(){var t=this._writableState;t.corked&&(t.corked--,t.writing||t.corked||t.bufferProcessing||!t.bufferedRequest||E(this,t))},T.prototype.setDefaultEncoding=function(t){if("string"==typeof t&&(t=t.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((t+"").toLowerCase())>-1))throw new b(t);return this._writableState.defaultEncoding=t,this},Object.defineProperty(T.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(T.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),T.prototype._write=function(t,e,n){n(new h("_write()"))},T.prototype._writev=null,T.prototype.end=function(t,e,n){var s=this._writableState;return"function"==typeof t?(n=t,t=null,e=null):"function"==typeof e&&(n=e,e=null),null!=t&&this.write(t,e),s.corked&&(s.corked=1,this.uncork()),s.ending||function(t,e,n){e.ending=!0,F(t,e),n&&(e.finished?i.nextTick(n):t.once("finish",n)),e.ended=!0,t.writable=!1}(this,s,n),this},Object.defineProperty(T.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(T.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(t){this._writableState&&(this._writableState.destroyed=t)}}),T.prototype.destroy=d.destroy,T.prototype._undestroy=d.undestroy,T.prototype._destroy=function(t,e){e(t)}},2955:(t,e,n)=>{"use strict";var s,i=n(65606);function r(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var o=n(86238),a=Symbol("lastResolve"),l=Symbol("lastReject"),c=Symbol("error"),u=Symbol("ended"),d=Symbol("lastPromise"),m=Symbol("handlePromise"),p=Symbol("stream");function f(t,e){return{value:t,done:e}}function h(t){var e=t[a];if(null!==e){var n=t[p].read();null!==n&&(t[d]=null,t[a]=null,t[l]=null,e(f(n,!1)))}}function g(t){i.nextTick(h,t)}var v=Object.getPrototypeOf((function(){})),w=Object.setPrototypeOf((r(s={get stream(){return this[p]},next:function(){var t=this,e=this[c];if(null!==e)return Promise.reject(e);if(this[u])return Promise.resolve(f(void 0,!0));if(this[p].destroyed)return new Promise((function(e,n){i.nextTick((function(){t[c]?n(t[c]):e(f(void 0,!0))}))}));var n,s=this[d];if(s)n=new Promise(function(t,e){return function(n,s){t.then((function(){e[u]?n(f(void 0,!0)):e[m](n,s)}),s)}}(s,this));else{var r=this[p].read();if(null!==r)return Promise.resolve(f(r,!1));n=new Promise(this[m])}return this[d]=n,n}},Symbol.asyncIterator,(function(){return this})),r(s,"return",(function(){var t=this;return new Promise((function(e,n){t[p].destroy(null,(function(t){t?n(t):e(f(void 0,!0))}))}))})),s),v);t.exports=function(t){var e,n=Object.create(w,(r(e={},p,{value:t,writable:!0}),r(e,a,{value:null,writable:!0}),r(e,l,{value:null,writable:!0}),r(e,c,{value:null,writable:!0}),r(e,u,{value:t._readableState.endEmitted,writable:!0}),r(e,m,{value:function(t,e){var s=n[p].read();s?(n[d]=null,n[a]=null,n[l]=null,t(f(s,!1))):(n[a]=t,n[l]=e)},writable:!0}),e));return n[d]=null,o(t,(function(t){if(t&&"ERR_STREAM_PREMATURE_CLOSE"!==t.code){var e=n[l];return null!==e&&(n[d]=null,n[a]=null,n[l]=null,e(t)),void(n[c]=t)}var s=n[a];null!==s&&(n[d]=null,n[a]=null,n[l]=null,s(f(void 0,!0))),n[u]=!0})),t.on("readable",g.bind(null,n)),n}},80345:(t,e,n)=>{"use strict";function s(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function i(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?s(Object(n),!0).forEach((function(e){r(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function r(t,e,n){return(e=a(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t,e){for(var n=0;n<e.length;n++){var s=e[n];s.enumerable=s.enumerable||!1,s.configurable=!0,"value"in s&&(s.writable=!0),Object.defineProperty(t,a(s.key),s)}}function a(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:String(e)}var l=n(48287).Buffer,c=n(15340).inspect,u=c&&c.custom||"inspect";t.exports=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.head=null,this.tail=null,this.length=0}var e,n;return e=t,(n=[{key:"push",value:function(t){var e={data:t,next:null};this.length>0?this.tail.next=e:this.head=e,this.tail=e,++this.length}},{key:"unshift",value:function(t){var e={data:t,next:this.head};0===this.length&&(this.tail=e),this.head=e,++this.length}},{key:"shift",value:function(){if(0!==this.length){var t=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,t}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(t){if(0===this.length)return"";for(var e=this.head,n=""+e.data;e=e.next;)n+=t+e.data;return n}},{key:"concat",value:function(t){if(0===this.length)return l.alloc(0);for(var e,n,s,i=l.allocUnsafe(t>>>0),r=this.head,o=0;r;)e=r.data,n=i,s=o,l.prototype.copy.call(e,n,s),o+=r.data.length,r=r.next;return i}},{key:"consume",value:function(t,e){var n;return t<this.head.data.length?(n=this.head.data.slice(0,t),this.head.data=this.head.data.slice(t)):n=t===this.head.data.length?this.shift():e?this._getString(t):this._getBuffer(t),n}},{key:"first",value:function(){return this.head.data}},{key:"_getString",value:function(t){var e=this.head,n=1,s=e.data;for(t-=s.length;e=e.next;){var i=e.data,r=t>i.length?i.length:t;if(r===i.length?s+=i:s+=i.slice(0,t),0==(t-=r)){r===i.length?(++n,e.next?this.head=e.next:this.head=this.tail=null):(this.head=e,e.data=i.slice(r));break}++n}return this.length-=n,s}},{key:"_getBuffer",value:function(t){var e=l.allocUnsafe(t),n=this.head,s=1;for(n.data.copy(e),t-=n.data.length;n=n.next;){var i=n.data,r=t>i.length?i.length:t;if(i.copy(e,e.length-t,0,r),0==(t-=r)){r===i.length?(++s,n.next?this.head=n.next:this.head=this.tail=null):(this.head=n,n.data=i.slice(r));break}++s}return this.length-=s,e}},{key:u,value:function(t,e){return c(this,i(i({},e),{},{depth:0,customInspect:!1}))}}])&&o(e.prototype,n),Object.defineProperty(e,"prototype",{writable:!1}),t}()},75896:(t,e,n)=>{"use strict";var s=n(65606);function i(t,e){o(t,e),r(t)}function r(t){t._writableState&&!t._writableState.emitClose||t._readableState&&!t._readableState.emitClose||t.emit("close")}function o(t,e){t.emit("error",e)}t.exports={destroy:function(t,e){var n=this,a=this._readableState&&this._readableState.destroyed,l=this._writableState&&this._writableState.destroyed;return a||l?(e?e(t):t&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,s.nextTick(o,this,t)):s.nextTick(o,this,t)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(t||null,(function(t){!e&&t?n._writableState?n._writableState.errorEmitted?s.nextTick(r,n):(n._writableState.errorEmitted=!0,s.nextTick(i,n,t)):s.nextTick(i,n,t):e?(s.nextTick(r,n),e(t)):s.nextTick(r,n)})),this)},undestroy:function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function(t,e){var n=t._readableState,s=t._writableState;n&&n.autoDestroy||s&&s.autoDestroy?t.destroy(e):t.emit("error",e)}}},86238:(t,e,n)=>{"use strict";var s=n(86048).F.ERR_STREAM_PREMATURE_CLOSE;function i(){}t.exports=function t(e,n,r){if("function"==typeof n)return t(e,null,n);n||(n={}),r=function(t){var e=!1;return function(){if(!e){e=!0;for(var n=arguments.length,s=new Array(n),i=0;i<n;i++)s[i]=arguments[i];t.apply(this,s)}}}(r||i);var o=n.readable||!1!==n.readable&&e.readable,a=n.writable||!1!==n.writable&&e.writable,l=function(){e.writable||u()},c=e._writableState&&e._writableState.finished,u=function(){a=!1,c=!0,o||r.call(e)},d=e._readableState&&e._readableState.endEmitted,m=function(){o=!1,d=!0,a||r.call(e)},p=function(t){r.call(e,t)},f=function(){var t;return o&&!d?(e._readableState&&e._readableState.ended||(t=new s),r.call(e,t)):a&&!c?(e._writableState&&e._writableState.ended||(t=new s),r.call(e,t)):void 0},h=function(){e.req.on("finish",u)};return function(t){return t.setHeader&&"function"==typeof t.abort}(e)?(e.on("complete",u),e.on("abort",f),e.req?h():e.on("request",h)):a&&!e._writableState&&(e.on("end",l),e.on("close",l)),e.on("end",m),e.on("finish",u),!1!==n.error&&e.on("error",p),e.on("close",f),function(){e.removeListener("complete",u),e.removeListener("abort",f),e.removeListener("request",h),e.req&&e.req.removeListener("finish",u),e.removeListener("end",l),e.removeListener("close",l),e.removeListener("finish",u),e.removeListener("end",m),e.removeListener("error",p),e.removeListener("close",f)}}},55157:t=>{t.exports=function(){throw new Error("Readable.from is not available in the browser")}},57758:(t,e,n)=>{"use strict";var s,i=n(86048).F,r=i.ERR_MISSING_ARGS,o=i.ERR_STREAM_DESTROYED;function a(t){if(t)throw t}function l(t){t()}function c(t,e){return t.pipe(e)}t.exports=function(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];var u,d=function(t){return t.length?"function"!=typeof t[t.length-1]?a:t.pop():a}(e);if(Array.isArray(e[0])&&(e=e[0]),e.length<2)throw new r("streams");var m=e.map((function(t,i){var r=i<e.length-1;return function(t,e,i,r){r=function(t){var e=!1;return function(){e||(e=!0,t.apply(void 0,arguments))}}(r);var a=!1;t.on("close",(function(){a=!0})),void 0===s&&(s=n(86238)),s(t,{readable:e,writable:i},(function(t){if(t)return r(t);a=!0,r()}));var l=!1;return function(e){if(!a&&!l)return l=!0,function(t){return t.setHeader&&"function"==typeof t.abort}(t)?t.abort():"function"==typeof t.destroy?t.destroy():void r(e||new o("pipe"))}}(t,r,i>0,(function(t){u||(u=t),t&&m.forEach(l),r||(m.forEach(l),d(u))}))}));return e.reduce(c)}},65291:(t,e,n)=>{"use strict";var s=n(86048).F.ERR_INVALID_OPT_VALUE;t.exports={getHighWaterMark:function(t,e,n,i){var r=function(t,e,n){return null!=t.highWaterMark?t.highWaterMark:e?t[n]:null}(e,i,n);if(null!=r){if(!isFinite(r)||Math.floor(r)!==r||r<0)throw new s(i?n:"highWaterMark",r);return Math.floor(r)}return t.objectMode?16:16384}}},40345:(t,e,n)=>{t.exports=n(37007).EventEmitter},92861:(t,e,n)=>{var s=n(48287),i=s.Buffer;function r(t,e){for(var n in t)e[n]=t[n]}function o(t,e,n){return i(t,e,n)}i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow?t.exports=s:(r(s,e),e.Buffer=o),o.prototype=Object.create(i.prototype),r(i,o),o.from=function(t,e,n){if("number"==typeof t)throw new TypeError("Argument must not be a number");return i(t,e,n)},o.alloc=function(t,e,n){if("number"!=typeof t)throw new TypeError("Argument must be a number");var s=i(t);return void 0!==e?"string"==typeof n?s.fill(e,n):s.fill(e):s.fill(0),s},o.allocUnsafe=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return i(t)},o.allocUnsafeSlow=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return s.SlowBuffer(t)}},64043:(t,e,n)=>{var s=n(48287).Buffer;!function(t){t.parser=function(t,e){return new r(t,e)},t.SAXParser=r,t.SAXStream=a,t.createStream=function(t,e){return new a(t,e)},t.MAX_BUFFER_LENGTH=65536;var e,i=["comment","sgmlDecl","textNode","tagName","doctype","procInstName","procInstBody","entity","attribName","attribValue","cdata","script"];function r(e,n){if(!(this instanceof r))return new r(e,n);var s=this;!function(t){for(var e=0,n=i.length;e<n;e++)t[i[e]]=""}(s),s.q=s.c="",s.bufferCheckPosition=t.MAX_BUFFER_LENGTH,s.opt=n||{},s.opt.lowercase=s.opt.lowercase||s.opt.lowercasetags,s.looseCase=s.opt.lowercase?"toLowerCase":"toUpperCase",s.tags=[],s.closed=s.closedRoot=s.sawRoot=!1,s.tag=s.error=null,s.strict=!!e,s.noscript=!(!e&&!s.opt.noscript),s.state=T.BEGIN,s.strictEntities=s.opt.strictEntities,s.ENTITIES=s.strictEntities?Object.create(t.XML_ENTITIES):Object.create(t.ENTITIES),s.attribList=[],s.opt.xmlns&&(s.ns=Object.create(m)),s.trackPosition=!1!==s.opt.position,s.trackPosition&&(s.position=s.line=s.column=0),k(s,"onready")}t.EVENTS=["text","processinginstruction","sgmldeclaration","doctype","comment","opentagstart","attribute","opentag","closetag","opencdata","cdata","closecdata","error","end","ready","script","opennamespace","closenamespace"],Object.create||(Object.create=function(t){function e(){}return e.prototype=t,new e}),Object.keys||(Object.keys=function(t){var e=[];for(var n in t)t.hasOwnProperty(n)&&e.push(n);return e}),r.prototype={end:function(){P(this)},write:function(e){var n=this;if(this.error)throw this.error;if(n.closed)return F(n,"Cannot write after close. Assign an onready handler.");if(null===e)return P(n);"object"==typeof e&&(e=e.toString());for(var s=0,r="";r=z(e,s++),n.c=r,r;)switch(n.trackPosition&&(n.position++,"\n"===r?(n.line++,n.column=0):n.column++),n.state){case T.BEGIN:if(n.state=T.BEGIN_WHITESPACE,"\ufeff"===r)continue;M(n,r);continue;case T.BEGIN_WHITESPACE:M(n,r);continue;case T.TEXT:if(n.sawRoot&&!n.closedRoot){for(var o=s-1;r&&"<"!==r&&"&"!==r;)(r=z(e,s++))&&n.trackPosition&&(n.position++,"\n"===r?(n.line++,n.column=0):n.column++);n.textNode+=e.substring(o,s-1)}"<"!==r||n.sawRoot&&n.closedRoot&&!n.strict?(v(r)||n.sawRoot&&!n.closedRoot||I(n,"Text data outside of root node."),"&"===r?n.state=T.TEXT_ENTITY:n.textNode+=r):(n.state=T.OPEN_WAKA,n.startTagPosition=n.position);continue;case T.SCRIPT:"<"===r?n.state=T.SCRIPT_ENDING:n.script+=r;continue;case T.SCRIPT_ENDING:"/"===r?n.state=T.CLOSE_TAG:(n.script+="<"+r,n.state=T.SCRIPT);continue;case T.OPEN_WAKA:if("!"===r)n.state=T.SGML_DECL,n.sgmlDecl="";else if(v(r));else if(A(p,r))n.state=T.OPEN_TAG,n.tagName=r;else if("/"===r)n.state=T.CLOSE_TAG,n.tagName="";else if("?"===r)n.state=T.PROC_INST,n.procInstName=n.procInstBody="";else{if(I(n,"Unencoded <"),n.startTagPosition+1<n.position){var a=n.position-n.startTagPosition;r=new Array(a).join(" ")+r}n.textNode+="<"+r,n.state=T.TEXT}continue;case T.SGML_DECL:(n.sgmlDecl+r).toUpperCase()===l?(E(n,"onopencdata"),n.state=T.CDATA,n.sgmlDecl="",n.cdata=""):n.sgmlDecl+r==="--"?(n.state=T.COMMENT,n.comment="",n.sgmlDecl=""):(n.sgmlDecl+r).toUpperCase()===c?(n.state=T.DOCTYPE,(n.doctype||n.sawRoot)&&I(n,"Inappropriately located doctype declaration"),n.doctype="",n.sgmlDecl=""):">"===r?(E(n,"onsgmldeclaration",n.sgmlDecl),n.sgmlDecl="",n.state=T.TEXT):w(r)?(n.state=T.SGML_DECL_QUOTED,n.sgmlDecl+=r):n.sgmlDecl+=r;continue;case T.SGML_DECL_QUOTED:r===n.q&&(n.state=T.SGML_DECL,n.q=""),n.sgmlDecl+=r;continue;case T.DOCTYPE:">"===r?(n.state=T.TEXT,E(n,"ondoctype",n.doctype),n.doctype=!0):(n.doctype+=r,"["===r?n.state=T.DOCTYPE_DTD:w(r)&&(n.state=T.DOCTYPE_QUOTED,n.q=r));continue;case T.DOCTYPE_QUOTED:n.doctype+=r,r===n.q&&(n.q="",n.state=T.DOCTYPE);continue;case T.DOCTYPE_DTD:n.doctype+=r,"]"===r?n.state=T.DOCTYPE:w(r)&&(n.state=T.DOCTYPE_DTD_QUOTED,n.q=r);continue;case T.DOCTYPE_DTD_QUOTED:n.doctype+=r,r===n.q&&(n.state=T.DOCTYPE_DTD,n.q="");continue;case T.COMMENT:"-"===r?n.state=T.COMMENT_ENDING:n.comment+=r;continue;case T.COMMENT_ENDING:"-"===r?(n.state=T.COMMENT_ENDED,n.comment=N(n.opt,n.comment),n.comment&&E(n,"oncomment",n.comment),n.comment=""):(n.comment+="-"+r,n.state=T.COMMENT);continue;case T.COMMENT_ENDED:">"!==r?(I(n,"Malformed comment"),n.comment+="--"+r,n.state=T.COMMENT):n.state=T.TEXT;continue;case T.CDATA:"]"===r?n.state=T.CDATA_ENDING:n.cdata+=r;continue;case T.CDATA_ENDING:"]"===r?n.state=T.CDATA_ENDING_2:(n.cdata+="]"+r,n.state=T.CDATA);continue;case T.CDATA_ENDING_2:">"===r?(n.cdata&&E(n,"oncdata",n.cdata),E(n,"onclosecdata"),n.cdata="",n.state=T.TEXT):"]"===r?n.cdata+="]":(n.cdata+="]]"+r,n.state=T.CDATA);continue;case T.PROC_INST:"?"===r?n.state=T.PROC_INST_ENDING:v(r)?n.state=T.PROC_INST_BODY:n.procInstName+=r;continue;case T.PROC_INST_BODY:if(!n.procInstBody&&v(r))continue;"?"===r?n.state=T.PROC_INST_ENDING:n.procInstBody+=r;continue;case T.PROC_INST_ENDING:">"===r?(E(n,"onprocessinginstruction",{name:n.procInstName,body:n.procInstBody}),n.procInstName=n.procInstBody="",n.state=T.TEXT):(n.procInstBody+="?"+r,n.state=T.PROC_INST_BODY);continue;case T.OPEN_TAG:A(f,r)?n.tagName+=r:(D(n),">"===r?B(n):"/"===r?n.state=T.OPEN_TAG_SLASH:(v(r)||I(n,"Invalid character in tag name"),n.state=T.ATTRIB));continue;case T.OPEN_TAG_SLASH:">"===r?(B(n,!0),R(n)):(I(n,"Forward-slash in opening tag not followed by >"),n.state=T.ATTRIB);continue;case T.ATTRIB:if(v(r))continue;">"===r?B(n):"/"===r?n.state=T.OPEN_TAG_SLASH:A(p,r)?(n.attribName=r,n.attribValue="",n.state=T.ATTRIB_NAME):I(n,"Invalid attribute name");continue;case T.ATTRIB_NAME:"="===r?n.state=T.ATTRIB_VALUE:">"===r?(I(n,"Attribute without value"),n.attribValue=n.attribName,U(n),B(n)):v(r)?n.state=T.ATTRIB_NAME_SAW_WHITE:A(f,r)?n.attribName+=r:I(n,"Invalid attribute name");continue;case T.ATTRIB_NAME_SAW_WHITE:if("="===r)n.state=T.ATTRIB_VALUE;else{if(v(r))continue;I(n,"Attribute without value"),n.tag.attributes[n.attribName]="",n.attribValue="",E(n,"onattribute",{name:n.attribName,value:""}),n.attribName="",">"===r?B(n):A(p,r)?(n.attribName=r,n.state=T.ATTRIB_NAME):(I(n,"Invalid attribute name"),n.state=T.ATTRIB)}continue;case T.ATTRIB_VALUE:if(v(r))continue;w(r)?(n.q=r,n.state=T.ATTRIB_VALUE_QUOTED):(I(n,"Unquoted attribute value"),n.state=T.ATTRIB_VALUE_UNQUOTED,n.attribValue=r);continue;case T.ATTRIB_VALUE_QUOTED:if(r!==n.q){"&"===r?n.state=T.ATTRIB_VALUE_ENTITY_Q:n.attribValue+=r;continue}U(n),n.q="",n.state=T.ATTRIB_VALUE_CLOSED;continue;case T.ATTRIB_VALUE_CLOSED:v(r)?n.state=T.ATTRIB:">"===r?B(n):"/"===r?n.state=T.OPEN_TAG_SLASH:A(p,r)?(I(n,"No whitespace between attributes"),n.attribName=r,n.attribValue="",n.state=T.ATTRIB_NAME):I(n,"Invalid attribute name");continue;case T.ATTRIB_VALUE_UNQUOTED:if(!y(r)){"&"===r?n.state=T.ATTRIB_VALUE_ENTITY_U:n.attribValue+=r;continue}U(n),">"===r?B(n):n.state=T.ATTRIB;continue;case T.CLOSE_TAG:if(n.tagName)">"===r?R(n):A(f,r)?n.tagName+=r:n.script?(n.script+="</"+n.tagName,n.tagName="",n.state=T.SCRIPT):(v(r)||I(n,"Invalid tagname in closing tag"),n.state=T.CLOSE_TAG_SAW_WHITE);else{if(v(r))continue;b(p,r)?n.script?(n.script+="</"+r,n.state=T.SCRIPT):I(n,"Invalid tagname in closing tag."):n.tagName=r}continue;case T.CLOSE_TAG_SAW_WHITE:if(v(r))continue;">"===r?R(n):I(n,"Invalid characters in closing tag");continue;case T.TEXT_ENTITY:case T.ATTRIB_VALUE_ENTITY_Q:case T.ATTRIB_VALUE_ENTITY_U:var u,d;switch(n.state){case T.TEXT_ENTITY:u=T.TEXT,d="textNode";break;case T.ATTRIB_VALUE_ENTITY_Q:u=T.ATTRIB_VALUE_QUOTED,d="attribValue";break;case T.ATTRIB_VALUE_ENTITY_U:u=T.ATTRIB_VALUE_UNQUOTED,d="attribValue"}if(";"===r)if(n.opt.unparsedEntities){var m=j(n);n.entity="",n.state=u,n.write(m)}else n[d]+=j(n),n.entity="",n.state=u;else A(n.entity.length?g:h,r)?n.entity+=r:(I(n,"Invalid character in entity name"),n[d]+="&"+n.entity+r,n.entity="",n.state=u);continue;default:throw new Error(n,"Unknown state: "+n.state)}return n.position>=n.bufferCheckPosition&&function(e){for(var n=Math.max(t.MAX_BUFFER_LENGTH,10),s=0,r=0,o=i.length;r<o;r++){var a=e[i[r]].length;if(a>n)switch(i[r]){case"textNode":L(e);break;case"cdata":E(e,"oncdata",e.cdata),e.cdata="";break;case"script":E(e,"onscript",e.script),e.script="";break;default:F(e,"Max buffer length exceeded: "+i[r])}s=Math.max(s,a)}var l=t.MAX_BUFFER_LENGTH-s;e.bufferCheckPosition=l+e.position}(n),n},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){var t;L(t=this),""!==t.cdata&&(E(t,"oncdata",t.cdata),t.cdata=""),""!==t.script&&(E(t,"onscript",t.script),t.script="")}};try{e=n(88310).Stream}catch(t){e=function(){}}e||(e=function(){});var o=t.EVENTS.filter((function(t){return"error"!==t&&"end"!==t}));function a(t,n){if(!(this instanceof a))return new a(t,n);e.apply(this),this._parser=new r(t,n),this.writable=!0,this.readable=!0;var s=this;this._parser.onend=function(){s.emit("end")},this._parser.onerror=function(t){s.emit("error",t),s._parser.error=null},this._decoder=null,o.forEach((function(t){Object.defineProperty(s,"on"+t,{get:function(){return s._parser["on"+t]},set:function(e){if(!e)return s.removeAllListeners(t),s._parser["on"+t]=e,e;s.on(t,e)},enumerable:!0,configurable:!1})}))}a.prototype=Object.create(e.prototype,{constructor:{value:a}}),a.prototype.write=function(t){if("function"==typeof s&&"function"==typeof s.isBuffer&&s.isBuffer(t)){if(!this._decoder){var e=n(83141).I;this._decoder=new e("utf8")}t=this._decoder.write(t)}return this._parser.write(t.toString()),this.emit("data",t),!0},a.prototype.end=function(t){return t&&t.length&&this.write(t),this._parser.end(),!0},a.prototype.on=function(t,n){var s=this;return s._parser["on"+t]||-1===o.indexOf(t)||(s._parser["on"+t]=function(){var e=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);e.splice(0,0,t),s.emit.apply(s,e)}),e.prototype.on.call(s,t,n)};var l="[CDATA[",c="DOCTYPE",u="http://www.w3.org/XML/1998/namespace",d="http://www.w3.org/2000/xmlns/",m={xml:u,xmlns:d},p=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,f=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,h=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,g=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function v(t){return" "===t||"\n"===t||"\r"===t||"\t"===t}function w(t){return'"'===t||"'"===t}function y(t){return">"===t||v(t)}function A(t,e){return t.test(e)}function b(t,e){return!A(t,e)}var _,C,x,T=0;for(var S in t.STATE={BEGIN:T++,BEGIN_WHITESPACE:T++,TEXT:T++,TEXT_ENTITY:T++,OPEN_WAKA:T++,SGML_DECL:T++,SGML_DECL_QUOTED:T++,DOCTYPE:T++,DOCTYPE_QUOTED:T++,DOCTYPE_DTD:T++,DOCTYPE_DTD_QUOTED:T++,COMMENT_STARTING:T++,COMMENT:T++,COMMENT_ENDING:T++,COMMENT_ENDED:T++,CDATA:T++,CDATA_ENDING:T++,CDATA_ENDING_2:T++,PROC_INST:T++,PROC_INST_BODY:T++,PROC_INST_ENDING:T++,OPEN_TAG:T++,OPEN_TAG_SLASH:T++,ATTRIB:T++,ATTRIB_NAME:T++,ATTRIB_NAME_SAW_WHITE:T++,ATTRIB_VALUE:T++,ATTRIB_VALUE_QUOTED:T++,ATTRIB_VALUE_CLOSED:T++,ATTRIB_VALUE_UNQUOTED:T++,ATTRIB_VALUE_ENTITY_Q:T++,ATTRIB_VALUE_ENTITY_U:T++,CLOSE_TAG:T++,CLOSE_TAG_SAW_WHITE:T++,SCRIPT:T++,SCRIPT_ENDING:T++},t.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},t.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(t.ENTITIES).forEach((function(e){var n=t.ENTITIES[e],s="number"==typeof n?String.fromCharCode(n):n;t.ENTITIES[e]=s})),t.STATE)t.STATE[t.STATE[S]]=S;function k(t,e,n){t[e]&&t[e](n)}function E(t,e,n){t.textNode&&L(t),k(t,e,n)}function L(t){t.textNode=N(t.opt,t.textNode),t.textNode&&k(t,"ontext",t.textNode),t.textNode=""}function N(t,e){return t.trim&&(e=e.trim()),t.normalize&&(e=e.replace(/\s+/g," ")),e}function F(t,e){return L(t),t.trackPosition&&(e+="\nLine: "+t.line+"\nColumn: "+t.column+"\nChar: "+t.c),e=new Error(e),t.error=e,k(t,"onerror",e),t}function P(t){return t.sawRoot&&!t.closedRoot&&I(t,"Unclosed root tag"),t.state!==T.BEGIN&&t.state!==T.BEGIN_WHITESPACE&&t.state!==T.TEXT&&F(t,"Unexpected end"),L(t),t.c="",t.closed=!0,k(t,"onend"),r.call(t,t.strict,t.opt),t}function I(t,e){if("object"!=typeof t||!(t instanceof r))throw new Error("bad call to strictFail");t.strict&&F(t,e)}function D(t){t.strict||(t.tagName=t.tagName[t.looseCase]());var e=t.tags[t.tags.length-1]||t,n=t.tag={name:t.tagName,attributes:{}};t.opt.xmlns&&(n.ns=e.ns),t.attribList.length=0,E(t,"onopentagstart",n)}function O(t,e){var n=t.indexOf(":")<0?["",t]:t.split(":"),s=n[0],i=n[1];return e&&"xmlns"===t&&(s="xmlns",i=""),{prefix:s,local:i}}function U(t){if(t.strict||(t.attribName=t.attribName[t.looseCase]()),-1!==t.attribList.indexOf(t.attribName)||t.tag.attributes.hasOwnProperty(t.attribName))t.attribName=t.attribValue="";else{if(t.opt.xmlns){var e=O(t.attribName,!0),n=e.prefix,s=e.local;if("xmlns"===n)if("xml"===s&&t.attribValue!==u)I(t,"xml: prefix must be bound to "+u+"\nActual: "+t.attribValue);else if("xmlns"===s&&t.attribValue!==d)I(t,"xmlns: prefix must be bound to "+d+"\nActual: "+t.attribValue);else{var i=t.tag,r=t.tags[t.tags.length-1]||t;i.ns===r.ns&&(i.ns=Object.create(r.ns)),i.ns[s]=t.attribValue}t.attribList.push([t.attribName,t.attribValue])}else t.tag.attributes[t.attribName]=t.attribValue,E(t,"onattribute",{name:t.attribName,value:t.attribValue});t.attribName=t.attribValue=""}}function B(t,e){if(t.opt.xmlns){var n=t.tag,s=O(t.tagName);n.prefix=s.prefix,n.local=s.local,n.uri=n.ns[s.prefix]||"",n.prefix&&!n.uri&&(I(t,"Unbound namespace prefix: "+JSON.stringify(t.tagName)),n.uri=s.prefix);var i=t.tags[t.tags.length-1]||t;n.ns&&i.ns!==n.ns&&Object.keys(n.ns).forEach((function(e){E(t,"onopennamespace",{prefix:e,uri:n.ns[e]})}));for(var r=0,o=t.attribList.length;r<o;r++){var a=t.attribList[r],l=a[0],c=a[1],u=O(l,!0),d=u.prefix,m=u.local,p=""===d?"":n.ns[d]||"",f={name:l,value:c,prefix:d,local:m,uri:p};d&&"xmlns"!==d&&!p&&(I(t,"Unbound namespace prefix: "+JSON.stringify(d)),f.uri=d),t.tag.attributes[l]=f,E(t,"onattribute",f)}t.attribList.length=0}t.tag.isSelfClosing=!!e,t.sawRoot=!0,t.tags.push(t.tag),E(t,"onopentag",t.tag),e||(t.noscript||"script"!==t.tagName.toLowerCase()?t.state=T.TEXT:t.state=T.SCRIPT,t.tag=null,t.tagName=""),t.attribName=t.attribValue="",t.attribList.length=0}function R(t){if(!t.tagName)return I(t,"Weird empty close tag."),t.textNode+="</>",void(t.state=T.TEXT);if(t.script){if("script"!==t.tagName)return t.script+="</"+t.tagName+">",t.tagName="",void(t.state=T.SCRIPT);E(t,"onscript",t.script),t.script=""}var e=t.tags.length,n=t.tagName;t.strict||(n=n[t.looseCase]());for(var s=n;e--&&t.tags[e].name!==s;)I(t,"Unexpected close tag");if(e<0)return I(t,"Unmatched closing tag: "+t.tagName),t.textNode+="</"+t.tagName+">",void(t.state=T.TEXT);t.tagName=n;for(var i=t.tags.length;i-- >e;){var r=t.tag=t.tags.pop();t.tagName=t.tag.name,E(t,"onclosetag",t.tagName);var o={};for(var a in r.ns)o[a]=r.ns[a];var l=t.tags[t.tags.length-1]||t;t.opt.xmlns&&r.ns!==l.ns&&Object.keys(r.ns).forEach((function(e){var n=r.ns[e];E(t,"onclosenamespace",{prefix:e,uri:n})}))}0===e&&(t.closedRoot=!0),t.tagName=t.attribValue=t.attribName="",t.attribList.length=0,t.state=T.TEXT}function j(t){var e,n=t.entity,s=n.toLowerCase(),i="";return t.ENTITIES[n]?t.ENTITIES[n]:t.ENTITIES[s]?t.ENTITIES[s]:("#"===(n=s).charAt(0)&&("x"===n.charAt(1)?(n=n.slice(2),i=(e=parseInt(n,16)).toString(16)):(n=n.slice(1),i=(e=parseInt(n,10)).toString(10))),n=n.replace(/^0+/,""),isNaN(e)||i.toLowerCase()!==n?(I(t,"Invalid character entity"),"&"+t.entity+";"):String.fromCodePoint(e))}function M(t,e){"<"===e?(t.state=T.OPEN_WAKA,t.startTagPosition=t.position):v(e)||(I(t,"Non-whitespace before first tag."),t.textNode=e,t.state=T.TEXT)}function z(t,e){var n="";return e<t.length&&(n=t.charAt(e)),n}T=t.STATE,String.fromCodePoint||(_=String.fromCharCode,C=Math.floor,x=function(){var t,e,n=[],s=-1,i=arguments.length;if(!i)return"";for(var r="";++s<i;){var o=Number(arguments[s]);if(!isFinite(o)||o<0||o>1114111||C(o)!==o)throw RangeError("Invalid code point: "+o);o<=65535?n.push(o):(t=55296+((o-=65536)>>10),e=o%1024+56320,n.push(t,e)),(s+1===i||n.length>16384)&&(r+=_.apply(null,n),n.length=0)}return r},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:x,configurable:!0,writable:!0}):String.fromCodePoint=x)}(e)},42791:function(t,e,n){var s=n(65606);!function(t,e){"use strict";if(!t.setImmediate){var n,i,r,o,a,l=1,c={},u=!1,d=t.document,m=Object.getPrototypeOf&&Object.getPrototypeOf(t);m=m&&m.setTimeout?m:t,"[object process]"==={}.toString.call(t.process)?n=function(t){s.nextTick((function(){f(t)}))}:function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?(o="setImmediate$"+Math.random()+"$",a=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(o)&&f(+e.data.slice(o.length))},t.addEventListener?t.addEventListener("message",a,!1):t.attachEvent("onmessage",a),n=function(e){t.postMessage(o+e,"*")}):t.MessageChannel?((r=new MessageChannel).port1.onmessage=function(t){f(t.data)},n=function(t){r.port2.postMessage(t)}):d&&"onreadystatechange"in d.createElement("script")?(i=d.documentElement,n=function(t){var e=d.createElement("script");e.onreadystatechange=function(){f(t),e.onreadystatechange=null,i.removeChild(e),e=null},i.appendChild(e)}):n=function(t){setTimeout(f,0,t)},m.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),s=0;s<e.length;s++)e[s]=arguments[s+1];var i={callback:t,args:e};return c[l]=i,n(l),l++},m.clearImmediate=p}function p(t){delete c[t]}function f(t){if(u)setTimeout(f,0,t);else{var e=c[t];if(e){u=!0;try{!function(t){var e=t.callback,n=t.args;switch(n.length){case 0:e();break;case 1:e(n[0]);break;case 2:e(n[0],n[1]);break;case 3:e(n[0],n[1],n[2]);break;default:e.apply(undefined,n)}}(e)}finally{p(t),u=!1}}}}}("undefined"==typeof self?void 0===n.g?this:n.g:self)},75270:t=>{function e(t,e){return null==t?e:t}t.exports=function(t){var n,s=e((t=t||{}).max,1),i=e(t.min,0),r=e(t.autostart,!0),o=e(t.ignoreSameProgress,!1),a=null,l=null,c=null,u=(n=e(t.historyTimeConstant,2.5),function(t,e,s){return t+s/(s+n)*(e-t)});function d(){m(i)}function m(t,e){if("number"!=typeof e&&(e=Date.now()),l!==e&&(!o||c!==t)){if(null===l||null===c)return c=t,void(l=e);var n=.001*(e-l),s=(t-c)/n;a=null===a?s:u(a,s,n),c=t,l=e}}return{start:d,reset:function(){a=null,l=null,c=null,r&&d()},report:m,estimate:function(t){if(null===c)return 1/0;if(c>=s)return 0;if(null===a)return 1/0;var e=(s-c)/a;return"number"==typeof t&&"number"==typeof l&&(e-=.001*(t-l)),Math.max(0,e)},rate:function(){return null===a?0:a}}}},88310:(t,e,n)=>{t.exports=i;var s=n(37007).EventEmitter;function i(){s.call(this)}n(56698)(i,s),i.Readable=n(45412),i.Writable=n(16708),i.Duplex=n(25382),i.Transform=n(74610),i.PassThrough=n(63600),i.finished=n(86238),i.pipeline=n(57758),i.Stream=i,i.prototype.pipe=function(t,e){var n=this;function i(e){t.writable&&!1===t.write(e)&&n.pause&&n.pause()}function r(){n.readable&&n.resume&&n.resume()}n.on("data",i),t.on("drain",r),t._isStdio||e&&!1===e.end||(n.on("end",a),n.on("close",l));var o=!1;function a(){o||(o=!0,t.end())}function l(){o||(o=!0,"function"==typeof t.destroy&&t.destroy())}function c(t){if(u(),0===s.listenerCount(this,"error"))throw t}function u(){n.removeListener("data",i),t.removeListener("drain",r),n.removeListener("end",a),n.removeListener("close",l),n.removeListener("error",c),t.removeListener("error",c),n.removeListener("end",u),n.removeListener("close",u),t.removeListener("close",u)}return n.on("error",c),t.on("error",c),n.on("end",u),n.on("close",u),t.on("close",u),t.emit("pipe",n),t}},83141:(t,e,n)=>{"use strict";var s=n(92861).Buffer,i=s.isEncoding||function(t){switch((t=""+t)&&t.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function r(t){var e;switch(this.encoding=function(t){var e=function(t){if(!t)return"utf8";for(var e;;)switch(t){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return t;default:if(e)return;t=(""+t).toLowerCase(),e=!0}}(t);if("string"!=typeof e&&(s.isEncoding===i||!i(t)))throw new Error("Unknown encoding: "+t);return e||t}(t),this.encoding){case"utf16le":this.text=l,this.end=c,e=4;break;case"utf8":this.fillLast=a,e=4;break;case"base64":this.text=u,this.end=d,e=3;break;default:return this.write=m,void(this.end=p)}this.lastNeed=0,this.lastTotal=0,this.lastChar=s.allocUnsafe(e)}function o(t){return t<=127?0:t>>5==6?2:t>>4==14?3:t>>3==30?4:t>>6==2?-1:-2}function a(t){var e=this.lastTotal-this.lastNeed,n=function(t,e,n){if(128!=(192&e[0]))return t.lastNeed=0,"�";if(t.lastNeed>1&&e.length>1){if(128!=(192&e[1]))return t.lastNeed=1,"�";if(t.lastNeed>2&&e.length>2&&128!=(192&e[2]))return t.lastNeed=2,"�"}}(this,t);return void 0!==n?n:this.lastNeed<=t.length?(t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(t.copy(this.lastChar,e,0,t.length),void(this.lastNeed-=t.length))}function l(t,e){if((t.length-e)%2==0){var n=t.toString("utf16le",e);if(n){var s=n.charCodeAt(n.length-1);if(s>=55296&&s<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],n.slice(0,-1)}return n}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function c(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,n)}return e}function u(t,e){var n=(t.length-e)%3;return 0===n?t.toString("base64",e):(this.lastNeed=3-n,this.lastTotal=3,1===n?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-n))}function d(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function m(t){return t.toString(this.encoding)}function p(t){return t&&t.length?this.write(t):""}e.I=r,r.prototype.write=function(t){if(0===t.length)return"";var e,n;if(this.lastNeed){if(void 0===(e=this.fillLast(t)))return"";n=this.lastNeed,this.lastNeed=0}else n=0;return n<t.length?e?e+this.text(t,n):this.text(t,n):e||""},r.prototype.end=function(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+"�":e},r.prototype.text=function(t,e){var n=function(t,e,n){var s=e.length-1;if(s<n)return 0;var i=o(e[s]);return i>=0?(i>0&&(t.lastNeed=i-1),i):--s<n||-2===i?0:(i=o(e[s]))>=0?(i>0&&(t.lastNeed=i-2),i):--s<n||-2===i?0:(i=o(e[s]))>=0?(i>0&&(2===i?i=0:t.lastNeed=i-3),i):0}(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=n;var s=t.length-(n-this.lastNeed);return t.copy(this.lastChar,0,s),t.toString("utf8",e,s)},r.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length}},97103:function(t,e,n){var s=void 0!==n.g&&n.g||"undefined"!=typeof self&&self||window,i=Function.prototype.apply;function r(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new r(i.call(setTimeout,s,arguments),clearTimeout)},e.setInterval=function(){return new r(i.call(setInterval,s,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},r.prototype.unref=r.prototype.ref=function(){},r.prototype.close=function(){this._clearFn.call(s,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(42791),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==n.g&&n.g.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==n.g&&n.g.clearImmediate||this&&this.clearImmediate},94643:(t,e,n)=>{var s=n(96763);function i(t){try{if(!n.g.localStorage)return!1}catch(t){return!1}var e=n.g.localStorage[t];return null!=e&&"true"===String(e).toLowerCase()}t.exports=function(t,e){if(i("noDeprecation"))return t;var n=!1;return function(){if(!n){if(i("throwDeprecation"))throw new Error(e);i("traceDeprecation")?s.trace(e):s.warn(e),n=!0}return t.apply(this,arguments)}}},83177:function(t,e){(function(){"use strict";e.stripBOM=function(t){return"\ufeff"===t[0]?t.substring(1):t}}).call(this)},56712:function(t,e,n){(function(){"use strict";var t,s,i,r,o,a={}.hasOwnProperty;t=n(59665),s=n(66465).defaults,r=function(t){return"string"==typeof t&&(t.indexOf("&")>=0||t.indexOf(">")>=0||t.indexOf("<")>=0)},o=function(t){return"<![CDATA["+i(t)+"]]>"},i=function(t){return t.replace("]]>","]]]]><![CDATA[>")},e.Builder=function(){function e(t){var e,n,i;for(e in this.options={},n=s[.2])a.call(n,e)&&(i=n[e],this.options[e]=i);for(e in t)a.call(t,e)&&(i=t[e],this.options[e]=i)}return e.prototype.buildObject=function(e){var n,i,l,c,u,d;return n=this.options.attrkey,i=this.options.charkey,1===Object.keys(e).length&&this.options.rootName===s[.2].rootName?e=e[u=Object.keys(e)[0]]:u=this.options.rootName,d=this,l=function(t,e){var s,c,u,m,p,f;if("object"!=typeof e)d.options.cdata&&r(e)?t.raw(o(e)):t.txt(e);else if(Array.isArray(e)){for(m in e)if(a.call(e,m))for(p in c=e[m])u=c[p],t=l(t.ele(p),u).up()}else for(p in e)if(a.call(e,p))if(c=e[p],p===n){if("object"==typeof c)for(s in c)f=c[s],t=t.att(s,f)}else if(p===i)t=d.options.cdata&&r(c)?t.raw(o(c)):t.txt(c);else if(Array.isArray(c))for(m in c)a.call(c,m)&&(t="string"==typeof(u=c[m])?d.options.cdata&&r(u)?t.ele(p).raw(o(u)).up():t.ele(p,u).up():l(t.ele(p),u).up());else"object"==typeof c?t=l(t.ele(p),c).up():"string"==typeof c&&d.options.cdata&&r(c)?t=t.ele(p).raw(o(c)).up():(null==c&&(c=""),t=t.ele(p,c.toString()).up());return t},c=t.create(u,this.options.xmldec,this.options.doctype,{headless:this.options.headless,allowSurrogateChars:this.options.allowSurrogateChars}),l(c,e).end(this.options.renderOpts)},e}()}).call(this)},66465:function(t,e){(function(){e.defaults={.1:{explicitCharkey:!1,trim:!0,normalize:!0,normalizeTags:!1,attrkey:"@",charkey:"#",explicitArray:!1,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!1,validator:null,xmlns:!1,explicitChildren:!1,childkey:"@@",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,emptyTag:""},.2:{explicitCharkey:!1,trim:!1,normalize:!1,normalizeTags:!1,attrkey:"$",charkey:"_",explicitArray:!0,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!0,validator:null,xmlns:!1,explicitChildren:!1,preserveChildrenOrder:!1,childkey:"$$",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,rootName:"root",xmldec:{version:"1.0",encoding:"UTF-8",standalone:!0},doctype:null,renderOpts:{pretty:!0,indent:"  ",newline:"\n"},headless:!1,chunkSize:1e4,emptyTag:"",cdata:!1}}}).call(this)},11912:function(t,e,n){(function(){"use strict";var t,s,i,r,o,a,l,c,u,d=function(t,e){return function(){return t.apply(e,arguments)}},m={}.hasOwnProperty;c=n(64043),r=n(37007),t=n(83177),l=n(92114),u=n(97103).setImmediate,s=n(66465).defaults,o=function(t){return"object"==typeof t&&null!=t&&0===Object.keys(t).length},a=function(t,e,n){var s,i;for(s=0,i=t.length;s<i;s++)e=(0,t[s])(e,n);return e},i=function(t,e,n){var s;return(s=Object.create(null)).value=n,s.writable=!0,s.enumerable=!0,s.configurable=!0,Object.defineProperty(t,e,s)},e.Parser=function(n){function r(t){var n,i,r;if(this.parseStringPromise=d(this.parseStringPromise,this),this.parseString=d(this.parseString,this),this.reset=d(this.reset,this),this.assignOrPush=d(this.assignOrPush,this),this.processAsync=d(this.processAsync,this),!(this instanceof e.Parser))return new e.Parser(t);for(n in this.options={},i=s[.2])m.call(i,n)&&(r=i[n],this.options[n]=r);for(n in t)m.call(t,n)&&(r=t[n],this.options[n]=r);this.options.xmlns&&(this.options.xmlnskey=this.options.attrkey+"ns"),this.options.normalizeTags&&(this.options.tagNameProcessors||(this.options.tagNameProcessors=[]),this.options.tagNameProcessors.unshift(l.normalize)),this.reset()}return function(t,e){for(var n in e)m.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(r,n),r.prototype.processAsync=function(){var t,e;try{return this.remaining.length<=this.options.chunkSize?(t=this.remaining,this.remaining="",this.saxParser=this.saxParser.write(t),this.saxParser.close()):(t=this.remaining.substr(0,this.options.chunkSize),this.remaining=this.remaining.substr(this.options.chunkSize,this.remaining.length),this.saxParser=this.saxParser.write(t),u(this.processAsync))}catch(t){if(e=t,!this.saxParser.errThrown)return this.saxParser.errThrown=!0,this.emit(e)}},r.prototype.assignOrPush=function(t,e,n){return e in t?(t[e]instanceof Array||i(t,e,[t[e]]),t[e].push(n)):this.options.explicitArray?i(t,e,[n]):i(t,e,n)},r.prototype.reset=function(){var t,e,n,s,r;return this.removeAllListeners(),this.saxParser=c.parser(this.options.strict,{trim:!1,normalize:!1,xmlns:this.options.xmlns}),this.saxParser.errThrown=!1,this.saxParser.onerror=(r=this,function(t){if(r.saxParser.resume(),!r.saxParser.errThrown)return r.saxParser.errThrown=!0,r.emit("error",t)}),this.saxParser.onend=function(t){return function(){if(!t.saxParser.ended)return t.saxParser.ended=!0,t.emit("end",t.resultObject)}}(this),this.saxParser.ended=!1,this.EXPLICIT_CHARKEY=this.options.explicitCharkey,this.resultObject=null,s=[],t=this.options.attrkey,e=this.options.charkey,this.saxParser.onopentag=function(n){return function(r){var o,l,c,u,d;if((c={})[e]="",!n.options.ignoreAttrs)for(o in d=r.attributes)m.call(d,o)&&(t in c||n.options.mergeAttrs||(c[t]={}),l=n.options.attrValueProcessors?a(n.options.attrValueProcessors,r.attributes[o],o):r.attributes[o],u=n.options.attrNameProcessors?a(n.options.attrNameProcessors,o):o,n.options.mergeAttrs?n.assignOrPush(c,u,l):i(c[t],u,l));return c["#name"]=n.options.tagNameProcessors?a(n.options.tagNameProcessors,r.name):r.name,n.options.xmlns&&(c[n.options.xmlnskey]={uri:r.uri,local:r.local}),s.push(c)}}(this),this.saxParser.onclosetag=function(t){return function(){var n,r,l,c,u,d,p,f,h,g;if(d=s.pop(),u=d["#name"],t.options.explicitChildren&&t.options.preserveChildrenOrder||delete d["#name"],!0===d.cdata&&(n=d.cdata,delete d.cdata),h=s[s.length-1],d[e].match(/^\s*$/)&&!n?(r=d[e],delete d[e]):(t.options.trim&&(d[e]=d[e].trim()),t.options.normalize&&(d[e]=d[e].replace(/\s{2,}/g," ").trim()),d[e]=t.options.valueProcessors?a(t.options.valueProcessors,d[e],u):d[e],1===Object.keys(d).length&&e in d&&!t.EXPLICIT_CHARKEY&&(d=d[e])),o(d)&&(d="function"==typeof t.options.emptyTag?t.options.emptyTag():""!==t.options.emptyTag?t.options.emptyTag:r),null!=t.options.validator&&(g="/"+function(){var t,e,n;for(n=[],t=0,e=s.length;t<e;t++)c=s[t],n.push(c["#name"]);return n}().concat(u).join("/"),function(){var e;try{return d=t.options.validator(g,h&&h[u],d)}catch(n){return e=n,t.emit("error",e)}}()),t.options.explicitChildren&&!t.options.mergeAttrs&&"object"==typeof d)if(t.options.preserveChildrenOrder){if(h){for(l in h[t.options.childkey]=h[t.options.childkey]||[],p={},d)m.call(d,l)&&i(p,l,d[l]);h[t.options.childkey].push(p),delete d["#name"],1===Object.keys(d).length&&e in d&&!t.EXPLICIT_CHARKEY&&(d=d[e])}}else c={},t.options.attrkey in d&&(c[t.options.attrkey]=d[t.options.attrkey],delete d[t.options.attrkey]),!t.options.charsAsChildren&&t.options.charkey in d&&(c[t.options.charkey]=d[t.options.charkey],delete d[t.options.charkey]),Object.getOwnPropertyNames(d).length>0&&(c[t.options.childkey]=d),d=c;return s.length>0?t.assignOrPush(h,u,d):(t.options.explicitRoot&&(f=d,i(d={},u,f)),t.resultObject=d,t.saxParser.ended=!0,t.emit("end",t.resultObject))}}(this),n=function(t){return function(n){var i,r;if(r=s[s.length-1])return r[e]+=n,t.options.explicitChildren&&t.options.preserveChildrenOrder&&t.options.charsAsChildren&&(t.options.includeWhiteChars||""!==n.replace(/\\n/g,"").trim())&&(r[t.options.childkey]=r[t.options.childkey]||[],(i={"#name":"__text__"})[e]=n,t.options.normalize&&(i[e]=i[e].replace(/\s{2,}/g," ").trim()),r[t.options.childkey].push(i)),r}}(this),this.saxParser.ontext=n,this.saxParser.oncdata=function(t){var e;if(e=n(t))return e.cdata=!0}},r.prototype.parseString=function(e,n){var s;null!=n&&"function"==typeof n&&(this.on("end",(function(t){return this.reset(),n(null,t)})),this.on("error",(function(t){return this.reset(),n(t)})));try{return""===(e=e.toString()).trim()?(this.emit("end",null),!0):(e=t.stripBOM(e),this.options.async?(this.remaining=e,u(this.processAsync),this.saxParser):this.saxParser.write(e).close())}catch(t){if(s=t,!this.saxParser.errThrown&&!this.saxParser.ended)return this.emit("error",s),this.saxParser.errThrown=!0;if(this.saxParser.ended)throw s}},r.prototype.parseStringPromise=function(t){return new Promise((e=this,function(n,s){return e.parseString(t,(function(t,e){return t?s(t):n(e)}))}));var e},r}(r),e.parseString=function(t,n,s){var i,r;return null!=s?("function"==typeof s&&(i=s),"object"==typeof n&&(r=n)):("function"==typeof n&&(i=n),r={}),new e.Parser(r).parseString(t,i)},e.parseStringPromise=function(t,n){var s;return"object"==typeof n&&(s=n),new e.Parser(s).parseStringPromise(t)}}).call(this)},92114:function(t,e){(function(){"use strict";var t;t=new RegExp(/(?!xmlns)^.*:/),e.normalize=function(t){return t.toLowerCase()},e.firstCharLowerCase=function(t){return t.charAt(0).toLowerCase()+t.slice(1)},e.stripPrefix=function(e){return e.replace(t,"")},e.parseNumbers=function(t){return isNaN(t)||(t=t%1==0?parseInt(t,10):parseFloat(t)),t},e.parseBooleans=function(t){return/^(?:true|false)$/i.test(t)&&(t="true"===t.toLowerCase()),t}}).call(this)},38805:function(t,e,n){(function(){"use strict";var t,s,i,r,o={}.hasOwnProperty;s=n(66465),t=n(56712),i=n(11912),r=n(92114),e.defaults=s.defaults,e.processors=r,e.ValidationError=function(t){function e(t){this.message=t}return function(t,e){for(var n in e)o.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(e,Error),e}(),e.Builder=t.Builder,e.Parser=i.Parser,e.parseString=i.parseString,e.parseStringPromise=i.parseStringPromise}).call(this)},34923:function(t){(function(){t.exports={Disconnected:1,Preceding:2,Following:4,Contains:8,ContainedBy:16,ImplementationSpecific:32}}).call(this)},71737:function(t){(function(){t.exports={Element:1,Attribute:2,Text:3,CData:4,EntityReference:5,EntityDeclaration:6,ProcessingInstruction:7,Comment:8,Document:9,DocType:10,DocumentFragment:11,NotationDeclaration:12,Declaration:201,Raw:202,AttributeDeclaration:203,ElementDeclaration:204,Dummy:205}}).call(this)},49241:function(t){(function(){var e,n,s,i,r,o,a,l=[].slice,c={}.hasOwnProperty;e=function(){var t,e,n,s,i,o;if(o=arguments[0],i=2<=arguments.length?l.call(arguments,1):[],r(Object.assign))Object.assign.apply(null,arguments);else for(t=0,n=i.length;t<n;t++)if(null!=(s=i[t]))for(e in s)c.call(s,e)&&(o[e]=s[e]);return o},r=function(t){return!!t&&"[object Function]"===Object.prototype.toString.call(t)},o=function(t){var e;return!!t&&("function"==(e=typeof t)||"object"===e)},s=function(t){return r(Array.isArray)?Array.isArray(t):"[object Array]"===Object.prototype.toString.call(t)},i=function(t){var e;if(s(t))return!t.length;for(e in t)if(c.call(t,e))return!1;return!0},a=function(t){var e,n;return o(t)&&(n=Object.getPrototypeOf(t))&&(e=n.constructor)&&"function"==typeof e&&e instanceof e&&Function.prototype.toString.call(e)===Function.prototype.toString.call(Object)},n=function(t){return r(t.valueOf)?t.valueOf():t},t.exports.assign=e,t.exports.isFunction=r,t.exports.isObject=o,t.exports.isArray=s,t.exports.isEmpty=i,t.exports.isPlainObject=a,t.exports.getValue=n}).call(this)},88753:function(t){(function(){t.exports={None:0,OpenTag:1,InsideTag:2,CloseTag:3}}).call(this)},54238:function(t,e,n){(function(){var e;e=n(71737),n(10468),t.exports=function(){function t(t,n,s){if(this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),null==n)throw new Error("Missing attribute name. "+this.debugInfo(n));this.name=this.stringify.name(n),this.value=this.stringify.attValue(s),this.type=e.Attribute,this.isId=!1,this.schemaTypeInfo=null}return Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"ownerElement",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(t.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(t.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(t.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"specified",{get:function(){return!0}}),t.prototype.clone=function(){return Object.create(this)},t.prototype.toString=function(t){return this.options.writer.attribute(this,this.options.writer.filterOptions(t))},t.prototype.debugInfo=function(t){return null==(t=t||this.name)?"parent: <"+this.parent.name+">":"attribute: {"+t+"}, parent: <"+this.parent.name+">"},t.prototype.isEqualNode=function(t){return t.namespaceURI===this.namespaceURI&&t.prefix===this.prefix&&t.localName===this.localName&&t.value===this.value},t}()}).call(this)},92691:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing CDATA text. "+this.debugInfo());this.name="#cdata-section",this.type=e.CData,this.value=this.stringify.cdata(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.cdata(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},17457:function(t,e,n){(function(){var e,s={}.hasOwnProperty;e=n(10468),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t),this.value=""}return function(t,e){for(var n in e)s.call(e,n)&&(t[n]=e[n]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,t),Object.defineProperty(e.prototype,"data",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(e.prototype,"length",{get:function(){return this.value.length}}),Object.defineProperty(e.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),e.prototype.clone=function(){return Object.create(this)},e.prototype.substringData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.appendData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.insertData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.deleteData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.replaceData=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.isEqualNode=function(t){return!!e.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.data===this.data},e}(e)}).call(this)},32679:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing comment text. "+this.debugInfo());this.name="#comment",this.type=e.Comment,this.value=this.stringify.comment(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.comment(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},33074:function(t,e,n){(function(){var e,s;e=n(55660),s=n(92527),t.exports=function(){function t(){this.defaultParams={"canonical-form":!1,"cdata-sections":!1,comments:!1,"datatype-normalization":!1,"element-content-whitespace":!0,entities:!0,"error-handler":new e,infoset:!0,"validate-if-schema":!1,namespaces:!0,"namespace-declarations":!0,"normalize-characters":!1,"schema-location":"","schema-type":"","split-cdata-sections":!0,validate:!1,"well-formed":!0},this.params=Object.create(this.defaultParams)}return Object.defineProperty(t.prototype,"parameterNames",{get:function(){return new s(Object.keys(this.defaultParams))}}),t.prototype.getParameter=function(t){return this.params.hasOwnProperty(t)?this.params[t]:null},t.prototype.canSetParameter=function(t,e){return!0},t.prototype.setParameter=function(t,e){return null!=e?this.params[t]=e:delete this.params[t]},t}()}).call(this)},55660:function(t){(function(){t.exports=function(){function t(){}return t.prototype.handleError=function(t){throw new Error(t)},t}()}).call(this)},67260:function(t){(function(){t.exports=function(){function t(){}return t.prototype.hasFeature=function(t,e){return!0},t.prototype.createDocumentType=function(t,e,n){throw new Error("This DOM method is not implemented.")},t.prototype.createDocument=function(t,e,n){throw new Error("This DOM method is not implemented.")},t.prototype.createHTMLDocument=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},92527:function(t){(function(){t.exports=function(){function t(t){this.arr=t||[]}return Object.defineProperty(t.prototype,"length",{get:function(){return this.arr.length}}),t.prototype.item=function(t){return this.arr[t]||null},t.prototype.contains=function(t){return-1!==this.arr.indexOf(t)},t}()}).call(this)},34111:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i,r,o,a){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD element name. "+this.debugInfo());if(null==i)throw new Error("Missing DTD attribute name. "+this.debugInfo(s));if(!r)throw new Error("Missing DTD attribute type. "+this.debugInfo(s));if(!o)throw new Error("Missing DTD attribute default. "+this.debugInfo(s));if(0!==o.indexOf("#")&&(o="#"+o),!o.match(/^(#REQUIRED|#IMPLIED|#FIXED|#DEFAULT)$/))throw new Error("Invalid default value type; expected: #REQUIRED, #IMPLIED, #FIXED or #DEFAULT. "+this.debugInfo(s));if(a&&!o.match(/^(#FIXED|#DEFAULT)$/))throw new Error("Default value only applies to #FIXED or #DEFAULT. "+this.debugInfo(s));this.elementName=this.stringify.name(s),this.type=e.AttributeDeclaration,this.attributeName=this.stringify.name(i),this.attributeType=this.stringify.dtdAttType(r),a&&(this.defaultValue=this.stringify.dtdAttDefault(a)),this.defaultValueType=o}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.dtdAttList(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},67696:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD element name. "+this.debugInfo());i||(i="(#PCDATA)"),Array.isArray(i)&&(i="("+i.join(",")+")"),this.name=this.stringify.name(s),this.type=e.ElementDeclaration,this.value=this.stringify.dtdElementValue(i)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.dtdElement(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},5529:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).isObject,s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,r,o){if(n.__super__.constructor.call(this,t),null==r)throw new Error("Missing DTD entity name. "+this.debugInfo(r));if(null==o)throw new Error("Missing DTD entity value. "+this.debugInfo(r));if(this.pe=!!s,this.name=this.stringify.name(r),this.type=e.EntityDeclaration,i(o)){if(!o.pubID&&!o.sysID)throw new Error("Public and/or system identifiers are required for an external entity. "+this.debugInfo(r));if(o.pubID&&!o.sysID)throw new Error("System identifier is required for a public external entity. "+this.debugInfo(r));if(this.internal=!1,null!=o.pubID&&(this.pubID=this.stringify.dtdPubID(o.pubID)),null!=o.sysID&&(this.sysID=this.stringify.dtdSysID(o.sysID)),null!=o.nData&&(this.nData=this.stringify.dtdNData(o.nData)),this.pe&&this.nData)throw new Error("Notation declaration is not allowed in a parameter entity. "+this.debugInfo(r))}else this.value=this.stringify.dtdEntityValue(o),this.internal=!0}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(n.prototype,"notationName",{get:function(){return this.nData||null}}),Object.defineProperty(n.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"xmlEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"xmlVersion",{get:function(){return null}}),n.prototype.toString=function(t){return this.options.writer.dtdEntity(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},28012:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD notation name. "+this.debugInfo(s));if(!i.pubID&&!i.sysID)throw new Error("Public or system identifiers are required for an external entity. "+this.debugInfo(s));this.name=this.stringify.name(s),this.type=e.NotationDeclaration,null!=i.pubID&&(this.pubID=this.stringify.dtdPubID(i.pubID)),null!=i.sysID&&(this.sysID=this.stringify.dtdSysID(i.sysID))}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),n.prototype.toString=function(t){return this.options.writer.dtdNotation(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},34130:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).isObject,s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,r,o){var a;n.__super__.constructor.call(this,t),i(s)&&(s=(a=s).version,r=a.encoding,o=a.standalone),s||(s="1.0"),this.type=e.Declaration,this.version=this.stringify.xmlVersion(s),null!=r&&(this.encoding=this.stringify.xmlEncoding(r)),null!=o&&(this.standalone=this.stringify.xmlStandalone(o))}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.declaration(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},96376:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,u={}.hasOwnProperty;c=n(49241).isObject,l=n(10468),e=n(71737),s=n(34111),r=n(5529),i=n(67696),o=n(28012),a=n(24797),t.exports=function(t){function n(t,s,i){var r,o,a,l,u,d;if(n.__super__.constructor.call(this,t),this.type=e.DocType,t.children)for(o=0,a=(l=t.children).length;o<a;o++)if((r=l[o]).type===e.Element){this.name=r.name;break}this.documentObject=t,c(s)&&(s=(u=s).pubID,i=u.sysID),null==i&&(i=(d=[s,i])[0],s=d[1]),null!=s&&(this.pubID=this.stringify.dtdPubID(s)),null!=i&&(this.sysID=this.stringify.dtdSysID(i))}return function(t,e){for(var n in e)u.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"entities",{get:function(){var t,n,s,i,r;for(i={},n=0,s=(r=this.children).length;n<s;n++)(t=r[n]).type!==e.EntityDeclaration||t.pe||(i[t.name]=t);return new a(i)}}),Object.defineProperty(n.prototype,"notations",{get:function(){var t,n,s,i,r;for(i={},n=0,s=(r=this.children).length;n<s;n++)(t=r[n]).type===e.NotationDeclaration&&(i[t.name]=t);return new a(i)}}),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(n.prototype,"internalSubset",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),n.prototype.element=function(t,e){var n;return n=new i(this,t,e),this.children.push(n),this},n.prototype.attList=function(t,e,n,i,r){var o;return o=new s(this,t,e,n,i,r),this.children.push(o),this},n.prototype.entity=function(t,e){var n;return n=new r(this,!1,t,e),this.children.push(n),this},n.prototype.pEntity=function(t,e){var n;return n=new r(this,!0,t,e),this.children.push(n),this},n.prototype.notation=function(t,e){var n;return n=new o(this,t,e),this.children.push(n),this},n.prototype.toString=function(t){return this.options.writer.docType(this,this.options.writer.filterOptions(t))},n.prototype.ele=function(t,e){return this.element(t,e)},n.prototype.att=function(t,e,n,s,i){return this.attList(t,e,n,s,i)},n.prototype.ent=function(t,e){return this.entity(t,e)},n.prototype.pent=function(t,e){return this.pEntity(t,e)},n.prototype.not=function(t,e){return this.notation(t,e)},n.prototype.up=function(){return this.root()||this.documentObject},n.prototype.isEqualNode=function(t){return!!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.name===this.name&&t.publicId===this.publicId&&t.systemId===this.systemId},n}(l)}).call(this)},71933:function(t,e,n){(function(){var e,s,i,r,o,a,l,c={}.hasOwnProperty;l=n(49241).isPlainObject,i=n(67260),s=n(33074),r=n(10468),e=n(71737),a=n(43976),o=n(40382),t.exports=function(t){function n(t){n.__super__.constructor.call(this,null),this.name="#document",this.type=e.Document,this.documentURI=null,this.domConfig=new s,t||(t={}),t.writer||(t.writer=new o),this.options=t,this.stringify=new a(t)}return function(t,e){for(var n in e)c.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"implementation",{value:new i}),Object.defineProperty(n.prototype,"doctype",{get:function(){var t,n,s,i;for(n=0,s=(i=this.children).length;n<s;n++)if((t=i[n]).type===e.DocType)return t;return null}}),Object.defineProperty(n.prototype,"documentElement",{get:function(){return this.rootObject||null}}),Object.defineProperty(n.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"strictErrorChecking",{get:function(){return!1}}),Object.defineProperty(n.prototype,"xmlEncoding",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].encoding:null}}),Object.defineProperty(n.prototype,"xmlStandalone",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration&&"yes"===this.children[0].standalone}}),Object.defineProperty(n.prototype,"xmlVersion",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].version:"1.0"}}),Object.defineProperty(n.prototype,"URL",{get:function(){return this.documentURI}}),Object.defineProperty(n.prototype,"origin",{get:function(){return null}}),Object.defineProperty(n.prototype,"compatMode",{get:function(){return null}}),Object.defineProperty(n.prototype,"characterSet",{get:function(){return null}}),Object.defineProperty(n.prototype,"contentType",{get:function(){return null}}),n.prototype.end=function(t){var e;return e={},t?l(t)&&(e=t,t=this.options.writer):t=this.options.writer,t.document(this,t.filterOptions(e))},n.prototype.toString=function(t){return this.options.writer.document(this,this.options.writer.filterOptions(t))},n.prototype.createElement=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createDocumentFragment=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createTextNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createComment=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createCDATASection=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createProcessingInstruction=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createAttribute=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createEntityReference=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.importNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createElementNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementById=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.adoptNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.normalizeDocument=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.renameNode=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createEvent=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createRange=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createNodeIterator=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createTreeWalker=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n}(r)}).call(this)},80400:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,u,d,m,p,f,h,g,v,w,y,A,b,_,C,x,T={}.hasOwnProperty;x=n(49241),_=x.isObject,b=x.isFunction,C=x.isPlainObject,A=x.getValue,e=n(71737),p=n(71933),f=n(33906),r=n(92691),o=n(32679),g=n(1268),y=n(82535),h=n(85915),d=n(34130),m=n(96376),a=n(34111),c=n(5529),l=n(67696),u=n(28012),i=n(54238),w=n(43976),v=n(40382),s=n(88753),t.exports=function(){function t(t,n,s){var i;this.name="?xml",this.type=e.Document,t||(t={}),i={},t.writer?C(t.writer)&&(i=t.writer,t.writer=new v):t.writer=new v,this.options=t,this.writer=t.writer,this.writerOptions=this.writer.filterOptions(i),this.stringify=new w(t),this.onDataCallback=n||function(){},this.onEndCallback=s||function(){},this.currentNode=null,this.currentLevel=-1,this.openTags={},this.documentStarted=!1,this.documentCompleted=!1,this.root=null}return t.prototype.createChildNode=function(t){var n,s,i,r,o,a,l,c;switch(t.type){case e.CData:this.cdata(t.value);break;case e.Comment:this.comment(t.value);break;case e.Element:for(s in i={},l=t.attribs)T.call(l,s)&&(n=l[s],i[s]=n.value);this.node(t.name,i);break;case e.Dummy:this.dummy();break;case e.Raw:this.raw(t.value);break;case e.Text:this.text(t.value);break;case e.ProcessingInstruction:this.instruction(t.target,t.value);break;default:throw new Error("This XML node type is not supported in a JS object: "+t.constructor.name)}for(o=0,a=(c=t.children).length;o<a;o++)r=c[o],this.createChildNode(r),r.type===e.Element&&this.up();return this},t.prototype.dummy=function(){return this},t.prototype.node=function(t,e,n){var s;if(null==t)throw new Error("Missing node name.");if(this.root&&-1===this.currentLevel)throw new Error("Document can only have one root node. "+this.debugInfo(t));return this.openCurrent(),t=A(t),null==e&&(e={}),e=A(e),_(e)||(n=(s=[e,n])[0],e=s[1]),this.currentNode=new f(this,t,e),this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,null!=n&&this.text(n),this},t.prototype.element=function(t,n,s){var i,r,o,a,l,c;if(this.currentNode&&this.currentNode.type===e.DocType)this.dtdElement.apply(this,arguments);else if(Array.isArray(t)||_(t)||b(t))for(a=this.options.noValidation,this.options.noValidation=!0,(c=new p(this.options).element("TEMP_ROOT")).element(t),this.options.noValidation=a,r=0,o=(l=c.children).length;r<o;r++)i=l[r],this.createChildNode(i),i.type===e.Element&&this.up();else this.node(t,n,s);return this},t.prototype.attribute=function(t,e){var n,s;if(!this.currentNode||this.currentNode.children)throw new Error("att() can only be used immediately after an ele() call in callback mode. "+this.debugInfo(t));if(null!=t&&(t=A(t)),_(t))for(n in t)T.call(t,n)&&(s=t[n],this.attribute(n,s));else b(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.currentNode.attribs[t]=new i(this,t,""):null!=e&&(this.currentNode.attribs[t]=new i(this,t,e));return this},t.prototype.text=function(t){var e;return this.openCurrent(),e=new y(this,t),this.onData(this.writer.text(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.cdata=function(t){var e;return this.openCurrent(),e=new r(this,t),this.onData(this.writer.cdata(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.comment=function(t){var e;return this.openCurrent(),e=new o(this,t),this.onData(this.writer.comment(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.raw=function(t){var e;return this.openCurrent(),e=new g(this,t),this.onData(this.writer.raw(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.instruction=function(t,e){var n,s,i,r,o;if(this.openCurrent(),null!=t&&(t=A(t)),null!=e&&(e=A(e)),Array.isArray(t))for(n=0,r=t.length;n<r;n++)s=t[n],this.instruction(s);else if(_(t))for(s in t)T.call(t,s)&&(i=t[s],this.instruction(s,i));else b(e)&&(e=e.apply()),o=new h(this,t,e),this.onData(this.writer.processingInstruction(o,this.writerOptions,this.currentLevel+1),this.currentLevel+1);return this},t.prototype.declaration=function(t,e,n){var s;if(this.openCurrent(),this.documentStarted)throw new Error("declaration() must be the first node.");return s=new d(this,t,e,n),this.onData(this.writer.declaration(s,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.doctype=function(t,e,n){if(this.openCurrent(),null==t)throw new Error("Missing root node name.");if(this.root)throw new Error("dtd() must come before the root node.");return this.currentNode=new m(this,e,n),this.currentNode.rootNodeName=t,this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,this},t.prototype.dtdElement=function(t,e){var n;return this.openCurrent(),n=new l(this,t,e),this.onData(this.writer.dtdElement(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.attList=function(t,e,n,s,i){var r;return this.openCurrent(),r=new a(this,t,e,n,s,i),this.onData(this.writer.dtdAttList(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.entity=function(t,e){var n;return this.openCurrent(),n=new c(this,!1,t,e),this.onData(this.writer.dtdEntity(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.pEntity=function(t,e){var n;return this.openCurrent(),n=new c(this,!0,t,e),this.onData(this.writer.dtdEntity(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.notation=function(t,e){var n;return this.openCurrent(),n=new u(this,t,e),this.onData(this.writer.dtdNotation(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.up=function(){if(this.currentLevel<0)throw new Error("The document node has no parent.");return this.currentNode?(this.currentNode.children?this.closeNode(this.currentNode):this.openNode(this.currentNode),this.currentNode=null):this.closeNode(this.openTags[this.currentLevel]),delete this.openTags[this.currentLevel],this.currentLevel--,this},t.prototype.end=function(){for(;this.currentLevel>=0;)this.up();return this.onEnd()},t.prototype.openCurrent=function(){if(this.currentNode)return this.currentNode.children=!0,this.openNode(this.currentNode)},t.prototype.openNode=function(t){var n,i,r,o;if(!t.isOpen){if(this.root||0!==this.currentLevel||t.type!==e.Element||(this.root=t),i="",t.type===e.Element){for(r in this.writerOptions.state=s.OpenTag,i=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<"+t.name,o=t.attribs)T.call(o,r)&&(n=o[r],i+=this.writer.attribute(n,this.writerOptions,this.currentLevel));i+=(t.children?">":"/>")+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=s.InsideTag}else this.writerOptions.state=s.OpenTag,i=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<!DOCTYPE "+t.rootNodeName,t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),t.children?(i+=" [",this.writerOptions.state=s.InsideTag):(this.writerOptions.state=s.CloseTag,i+=">"),i+=this.writer.endline(t,this.writerOptions,this.currentLevel);return this.onData(i,this.currentLevel),t.isOpen=!0}},t.prototype.closeNode=function(t){var n;if(!t.isClosed)return"",this.writerOptions.state=s.CloseTag,n=t.type===e.Element?this.writer.indent(t,this.writerOptions,this.currentLevel)+"</"+t.name+">"+this.writer.endline(t,this.writerOptions,this.currentLevel):this.writer.indent(t,this.writerOptions,this.currentLevel)+"]>"+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=s.None,this.onData(n,this.currentLevel),t.isClosed=!0},t.prototype.onData=function(t,e){return this.documentStarted=!0,this.onDataCallback(t,e+1)},t.prototype.onEnd=function(){return this.documentCompleted=!0,this.onEndCallback()},t.prototype.debugInfo=function(t){return null==t?"":"node: <"+t+">"},t.prototype.ele=function(){return this.element.apply(this,arguments)},t.prototype.nod=function(t,e,n){return this.node(t,e,n)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.dec=function(t,e,n){return this.declaration(t,e,n)},t.prototype.dtd=function(t,e,n){return this.doctype(t,e,n)},t.prototype.e=function(t,e,n){return this.element(t,e,n)},t.prototype.n=function(t,e,n){return this.node(t,e,n)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.att=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.a=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.ent=function(t,e){return this.entity(t,e)},t.prototype.pent=function(t,e){return this.pEntity(t,e)},t.prototype.not=function(t,e){return this.notation(t,e)},t}()}).call(this)},21218:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t){n.__super__.constructor.call(this,t),this.type=e.Dummy}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return""},n}(s)}).call(this)},33906:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,u={}.hasOwnProperty;c=n(49241),l=c.isObject,a=c.isFunction,o=c.getValue,r=n(10468),e=n(71737),s=n(54238),i=n(24797),t.exports=function(t){function n(t,s,i){var r,o,a,l;if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing element name. "+this.debugInfo());if(this.name=this.stringify.name(s),this.type=e.Element,this.attribs={},this.schemaTypeInfo=null,null!=i&&this.attribute(i),t.type===e.Document&&(this.isRoot=!0,this.documentObject=t,t.rootObject=this,t.children))for(o=0,a=(l=t.children).length;o<a;o++)if((r=l[o]).type===e.DocType){r.name=this.name;break}}return function(t,e){for(var n in e)u.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"tagName",{get:function(){return this.name}}),Object.defineProperty(n.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(n.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(n.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(n.prototype,"id",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"className",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"classList",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"attributes",{get:function(){return this.attributeMap&&this.attributeMap.nodes||(this.attributeMap=new i(this.attribs)),this.attributeMap}}),n.prototype.clone=function(){var t,e,n,s;for(e in(n=Object.create(this)).isRoot&&(n.documentObject=null),n.attribs={},s=this.attribs)u.call(s,e)&&(t=s[e],n.attribs[e]=t.clone());return n.children=[],this.children.forEach((function(t){var e;return(e=t.clone()).parent=n,n.children.push(e)})),n},n.prototype.attribute=function(t,e){var n,i;if(null!=t&&(t=o(t)),l(t))for(n in t)u.call(t,n)&&(i=t[n],this.attribute(n,i));else a(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.attribs[t]=new s(this,t,""):null!=e&&(this.attribs[t]=new s(this,t,e));return this},n.prototype.removeAttribute=function(t){var e,n,s;if(null==t)throw new Error("Missing attribute name. "+this.debugInfo());if(t=o(t),Array.isArray(t))for(n=0,s=t.length;n<s;n++)e=t[n],delete this.attribs[e];else delete this.attribs[t];return this},n.prototype.toString=function(t){return this.options.writer.element(this,this.options.writer.filterOptions(t))},n.prototype.att=function(t,e){return this.attribute(t,e)},n.prototype.a=function(t,e){return this.attribute(t,e)},n.prototype.getAttribute=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t].value:null},n.prototype.setAttribute=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNode=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t]:null},n.prototype.setAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.removeAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setAttributeNS=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.removeAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNodeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setAttributeNodeNS=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.hasAttribute=function(t){return this.attribs.hasOwnProperty(t)},n.prototype.hasAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setIdAttribute=function(t,e){return this.attribs.hasOwnProperty(t)?this.attribs[t].isId:e},n.prototype.setIdAttributeNS=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setIdAttributeNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.isEqualNode=function(t){var e,s,i;if(!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t))return!1;if(t.namespaceURI!==this.namespaceURI)return!1;if(t.prefix!==this.prefix)return!1;if(t.localName!==this.localName)return!1;if(t.attribs.length!==this.attribs.length)return!1;for(e=s=0,i=this.attribs.length-1;0<=i?s<=i:s>=i;e=0<=i?++s:--s)if(!this.attribs[e].isEqualNode(t.attribs[e]))return!1;return!0},n}(r)}).call(this)},24797:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return Object.keys(this.nodes).length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.getNamedItem=function(t){return this.nodes[t]},t.prototype.setNamedItem=function(t){var e;return e=this.nodes[t.nodeName],this.nodes[t.nodeName]=t,e||null},t.prototype.removeNamedItem=function(t){var e;return e=this.nodes[t],delete this.nodes[t],e||null},t.prototype.item=function(t){return this.nodes[Object.keys(this.nodes)[t]]||null},t.prototype.getNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t.prototype.setNamedItemNS=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.removeNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},10468:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,u,d,m,p,f,h,g,v,w,y={}.hasOwnProperty;w=n(49241),v=w.isObject,g=w.isFunction,h=w.isEmpty,f=w.getValue,c=null,i=null,r=null,o=null,a=null,m=null,p=null,d=null,l=null,s=null,u=null,e=null,t.exports=function(){function t(t){this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),this.value=null,this.children=[],this.baseURI=null,c||(c=n(33906),i=n(92691),r=n(32679),o=n(34130),a=n(96376),m=n(1268),p=n(82535),d=n(85915),l=n(21218),s=n(71737),u=n(16684),n(24797),e=n(34923))}return Object.defineProperty(t.prototype,"nodeName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"nodeValue",{get:function(){return this.value}}),Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.childNodeList&&this.childNodeList.nodes||(this.childNodeList=new u(this.children)),this.childNodeList}}),Object.defineProperty(t.prototype,"firstChild",{get:function(){return this.children[0]||null}}),Object.defineProperty(t.prototype,"lastChild",{get:function(){return this.children[this.children.length-1]||null}}),Object.defineProperty(t.prototype,"previousSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t-1]||null}}),Object.defineProperty(t.prototype,"nextSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t+1]||null}}),Object.defineProperty(t.prototype,"ownerDocument",{get:function(){return this.document()||null}}),Object.defineProperty(t.prototype,"textContent",{get:function(){var t,e,n,i,r;if(this.nodeType===s.Element||this.nodeType===s.DocumentFragment){for(r="",e=0,n=(i=this.children).length;e<n;e++)(t=i[e]).textContent&&(r+=t.textContent);return r}return null},set:function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),t.prototype.setParent=function(t){var e,n,s,i,r;for(this.parent=t,t&&(this.options=t.options,this.stringify=t.stringify),r=[],n=0,s=(i=this.children).length;n<s;n++)e=i[n],r.push(e.setParent(this));return r},t.prototype.element=function(t,e,n){var s,i,r,o,a,l,c,u,d,m,p;if(l=null,null===e&&null==n&&(e=(d=[{},null])[0],n=d[1]),null==e&&(e={}),e=f(e),v(e)||(n=(m=[e,n])[0],e=m[1]),null!=t&&(t=f(t)),Array.isArray(t))for(r=0,c=t.length;r<c;r++)i=t[r],l=this.element(i);else if(g(t))l=this.element(t.apply());else if(v(t)){for(a in t)if(y.call(t,a))if(p=t[a],g(p)&&(p=p.apply()),!this.options.ignoreDecorators&&this.stringify.convertAttKey&&0===a.indexOf(this.stringify.convertAttKey))l=this.attribute(a.substr(this.stringify.convertAttKey.length),p);else if(!this.options.separateArrayItems&&Array.isArray(p)&&h(p))l=this.dummy();else if(v(p)&&h(p))l=this.element(a);else if(this.options.keepNullNodes||null!=p)if(!this.options.separateArrayItems&&Array.isArray(p))for(o=0,u=p.length;o<u;o++)i=p[o],(s={})[a]=i,l=this.element(s);else v(p)?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===a.indexOf(this.stringify.convertTextKey)?l=this.element(p):(l=this.element(a)).element(p):l=this.element(a,p);else l=this.dummy()}else l=this.options.keepNullNodes||null!==n?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===t.indexOf(this.stringify.convertTextKey)?this.text(n):!this.options.ignoreDecorators&&this.stringify.convertCDataKey&&0===t.indexOf(this.stringify.convertCDataKey)?this.cdata(n):!this.options.ignoreDecorators&&this.stringify.convertCommentKey&&0===t.indexOf(this.stringify.convertCommentKey)?this.comment(n):!this.options.ignoreDecorators&&this.stringify.convertRawKey&&0===t.indexOf(this.stringify.convertRawKey)?this.raw(n):!this.options.ignoreDecorators&&this.stringify.convertPIKey&&0===t.indexOf(this.stringify.convertPIKey)?this.instruction(t.substr(this.stringify.convertPIKey.length),n):this.node(t,e,n):this.dummy();if(null==l)throw new Error("Could not create any elements with: "+t+". "+this.debugInfo());return l},t.prototype.insertBefore=function(t,e,n){var s,i,r,o,a;if(null!=t?t.type:void 0)return o=e,(r=t).setParent(this),o?(i=children.indexOf(o),a=children.splice(i),children.push(r),Array.prototype.push.apply(children,a)):children.push(r),r;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return i=this.parent.children.indexOf(this),a=this.parent.children.splice(i),s=this.parent.element(t,e,n),Array.prototype.push.apply(this.parent.children,a),s},t.prototype.insertAfter=function(t,e,n){var s,i,r;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return i=this.parent.children.indexOf(this),r=this.parent.children.splice(i+1),s=this.parent.element(t,e,n),Array.prototype.push.apply(this.parent.children,r),s},t.prototype.remove=function(){var t;if(this.isRoot)throw new Error("Cannot remove the root element. "+this.debugInfo());return t=this.parent.children.indexOf(this),[].splice.apply(this.parent.children,[t,t-t+1].concat([])),this.parent},t.prototype.node=function(t,e,n){var s,i;return null!=t&&(t=f(t)),e||(e={}),e=f(e),v(e)||(n=(i=[e,n])[0],e=i[1]),s=new c(this,t,e),null!=n&&s.text(n),this.children.push(s),s},t.prototype.text=function(t){var e;return v(t)&&this.element(t),e=new p(this,t),this.children.push(e),this},t.prototype.cdata=function(t){var e;return e=new i(this,t),this.children.push(e),this},t.prototype.comment=function(t){var e;return e=new r(this,t),this.children.push(e),this},t.prototype.commentBefore=function(t){var e,n;return e=this.parent.children.indexOf(this),n=this.parent.children.splice(e),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,n),this},t.prototype.commentAfter=function(t){var e,n;return e=this.parent.children.indexOf(this),n=this.parent.children.splice(e+1),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,n),this},t.prototype.raw=function(t){var e;return e=new m(this,t),this.children.push(e),this},t.prototype.dummy=function(){return new l(this)},t.prototype.instruction=function(t,e){var n,s,i,r,o;if(null!=t&&(t=f(t)),null!=e&&(e=f(e)),Array.isArray(t))for(r=0,o=t.length;r<o;r++)n=t[r],this.instruction(n);else if(v(t))for(n in t)y.call(t,n)&&(s=t[n],this.instruction(n,s));else g(e)&&(e=e.apply()),i=new d(this,t,e),this.children.push(i);return this},t.prototype.instructionBefore=function(t,e){var n,s;return n=this.parent.children.indexOf(this),s=this.parent.children.splice(n),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,s),this},t.prototype.instructionAfter=function(t,e){var n,s;return n=this.parent.children.indexOf(this),s=this.parent.children.splice(n+1),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,s),this},t.prototype.declaration=function(t,e,n){var i,r;return i=this.document(),r=new o(i,t,e,n),0===i.children.length?i.children.unshift(r):i.children[0].type===s.Declaration?i.children[0]=r:i.children.unshift(r),i.root()||i},t.prototype.dtd=function(t,e){var n,i,r,o,l,c,u,d,m;for(n=this.document(),i=new a(n,t,e),r=o=0,c=(d=n.children).length;o<c;r=++o)if(d[r].type===s.DocType)return n.children[r]=i,i;for(r=l=0,u=(m=n.children).length;l<u;r=++l)if(m[r].isRoot)return n.children.splice(r,0,i),i;return n.children.push(i),i},t.prototype.up=function(){if(this.isRoot)throw new Error("The root node has no parent. Use doc() if you need to get the document object.");return this.parent},t.prototype.root=function(){var t;for(t=this;t;){if(t.type===s.Document)return t.rootObject;if(t.isRoot)return t;t=t.parent}},t.prototype.document=function(){var t;for(t=this;t;){if(t.type===s.Document)return t;t=t.parent}},t.prototype.end=function(t){return this.document().end(t)},t.prototype.prev=function(){var t;if((t=this.parent.children.indexOf(this))<1)throw new Error("Already at the first node. "+this.debugInfo());return this.parent.children[t-1]},t.prototype.next=function(){var t;if(-1===(t=this.parent.children.indexOf(this))||t===this.parent.children.length-1)throw new Error("Already at the last node. "+this.debugInfo());return this.parent.children[t+1]},t.prototype.importDocument=function(t){var e;return(e=t.root().clone()).parent=this,e.isRoot=!1,this.children.push(e),this},t.prototype.debugInfo=function(t){var e,n;return null!=(t=t||this.name)||(null!=(e=this.parent)?e.name:void 0)?null==t?"parent: <"+this.parent.name+">":(null!=(n=this.parent)?n.name:void 0)?"node: <"+t+">, parent: <"+this.parent.name+">":"node: <"+t+">":""},t.prototype.ele=function(t,e,n){return this.element(t,e,n)},t.prototype.nod=function(t,e,n){return this.node(t,e,n)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.doc=function(){return this.document()},t.prototype.dec=function(t,e,n){return this.declaration(t,e,n)},t.prototype.e=function(t,e,n){return this.element(t,e,n)},t.prototype.n=function(t,e,n){return this.node(t,e,n)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.u=function(){return this.up()},t.prototype.importXMLBuilder=function(t){return this.importDocument(t)},t.prototype.replaceChild=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.removeChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.appendChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.hasChildNodes=function(){return 0!==this.children.length},t.prototype.cloneNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.normalize=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isSupported=function(t,e){return!0},t.prototype.hasAttributes=function(){return 0!==this.attribs.length},t.prototype.compareDocumentPosition=function(t){var n,s;return(n=this)===t?0:this.document()!==t.document()?(s=e.Disconnected|e.ImplementationSpecific,Math.random()<.5?s|=e.Preceding:s|=e.Following,s):n.isAncestor(t)?e.Contains|e.Preceding:n.isDescendant(t)?e.Contains|e.Following:n.isPreceding(t)?e.Preceding:e.Following},t.prototype.isSameNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupPrefix=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isDefaultNamespace=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupNamespaceURI=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isEqualNode=function(t){var e,n,s;if(t.nodeType!==this.nodeType)return!1;if(t.children.length!==this.children.length)return!1;for(e=n=0,s=this.children.length-1;0<=s?n<=s:n>=s;e=0<=s?++n:--n)if(!this.children[e].isEqualNode(t.children[e]))return!1;return!0},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.setUserData=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.getUserData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.contains=function(t){return!!t&&(t===this||this.isDescendant(t))},t.prototype.isDescendant=function(t){var e,n,s,i;for(n=0,s=(i=this.children).length;n<s;n++){if(t===(e=i[n]))return!0;if(e.isDescendant(t))return!0}return!1},t.prototype.isAncestor=function(t){return t.isDescendant(this)},t.prototype.isPreceding=function(t){var e,n;return e=this.treePosition(t),n=this.treePosition(this),-1!==e&&-1!==n&&e<n},t.prototype.isFollowing=function(t){var e,n;return e=this.treePosition(t),n=this.treePosition(this),-1!==e&&-1!==n&&e>n},t.prototype.treePosition=function(t){var e,n;return n=0,e=!1,this.foreachTreeNode(this.document(),(function(s){if(n++,!e&&s===t)return e=!0})),e?n:-1},t.prototype.foreachTreeNode=function(t,e){var n,s,i,r,o;for(t||(t=this.document()),s=0,i=(r=t.children).length;s<i;s++){if(o=e(n=r[s]))return o;if(o=this.foreachTreeNode(n,e))return o}},t}()}).call(this)},16684:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return this.nodes.length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.item=function(t){return this.nodes[t]||null},t}()}).call(this)},85915:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing instruction target. "+this.debugInfo());this.type=e.ProcessingInstruction,this.target=this.stringify.insTarget(s),this.name=this.target,i&&(this.value=this.stringify.insValue(i))}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.processingInstruction(this,this.options.writer.filterOptions(t))},n.prototype.isEqualNode=function(t){return!!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.target===this.target},n}(s)}).call(this)},1268:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(10468),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing raw text. "+this.debugInfo());this.type=e.Raw,this.value=this.stringify.raw(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.raw(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},96775:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;e=n(71737),i=n(6286),s=n(88753),t.exports=function(t){function n(t,e){this.stream=t,n.__super__.constructor.call(this,e)}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.endline=function(t,e,i){return t.isLastRootNode&&e.state===s.CloseTag?"":n.__super__.endline.call(this,t,e,i)},n.prototype.document=function(t,e){var n,s,i,r,o,a,l,c,u;for(s=i=0,o=(l=t.children).length;i<o;s=++i)(n=l[s]).isLastRootNode=s===t.children.length-1;for(e=this.filterOptions(e),u=[],r=0,a=(c=t.children).length;r<a;r++)n=c[r],u.push(this.writeChildNode(n,e,0));return u},n.prototype.attribute=function(t,e,s){return this.stream.write(n.__super__.attribute.call(this,t,e,s))},n.prototype.cdata=function(t,e,s){return this.stream.write(n.__super__.cdata.call(this,t,e,s))},n.prototype.comment=function(t,e,s){return this.stream.write(n.__super__.comment.call(this,t,e,s))},n.prototype.declaration=function(t,e,s){return this.stream.write(n.__super__.declaration.call(this,t,e,s))},n.prototype.docType=function(t,e,n){var i,r,o,a;if(n||(n=0),this.openNode(t,e,n),e.state=s.OpenTag,this.stream.write(this.indent(t,e,n)),this.stream.write("<!DOCTYPE "+t.root().name),t.pubID&&t.sysID?this.stream.write(' PUBLIC "'+t.pubID+'" "'+t.sysID+'"'):t.sysID&&this.stream.write(' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(this.stream.write(" ["),this.stream.write(this.endline(t,e,n)),e.state=s.InsideTag,r=0,o=(a=t.children).length;r<o;r++)i=a[r],this.writeChildNode(i,e,n+1);e.state=s.CloseTag,this.stream.write("]")}return e.state=s.CloseTag,this.stream.write(e.spaceBeforeSlash+">"),this.stream.write(this.endline(t,e,n)),e.state=s.None,this.closeNode(t,e,n)},n.prototype.element=function(t,n,i){var o,a,l,c,u,d,m,p,f;for(m in i||(i=0),this.openNode(t,n,i),n.state=s.OpenTag,this.stream.write(this.indent(t,n,i)+"<"+t.name),p=t.attribs)r.call(p,m)&&(o=p[m],this.attribute(o,n,i));if(c=0===(l=t.children.length)?null:t.children[0],0===l||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))n.allowEmpty?(this.stream.write(">"),n.state=s.CloseTag,this.stream.write("</"+t.name+">")):(n.state=s.CloseTag,this.stream.write(n.spaceBeforeSlash+"/>"));else if(!n.pretty||1!==l||c.type!==e.Text&&c.type!==e.Raw||null==c.value){for(this.stream.write(">"+this.endline(t,n,i)),n.state=s.InsideTag,u=0,d=(f=t.children).length;u<d;u++)a=f[u],this.writeChildNode(a,n,i+1);n.state=s.CloseTag,this.stream.write(this.indent(t,n,i)+"</"+t.name+">")}else this.stream.write(">"),n.state=s.InsideTag,n.suppressPrettyCount++,this.writeChildNode(c,n,i+1),n.suppressPrettyCount--,n.state=s.CloseTag,this.stream.write("</"+t.name+">");return this.stream.write(this.endline(t,n,i)),n.state=s.None,this.closeNode(t,n,i)},n.prototype.processingInstruction=function(t,e,s){return this.stream.write(n.__super__.processingInstruction.call(this,t,e,s))},n.prototype.raw=function(t,e,s){return this.stream.write(n.__super__.raw.call(this,t,e,s))},n.prototype.text=function(t,e,s){return this.stream.write(n.__super__.text.call(this,t,e,s))},n.prototype.dtdAttList=function(t,e,s){return this.stream.write(n.__super__.dtdAttList.call(this,t,e,s))},n.prototype.dtdElement=function(t,e,s){return this.stream.write(n.__super__.dtdElement.call(this,t,e,s))},n.prototype.dtdEntity=function(t,e,s){return this.stream.write(n.__super__.dtdEntity.call(this,t,e,s))},n.prototype.dtdNotation=function(t,e,s){return this.stream.write(n.__super__.dtdNotation.call(this,t,e,s))},n}(i)}).call(this)},40382:function(t,e,n){(function(){var e,s={}.hasOwnProperty;e=n(6286),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t)}return function(t,e){for(var n in e)s.call(e,n)&&(t[n]=e[n]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,t),e.prototype.document=function(t,e){var n,s,i,r,o;for(e=this.filterOptions(e),r="",s=0,i=(o=t.children).length;s<i;s++)n=o[s],r+=this.writeChildNode(n,e,0);return e.pretty&&r.slice(-e.newline.length)===e.newline&&(r=r.slice(0,-e.newline.length)),r},e}(e)}).call(this)},43976:function(t){(function(){var e=function(t,e){return function(){return t.apply(e,arguments)}},n={}.hasOwnProperty;t.exports=function(){function t(t){var s,i,r;for(s in this.assertLegalName=e(this.assertLegalName,this),this.assertLegalChar=e(this.assertLegalChar,this),t||(t={}),this.options=t,this.options.version||(this.options.version="1.0"),i=t.stringify||{})n.call(i,s)&&(r=i[s],this[s]=r)}return t.prototype.name=function(t){return this.options.noValidation?t:this.assertLegalName(""+t||"")},t.prototype.text=function(t){return this.options.noValidation?t:this.assertLegalChar(this.textEscape(""+t||""))},t.prototype.cdata=function(t){return this.options.noValidation?t:(t=(t=""+t||"").replace("]]>","]]]]><![CDATA[>"),this.assertLegalChar(t))},t.prototype.comment=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/--/))throw new Error("Comment text cannot contain double-hypen: "+t);return this.assertLegalChar(t)},t.prototype.raw=function(t){return this.options.noValidation?t:""+t||""},t.prototype.attValue=function(t){return this.options.noValidation?t:this.assertLegalChar(this.attEscape(t=""+t||""))},t.prototype.insTarget=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.insValue=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/\?>/))throw new Error("Invalid processing instruction value: "+t);return this.assertLegalChar(t)},t.prototype.xmlVersion=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/1\.[0-9]+/))throw new Error("Invalid version number: "+t);return t},t.prototype.xmlEncoding=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/^[A-Za-z](?:[A-Za-z0-9._-])*$/))throw new Error("Invalid encoding: "+t);return this.assertLegalChar(t)},t.prototype.xmlStandalone=function(t){return this.options.noValidation?t:t?"yes":"no"},t.prototype.dtdPubID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdSysID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdElementValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttType=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttDefault=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdEntityValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdNData=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.convertAttKey="@",t.prototype.convertPIKey="?",t.prototype.convertTextKey="#text",t.prototype.convertCDataKey="#cdata",t.prototype.convertCommentKey="#comment",t.prototype.convertRawKey="#raw",t.prototype.assertLegalChar=function(t){var e,n;if(this.options.noValidation)return t;if(e="","1.0"===this.options.version){if(e=/[\0-\x08\x0B\f\x0E-\x1F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,n=t.match(e))throw new Error("Invalid character in string: "+t+" at index "+n.index)}else if("1.1"===this.options.version&&(e=/[\0\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,n=t.match(e)))throw new Error("Invalid character in string: "+t+" at index "+n.index);return t},t.prototype.assertLegalName=function(t){var e;if(this.options.noValidation)return t;if(this.assertLegalChar(t),e=/^([:A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])([\x2D\.0-:A-Z_a-z\xB7\xC0-\xD6\xD8-\xF6\xF8-\u037D\u037F-\u1FFF\u200C\u200D\u203F\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])*$/,!t.match(e))throw new Error("Invalid character in name");return t},t.prototype.textEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/\r/g,"&#xD;"))},t.prototype.attEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/"/g,"&quot;").replace(/\t/g,"&#x9;").replace(/\n/g,"&#xA;").replace(/\r/g,"&#xD;"))},t}()}).call(this)},82535:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing element text. "+this.debugInfo());this.name="#text",this.type=e.Text,this.value=this.stringify.text(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"isElementContentWhitespace",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"wholeText",{get:function(){var t,e,n;for(n="",e=this.previousSibling;e;)n=e.data+n,e=e.previousSibling;for(n+=this.data,t=this.nextSibling;t;)n+=t.data,t=t.nextSibling;return n}}),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.text(this,this.options.writer.filterOptions(t))},n.prototype.splitText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.replaceWholeText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n}(s)}).call(this)},6286:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).assign,e=n(71737),n(34130),n(96376),n(92691),n(32679),n(33906),n(1268),n(82535),n(85915),n(21218),n(34111),n(67696),n(5529),n(28012),s=n(88753),t.exports=function(){function t(t){var e,n,s;for(e in t||(t={}),this.options=t,n=t.writer||{})r.call(n,e)&&(s=n[e],this["_"+e]=this[e],this[e]=s)}return t.prototype.filterOptions=function(t){var e,n,r,o,a,l,c,u;return t||(t={}),t=i({},this.options,t),(e={writer:this}).pretty=t.pretty||!1,e.allowEmpty=t.allowEmpty||!1,e.indent=null!=(n=t.indent)?n:"  ",e.newline=null!=(r=t.newline)?r:"\n",e.offset=null!=(o=t.offset)?o:0,e.dontPrettyTextNodes=null!=(a=null!=(l=t.dontPrettyTextNodes)?l:t.dontprettytextnodes)?a:0,e.spaceBeforeSlash=null!=(c=null!=(u=t.spaceBeforeSlash)?u:t.spacebeforeslash)?c:"",!0===e.spaceBeforeSlash&&(e.spaceBeforeSlash=" "),e.suppressPrettyCount=0,e.user={},e.state=s.None,e},t.prototype.indent=function(t,e,n){var s;return!e.pretty||e.suppressPrettyCount?"":e.pretty&&(s=(n||0)+e.offset+1)>0?new Array(s).join(e.indent):""},t.prototype.endline=function(t,e,n){return!e.pretty||e.suppressPrettyCount?"":e.newline},t.prototype.attribute=function(t,e,n){var s;return this.openAttribute(t,e,n),s=" "+t.name+'="'+t.value+'"',this.closeAttribute(t,e,n),s},t.prototype.cdata=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<![CDATA[",e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+="]]>"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.comment=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"\x3c!-- ",e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=" --\x3e"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.declaration=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<?xml",e.state=s.InsideTag,i+=' version="'+t.version+'"',null!=t.encoding&&(i+=' encoding="'+t.encoding+'"'),null!=t.standalone&&(i+=' standalone="'+t.standalone+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+"?>",i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.docType=function(t,e,n){var i,r,o,a,l;if(n||(n=0),this.openNode(t,e,n),e.state=s.OpenTag,a=this.indent(t,e,n),a+="<!DOCTYPE "+t.root().name,t.pubID&&t.sysID?a+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(a+=' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(a+=" [",a+=this.endline(t,e,n),e.state=s.InsideTag,r=0,o=(l=t.children).length;r<o;r++)i=l[r],a+=this.writeChildNode(i,e,n+1);e.state=s.CloseTag,a+="]"}return e.state=s.CloseTag,a+=e.spaceBeforeSlash+">",a+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),a},t.prototype.element=function(t,n,i){var o,a,l,c,u,d,m,p,f,h,g,v,w,y;for(f in i||(i=0),h=!1,g="",this.openNode(t,n,i),n.state=s.OpenTag,g+=this.indent(t,n,i)+"<"+t.name,v=t.attribs)r.call(v,f)&&(o=v[f],g+=this.attribute(o,n,i));if(c=0===(l=t.children.length)?null:t.children[0],0===l||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))n.allowEmpty?(g+=">",n.state=s.CloseTag,g+="</"+t.name+">"+this.endline(t,n,i)):(n.state=s.CloseTag,g+=n.spaceBeforeSlash+"/>"+this.endline(t,n,i));else if(!n.pretty||1!==l||c.type!==e.Text&&c.type!==e.Raw||null==c.value){if(n.dontPrettyTextNodes)for(u=0,m=(w=t.children).length;u<m;u++)if(((a=w[u]).type===e.Text||a.type===e.Raw)&&null!=a.value){n.suppressPrettyCount++,h=!0;break}for(g+=">"+this.endline(t,n,i),n.state=s.InsideTag,d=0,p=(y=t.children).length;d<p;d++)a=y[d],g+=this.writeChildNode(a,n,i+1);n.state=s.CloseTag,g+=this.indent(t,n,i)+"</"+t.name+">",h&&n.suppressPrettyCount--,g+=this.endline(t,n,i),n.state=s.None}else g+=">",n.state=s.InsideTag,n.suppressPrettyCount++,h=!0,g+=this.writeChildNode(c,n,i+1),n.suppressPrettyCount--,h=!1,n.state=s.CloseTag,g+="</"+t.name+">"+this.endline(t,n,i);return this.closeNode(t,n,i),g},t.prototype.writeChildNode=function(t,n,s){switch(t.type){case e.CData:return this.cdata(t,n,s);case e.Comment:return this.comment(t,n,s);case e.Element:return this.element(t,n,s);case e.Raw:return this.raw(t,n,s);case e.Text:return this.text(t,n,s);case e.ProcessingInstruction:return this.processingInstruction(t,n,s);case e.Dummy:return"";case e.Declaration:return this.declaration(t,n,s);case e.DocType:return this.docType(t,n,s);case e.AttributeDeclaration:return this.dtdAttList(t,n,s);case e.ElementDeclaration:return this.dtdElement(t,n,s);case e.EntityDeclaration:return this.dtdEntity(t,n,s);case e.NotationDeclaration:return this.dtdNotation(t,n,s);default:throw new Error("Unknown XML node type: "+t.constructor.name)}},t.prototype.processingInstruction=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<?",e.state=s.InsideTag,i+=t.target,t.value&&(i+=" "+t.value),e.state=s.CloseTag,i+=e.spaceBeforeSlash+"?>",i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.raw=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n),e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.text=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n),e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdAttList=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ATTLIST",e.state=s.InsideTag,i+=" "+t.elementName+" "+t.attributeName+" "+t.attributeType,"#DEFAULT"!==t.defaultValueType&&(i+=" "+t.defaultValueType),t.defaultValue&&(i+=' "'+t.defaultValue+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdElement=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ELEMENT",e.state=s.InsideTag,i+=" "+t.name+" "+t.value,e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdEntity=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ENTITY",e.state=s.InsideTag,t.pe&&(i+=" %"),i+=" "+t.name,t.value?i+=' "'+t.value+'"':(t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),t.nData&&(i+=" NDATA "+t.nData)),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdNotation=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!NOTATION",e.state=s.InsideTag,i+=" "+t.name,t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.pubID?i+=' PUBLIC "'+t.pubID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.openNode=function(t,e,n){},t.prototype.closeNode=function(t,e,n){},t.prototype.openAttribute=function(t,e,n){},t.prototype.closeAttribute=function(t,e,n){},t}()}).call(this)},59665:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,u,d;d=n(49241),c=d.assign,u=d.isFunction,i=n(67260),r=n(71933),o=n(80400),l=n(40382),a=n(96775),e=n(71737),s=n(88753),t.exports.create=function(t,e,n,s){var i,o;if(null==t)throw new Error("Root element needs a name.");return s=c({},e,n,s),o=(i=new r(s)).element(t),s.headless||(i.declaration(s),null==s.pubID&&null==s.sysID||i.dtd(s)),o},t.exports.begin=function(t,e,n){var s;return u(t)&&(e=(s=[t,e])[0],n=s[1],t={}),e?new o(t,e,n):new r(t)},t.exports.stringWriter=function(t){return new l(t)},t.exports.streamWriter=function(t,e){return new a(t,e)},t.exports.implementation=new i,t.exports.nodeType=e,t.exports.writerState=s}).call(this)},63710:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27%20style=%27fill-opacity:1;fill:%23ffffff%27/%3e%3c/svg%3e"},57273:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27/%3e%3c/svg%3e"},15340:()=>{},79838:()=>{},35810:(t,e,n)=>{"use strict";n.d(e,{Al:()=>B,By:()=>v,H4:()=>O,PY:()=>D,Q$:()=>U,R3:()=>x,Ss:()=>oe,VL:()=>C,ZH:()=>F,aX:()=>w,bP:()=>N,bh:()=>V,hY:()=>h,lJ:()=>I,m1:()=>le,m9:()=>f,pt:()=>S,qK:()=>g,v7:()=>M,vb:()=>T,vd:()=>P,zI:()=>L});var s=n(21777),i=n(84697),r=n(43627),o=n(71089),a=n(63814),l=n(44719),c=n(36117),u=n(2568);const d=null===(m=(0,s.HW)())?(0,i.YK)().setApp("files").build():(0,i.YK)().setApp("files").setUid(m.uid).build();var m;class p{_entries=[];registerEntry(t){this.validateEntry(t),t.category=t.category??1,this._entries.push(t)}unregisterEntry(t){const e="string"==typeof t?this.getEntryIndex(t):this.getEntryIndex(t.id);-1!==e?this._entries.splice(e,1):d.warn("Entry not found, nothing removed",{entry:t,entries:this.getEntries()})}getEntries(t){return t?this._entries.filter((e=>"function"!=typeof e.enabled||e.enabled(t))):this._entries}getEntryIndex(t){return this._entries.findIndex((e=>e.id===t))}validateEntry(t){if(!t.id||!t.displayName||!t.iconSvgInline&&!t.iconClass||!t.handler)throw new Error("Invalid entry");if("string"!=typeof t.id||"string"!=typeof t.displayName)throw new Error("Invalid id or displayName property");if(t.iconClass&&"string"!=typeof t.iconClass||t.iconSvgInline&&"string"!=typeof t.iconSvgInline)throw new Error("Invalid icon provided");if(void 0!==t.enabled&&"function"!=typeof t.enabled)throw new Error("Invalid enabled property");if("function"!=typeof t.handler)throw new Error("Invalid handler property");if("order"in t&&"number"!=typeof t.order)throw new Error("Invalid order property");if(-1!==this.getEntryIndex(t.id))throw new Error("Duplicate entry")}}var f=(t=>(t.DEFAULT="default",t.HIDDEN="hidden",t))(f||{});class h{_action;constructor(t){this.validateAction(t),this._action=t}get id(){return this._action.id}get displayName(){return this._action.displayName}get title(){return this._action.title}get iconSvgInline(){return this._action.iconSvgInline}get enabled(){return this._action.enabled}get exec(){return this._action.exec}get execBatch(){return this._action.execBatch}get order(){return this._action.order}get parent(){return this._action.parent}get default(){return this._action.default}get inline(){return this._action.inline}get renderInline(){return this._action.renderInline}validateAction(t){if(!t.id||"string"!=typeof t.id)throw new Error("Invalid id");if(!t.displayName||"function"!=typeof t.displayName)throw new Error("Invalid displayName function");if("title"in t&&"function"!=typeof t.title)throw new Error("Invalid title function");if(!t.iconSvgInline||"function"!=typeof t.iconSvgInline)throw new Error("Invalid iconSvgInline function");if(!t.exec||"function"!=typeof t.exec)throw new Error("Invalid exec function");if("enabled"in t&&"function"!=typeof t.enabled)throw new Error("Invalid enabled function");if("execBatch"in t&&"function"!=typeof t.execBatch)throw new Error("Invalid execBatch function");if("order"in t&&"number"!=typeof t.order)throw new Error("Invalid order");if("parent"in t&&"string"!=typeof t.parent)throw new Error("Invalid parent");if(t.default&&!Object.values(f).includes(t.default))throw new Error("Invalid default");if("inline"in t&&"function"!=typeof t.inline)throw new Error("Invalid inline function");if("renderInline"in t&&"function"!=typeof t.renderInline)throw new Error("Invalid renderInline function")}}const g=function(){return void 0===window._nc_fileactions&&(window._nc_fileactions=[],d.debug("FileActions initialized")),window._nc_fileactions},v=function(){return void 0===window._nc_filelistheader&&(window._nc_filelistheader=[],d.debug("FileListHeaders initialized")),window._nc_filelistheader};var w=(t=>(t[t.NONE=0]="NONE",t[t.CREATE=4]="CREATE",t[t.READ=1]="READ",t[t.UPDATE=2]="UPDATE",t[t.DELETE=8]="DELETE",t[t.SHARE=16]="SHARE",t[t.ALL=31]="ALL",t))(w||{});const y=["d:getcontentlength","d:getcontenttype","d:getetag","d:getlastmodified","d:quota-available-bytes","d:resourcetype","nc:has-preview","nc:is-encrypted","nc:mount-type","oc:comments-unread","oc:favorite","oc:fileid","oc:owner-display-name","oc:owner-id","oc:permissions","oc:size"],A={d:"DAV:",nc:"http://nextcloud.org/ns",oc:"http://owncloud.org/ns",ocs:"http://open-collaboration-services.org/ns"},b=function(){return void 0===window._nc_dav_properties&&(window._nc_dav_properties=[...y]),window._nc_dav_properties.map((t=>`<${t} />`)).join(" ")},_=function(){return void 0===window._nc_dav_namespaces&&(window._nc_dav_namespaces={...A}),Object.keys(window._nc_dav_namespaces).map((t=>`xmlns:${t}="${window._nc_dav_namespaces?.[t]}"`)).join(" ")},C=function(){return`<?xml version="1.0"?>\n\t\t<d:propfind ${_()}>\n\t\t\t<d:prop>\n\t\t\t\t${b()}\n\t\t\t</d:prop>\n\t\t</d:propfind>`},x=function(t){return`<?xml version="1.0" encoding="UTF-8"?>\n<d:searchrequest ${_()}\n\txmlns:ns="https://github.com/icewind1991/SearchDAV/ns">\n\t<d:basicsearch>\n\t\t<d:select>\n\t\t\t<d:prop>\n\t\t\t\t${b()}\n\t\t\t</d:prop>\n\t\t</d:select>\n\t\t<d:from>\n\t\t\t<d:scope>\n\t\t\t\t<d:href>/files/${(0,s.HW)()?.uid}/</d:href>\n\t\t\t\t<d:depth>infinity</d:depth>\n\t\t\t</d:scope>\n\t\t</d:from>\n\t\t<d:where>\n\t\t\t<d:and>\n\t\t\t\t<d:or>\n\t\t\t\t\t<d:not>\n\t\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t\t<d:getcontenttype/>\n\t\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t\t<d:literal>httpd/unix-directory</d:literal>\n\t\t\t\t\t\t</d:eq>\n\t\t\t\t\t</d:not>\n\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t<oc:size/>\n\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t<d:literal>0</d:literal>\n\t\t\t\t\t</d:eq>\n\t\t\t\t</d:or>\n\t\t\t\t<d:gt>\n\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t\t</d:prop>\n\t\t\t\t\t<d:literal>${t}</d:literal>\n\t\t\t\t</d:gt>\n\t\t\t</d:and>\n\t\t</d:where>\n\t\t<d:orderby>\n\t\t\t<d:order>\n\t\t\t\t<d:prop>\n\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t</d:prop>\n\t\t\t\t<d:descending/>\n\t\t\t</d:order>\n\t\t</d:orderby>\n\t\t<d:limit>\n\t\t\t<d:nresults>100</d:nresults>\n\t\t\t<ns:firstresult>0</ns:firstresult>\n\t\t</d:limit>\n\t</d:basicsearch>\n</d:searchrequest>`},T=function(t=""){let e=w.NONE;return t?((t.includes("C")||t.includes("K"))&&(e|=w.CREATE),t.includes("G")&&(e|=w.READ),(t.includes("W")||t.includes("N")||t.includes("V"))&&(e|=w.UPDATE),t.includes("D")&&(e|=w.DELETE),t.includes("R")&&(e|=w.SHARE),e):e};var S=(t=>(t.Folder="folder",t.File="file",t))(S||{});const k=function(t,e){return null!==t.match(e)},E=(t,e)=>{if(t.id&&"number"!=typeof t.id)throw new Error("Invalid id type of value");if(!t.source)throw new Error("Missing mandatory source");try{new URL(t.source)}catch(t){throw new Error("Invalid source format, source must be a valid URL")}if(!t.source.startsWith("http"))throw new Error("Invalid source format, only http(s) is supported");if(t.mtime&&!(t.mtime instanceof Date))throw new Error("Invalid mtime type");if(t.crtime&&!(t.crtime instanceof Date))throw new Error("Invalid crtime type");if(!t.mime||"string"!=typeof t.mime||!t.mime.match(/^[-\w.]+\/[-+\w.]+$/gi))throw new Error("Missing or invalid mandatory mime");if("size"in t&&"number"!=typeof t.size&&void 0!==t.size)throw new Error("Invalid size type");if("permissions"in t&&void 0!==t.permissions&&!("number"==typeof t.permissions&&t.permissions>=w.NONE&&t.permissions<=w.ALL))throw new Error("Invalid permissions");if(t.owner&&null!==t.owner&&"string"!=typeof t.owner)throw new Error("Invalid owner type");if(t.attributes&&"object"!=typeof t.attributes)throw new Error("Invalid attributes type");if(t.root&&"string"!=typeof t.root)throw new Error("Invalid root type");if(t.root&&!t.root.startsWith("/"))throw new Error("Root must start with a leading slash");if(t.root&&!t.source.includes(t.root))throw new Error("Root must be part of the source");if(t.root&&k(t.source,e)){const n=t.source.match(e)[0];if(!t.source.includes((0,r.join)(n,t.root)))throw new Error("The root must be relative to the service. e.g /files/emma")}if(t.status&&!Object.values(L).includes(t.status))throw new Error("Status must be a valid NodeStatus")};var L=(t=>(t.NEW="new",t.FAILED="failed",t.LOADING="loading",t.LOCKED="locked",t))(L||{});class N{_data;_attributes;_knownDavService=/(remote|public)\.php\/(web)?dav/i;readonlyAttributes=Object.entries(Object.getOwnPropertyDescriptors(N.prototype)).filter((t=>"function"==typeof t[1].get&&"__proto__"!==t[0])).map((t=>t[0]));handler={set:(t,e,n)=>!this.readonlyAttributes.includes(e)&&Reflect.set(t,e,n),deleteProperty:(t,e)=>!this.readonlyAttributes.includes(e)&&Reflect.deleteProperty(t,e),get:(t,e,n)=>this.readonlyAttributes.includes(e)?(d.warn(`Accessing "Node.attributes.${e}" is deprecated, access it directly on the Node instance.`),Reflect.get(this,e)):Reflect.get(t,e,n)};constructor(t,e){E(t,e||this._knownDavService),this._data={...t,attributes:{}},this._attributes=new Proxy(this._data.attributes,this.handler),this.update(t.attributes??{}),e&&(this._knownDavService=e)}get source(){return this._data.source.replace(/\/$/i,"")}get encodedSource(){const{origin:t}=new URL(this.source);return t+(0,o.O0)(this.source.slice(t.length))}get basename(){return(0,r.basename)(this.source)}get extension(){return(0,r.extname)(this.source)}get dirname(){if(this.root){let t=this.source;this.isDavRessource&&(t=t.split(this._knownDavService).pop());const e=t.indexOf(this.root),n=this.root.replace(/\/$/,"");return(0,r.dirname)(t.slice(e+n.length)||"/")}const t=new URL(this.source);return(0,r.dirname)(t.pathname)}get mime(){return this._data.mime}get mtime(){return this._data.mtime}set mtime(t){this._data.mtime=t}get crtime(){return this._data.crtime}get size(){return this._data.size}set size(t){this.updateMtime(),this._data.size=t}get attributes(){return this._attributes}get permissions(){return null!==this.owner||this.isDavRessource?void 0!==this._data.permissions?this._data.permissions:w.NONE:w.READ}set permissions(t){this.updateMtime(),this._data.permissions=t}get owner(){return this.isDavRessource?this._data.owner:null}get isDavRessource(){return k(this.source,this._knownDavService)}get root(){return this._data.root?this._data.root.replace(/^(.+)\/$/,"$1"):this.isDavRessource&&(0,r.dirname)(this.source).split(this._knownDavService).pop()||null}get path(){if(this.root){let t=this.source;this.isDavRessource&&(t=t.split(this._knownDavService).pop());const e=t.indexOf(this.root),n=this.root.replace(/\/$/,"");return t.slice(e+n.length)||"/"}return(this.dirname+"/"+this.basename).replace(/\/\//g,"/")}get fileid(){return this._data?.id}get status(){return this._data?.status}set status(t){this._data.status=t}move(t){E({...this._data,source:t},this._knownDavService),this._data.source=t,this.updateMtime()}rename(t){if(t.includes("/"))throw new Error("Invalid basename");this.move((0,r.dirname)(this.source)+"/"+t)}updateMtime(){this._data.mtime&&(this._data.mtime=new Date)}update(t){for(const[e,n]of Object.entries(t))try{void 0===n?delete this.attributes[e]:this.attributes[e]=n}catch(t){if(t instanceof TypeError)continue;throw t}}}class F extends N{get type(){return S.File}}class P extends N{constructor(t){super({...t,mime:"httpd/unix-directory"})}get type(){return S.Folder}get extension(){return null}get mime(){return"httpd/unix-directory"}}const I=`/files/${(0,s.HW)()?.uid}`,D=(0,a.dC)("dav"),O=function(t=D,e={}){const n=(0,l.UU)(t,{headers:e});function i(t){n.setHeaders({...e,"X-Requested-With":"XMLHttpRequest",requesttoken:t??""})}return(0,s.zo)(i),i((0,s.do)()),(0,l.Gu)().patch("fetch",((t,e)=>{const n=e.headers;return n?.method&&(e.method=n.method,delete n.method),fetch(t,e)})),n},U=(t,e="/",n=I)=>{const s=new AbortController;return new c.CancelablePromise((async(i,r,o)=>{o((()=>s.abort()));try{i((await t.getDirectoryContents(`${n}${e}`,{signal:s.signal,details:!0,data:`<?xml version="1.0"?>\n\t\t<oc:filter-files ${_()}>\n\t\t\t<d:prop>\n\t\t\t\t${b()}\n\t\t\t</d:prop>\n\t\t\t<oc:filter-rules>\n\t\t\t\t<oc:favorite>1</oc:favorite>\n\t\t\t</oc:filter-rules>\n\t\t</oc:filter-files>`,headers:{method:"REPORT"},includeSelf:!0})).data.filter((t=>t.filename!==e)).map((t=>B(t,n))))}catch(t){r(t)}}))},B=function(t,e=I,n=D){let i=(0,s.HW)()?.uid;const r=document.querySelector("input#isPublic")?.value;if(r)i=i??document.querySelector("input#sharingUserId")?.value,i=i??"anonymous";else if(!i)throw new Error("No user id found");const o=t.props,a=T(o?.permissions),l=String(o?.["owner-id"]||i),c={id:o?.fileid||0,source:`${n}${t.filename}`,mtime:new Date(Date.parse(t.lastmod)),mime:t.mime||"application/octet-stream",size:o?.size||Number.parseInt(o.getcontentlength||"0"),permissions:a,owner:l,root:e,attributes:{...t,...o,hasPreview:o?.["has-preview"]}};return delete c.attributes?.props,"file"===t.type?new F(c):new P(c)};window._oc_config,window._oc_config?.blacklist_files_regex&&new RegExp(window._oc_config.blacklist_files_regex);const R=["B","KB","MB","GB","TB","PB"],j=["B","KiB","MiB","GiB","TiB","PiB"];function M(t,e=!1,n=!1,s=!1){n=n&&!s,"string"==typeof t&&(t=Number(t));let i=t>0?Math.floor(Math.log(t)/Math.log(s?1e3:1024)):0;i=Math.min((n?j.length:R.length)-1,i);const r=n?j[i]:R[i];let o=(t/Math.pow(s?1e3:1024,i)).toFixed(1);return!0===e&&0===i?("0.0"!==o?"< 1 ":"0 ")+(n?j[1]:R[1]):(o=i<2?parseFloat(o).toFixed(0):parseFloat(o).toLocaleString((0,u.lO)()),o+" "+r)}class z{_views=[];_currentView=null;register(t){if(this._views.find((e=>e.id===t.id)))throw new Error(`View id ${t.id} is already registered`);this._views.push(t)}remove(t){const e=this._views.findIndex((e=>e.id===t));-1!==e&&this._views.splice(e,1)}get views(){return this._views}setActive(t){this._currentView=t}get active(){return this._currentView}}const V=function(){return void 0===window._nc_navigation&&(window._nc_navigation=new z,d.debug("Navigation service initialized")),window._nc_navigation};class q{_column;constructor(t){$(t),this._column=t}get id(){return this._column.id}get title(){return this._column.title}get render(){return this._column.render}get sort(){return this._column.sort}get summary(){return this._column.summary}}const $=function(t){if(!t.id||"string"!=typeof t.id)throw new Error("A column id is required");if(!t.title||"string"!=typeof t.title)throw new Error("A column title is required");if(!t.render||"function"!=typeof t.render)throw new Error("A render function is required");if(t.sort&&"function"!=typeof t.sort)throw new Error("Column sortFunction must be a function");if(t.summary&&"function"!=typeof t.summary)throw new Error("Column summary must be a function");return!0};var H={},W={};!function(t){const e=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",n="["+e+"]["+e+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*",s=new RegExp("^"+n+"$");t.isExist=function(t){return void 0!==t},t.isEmptyObject=function(t){return 0===Object.keys(t).length},t.merge=function(t,e,n){if(e){const s=Object.keys(e),i=s.length;for(let r=0;r<i;r++)t[s[r]]="strict"===n?[e[s[r]]]:e[s[r]]}},t.getValue=function(e){return t.isExist(e)?e:""},t.isName=function(t){return!(null==s.exec(t))},t.getAllMatches=function(t,e){const n=[];let s=e.exec(t);for(;s;){const i=[];i.startIndex=e.lastIndex-s[0].length;const r=s.length;for(let t=0;t<r;t++)i.push(s[t]);n.push(i),s=e.exec(t)}return n},t.nameRegexp=n}(W);const G=W,Y={allowBooleanAttributes:!1,unpairedTags:[]};function K(t){return" "===t||"\t"===t||"\n"===t||"\r"===t}function Q(t,e){const n=e;for(;e<t.length;e++)if("?"!=t[e]&&" "!=t[e]);else{const s=t.substr(n,e-n);if(e>5&&"xml"===s)return it("InvalidXml","XML declaration allowed only at the start of the document.",ot(t,e));if("?"==t[e]&&">"==t[e+1]){e++;break}}return e}function X(t,e){if(t.length>e+5&&"-"===t[e+1]&&"-"===t[e+2]){for(e+=3;e<t.length;e++)if("-"===t[e]&&"-"===t[e+1]&&">"===t[e+2]){e+=2;break}}else if(t.length>e+8&&"D"===t[e+1]&&"O"===t[e+2]&&"C"===t[e+3]&&"T"===t[e+4]&&"Y"===t[e+5]&&"P"===t[e+6]&&"E"===t[e+7]){let n=1;for(e+=8;e<t.length;e++)if("<"===t[e])n++;else if(">"===t[e]&&(n--,0===n))break}else if(t.length>e+9&&"["===t[e+1]&&"C"===t[e+2]&&"D"===t[e+3]&&"A"===t[e+4]&&"T"===t[e+5]&&"A"===t[e+6]&&"["===t[e+7])for(e+=8;e<t.length;e++)if("]"===t[e]&&"]"===t[e+1]&&">"===t[e+2]){e+=2;break}return e}H.validate=function(t,e){e=Object.assign({},Y,e);const n=[];let s=!1,i=!1;"\ufeff"===t[0]&&(t=t.substr(1));for(let o=0;o<t.length;o++)if("<"===t[o]&&"?"===t[o+1]){if(o+=2,o=Q(t,o),o.err)return o}else{if("<"!==t[o]){if(K(t[o]))continue;return it("InvalidChar","char '"+t[o]+"' is not expected.",ot(t,o))}{let a=o;if(o++,"!"===t[o]){o=X(t,o);continue}{let l=!1;"/"===t[o]&&(l=!0,o++);let c="";for(;o<t.length&&">"!==t[o]&&" "!==t[o]&&"\t"!==t[o]&&"\n"!==t[o]&&"\r"!==t[o];o++)c+=t[o];if(c=c.trim(),"/"===c[c.length-1]&&(c=c.substring(0,c.length-1),o--),r=c,!G.isName(r)){let e;return e=0===c.trim().length?"Invalid space after '<'.":"Tag '"+c+"' is an invalid name.",it("InvalidTag",e,ot(t,o))}const u=tt(t,o);if(!1===u)return it("InvalidAttr","Attributes for '"+c+"' have open quote.",ot(t,o));let d=u.value;if(o=u.index,"/"===d[d.length-1]){const n=o-d.length;d=d.substring(0,d.length-1);const i=nt(d,e);if(!0!==i)return it(i.err.code,i.err.msg,ot(t,n+i.err.line));s=!0}else if(l){if(!u.tagClosed)return it("InvalidTag","Closing tag '"+c+"' doesn't have proper closing.",ot(t,o));if(d.trim().length>0)return it("InvalidTag","Closing tag '"+c+"' can't have attributes or invalid starting.",ot(t,a));if(0===n.length)return it("InvalidTag","Closing tag '"+c+"' has not been opened.",ot(t,a));{const e=n.pop();if(c!==e.tagName){let n=ot(t,e.tagStartPos);return it("InvalidTag","Expected closing tag '"+e.tagName+"' (opened in line "+n.line+", col "+n.col+") instead of closing tag '"+c+"'.",ot(t,a))}0==n.length&&(i=!0)}}else{const r=nt(d,e);if(!0!==r)return it(r.err.code,r.err.msg,ot(t,o-d.length+r.err.line));if(!0===i)return it("InvalidXml","Multiple possible root nodes found.",ot(t,o));-1!==e.unpairedTags.indexOf(c)||n.push({tagName:c,tagStartPos:a}),s=!0}for(o++;o<t.length;o++)if("<"===t[o]){if("!"===t[o+1]){o++,o=X(t,o);continue}if("?"!==t[o+1])break;if(o=Q(t,++o),o.err)return o}else if("&"===t[o]){const e=st(t,o);if(-1==e)return it("InvalidChar","char '&' is not expected.",ot(t,o));o=e}else if(!0===i&&!K(t[o]))return it("InvalidXml","Extra text at the end",ot(t,o));"<"===t[o]&&o--}}}var r;return s?1==n.length?it("InvalidTag","Unclosed tag '"+n[0].tagName+"'.",ot(t,n[0].tagStartPos)):!(n.length>0)||it("InvalidXml","Invalid '"+JSON.stringify(n.map((t=>t.tagName)),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):it("InvalidXml","Start tag expected.",1)};const J='"',Z="'";function tt(t,e){let n="",s="",i=!1;for(;e<t.length;e++){if(t[e]===J||t[e]===Z)""===s?s=t[e]:s!==t[e]||(s="");else if(">"===t[e]&&""===s){i=!0;break}n+=t[e]}return""===s&&{value:n,index:e,tagClosed:i}}const et=new RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function nt(t,e){const n=G.getAllMatches(t,et),s={};for(let t=0;t<n.length;t++){if(0===n[t][1].length)return it("InvalidAttr","Attribute '"+n[t][2]+"' has no space in starting.",at(n[t]));if(void 0!==n[t][3]&&void 0===n[t][4])return it("InvalidAttr","Attribute '"+n[t][2]+"' is without value.",at(n[t]));if(void 0===n[t][3]&&!e.allowBooleanAttributes)return it("InvalidAttr","boolean attribute '"+n[t][2]+"' is not allowed.",at(n[t]));const i=n[t][2];if(!rt(i))return it("InvalidAttr","Attribute '"+i+"' is an invalid name.",at(n[t]));if(s.hasOwnProperty(i))return it("InvalidAttr","Attribute '"+i+"' is repeated.",at(n[t]));s[i]=1}return!0}function st(t,e){if(";"===t[++e])return-1;if("#"===t[e])return function(t,e){let n=/\d/;for("x"===t[e]&&(e++,n=/[\da-fA-F]/);e<t.length;e++){if(";"===t[e])return e;if(!t[e].match(n))break}return-1}(t,++e);let n=0;for(;e<t.length;e++,n++)if(!(t[e].match(/\w/)&&n<20)){if(";"===t[e])break;return-1}return e}function it(t,e,n){return{err:{code:t,msg:e,line:n.line||n,col:n.col}}}function rt(t){return G.isName(t)}function ot(t,e){const n=t.substring(0,e).split(/\r?\n/);return{line:n.length,col:n[n.length-1].length+1}}function at(t){return t.startIndex+t[1].length}var lt={};const ct={preserveOrder:!1,attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,removeNSPrefix:!1,allowBooleanAttributes:!1,parseTagValue:!0,parseAttributeValue:!1,trimValues:!0,cdataPropName:!1,numberParseOptions:{hex:!0,leadingZeros:!0,eNotation:!0},tagValueProcessor:function(t,e){return e},attributeValueProcessor:function(t,e){return e},stopNodes:[],alwaysCreateTextNode:!1,isArray:()=>!1,commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:function(t,e,n){return t}};lt.buildOptions=function(t){return Object.assign({},ct,t)},lt.defaultOptions=ct;const ut=W;function dt(t,e){let n="";for(;e<t.length&&"'"!==t[e]&&'"'!==t[e];e++)n+=t[e];if(n=n.trim(),-1!==n.indexOf(" "))throw new Error("External entites are not supported");const s=t[e++];let i="";for(;e<t.length&&t[e]!==s;e++)i+=t[e];return[n,i,e]}function mt(t,e){return"!"===t[e+1]&&"-"===t[e+2]&&"-"===t[e+3]}function pt(t,e){return"!"===t[e+1]&&"E"===t[e+2]&&"N"===t[e+3]&&"T"===t[e+4]&&"I"===t[e+5]&&"T"===t[e+6]&&"Y"===t[e+7]}function ft(t,e){return"!"===t[e+1]&&"E"===t[e+2]&&"L"===t[e+3]&&"E"===t[e+4]&&"M"===t[e+5]&&"E"===t[e+6]&&"N"===t[e+7]&&"T"===t[e+8]}function ht(t,e){return"!"===t[e+1]&&"A"===t[e+2]&&"T"===t[e+3]&&"T"===t[e+4]&&"L"===t[e+5]&&"I"===t[e+6]&&"S"===t[e+7]&&"T"===t[e+8]}function gt(t,e){return"!"===t[e+1]&&"N"===t[e+2]&&"O"===t[e+3]&&"T"===t[e+4]&&"A"===t[e+5]&&"T"===t[e+6]&&"I"===t[e+7]&&"O"===t[e+8]&&"N"===t[e+9]}function vt(t){if(ut.isName(t))return t;throw new Error(`Invalid entity name ${t}`)}const wt=/^[-+]?0x[a-fA-F0-9]+$/,yt=/^([\-\+])?(0*)(\.[0-9]+([eE]\-?[0-9]+)?|[0-9]+(\.[0-9]+([eE]\-?[0-9]+)?)?)$/;!Number.parseInt&&window.parseInt&&(Number.parseInt=window.parseInt),!Number.parseFloat&&window.parseFloat&&(Number.parseFloat=window.parseFloat);const At={hex:!0,leadingZeros:!0,decimalPoint:".",eNotation:!0},bt=W,_t=class{constructor(t){this.tagname=t,this.child=[],this[":@"]={}}add(t,e){"__proto__"===t&&(t="#__proto__"),this.child.push({[t]:e})}addChild(t){"__proto__"===t.tagname&&(t.tagname="#__proto__"),t[":@"]&&Object.keys(t[":@"]).length>0?this.child.push({[t.tagname]:t.child,":@":t[":@"]}):this.child.push({[t.tagname]:t.child})}},Ct=function(t,e){const n={};if("O"!==t[e+3]||"C"!==t[e+4]||"T"!==t[e+5]||"Y"!==t[e+6]||"P"!==t[e+7]||"E"!==t[e+8])throw new Error("Invalid Tag instead of DOCTYPE");{e+=9;let s=1,i=!1,r=!1,o="";for(;e<t.length;e++)if("<"!==t[e]||r)if(">"===t[e]){if(r?"-"===t[e-1]&&"-"===t[e-2]&&(r=!1,s--):s--,0===s)break}else"["===t[e]?i=!0:o+=t[e];else{if(i&&pt(t,e))e+=7,[entityName,val,e]=dt(t,e+1),-1===val.indexOf("&")&&(n[vt(entityName)]={regx:RegExp(`&${entityName};`,"g"),val});else if(i&&ft(t,e))e+=8;else if(i&&ht(t,e))e+=8;else if(i&&gt(t,e))e+=9;else{if(!mt)throw new Error("Invalid DOCTYPE");r=!0}s++,o=""}if(0!==s)throw new Error("Unclosed DOCTYPE")}return{entities:n,i:e}},xt=function(t,e={}){if(e=Object.assign({},At,e),!t||"string"!=typeof t)return t;let n=t.trim();if(void 0!==e.skipLike&&e.skipLike.test(n))return t;if(e.hex&&wt.test(n))return Number.parseInt(n,16);{const i=yt.exec(n);if(i){const r=i[1],o=i[2];let a=(s=i[3])&&-1!==s.indexOf(".")?("."===(s=s.replace(/0+$/,""))?s="0":"."===s[0]?s="0"+s:"."===s[s.length-1]&&(s=s.substr(0,s.length-1)),s):s;const l=i[4]||i[6];if(!e.leadingZeros&&o.length>0&&r&&"."!==n[2])return t;if(!e.leadingZeros&&o.length>0&&!r&&"."!==n[1])return t;{const s=Number(n),i=""+s;return-1!==i.search(/[eE]/)||l?e.eNotation?s:t:-1!==n.indexOf(".")?"0"===i&&""===a||i===a||r&&i==="-"+a?s:t:o?a===i||r+a===i?s:t:n===i||n===r+i?s:t}}return t}var s};function Tt(t){const e=Object.keys(t);for(let n=0;n<e.length;n++){const s=e[n];this.lastEntities[s]={regex:new RegExp("&"+s+";","g"),val:t[s]}}}function St(t,e,n,s,i,r,o){if(void 0!==t&&(this.options.trimValues&&!s&&(t=t.trim()),t.length>0)){o||(t=this.replaceEntitiesValue(t));const s=this.options.tagValueProcessor(e,t,n,i,r);return null==s?t:typeof s!=typeof t||s!==t?s:this.options.trimValues||t.trim()===t?Rt(t,this.options.parseTagValue,this.options.numberParseOptions):t}}function kt(t){if(this.options.removeNSPrefix){const e=t.split(":"),n="/"===t.charAt(0)?"/":"";if("xmlns"===e[0])return"";2===e.length&&(t=n+e[1])}return t}const Et=new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function Lt(t,e,n){if(!this.options.ignoreAttributes&&"string"==typeof t){const n=bt.getAllMatches(t,Et),s=n.length,i={};for(let t=0;t<s;t++){const s=this.resolveNameSpace(n[t][1]);let r=n[t][4],o=this.options.attributeNamePrefix+s;if(s.length)if(this.options.transformAttributeName&&(o=this.options.transformAttributeName(o)),"__proto__"===o&&(o="#__proto__"),void 0!==r){this.options.trimValues&&(r=r.trim()),r=this.replaceEntitiesValue(r);const t=this.options.attributeValueProcessor(s,r,e);i[o]=null==t?r:typeof t!=typeof r||t!==r?t:Rt(r,this.options.parseAttributeValue,this.options.numberParseOptions)}else this.options.allowBooleanAttributes&&(i[o]=!0)}if(!Object.keys(i).length)return;if(this.options.attributesGroupName){const t={};return t[this.options.attributesGroupName]=i,t}return i}}const Nt=function(t){t=t.replace(/\r\n?/g,"\n");const e=new _t("!xml");let n=e,s="",i="";for(let r=0;r<t.length;r++)if("<"===t[r])if("/"===t[r+1]){const e=Ot(t,">",r,"Closing Tag is not closed.");let o=t.substring(r+2,e).trim();if(this.options.removeNSPrefix){const t=o.indexOf(":");-1!==t&&(o=o.substr(t+1))}this.options.transformTagName&&(o=this.options.transformTagName(o)),n&&(s=this.saveTextToParentTag(s,n,i));const a=i.substring(i.lastIndexOf(".")+1);if(o&&-1!==this.options.unpairedTags.indexOf(o))throw new Error(`Unpaired tag can not be used as closing tag: </${o}>`);let l=0;a&&-1!==this.options.unpairedTags.indexOf(a)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),n=this.tagsNodeStack.pop(),s="",r=e}else if("?"===t[r+1]){let e=Ut(t,r,!1,"?>");if(!e)throw new Error("Pi Tag is not closed.");if(s=this.saveTextToParentTag(s,n,i),this.options.ignoreDeclaration&&"?xml"===e.tagName||this.options.ignorePiTags);else{const t=new _t(e.tagName);t.add(this.options.textNodeName,""),e.tagName!==e.tagExp&&e.attrExpPresent&&(t[":@"]=this.buildAttributesMap(e.tagExp,i,e.tagName)),this.addChild(n,t,i)}r=e.closeIndex+1}else if("!--"===t.substr(r+1,3)){const e=Ot(t,"--\x3e",r+4,"Comment is not closed.");if(this.options.commentPropName){const o=t.substring(r+4,e-2);s=this.saveTextToParentTag(s,n,i),n.add(this.options.commentPropName,[{[this.options.textNodeName]:o}])}r=e}else if("!D"===t.substr(r+1,2)){const e=Ct(t,r);this.docTypeEntities=e.entities,r=e.i}else if("!["===t.substr(r+1,2)){const e=Ot(t,"]]>",r,"CDATA is not closed.")-2,o=t.substring(r+9,e);s=this.saveTextToParentTag(s,n,i);let a=this.parseTextData(o,n.tagname,i,!0,!1,!0,!0);null==a&&(a=""),this.options.cdataPropName?n.add(this.options.cdataPropName,[{[this.options.textNodeName]:o}]):n.add(this.options.textNodeName,a),r=e+2}else{let o=Ut(t,r,this.options.removeNSPrefix),a=o.tagName;const l=o.rawTagName;let c=o.tagExp,u=o.attrExpPresent,d=o.closeIndex;this.options.transformTagName&&(a=this.options.transformTagName(a)),n&&s&&"!xml"!==n.tagname&&(s=this.saveTextToParentTag(s,n,i,!1));const m=n;if(m&&-1!==this.options.unpairedTags.indexOf(m.tagname)&&(n=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),a!==e.tagname&&(i+=i?"."+a:a),this.isItStopNode(this.options.stopNodes,i,a)){let e="";if(c.length>0&&c.lastIndexOf("/")===c.length-1)"/"===a[a.length-1]?(a=a.substr(0,a.length-1),i=i.substr(0,i.length-1),c=a):c=c.substr(0,c.length-1),r=o.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(a))r=o.closeIndex;else{const n=this.readStopNodeData(t,l,d+1);if(!n)throw new Error(`Unexpected end of ${l}`);r=n.i,e=n.tagContent}const s=new _t(a);a!==c&&u&&(s[":@"]=this.buildAttributesMap(c,i,a)),e&&(e=this.parseTextData(e,a,i,!0,u,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),s.add(this.options.textNodeName,e),this.addChild(n,s,i)}else{if(c.length>0&&c.lastIndexOf("/")===c.length-1){"/"===a[a.length-1]?(a=a.substr(0,a.length-1),i=i.substr(0,i.length-1),c=a):c=c.substr(0,c.length-1),this.options.transformTagName&&(a=this.options.transformTagName(a));const t=new _t(a);a!==c&&u&&(t[":@"]=this.buildAttributesMap(c,i,a)),this.addChild(n,t,i),i=i.substr(0,i.lastIndexOf("."))}else{const t=new _t(a);this.tagsNodeStack.push(n),a!==c&&u&&(t[":@"]=this.buildAttributesMap(c,i,a)),this.addChild(n,t,i),n=t}s="",r=d}}else s+=t[r];return e.child};function Ft(t,e,n){const s=this.options.updateTag(e.tagname,n,e[":@"]);!1===s||("string"==typeof s?(e.tagname=s,t.addChild(e)):t.addChild(e))}const Pt=function(t){if(this.options.processEntities){for(let e in this.docTypeEntities){const n=this.docTypeEntities[e];t=t.replace(n.regx,n.val)}for(let e in this.lastEntities){const n=this.lastEntities[e];t=t.replace(n.regex,n.val)}if(this.options.htmlEntities)for(let e in this.htmlEntities){const n=this.htmlEntities[e];t=t.replace(n.regex,n.val)}t=t.replace(this.ampEntity.regex,this.ampEntity.val)}return t};function It(t,e,n,s){return t&&(void 0===s&&(s=0===Object.keys(e.child).length),void 0!==(t=this.parseTextData(t,e.tagname,n,!1,!!e[":@"]&&0!==Object.keys(e[":@"]).length,s))&&""!==t&&e.add(this.options.textNodeName,t),t=""),t}function Dt(t,e,n){const s="*."+n;for(const n in t){const i=t[n];if(s===i||e===i)return!0}return!1}function Ot(t,e,n,s){const i=t.indexOf(e,n);if(-1===i)throw new Error(s);return i+e.length-1}function Ut(t,e,n,s=">"){const i=function(t,e,n=">"){let s,i="";for(let r=e;r<t.length;r++){let e=t[r];if(s)e===s&&(s="");else if('"'===e||"'"===e)s=e;else if(e===n[0]){if(!n[1])return{data:i,index:r};if(t[r+1]===n[1])return{data:i,index:r}}else"\t"===e&&(e=" ");i+=e}}(t,e+1,s);if(!i)return;let r=i.data;const o=i.index,a=r.search(/\s/);let l=r,c=!0;-1!==a&&(l=r.substring(0,a),r=r.substring(a+1).trimStart());const u=l;if(n){const t=l.indexOf(":");-1!==t&&(l=l.substr(t+1),c=l!==i.data.substr(t+1))}return{tagName:l,tagExp:r,closeIndex:o,attrExpPresent:c,rawTagName:u}}function Bt(t,e,n){const s=n;let i=1;for(;n<t.length;n++)if("<"===t[n])if("/"===t[n+1]){const r=Ot(t,">",n,`${e} is not closed`);if(t.substring(n+2,r).trim()===e&&(i--,0===i))return{tagContent:t.substring(s,n),i:r};n=r}else if("?"===t[n+1])n=Ot(t,"?>",n+1,"StopNode is not closed.");else if("!--"===t.substr(n+1,3))n=Ot(t,"--\x3e",n+3,"StopNode is not closed.");else if("!["===t.substr(n+1,2))n=Ot(t,"]]>",n,"StopNode is not closed.")-2;else{const s=Ut(t,n,">");s&&((s&&s.tagName)===e&&"/"!==s.tagExp[s.tagExp.length-1]&&i++,n=s.closeIndex)}}function Rt(t,e,n){if(e&&"string"==typeof t){const e=t.trim();return"true"===e||"false"!==e&&xt(t,n)}return bt.isExist(t)?t:""}var jt={};function Mt(t,e,n){let s;const i={};for(let r=0;r<t.length;r++){const o=t[r],a=zt(o);let l="";if(l=void 0===n?a:n+"."+a,a===e.textNodeName)void 0===s?s=o[a]:s+=""+o[a];else{if(void 0===a)continue;if(o[a]){let t=Mt(o[a],e,l);const n=qt(t,e);o[":@"]?Vt(t,o[":@"],l,e):1!==Object.keys(t).length||void 0===t[e.textNodeName]||e.alwaysCreateTextNode?0===Object.keys(t).length&&(e.alwaysCreateTextNode?t[e.textNodeName]="":t=""):t=t[e.textNodeName],void 0!==i[a]&&i.hasOwnProperty(a)?(Array.isArray(i[a])||(i[a]=[i[a]]),i[a].push(t)):e.isArray(a,l,n)?i[a]=[t]:i[a]=t}}}return"string"==typeof s?s.length>0&&(i[e.textNodeName]=s):void 0!==s&&(i[e.textNodeName]=s),i}function zt(t){const e=Object.keys(t);for(let t=0;t<e.length;t++){const n=e[t];if(":@"!==n)return n}}function Vt(t,e,n,s){if(e){const i=Object.keys(e),r=i.length;for(let o=0;o<r;o++){const r=i[o];s.isArray(r,n+"."+r,!0,!0)?t[r]=[e[r]]:t[r]=e[r]}}}function qt(t,e){const{textNodeName:n}=e,s=Object.keys(t).length;return 0===s||!(1!==s||!t[n]&&"boolean"!=typeof t[n]&&0!==t[n])}jt.prettify=function(t,e){return Mt(t,e)};const{buildOptions:$t}=lt,Ht=class{constructor(t){this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:(t,e)=>String.fromCharCode(Number.parseInt(e,10))},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:(t,e)=>String.fromCharCode(Number.parseInt(e,16))}},this.addExternalEntities=Tt,this.parseXml=Nt,this.parseTextData=St,this.resolveNameSpace=kt,this.buildAttributesMap=Lt,this.isItStopNode=Dt,this.replaceEntitiesValue=Pt,this.readStopNodeData=Bt,this.saveTextToParentTag=It,this.addChild=Ft}},{prettify:Wt}=jt,Gt=H;function Yt(t,e,n,s){let i="",r=!1;for(let o=0;o<t.length;o++){const a=t[o],l=Kt(a);if(void 0===l)continue;let c="";if(c=0===n.length?l:`${n}.${l}`,l===e.textNodeName){let t=a[l];Xt(c,e)||(t=e.tagValueProcessor(l,t),t=Jt(t,e)),r&&(i+=s),i+=t,r=!1;continue}if(l===e.cdataPropName){r&&(i+=s),i+=`<![CDATA[${a[l][0][e.textNodeName]}]]>`,r=!1;continue}if(l===e.commentPropName){i+=s+`\x3c!--${a[l][0][e.textNodeName]}--\x3e`,r=!0;continue}if("?"===l[0]){const t=Qt(a[":@"],e),n="?xml"===l?"":s;let o=a[l][0][e.textNodeName];o=0!==o.length?" "+o:"",i+=n+`<${l}${o}${t}?>`,r=!0;continue}let u=s;""!==u&&(u+=e.indentBy);const d=s+`<${l}${Qt(a[":@"],e)}`,m=Yt(a[l],e,c,u);-1!==e.unpairedTags.indexOf(l)?e.suppressUnpairedNode?i+=d+">":i+=d+"/>":m&&0!==m.length||!e.suppressEmptyNode?m&&m.endsWith(">")?i+=d+`>${m}${s}</${l}>`:(i+=d+">",m&&""!==s&&(m.includes("/>")||m.includes("</"))?i+=s+e.indentBy+m+s:i+=m,i+=`</${l}>`):i+=d+"/>",r=!0}return i}function Kt(t){const e=Object.keys(t);for(let n=0;n<e.length;n++){const s=e[n];if(t.hasOwnProperty(s)&&":@"!==s)return s}}function Qt(t,e){let n="";if(t&&!e.ignoreAttributes)for(let s in t){if(!t.hasOwnProperty(s))continue;let i=e.attributeValueProcessor(s,t[s]);i=Jt(i,e),!0===i&&e.suppressBooleanAttributes?n+=` ${s.substr(e.attributeNamePrefix.length)}`:n+=` ${s.substr(e.attributeNamePrefix.length)}="${i}"`}return n}function Xt(t,e){let n=(t=t.substr(0,t.length-e.textNodeName.length-1)).substr(t.lastIndexOf(".")+1);for(let s in e.stopNodes)if(e.stopNodes[s]===t||e.stopNodes[s]==="*."+n)return!0;return!1}function Jt(t,e){if(t&&t.length>0&&e.processEntities)for(let n=0;n<e.entities.length;n++){const s=e.entities[n];t=t.replace(s.regex,s.val)}return t}const Zt=function(t,e){let n="";return e.format&&e.indentBy.length>0&&(n="\n"),Yt(t,e,"",n)},te={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:"  ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(t,e){return e},attributeValueProcessor:function(t,e){return e},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&amp;"},{regex:new RegExp(">","g"),val:"&gt;"},{regex:new RegExp("<","g"),val:"&lt;"},{regex:new RegExp("'","g"),val:"&apos;"},{regex:new RegExp('"',"g"),val:"&quot;"}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ee(t){this.options=Object.assign({},te,t),this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=ie),this.processTextOrObjNode=ne,this.options.format?(this.indentate=se,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function ne(t,e,n){const s=this.j2x(t,n+1);return void 0!==t[this.options.textNodeName]&&1===Object.keys(t).length?this.buildTextValNode(t[this.options.textNodeName],e,s.attrStr,n):this.buildObjectNode(s.val,e,s.attrStr,n)}function se(t){return this.options.indentBy.repeat(t)}function ie(t){return!(!t.startsWith(this.options.attributeNamePrefix)||t===this.options.textNodeName)&&t.substr(this.attrPrefixLen)}ee.prototype.build=function(t){return this.options.preserveOrder?Zt(t,this.options):(Array.isArray(t)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(t={[this.options.arrayNodeName]:t}),this.j2x(t,0).val)},ee.prototype.j2x=function(t,e){let n="",s="";for(let i in t)if(Object.prototype.hasOwnProperty.call(t,i))if(void 0===t[i])this.isAttribute(i)&&(s+="");else if(null===t[i])this.isAttribute(i)?s+="":"?"===i[0]?s+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:s+=this.indentate(e)+"<"+i+"/"+this.tagEndChar;else if(t[i]instanceof Date)s+=this.buildTextValNode(t[i],i,"",e);else if("object"!=typeof t[i]){const r=this.isAttribute(i);if(r)n+=this.buildAttrPairStr(r,""+t[i]);else if(i===this.options.textNodeName){let e=this.options.tagValueProcessor(i,""+t[i]);s+=this.replaceEntitiesValue(e)}else s+=this.buildTextValNode(t[i],i,"",e)}else if(Array.isArray(t[i])){const n=t[i].length;let r="";for(let o=0;o<n;o++){const n=t[i][o];void 0===n||(null===n?"?"===i[0]?s+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:s+=this.indentate(e)+"<"+i+"/"+this.tagEndChar:"object"==typeof n?this.options.oneListGroup?r+=this.j2x(n,e+1).val:r+=this.processTextOrObjNode(n,i,e):r+=this.buildTextValNode(n,i,"",e))}this.options.oneListGroup&&(r=this.buildObjectNode(r,i,"",e)),s+=r}else if(this.options.attributesGroupName&&i===this.options.attributesGroupName){const e=Object.keys(t[i]),s=e.length;for(let r=0;r<s;r++)n+=this.buildAttrPairStr(e[r],""+t[i][e[r]])}else s+=this.processTextOrObjNode(t[i],i,e);return{attrStr:n,val:s}},ee.prototype.buildAttrPairStr=function(t,e){return e=this.options.attributeValueProcessor(t,""+e),e=this.replaceEntitiesValue(e),this.options.suppressBooleanAttributes&&"true"===e?" "+t:" "+t+'="'+e+'"'},ee.prototype.buildObjectNode=function(t,e,n,s){if(""===t)return"?"===e[0]?this.indentate(s)+"<"+e+n+"?"+this.tagEndChar:this.indentate(s)+"<"+e+n+this.closeTag(e)+this.tagEndChar;{let i="</"+e+this.tagEndChar,r="";return"?"===e[0]&&(r="?",i=""),!n&&""!==n||-1!==t.indexOf("<")?!1!==this.options.commentPropName&&e===this.options.commentPropName&&0===r.length?this.indentate(s)+`\x3c!--${t}--\x3e`+this.newLine:this.indentate(s)+"<"+e+n+r+this.tagEndChar+t+this.indentate(s)+i:this.indentate(s)+"<"+e+n+r+">"+t+i}},ee.prototype.closeTag=function(t){let e="";return-1!==this.options.unpairedTags.indexOf(t)?this.options.suppressUnpairedNode||(e="/"):e=this.options.suppressEmptyNode?"/":`></${t}`,e},ee.prototype.buildTextValNode=function(t,e,n,s){if(!1!==this.options.cdataPropName&&e===this.options.cdataPropName)return this.indentate(s)+`<![CDATA[${t}]]>`+this.newLine;if(!1!==this.options.commentPropName&&e===this.options.commentPropName)return this.indentate(s)+`\x3c!--${t}--\x3e`+this.newLine;if("?"===e[0])return this.indentate(s)+"<"+e+n+"?"+this.tagEndChar;{let i=this.options.tagValueProcessor(e,t);return i=this.replaceEntitiesValue(i),""===i?this.indentate(s)+"<"+e+n+this.closeTag(e)+this.tagEndChar:this.indentate(s)+"<"+e+n+">"+i+"</"+e+this.tagEndChar}},ee.prototype.replaceEntitiesValue=function(t){if(t&&t.length>0&&this.options.processEntities)for(let e=0;e<this.options.entities.length;e++){const n=this.options.entities[e];t=t.replace(n.regex,n.val)}return t};var re={XMLParser:class{constructor(t){this.externalEntities={},this.options=$t(t)}parse(t,e){if("string"==typeof t);else{if(!t.toString)throw new Error("XML data is accepted in String or Bytes[] form.");t=t.toString()}if(e){!0===e&&(e={});const n=Gt.validate(t,e);if(!0!==n)throw Error(`${n.err.msg}:${n.err.line}:${n.err.col}`)}const n=new Ht(this.options);n.addExternalEntities(this.externalEntities);const s=n.parseXml(t);return this.options.preserveOrder||void 0===s?s:Wt(s,this.options)}addEntity(t,e){if(-1!==e.indexOf("&"))throw new Error("Entity value can't have '&'");if(-1!==t.indexOf("&")||-1!==t.indexOf(";"))throw new Error("An entity must be set without '&' and ';'. Eg. use '#xD' for '&#xD;'");if("&"===e)throw new Error("An entity with value '&' is not permitted");this.externalEntities[t]=e}},XMLValidator:H,XMLBuilder:ee};class oe{_view;constructor(t){ae(t),this._view=t}get id(){return this._view.id}get name(){return this._view.name}get caption(){return this._view.caption}get emptyTitle(){return this._view.emptyTitle}get emptyCaption(){return this._view.emptyCaption}get getContents(){return this._view.getContents}get icon(){return this._view.icon}set icon(t){this._view.icon=t}get order(){return this._view.order}set order(t){this._view.order=t}get params(){return this._view.params}set params(t){this._view.params=t}get columns(){return this._view.columns}get emptyView(){return this._view.emptyView}get parent(){return this._view.parent}get sticky(){return this._view.sticky}get expanded(){return this._view.expanded}set expanded(t){this._view.expanded=t}get defaultSortKey(){return this._view.defaultSortKey}}const ae=function(t){if(!t.id||"string"!=typeof t.id)throw new Error("View id is required and must be a string");if(!t.name||"string"!=typeof t.name)throw new Error("View name is required and must be a string");if(t.columns&&t.columns.length>0&&(!t.caption||"string"!=typeof t.caption))throw new Error("View caption is required for top-level views and must be a string");if(!t.getContents||"function"!=typeof t.getContents)throw new Error("View getContents is required and must be a function");if(!t.icon||"string"!=typeof t.icon||!function(t){if("string"!=typeof t)throw new TypeError(`Expected a \`string\`, got \`${typeof t}\``);if(0===(t=t.trim()).length)return!1;if(!0!==re.XMLValidator.validate(t))return!1;let e;const n=new re.XMLParser;try{e=n.parse(t)}catch{return!1}return!!e&&!!Object.keys(e).some((t=>"svg"===t.toLowerCase()))}(t.icon))throw new Error("View icon is required and must be a valid svg string");if(!("order"in t)||"number"!=typeof t.order)throw new Error("View order is required and must be a number");if(t.columns&&t.columns.forEach((t=>{if(!(t instanceof q))throw new Error("View columns must be an array of Column. Invalid column found")})),t.emptyView&&"function"!=typeof t.emptyView)throw new Error("View emptyView must be a function");if(t.parent&&"string"!=typeof t.parent)throw new Error("View parent must be a string");if("sticky"in t&&"boolean"!=typeof t.sticky)throw new Error("View sticky must be a boolean");if("expanded"in t&&"boolean"!=typeof t.expanded)throw new Error("View expanded must be a boolean");if(t.defaultSortKey&&"string"!=typeof t.defaultSortKey)throw new Error("View defaultSortKey must be a string");return!0},le=function(t){return(void 0===window._nc_newfilemenu&&(window._nc_newfilemenu=new p,d.debug("NewFileMenu initialized")),window._nc_newfilemenu).getEntries(t).sort(((t,e)=>void 0!==t.order&&void 0!==e.order&&t.order!==e.order?t.order-e.order:t.displayName.localeCompare(e.displayName,void 0,{numeric:!0,sensitivity:"base"})))}},41261:(t,e,n)=>{"use strict";n.d(e,{U:()=>at,a:()=>it,c:()=>W,g:()=>ct,h:()=>dt,l:()=>Y,n:()=>J,o:()=>ut,t:()=>rt});var s=n(85072),i=n.n(s),r=n(97825),o=n.n(r),a=n(77659),l=n.n(a),c=n(55056),u=n.n(c),d=n(10540),m=n.n(d),p=n(41113),f=n.n(p),h=n(30521),g={};g.styleTagTransform=f(),g.setAttributes=u(),g.insert=l().bind(null,"head"),g.domAPI=o(),g.insertStyleElement=m(),i()(h.A,g),h.A&&h.A.locals&&h.A.locals;var v=n(53110),w=n(71089),y=n(35810),A=n(63814),b=n(21777),_=n(26287);class C extends Error{constructor(t){super(t||"Promise was canceled"),this.name="CancelError"}get isCanceled(){return!0}}const x=Object.freeze({pending:Symbol("pending"),canceled:Symbol("canceled"),resolved:Symbol("resolved"),rejected:Symbol("rejected")});class T{static fn(t){return(...e)=>new T(((n,s,i)=>{e.push(i),t(...e).then(n,s)}))}#t=[];#e=!0;#n=x.pending;#s;#i;constructor(t){this.#s=new Promise(((e,n)=>{this.#i=n;const s=t=>{if(this.#n!==x.pending)throw new Error(`The \`onCancel\` handler was attached after the promise ${this.#n.description}.`);this.#t.push(t)};Object.defineProperties(s,{shouldReject:{get:()=>this.#e,set:t=>{this.#e=t}}}),t((t=>{this.#n===x.canceled&&s.shouldReject||(e(t),this.#r(x.resolved))}),(t=>{this.#n===x.canceled&&s.shouldReject||(n(t),this.#r(x.rejected))}),s)}))}then(t,e){return this.#s.then(t,e)}catch(t){return this.#s.catch(t)}finally(t){return this.#s.finally(t)}cancel(t){if(this.#n===x.pending){if(this.#r(x.canceled),this.#t.length>0)try{for(const t of this.#t)t()}catch(t){return void this.#i(t)}this.#e&&this.#i(new C(t))}}get isCanceled(){return this.#n===x.canceled}#r(t){this.#n===x.pending&&(this.#n=t)}}Object.setPrototypeOf(T.prototype,Promise.prototype);var S=n(9052);class k extends Error{constructor(t){super(t),this.name="TimeoutError"}}class E extends Error{constructor(t){super(),this.name="AbortError",this.message=t}}const L=t=>void 0===globalThis.DOMException?new E(t):new DOMException(t),N=t=>{const e=void 0===t.reason?L("This operation was aborted."):t.reason;return e instanceof Error?e:L(e)};class F{#o=[];enqueue(t,e){const n={priority:(e={priority:0,...e}).priority,run:t};if(this.size&&this.#o[this.size-1].priority>=e.priority)return void this.#o.push(n);const s=function(t,e,n){let s=0,i=t.length;for(;i>0;){const n=Math.trunc(i/2);let o=s+n;r=t[o],e.priority-r.priority<=0?(s=++o,i-=n+1):i=n}var r;return s}(this.#o,n);this.#o.splice(s,0,n)}dequeue(){const t=this.#o.shift();return t?.run}filter(t){return this.#o.filter((e=>e.priority===t.priority)).map((t=>t.run))}get size(){return this.#o.length}}class P extends S{#a;#l;#c=0;#u;#d;#m=0;#p;#f;#o;#h;#g=0;#v;#w;#y;timeout;constructor(t){if(super(),!("number"==typeof(t={carryoverConcurrencyCount:!1,intervalCap:Number.POSITIVE_INFINITY,interval:0,concurrency:Number.POSITIVE_INFINITY,autoStart:!0,queueClass:F,...t}).intervalCap&&t.intervalCap>=1))throw new TypeError(`Expected \`intervalCap\` to be a number from 1 and up, got \`${t.intervalCap?.toString()??""}\` (${typeof t.intervalCap})`);if(void 0===t.interval||!(Number.isFinite(t.interval)&&t.interval>=0))throw new TypeError(`Expected \`interval\` to be a finite number >= 0, got \`${t.interval?.toString()??""}\` (${typeof t.interval})`);this.#a=t.carryoverConcurrencyCount,this.#l=t.intervalCap===Number.POSITIVE_INFINITY||0===t.interval,this.#u=t.intervalCap,this.#d=t.interval,this.#o=new t.queueClass,this.#h=t.queueClass,this.concurrency=t.concurrency,this.timeout=t.timeout,this.#y=!0===t.throwOnTimeout,this.#w=!1===t.autoStart}get#A(){return this.#l||this.#c<this.#u}get#b(){return this.#g<this.#v}#_(){this.#g--,this.#C(),this.emit("next")}#x(){this.#T(),this.#S(),this.#f=void 0}get#k(){const t=Date.now();if(void 0===this.#p){const e=this.#m-t;if(!(e<0))return void 0===this.#f&&(this.#f=setTimeout((()=>{this.#x()}),e)),!0;this.#c=this.#a?this.#g:0}return!1}#C(){if(0===this.#o.size)return this.#p&&clearInterval(this.#p),this.#p=void 0,this.emit("empty"),0===this.#g&&this.emit("idle"),!1;if(!this.#w){const t=!this.#k;if(this.#A&&this.#b){const e=this.#o.dequeue();return!!e&&(this.emit("active"),e(),t&&this.#S(),!0)}}return!1}#S(){this.#l||void 0!==this.#p||(this.#p=setInterval((()=>{this.#T()}),this.#d),this.#m=Date.now()+this.#d)}#T(){0===this.#c&&0===this.#g&&this.#p&&(clearInterval(this.#p),this.#p=void 0),this.#c=this.#a?this.#g:0,this.#E()}#E(){for(;this.#C(););}get concurrency(){return this.#v}set concurrency(t){if(!("number"==typeof t&&t>=1))throw new TypeError(`Expected \`concurrency\` to be a number from 1 and up, got \`${t}\` (${typeof t})`);this.#v=t,this.#E()}async#L(t){return new Promise(((e,n)=>{t.addEventListener("abort",(()=>{n(t.reason)}),{once:!0})}))}async add(t,e={}){return e={timeout:this.timeout,throwOnTimeout:this.#y,...e},new Promise(((n,s)=>{this.#o.enqueue((async()=>{this.#g++,this.#c++;try{e.signal?.throwIfAborted();let s=t({signal:e.signal});e.timeout&&(s=function(t,e){const{milliseconds:n,fallback:s,message:i,customTimers:r={setTimeout,clearTimeout}}=e;let o;const a=new Promise(((a,l)=>{if("number"!=typeof n||1!==Math.sign(n))throw new TypeError(`Expected \`milliseconds\` to be a positive number, got \`${n}\``);if(e.signal){const{signal:t}=e;t.aborted&&l(N(t)),t.addEventListener("abort",(()=>{l(N(t))}))}if(n===Number.POSITIVE_INFINITY)return void t.then(a,l);const c=new k;o=r.setTimeout.call(void 0,(()=>{if(s)try{a(s())}catch(t){l(t)}else"function"==typeof t.cancel&&t.cancel(),!1===i?a():i instanceof Error?l(i):(c.message=i??`Promise timed out after ${n} milliseconds`,l(c))}),n),(async()=>{try{a(await t)}catch(t){l(t)}})()})).finally((()=>{a.clear()}));return a.clear=()=>{r.clearTimeout.call(void 0,o),o=void 0},a}(Promise.resolve(s),{milliseconds:e.timeout})),e.signal&&(s=Promise.race([s,this.#L(e.signal)]));const i=await s;n(i),this.emit("completed",i)}catch(t){if(t instanceof k&&!e.throwOnTimeout)return void n();s(t),this.emit("error",t)}finally{this.#_()}}),e),this.emit("add"),this.#C()}))}async addAll(t,e){return Promise.all(t.map((async t=>this.add(t,e))))}start(){return this.#w?(this.#w=!1,this.#E(),this):this}pause(){this.#w=!0}clear(){this.#o=new this.#h}async onEmpty(){0!==this.#o.size&&await this.#N("empty")}async onSizeLessThan(t){this.#o.size<t||await this.#N("next",(()=>this.#o.size<t))}async onIdle(){0===this.#g&&0===this.#o.size||await this.#N("idle")}async#N(t,e){return new Promise((n=>{const s=()=>{e&&!e()||(this.off(t,s),n())};this.on(t,s)}))}get size(){return this.#o.size}sizeBy(t){return this.#o.filter(t).length}get pending(){return this.#g}get isPaused(){return this.#w}}var I=n(53529),D=n(85168),O=n(75270),U=n(85471),B=n(63420),R=n(24764),j=n(9518),M=n(6695),z=n(95101),V=n(11195);const q=async function(t,e,n,s=(()=>{}),i=void 0,r={}){let o;return o=e instanceof Blob?e:await e(),i&&(r.Destination=i),r["Content-Type"]||(r["Content-Type"]="application/octet-stream"),await _.A.request({method:"PUT",url:t,data:o,signal:n,onUploadProgress:s,headers:r})},$=function(t,e,n){return 0===e&&t.size<=n?Promise.resolve(new Blob([t],{type:t.type||"application/octet-stream"})):Promise.resolve(new Blob([t.slice(e,e+n)],{type:"application/octet-stream"}))},H=function(t=void 0){const e=window.OC?.appConfig?.files?.max_chunk_size;if(e<=0)return 0;if(!Number(e))return 10485760;const n=Math.max(Number(e),5242880);return void 0===t?n:Math.max(n,Math.ceil(t/1e4))};var W=(t=>(t[t.INITIALIZED=0]="INITIALIZED",t[t.UPLOADING=1]="UPLOADING",t[t.ASSEMBLING=2]="ASSEMBLING",t[t.FINISHED=3]="FINISHED",t[t.CANCELLED=4]="CANCELLED",t[t.FAILED=5]="FAILED",t))(W||{});let G=class{_source;_file;_isChunked;_chunks;_size;_uploaded=0;_startTime=0;_status=0;_controller;_response=null;constructor(t,e=!1,n,s){const i=Math.min(H()>0?Math.ceil(n/H()):1,1e4);this._source=t,this._isChunked=e&&H()>0&&i>1,this._chunks=this._isChunked?i:1,this._size=n,this._file=s,this._controller=new AbortController}get source(){return this._source}get file(){return this._file}get isChunked(){return this._isChunked}get chunks(){return this._chunks}get size(){return this._size}get startTime(){return this._startTime}set response(t){this._response=t}get response(){return this._response}get uploaded(){return this._uploaded}set uploaded(t){if(t>=this._size)return this._status=this._isChunked?2:3,void(this._uploaded=this._size);this._status=1,this._uploaded=t,0===this._startTime&&(this._startTime=(new Date).getTime())}get status(){return this._status}set status(t){this._status=t}get signal(){return this._controller.signal}cancel(){this._controller.abort(),this._status=4}};const Y=null===(K=(0,b.HW)())?(0,I.YK)().setApp("uploader").build():(0,I.YK)().setApp("uploader").setUid(K.uid).build();var K,Q=(t=>(t[t.IDLE=0]="IDLE",t[t.UPLOADING=1]="UPLOADING",t[t.PAUSED=2]="PAUSED",t))(Q||{});class X{_destinationFolder;_isPublic;_uploadQueue=[];_jobQueue=new P({concurrency:3});_queueSize=0;_queueProgress=0;_queueStatus=0;_notifiers=[];constructor(t=!1,e){if(this._isPublic=t,!e){const t=(0,b.HW)()?.uid,n=(0,A.dC)(`dav/files/${t}`);if(!t)throw new Error("User is not logged in");e=new y.vd({id:0,owner:t,permissions:y.aX.ALL,root:`/files/${t}`,source:n})}this.destination=e,Y.debug("Upload workspace initialized",{destination:this.destination,root:this.root,isPublic:t,maxChunksSize:H()})}get destination(){return this._destinationFolder}set destination(t){if(!t)throw new Error("Invalid destination folder");Y.debug("Destination set",{folder:t}),this._destinationFolder=t}get root(){return this._destinationFolder.source}get queue(){return this._uploadQueue}reset(){this._uploadQueue.splice(0,this._uploadQueue.length),this._jobQueue.clear(),this._queueSize=0,this._queueProgress=0,this._queueStatus=0}pause(){this._jobQueue.pause(),this._queueStatus=2}start(){this._jobQueue.start(),this._queueStatus=1,this.updateStats()}get info(){return{size:this._queueSize,progress:this._queueProgress,status:this._queueStatus}}updateStats(){const t=this._uploadQueue.map((t=>t.size)).reduce(((t,e)=>t+e),0),e=this._uploadQueue.map((t=>t.uploaded)).reduce(((t,e)=>t+e),0);this._queueSize=t,this._queueProgress=e,2!==this._queueStatus&&(this._queueStatus=this._jobQueue.size>0?1:0)}addNotifier(t){this._notifiers.push(t)}upload(t,e,n){const s=`${n||this.root}/${t.replace(/^\//,"")}`,{origin:i}=new URL(s),r=i+(0,w.O0)(s.slice(i.length));Y.debug(`Uploading ${e.name} to ${r}`);const o=H(e.size),a=0===o||e.size<o||this._isPublic,l=new G(s,!a,e.size,e);return this._uploadQueue.push(l),this.updateStats(),new T((async(t,n,s)=>{if(s(l.cancel),a){Y.debug("Initializing regular upload",{file:e,upload:l});const s=await $(e,0,l.size),i=async()=>{try{l.response=await q(r,s,l.signal,(t=>{l.uploaded=l.uploaded+t.bytes,this.updateStats()}),void 0,{"X-OC-Mtime":e.lastModified/1e3,"Content-Type":e.type}),l.uploaded=l.size,this.updateStats(),Y.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){if(t instanceof v.k3)return l.status=W.FAILED,void n("Upload has been cancelled");t?.response&&(l.response=t.response),l.status=W.FAILED,Y.error(`Failed uploading ${e.name}`,{error:t,file:e,upload:l}),n("Failed uploading the file")}this._notifiers.forEach((t=>{try{t(l)}catch{}}))};this._jobQueue.add(i),this.updateStats()}else{Y.debug("Initializing chunked upload",{file:e,upload:l});const s=await async function(t){const e=`${(0,A.dC)(`dav/uploads/${(0,b.HW)()?.uid}`)}/web-file-upload-${[...Array(16)].map((()=>Math.floor(16*Math.random()).toString(16))).join("")}`,n=t?{Destination:t}:void 0;return await _.A.request({method:"MKCOL",url:e,headers:n}),e}(r),i=[];for(let t=0;t<l.chunks;t++){const n=t*o,a=Math.min(n+o,l.size),c=()=>$(e,n,o),u=()=>q(`${s}/${t+1}`,c,l.signal,(()=>this.updateStats()),r,{"X-OC-Mtime":e.lastModified/1e3,"OC-Total-Length":e.size,"Content-Type":"application/octet-stream"}).then((()=>{l.uploaded=l.uploaded+o})).catch((e=>{throw 507===e?.response?.status?(Y.error("Upload failed, not enough space on the server or quota exceeded. Cancelling the remaining chunks",{error:e,upload:l}),l.cancel(),l.status=W.FAILED,e):(e instanceof v.k3||(Y.error(`Chunk ${t+1} ${n} - ${a} uploading failed`,{error:e,upload:l}),l.cancel(),l.status=W.FAILED),e)}));i.push(this._jobQueue.add(u))}try{await Promise.all(i),this.updateStats(),l.response=await _.A.request({method:"MOVE",url:`${s}/.file`,headers:{"X-OC-Mtime":e.lastModified/1e3,"OC-Total-Length":e.size,Destination:r}}),this.updateStats(),l.status=W.FINISHED,Y.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){t instanceof v.k3?(l.status=W.FAILED,n("Upload has been cancelled")):(l.status=W.FAILED,n("Failed assembling the chunks together")),_.A.request({method:"DELETE",url:`${s}`})}this._notifiers.forEach((t=>{try{t(l)}catch{}}))}return this._jobQueue.onIdle().then((()=>this.reset())),l}))}}function J(t,e,n,s,i,r,o,a){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),s&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),o?(l=function(t){!(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)&&typeof __VUE_SSR_CONTEXT__<"u"&&(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},c._ssrRegister=l):i&&(l=a?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(t,e){return l.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:t,options:c}}const Z=J({name:"CancelIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon cancel-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 2C17.5 2 22 6.5 22 12S17.5 22 12 22 2 17.5 2 12 6.5 2 12 2M12 4C10.1 4 8.4 4.6 7.1 5.7L18.3 16.9C19.3 15.5 20 13.8 20 12C20 7.6 16.4 4 12 4M16.9 18.3L5.7 7.1C4.6 8.4 4 10.1 4 12C4 16.4 7.6 20 12 20C13.9 20 15.6 19.4 16.9 18.3Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,tt=J({name:"PlusIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon plus-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,et=J({name:"UploadIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon upload-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,nt=(0,V.$)().detectLocale();[{locale:"af",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)","Content-Type":"text/plain; charset=UTF-8",Language:"af","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: af\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ar",json:{charset:"utf-8",headers:{"Last-Translator":"Ali <alimahwer@yahoo.com>, 2024","Language-Team":"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)","Content-Type":"text/plain; charset=UTF-8",Language:"ar","Plural-Forms":"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nAli <alimahwer@yahoo.com>, 2024\n"},msgstr:["Last-Translator: Ali <alimahwer@yahoo.com>, 2024\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar\nPlural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} ملف متعارض","{count} ملف متعارض","{count} ملفان متعارضان","{count} ملف متعارض","{count} ملفات متعارضة","{count} ملفات متعارضة"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} ملف متعارض في n {dirname}","{count} ملف متعارض في n {dirname}","{count} ملفان متعارضان في n {dirname}","{count} ملف متعارض في n {dirname}","{count} ملفات متعارضة في n {dirname}","{count} ملفات متعارضة في n {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} ثانية متبقية"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} متبقية"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["باقٍ بضعُ ثوانٍ"]},Cancel:{msgid:"Cancel",msgstr:["إلغاء"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["إلغِ العملية بالكامل"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["إلغاء عمليات رفع الملفات"]},Continue:{msgid:"Continue",msgstr:["إستمر"]},"estimating time left":{msgid:"estimating time left",msgstr:["تقدير الوقت المتبقي"]},"Existing version":{msgid:"Existing version",msgstr:["الإصدار الحالي"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["إذا اخترت الإبقاء على النسختين معاً، فإن الملف المنسوخ سيتم إلحاق رقم تسلسلي في نهاية اسمه."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["تاريخ آخر تعديل غير معلوم"]},New:{msgid:"New",msgstr:["جديد"]},"New version":{msgid:"New version",msgstr:["نسخة جديدة"]},paused:{msgid:"paused",msgstr:["مُجمَّد"]},"Preview image":{msgid:"Preview image",msgstr:["معاينة الصورة"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["حدِّد كل صناديق الخيارات"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["حدِّد كل الملفات الموجودة"]},"Select all new files":{msgid:"Select all new files",msgstr:["حدِّد كل الملفات الجديدة"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف"]},"Unknown size":{msgid:"Unknown size",msgstr:["حجم غير معلوم"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["تمَّ إلغاء الرفع"]},"Upload files":{msgid:"Upload files",msgstr:["رفع ملفات"]},"Upload progress":{msgid:"Upload progress",msgstr:["تقدُّم الرفع "]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["عند تحديد مجلد وارد، أي ملفات متعارضة بداخله ستتم الكتابة فوقها."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["أيُّ الملفات ترغب في الإبقاء عليها؟"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["يجب أن تختار نسخة واحدة على الأقل من كل ملف للاستمرار."]}}}}},{locale:"ar_SA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)","Content-Type":"text/plain; charset=UTF-8",Language:"ar_SA","Plural-Forms":"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar_SA\nPlural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ast",json:{charset:"utf-8",headers:{"Last-Translator":"enolp <enolp@softastur.org>, 2023","Language-Team":"Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)","Content-Type":"text/plain; charset=UTF-8",Language:"ast","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nenolp <enolp@softastur.org>, 2023\n"},msgstr:["Last-Translator: enolp <enolp@softastur.org>, 2023\nLanguage-Team: Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ast\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} ficheru en coflictu","{count} ficheros en coflictu"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} ficheru en coflictu en {dirname}","{count} ficheros en coflictu en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Queden {seconds} segundos"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Tiempu que queda: {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["queden unos segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Encaboxar les xubes"]},Continue:{msgid:"Continue",msgstr:["Siguir"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando'l tiempu que falta"]},"Existing version":{msgid:"Existing version",msgstr:["Versión esistente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si seleiciones dambes versiones, el ficheru copiáu va tener un númberu amestáu al so nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["La data de la última modificación ye desconocida"]},New:{msgid:"New",msgstr:["Nuevu"]},"New version":{msgid:"New version",msgstr:["Versión nueva"]},paused:{msgid:"paused",msgstr:["en posa"]},"Preview image":{msgid:"Preview image",msgstr:["Previsualizar la imaxe"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marcar toles caxelles"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleicionar tolos ficheros esistentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleicionar tolos ficheros nuevos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Saltar esti ficheru","Saltar {count} ficheros"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamañu desconocíu"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Encaboxóse la xuba"]},"Upload files":{msgid:"Upload files",msgstr:["Xubir ficheros"]},"Upload progress":{msgid:"Upload progress",msgstr:["Xuba en cursu"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["¿Qué ficheros quies caltener?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Tienes de seleicionar polo menos una versión de cada ficheru pa siguir."]}}}}},{locale:"az",json:{charset:"utf-8",headers:{"Last-Translator":"Rashad Aliyev <microphprashad@gmail.com>, 2023","Language-Team":"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)","Content-Type":"text/plain; charset=UTF-8",Language:"az","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nRashad Aliyev <microphprashad@gmail.com>, 2023\n"},msgstr:["Last-Translator: Rashad Aliyev <microphprashad@gmail.com>, 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: az\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} saniyə qalıb"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} qalıb"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["bir neçə saniyə qalıb"]},Add:{msgid:"Add",msgstr:["Əlavə et"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Yükləməni imtina et"]},"estimating time left":{msgid:"estimating time left",msgstr:["Təxmini qalan vaxt"]},paused:{msgid:"paused",msgstr:["pauzadadır"]},"Upload files":{msgid:"Upload files",msgstr:["Faylları yüklə"]}}}}},{locale:"be",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)","Content-Type":"text/plain; charset=UTF-8",Language:"be","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: be\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bg_BG",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)","Content-Type":"text/plain; charset=UTF-8",Language:"bg_BG","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bg_BG\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bn_BD",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)","Content-Type":"text/plain; charset=UTF-8",Language:"bn_BD","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bn_BD\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"br",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)","Content-Type":"text/plain; charset=UTF-8",Language:"br","Plural-Forms":"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bs",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)","Content-Type":"text/plain; charset=UTF-8",Language:"bs","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bs\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ca",json:{charset:"utf-8",headers:{"Last-Translator":"Toni Hermoso Pulido <toniher@softcatala.cat>, 2022","Language-Team":"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)","Content-Type":"text/plain; charset=UTF-8",Language:"ca","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMarc Riera <marcriera@softcatala.org>, 2022\nToni Hermoso Pulido <toniher@softcatala.cat>, 2022\n"},msgstr:["Last-Translator: Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Queden {seconds} segons"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["Queden {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Queden uns segons"]},Add:{msgid:"Add",msgstr:["Afegeix"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancel·la les pujades"]},"estimating time left":{msgid:"estimating time left",msgstr:["S'està estimant el temps restant"]},paused:{msgid:"paused",msgstr:["En pausa"]},"Upload files":{msgid:"Upload files",msgstr:["Puja els fitxers"]}}}}},{locale:"cs",json:{charset:"utf-8",headers:{"Last-Translator":"Pavel Borecki <pavel.borecki@gmail.com>, 2022","Language-Team":"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)","Content-Type":"text/plain; charset=UTF-8",Language:"cs","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPavel Borecki <pavel.borecki@gmail.com>, 2022\n"},msgstr:["Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2022\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["zbývá {seconds}"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["zbývá {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["zbývá několik sekund"]},Add:{msgid:"Add",msgstr:["Přidat"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Zrušit nahrávání"]},"estimating time left":{msgid:"estimating time left",msgstr:["odhadovaný zbývající čas"]},paused:{msgid:"paused",msgstr:["pozastaveno"]}}}}},{locale:"cs_CZ",json:{charset:"utf-8",headers:{"Last-Translator":"Michal Šmahel <ceskyDJ@seznam.cz>, 2024","Language-Team":"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)","Content-Type":"text/plain; charset=UTF-8",Language:"cs_CZ","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMichal Šmahel <ceskyDJ@seznam.cz>, 2024\n"},msgstr:["Last-Translator: Michal Šmahel <ceskyDJ@seznam.cz>, 2024\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} kolize souborů","{count} kolize souborů","{count} kolizí souborů","{count} kolize souborů"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} kolize souboru v {dirname}","{count} kolize souboru v {dirname}","{count} kolizí souborů v {dirname}","{count} kolize souboru v {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["zbývá {seconds}"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["zbývá {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["zbývá několik sekund"]},Cancel:{msgid:"Cancel",msgstr:["Zrušit"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Zrušit celou operaci"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Zrušit nahrávání"]},Continue:{msgid:"Continue",msgstr:["Pokračovat"]},"estimating time left":{msgid:"estimating time left",msgstr:["odhaduje se zbývající čas"]},"Existing version":{msgid:"Existing version",msgstr:["Existující verze"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Pokud vyberete obě verze, zkopírovaný soubor bude mít k názvu přidáno číslo."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Neznámé datum poslední úpravy"]},New:{msgid:"New",msgstr:["Nové"]},"New version":{msgid:"New version",msgstr:["Nová verze"]},paused:{msgid:"paused",msgstr:["pozastaveno"]},"Preview image":{msgid:"Preview image",msgstr:["Náhled obrázku"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Označit všechny zaškrtávací kolonky"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Vybrat veškeré stávající soubory"]},"Select all new files":{msgid:"Select all new files",msgstr:["Vybrat veškeré nové soubory"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Přeskočit tento soubor","Přeskočit {count} soubory","Přeskočit {count} souborů","Přeskočit {count} soubory"]},"Unknown size":{msgid:"Unknown size",msgstr:["Neznámá velikost"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Nahrávání zrušeno"]},"Upload files":{msgid:"Upload files",msgstr:["Nahrát soubory"]},"Upload progress":{msgid:"Upload progress",msgstr:["Postup v nahrávání"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Po výběru příchozí složky budou rovněž přepsány všechny v ní obsažené konfliktní soubory"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Které soubory si přejete ponechat?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Aby bylo možné pokračovat, je třeba vybrat alespoň jednu verzi od každého souboru."]}}}}},{locale:"cy_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)","Content-Type":"text/plain; charset=UTF-8",Language:"cy_GB","Plural-Forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cy_GB\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"da",json:{charset:"utf-8",headers:{"Last-Translator":"Martin Bonde <Martin@maboni.dk>, 2024","Language-Team":"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)","Content-Type":"text/plain; charset=UTF-8",Language:"da","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMartin Bonde <Martin@maboni.dk>, 2024\n"},msgstr:["Last-Translator: Martin Bonde <Martin@maboni.dk>, 2024\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} fil konflikt","{count} filer i konflikt"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} fil konflikt i {dirname}","{count} filer i konflikt i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{sekunder} sekunder tilbage"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{tid} tilbage"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["et par sekunder tilbage"]},Cancel:{msgid:"Cancel",msgstr:["Annuller"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Annuller hele handlingen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annuller uploads"]},Continue:{msgid:"Continue",msgstr:["Fortsæt"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimering af resterende tid"]},"Existing version":{msgid:"Existing version",msgstr:["Eksisterende version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Hvis du vælger begge versioner vil den kopierede fil få et nummer tilføjet til sit navn."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Sidste modifikationsdato ukendt"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny version"]},paused:{msgid:"paused",msgstr:["pauset"]},"Preview image":{msgid:"Preview image",msgstr:["Forhåndsvisning af billede"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Vælg alle felter"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Vælg alle eksisterende filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Vælg alle nye filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Spring denne fil over","Spring {count} filer over"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukendt størrelse"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Upload annulleret"]},"Upload files":{msgid:"Upload files",msgstr:["Upload filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Upload fremskridt"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Når en indgående mappe er valgt, vil alle modstridende filer i den også blive overskrevet."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvilke filer ønsker du at beholde?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du skal vælge mindst én version af hver fil for at fortsætte."]}}}}},{locale:"de",json:{charset:"utf-8",headers:{"Last-Translator":"Mario Siegmann <mario_siegmann@web.de>, 2024","Language-Team":"German (https://app.transifex.com/nextcloud/teams/64236/de/)","Content-Type":"text/plain; charset=UTF-8",Language:"de","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n"},msgstr:["Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Datei-Konflikt","{count} Datei-Konflikte"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} Datei-Konflikt in {dirname}","{count} Datei-Konflikte in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} Sekunden verbleibend"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} verbleibend"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["noch ein paar Sekunden"]},Cancel:{msgid:"Cancel",msgstr:["Abbrechen"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hochladen abbrechen"]},Continue:{msgid:"Continue",msgstr:["Fortsetzen"]},"estimating time left":{msgid:"estimating time left",msgstr:["Geschätzte verbleibende Zeit"]},"Existing version":{msgid:"Existing version",msgstr:["Vorhandene Version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Wenn du beide Versionen auswählst, wird der kopierten Datei eine Nummer zum Namen hinzugefügt."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},New:{msgid:"New",msgstr:["Neu"]},"New version":{msgid:"New version",msgstr:["Neue Version"]},paused:{msgid:"paused",msgstr:["Pausiert"]},"Preview image":{msgid:"Preview image",msgstr:["Vorschaubild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},"Select all new files":{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Diese Datei überspringen","{count} Dateien überspringen"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unbekannte Größe"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hochladen abgebrochen"]},"Upload files":{msgid:"Upload files",msgstr:["Dateien hochladen"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fortschritt beim Hochladen"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien möchtest du behalten?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du musst mindestens eine Version jeder Datei auswählen, um fortzufahren."]}}}}},{locale:"de_DE",json:{charset:"utf-8",headers:{"Last-Translator":"Mario Siegmann <mario_siegmann@web.de>, 2024","Language-Team":"German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)","Content-Type":"text/plain; charset=UTF-8",Language:"de_DE","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n"},msgstr:["Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Datei-Konflikt","{count} Datei-Konflikte"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} Datei-Konflikt in {dirname}","{count} Datei-Konflikte in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} Sekunden verbleiben"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} verbleibend"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["ein paar Sekunden verbleiben"]},Cancel:{msgid:"Cancel",msgstr:["Abbrechen"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hochladen abbrechen"]},Continue:{msgid:"Continue",msgstr:["Fortsetzen"]},"estimating time left":{msgid:"estimating time left",msgstr:["Geschätzte verbleibende Zeit"]},"Existing version":{msgid:"Existing version",msgstr:["Vorhandene Version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Wenn Sie beide Versionen auswählen, wird der kopierten Datei eine Nummer zum Namen hinzugefügt."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},New:{msgid:"New",msgstr:["Neu"]},"New version":{msgid:"New version",msgstr:["Neue Version"]},paused:{msgid:"paused",msgstr:["Pausiert"]},"Preview image":{msgid:"Preview image",msgstr:["Vorschaubild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},"Select all new files":{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["{count} Datei überspringen","{count} Dateien überspringen"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unbekannte Größe"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hochladen abgebrochen"]},"Upload files":{msgid:"Upload files",msgstr:["Dateien hochladen"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fortschritt beim Hochladen"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien möchten Sie behalten?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Sie müssen mindestens eine Version jeder Datei auswählen, um fortzufahren."]}}}}},{locale:"el",json:{charset:"utf-8",headers:{"Last-Translator":"Nik Pap, 2022","Language-Team":"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)","Content-Type":"text/plain; charset=UTF-8",Language:"el","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nNik Pap, 2022\n"},msgstr:["Last-Translator: Nik Pap, 2022\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["απομένουν {seconds} δευτερόλεπτα"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["απομένουν {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["απομένουν λίγα δευτερόλεπτα"]},Add:{msgid:"Add",msgstr:["Προσθήκη"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Ακύρωση μεταφορτώσεων"]},"estimating time left":{msgid:"estimating time left",msgstr:["εκτίμηση του χρόνου που απομένει"]},paused:{msgid:"paused",msgstr:["σε παύση"]},"Upload files":{msgid:"Upload files",msgstr:["Μεταφόρτωση αρχείων"]}}}}},{locale:"el_GR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)","Content-Type":"text/plain; charset=UTF-8",Language:"el_GR","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el_GR\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"en_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Andi Chandler <andi@gowling.com>, 2023","Language-Team":"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)","Content-Type":"text/plain; charset=UTF-8",Language:"en_GB","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAndi Chandler <andi@gowling.com>, 2023\n"},msgstr:["Last-Translator: Andi Chandler <andi@gowling.com>, 2023\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: en_GB\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file conflict","{count} files conflict"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file conflict in {dirname}","{count} file conflicts in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} seconds left"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} left"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["a few seconds left"]},Add:{msgid:"Add",msgstr:["Add"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancel uploads"]},Continue:{msgid:"Continue",msgstr:["Continue"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimating time left"]},"Existing version":{msgid:"Existing version",msgstr:["Existing version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["If you select both versions, the copied file will have a number added to its name."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Last modified date unknown"]},"New version":{msgid:"New version",msgstr:["New version"]},paused:{msgid:"paused",msgstr:["paused"]},"Preview image":{msgid:"Preview image",msgstr:["Preview image"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Select all checkboxes"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Select all existing files"]},"Select all new files":{msgid:"Select all new files",msgstr:["Select all new files"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Skip this file","Skip {count} files"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unknown size"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Upload cancelled"]},"Upload files":{msgid:"Upload files",msgstr:["Upload files"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Which files do you want to keep?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["You need to select at least one version of each file to continue."]}}}}},{locale:"eo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)","Content-Type":"text/plain; charset=UTF-8",Language:"eo","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eo\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es",json:{charset:"utf-8",headers:{"Last-Translator":"Julio C. Ortega, 2024","Language-Team":"Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)","Content-Type":"text/plain; charset=UTF-8",Language:"es","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nFranciscoFJ <dev-ooo@satel-sa.com>, 2023\nNext Cloud <nextcloud.translator.es@cgj.es>, 2023\nJulio C. Ortega, 2024\n"},msgstr:["Last-Translator: Julio C. Ortega, 2024\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} archivo en conflicto","{count} archivos en conflicto","{count} archivos en conflicto"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} archivo en conflicto en {dirname}","{count} archivos en conflicto en {dirname}","{count} archivos en conflicto en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan unos segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},"Existing version":{msgid:"Existing version",msgstr:["Versión existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si selecciona ambas versiones, al archivo copiado se le añadirá un número en el nombre."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Última fecha de modificación desconocida"]},New:{msgid:"New",msgstr:["Nuevo"]},"New version":{msgid:"New version",msgstr:["Nueva versión"]},paused:{msgid:"paused",msgstr:["pausado"]},"Preview image":{msgid:"Preview image",msgstr:["Previsualizar imagen"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Seleccionar todas las casillas de verificación"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleccionar todos los archivos existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleccionar todos los archivos nuevos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Saltar este archivo","Saltar {count} archivos","Saltar {count} archivos"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamaño desconocido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Subida cancelada"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progreso de la subida"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["¿Qué archivos desea conservar?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Debe seleccionar al menos una versión de cada archivo para continuar."]}}}}},{locale:"es_419",json:{charset:"utf-8",headers:{"Last-Translator":"ALEJANDRO CASTRO, 2022","Language-Team":"Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_419","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nALEJANDRO CASTRO, 2022\n"},msgstr:["Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_419\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{tiempo} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan pocos segundos"]},Add:{msgid:"Add",msgstr:["agregar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]}}}}},{locale:"es_AR",json:{charset:"utf-8",headers:{"Last-Translator":"Matias Iglesias, 2022","Language-Team":"Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_AR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMatias Iglesias, 2022\n"},msgstr:["Last-Translator: Matias Iglesias, 2022\nLanguage-Team: Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_AR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan unos segundos"]},Add:{msgid:"Add",msgstr:["Añadir"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]}}}}},{locale:"es_CL",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CL","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CL\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_CO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CO","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_CR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_DO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_DO","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_DO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_EC",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_EC","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_EC\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_GT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_GT","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_GT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_HN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_HN","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_HN\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_MX",json:{charset:"utf-8",headers:{"Last-Translator":"ALEJANDRO CASTRO, 2022","Language-Team":"Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_MX","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nLuis Francisco Castro, 2022\nALEJANDRO CASTRO, 2022\n"},msgstr:["Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_MX\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{tiempo} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan pocos segundos"]},Add:{msgid:"Add",msgstr:["agregar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["cancelar las cargas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["en pausa"]},"Upload files":{msgid:"Upload files",msgstr:["cargar archivos"]}}}}},{locale:"es_NI",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_NI","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_NI\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PA","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PA\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PE","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PE\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PY","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_SV",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_SV","Plural-Forms":"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_SV\nPlural-Forms: nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_UY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_UY","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_UY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"et_EE",json:{charset:"utf-8",headers:{"Last-Translator":"Taavo Roos, 2023","Language-Team":"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)","Content-Type":"text/plain; charset=UTF-8",Language:"et_EE","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMait R, 2022\nTaavo Roos, 2023\n"},msgstr:["Last-Translator: Taavo Roos, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: et_EE\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} jäänud sekundid"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} aega jäänud"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["jäänud mõni sekund"]},Add:{msgid:"Add",msgstr:["Lisa"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Tühista üleslaadimine"]},"estimating time left":{msgid:"estimating time left",msgstr:["hinnanguline järelejäänud aeg"]},paused:{msgid:"paused",msgstr:["pausil"]},"Upload files":{msgid:"Upload files",msgstr:["Lae failid üles"]}}}}},{locale:"eu",json:{charset:"utf-8",headers:{"Last-Translator":"Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022","Language-Team":"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)","Content-Type":"text/plain; charset=UTF-8",Language:"eu","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nUnai Tolosa Pontesta <utolosa002@gmail.com>, 2022\n"},msgstr:["Last-Translator: Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundo geratzen dira"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} geratzen da"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["segundo batzuk geratzen dira"]},Add:{msgid:"Add",msgstr:["Gehitu"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Ezeztatu igoerak"]},"estimating time left":{msgid:"estimating time left",msgstr:["kalkulatutako geratzen den denbora"]},paused:{msgid:"paused",msgstr:["geldituta"]},"Upload files":{msgid:"Upload files",msgstr:["Igo fitxategiak"]}}}}},{locale:"fa",json:{charset:"utf-8",headers:{"Last-Translator":"Fatemeh Komeily, 2023","Language-Team":"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)","Content-Type":"text/plain; charset=UTF-8",Language:"fa","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nFatemeh Komeily, 2023\n"},msgstr:["Last-Translator: Fatemeh Komeily, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fa\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["ثانیه های باقی مانده"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["باقی مانده"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["چند ثانیه مانده"]},Add:{msgid:"Add",msgstr:["اضافه کردن"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["کنسل کردن فایل های اپلود شده"]},"estimating time left":{msgid:"estimating time left",msgstr:["تخمین زمان باقی مانده"]},paused:{msgid:"paused",msgstr:["مکث کردن"]},"Upload files":{msgid:"Upload files",msgstr:["بارگذاری فایل ها"]}}}}},{locale:"fi_FI",json:{charset:"utf-8",headers:{"Last-Translator":"Jiri Grönroos <jiri.gronroos@iki.fi>, 2022","Language-Team":"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)","Content-Type":"text/plain; charset=UTF-8",Language:"fi_FI","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJiri Grönroos <jiri.gronroos@iki.fi>, 2022\n"},msgstr:["Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekuntia jäljellä"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} jäljellä"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["muutama sekunti jäljellä"]},Add:{msgid:"Add",msgstr:["Lisää"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Peruuta lähetykset"]},"estimating time left":{msgid:"estimating time left",msgstr:["arvioidaan jäljellä olevaa aikaa"]},paused:{msgid:"paused",msgstr:["keskeytetty"]},"Upload files":{msgid:"Upload files",msgstr:["Lähetä tiedostoja"]}}}}},{locale:"fo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)","Content-Type":"text/plain; charset=UTF-8",Language:"fo","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fo\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"fr",json:{charset:"utf-8",headers:{"Last-Translator":"jed boulahya, 2024","Language-Team":"French (https://app.transifex.com/nextcloud/teams/64236/fr/)","Content-Type":"text/plain; charset=UTF-8",Language:"fr","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nBenoit Pruneau, 2024\njed boulahya, 2024\n"},msgstr:["Last-Translator: jed boulahya, 2024\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} fichier en conflit","{count} fichiers en conflit","{count} fichiers en conflit"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} fichier en conflit dans {dirname}","{count} fichiers en conflit dans {dirname}","{count} fichiers en conflit dans {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secondes restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restant"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quelques secondes restantes"]},Cancel:{msgid:"Cancel",msgstr:["Annuler"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Annuler l'opération entière"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annuler les envois"]},Continue:{msgid:"Continue",msgstr:["Continuer"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimation du temps restant"]},"Existing version":{msgid:"Existing version",msgstr:["Version existante"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si vous sélectionnez les deux versions, le fichier copié aura un numéro ajouté àname."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Date de la dernière modification est inconnue"]},New:{msgid:"New",msgstr:["Nouveau"]},"New version":{msgid:"New version",msgstr:["Nouvelle version"]},paused:{msgid:"paused",msgstr:["en pause"]},"Preview image":{msgid:"Preview image",msgstr:["Aperçu de l'image"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Sélectionner toutes les cases à cocher"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Sélectionner tous les fichiers existants"]},"Select all new files":{msgid:"Select all new files",msgstr:["Sélectionner tous les nouveaux fichiers"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Ignorer ce fichier","Ignorer {count} fichiers","Ignorer {count} fichiers"]},"Unknown size":{msgid:"Unknown size",msgstr:["Taille inconnue"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:[" annulé"]},"Upload files":{msgid:"Upload files",msgstr:["Téléchargement des fichiers"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progression du téléchargement"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Lorsqu'un dossier entrant est sélectionné, tous les fichiers en conflit qu'il contient seront également écrasés."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quels fichiers souhaitez-vous conserver ?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Vous devez sélectionner au moins une version de chaque fichier pour continuer."]}}}}},{locale:"gd",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)","Content-Type":"text/plain; charset=UTF-8",Language:"gd","Plural-Forms":"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gd\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"gl",json:{charset:"utf-8",headers:{"Last-Translator":"Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023","Language-Team":"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)","Content-Type":"text/plain; charset=UTF-8",Language:"gl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nNacho <nacho.vfranco@gmail.com>, 2023\nMiguel Anxo Bouzada <mbouzada@gmail.com>, 2023\n"},msgstr:["Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} conflito de ficheiros","{count} conflitos de ficheiros"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} conflito de ficheiros en {dirname}","{count} conflitos de ficheiros en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["faltan {seconds} segundos"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["falta {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["faltan uns segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar envíos"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["calculando canto tempo falta"]},"Existing version":{msgid:"Existing version",msgstr:["Versión existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se selecciona ambas as versións, o ficheiro copiado terá un número engadido ao seu nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Data da última modificación descoñecida"]},New:{msgid:"New",msgstr:["Nova"]},"New version":{msgid:"New version",msgstr:["Nova versión"]},paused:{msgid:"paused",msgstr:["detido"]},"Preview image":{msgid:"Preview image",msgstr:["Vista previa da imaxe"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marcar todas as caixas de selección"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleccionar todos os ficheiros existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleccionar todos os ficheiros novos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Omita este ficheiro","Omitir {count} ficheiros"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamaño descoñecido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Envío cancelado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar ficheiros"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progreso do envío"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Que ficheiros quere conservar?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Debe seleccionar polo menos unha versión de cada ficheiro para continuar."]}}}}},{locale:"he",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)","Content-Type":"text/plain; charset=UTF-8",Language:"he","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hi_IN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)","Content-Type":"text/plain; charset=UTF-8",Language:"hi_IN","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hi_IN\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hr",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)","Content-Type":"text/plain; charset=UTF-8",Language:"hr","Plural-Forms":"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hr\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hsb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)","Content-Type":"text/plain; charset=UTF-8",Language:"hsb","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hsb\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hu",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)","Content-Type":"text/plain; charset=UTF-8",Language:"hu","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hu_HU",json:{charset:"utf-8",headers:{"Last-Translator":"Balázs Úr, 2022","Language-Team":"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)","Content-Type":"text/plain; charset=UTF-8",Language:"hu_HU","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nBalázs Meskó <meskobalazs@mailbox.org>, 2022\nBalázs Úr, 2022\n"},msgstr:["Last-Translator: Balázs Úr, 2022\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{} másodperc van hátra"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} van hátra"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["pár másodperc van hátra"]},Add:{msgid:"Add",msgstr:["Hozzáadás"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Feltöltések megszakítása"]},"estimating time left":{msgid:"estimating time left",msgstr:["hátralévő idő becslése"]},paused:{msgid:"paused",msgstr:["szüneteltetve"]},"Upload files":{msgid:"Upload files",msgstr:["Fájlok feltöltése"]}}}}},{locale:"hy",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)","Content-Type":"text/plain; charset=UTF-8",Language:"hy","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hy\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ia",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)","Content-Type":"text/plain; charset=UTF-8",Language:"ia","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ia\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"id",json:{charset:"utf-8",headers:{"Last-Translator":"Linerly <linerly@proton.me>, 2023","Language-Team":"Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)","Content-Type":"text/plain; charset=UTF-8",Language:"id","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nEmpty Slot Filler, 2023\nLinerly <linerly@proton.me>, 2023\n"},msgstr:["Last-Translator: Linerly <linerly@proton.me>, 2023\nLanguage-Team: Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: id\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} berkas berkonflik"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} berkas berkonflik dalam {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} detik tersisa"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} tersisa"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["tinggal sebentar lagi"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Batalkan unggahan"]},Continue:{msgid:"Continue",msgstr:["Lanjutkan"]},"estimating time left":{msgid:"estimating time left",msgstr:["memperkirakan waktu yang tersisa"]},"Existing version":{msgid:"Existing version",msgstr:["Versi yang ada"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Jika Anda memilih kedua versi, nama berkas yang disalin akan ditambahi angka."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Tanggal perubahan terakhir tidak diketahui"]},New:{msgid:"New",msgstr:["Baru"]},"New version":{msgid:"New version",msgstr:["Versi baru"]},paused:{msgid:"paused",msgstr:["dijeda"]},"Preview image":{msgid:"Preview image",msgstr:["Gambar pratinjau"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Pilih semua kotak centang"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Pilih semua berkas yang ada"]},"Select all new files":{msgid:"Select all new files",msgstr:["Pilih semua berkas baru"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Lewati {count} berkas"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukuran tidak diketahui"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Unggahan dibatalkan"]},"Upload files":{msgid:"Upload files",msgstr:["Unggah berkas"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Berkas mana yang Anda ingin tetap simpan?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Anda harus memilih setidaknya satu versi dari masing-masing berkas untuk melanjutkan."]}}}}},{locale:"ig",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)","Content-Type":"text/plain; charset=UTF-8",Language:"ig","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ig\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"is",json:{charset:"utf-8",headers:{"Last-Translator":"Sveinn í Felli <sv1@fellsnet.is>, 2023","Language-Team":"Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)","Content-Type":"text/plain; charset=UTF-8",Language:"is","Plural-Forms":"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nSveinn í Felli <sv1@fellsnet.is>, 2023\n"},msgstr:["Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2023\nLanguage-Team: Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} árekstur skráa","{count} árekstrar skráa"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} árekstur skráa í {dirname}","{count} árekstrar skráa í {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekúndur eftir"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} eftir"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["nokkrar sekúndur eftir"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hætta við innsendingar"]},Continue:{msgid:"Continue",msgstr:["Halda áfram"]},"estimating time left":{msgid:"estimating time left",msgstr:["áætla tíma sem eftir er"]},"Existing version":{msgid:"Existing version",msgstr:["Fyrirliggjandi útgáfa"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Ef þú velur báðar útgáfur, þá mun verða bætt tölustaf aftan við heiti afrituðu skrárinnar."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Síðasta breytingadagsetning er óþekkt"]},New:{msgid:"New",msgstr:["Nýtt"]},"New version":{msgid:"New version",msgstr:["Ný útgáfa"]},paused:{msgid:"paused",msgstr:["í bið"]},"Preview image":{msgid:"Preview image",msgstr:["Forskoðun myndar"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Velja gátreiti"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Velja allar fyrirliggjandi skrár"]},"Select all new files":{msgid:"Select all new files",msgstr:["Velja allar nýjar skrár"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Sleppa þessari skrá","Sleppa {count} skrám"]},"Unknown size":{msgid:"Unknown size",msgstr:["Óþekkt stærð"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hætt við innsendingu"]},"Upload files":{msgid:"Upload files",msgstr:["Senda inn skrár"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvaða skrám vilt þú vilt halda eftir?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Þú verður að velja að minnsta kosti eina útgáfu af hverri skrá til að halda áfram."]}}}}},{locale:"it",json:{charset:"utf-8",headers:{"Last-Translator":"Random_R, 2023","Language-Team":"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)","Content-Type":"text/plain; charset=UTF-8",Language:"it","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nLep Lep, 2023\nRandom_R, 2023\n"},msgstr:["Last-Translator: Random_R, 2023\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file in conflitto","{count} file in conflitto","{count} file in conflitto"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file in conflitto in {dirname}","{count} file in conflitto in {dirname}","{count} file in conflitto in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secondi rimanenti "]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} rimanente"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["alcuni secondi rimanenti"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annulla i caricamenti"]},Continue:{msgid:"Continue",msgstr:["Continua"]},"estimating time left":{msgid:"estimating time left",msgstr:["calcolo il tempo rimanente"]},"Existing version":{msgid:"Existing version",msgstr:["Versione esistente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se selezioni entrambe le versioni, nel nome del file copiato verrà aggiunto un numero "]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Ultima modifica sconosciuta"]},New:{msgid:"New",msgstr:["Nuovo"]},"New version":{msgid:"New version",msgstr:["Nuova versione"]},paused:{msgid:"paused",msgstr:["pausa"]},"Preview image":{msgid:"Preview image",msgstr:["Anteprima immagine"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Seleziona tutte le caselle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleziona tutti i file esistenti"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleziona tutti i nuovi file"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Salta questo file","Salta {count} file","Salta {count} file"]},"Unknown size":{msgid:"Unknown size",msgstr:["Dimensione sconosciuta"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Caricamento cancellato"]},"Upload files":{msgid:"Upload files",msgstr:["Carica i file"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quali file vuoi mantenere?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Devi selezionare almeno una versione di ogni file per continuare"]}}}}},{locale:"it_IT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)","Content-Type":"text/plain; charset=UTF-8",Language:"it_IT","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it_IT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ja_JP",json:{charset:"utf-8",headers:{"Last-Translator":"かたかめ, 2022","Language-Team":"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)","Content-Type":"text/plain; charset=UTF-8",Language:"ja_JP","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nT.S, 2022\nかたかめ, 2022\n"},msgstr:["Last-Translator: かたかめ, 2022\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["残り {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["残り {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["残り数秒"]},Add:{msgid:"Add",msgstr:["追加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["アップロードをキャンセル"]},"estimating time left":{msgid:"estimating time left",msgstr:["概算残り時間"]},paused:{msgid:"paused",msgstr:["一時停止中"]},"Upload files":{msgid:"Upload files",msgstr:["ファイルをアップデート"]}}}}},{locale:"ka",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)","Content-Type":"text/plain; charset=UTF-8",Language:"ka","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ka_GE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)","Content-Type":"text/plain; charset=UTF-8",Language:"ka_GE","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka_GE\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"kab",json:{charset:"utf-8",headers:{"Last-Translator":"ZiriSut, 2023","Language-Team":"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)","Content-Type":"text/plain; charset=UTF-8",Language:"kab","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nZiriSut, 2023\n"},msgstr:["Last-Translator: ZiriSut, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kab\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} tesdatin i d-yeqqimen"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} i d-yeqqimen"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["qqiment-d kra n tesdatin kan"]},Add:{msgid:"Add",msgstr:["Rnu"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Sefsex asali"]},"estimating time left":{msgid:"estimating time left",msgstr:["asizel n wakud i d-yeqqimen"]},paused:{msgid:"paused",msgstr:["yeḥbes"]},"Upload files":{msgid:"Upload files",msgstr:["Sali-d ifuyla"]}}}}},{locale:"kk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)","Content-Type":"text/plain; charset=UTF-8",Language:"kk","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kk\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"km",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)","Content-Type":"text/plain; charset=UTF-8",Language:"km","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: km\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"kn",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)","Content-Type":"text/plain; charset=UTF-8",Language:"kn","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kn\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ko",json:{charset:"utf-8",headers:{"Last-Translator":"Brandon Han, 2024","Language-Team":"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)","Content-Type":"text/plain; charset=UTF-8",Language:"ko","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nhosun Lee, 2023\nBrandon Han, 2024\n"},msgstr:["Last-Translator: Brandon Han, 2024\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ko\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count}개의 파일이 충돌함"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname}에서 {count}개의 파일이 충돌함"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} 남음"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} 남음"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["곧 완료"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["업로드 취소"]},Continue:{msgid:"Continue",msgstr:["확인"]},"estimating time left":{msgid:"estimating time left",msgstr:["남은 시간 계산"]},"Existing version":{msgid:"Existing version",msgstr:["현재 버전"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["두 버전을 모두 선택할 경우, 복제된 파일 이름에 숫자가 추가됩니다."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["최근 수정일 알 수 없음"]},New:{msgid:"New",msgstr:["새로 만들기"]},"New version":{msgid:"New version",msgstr:["새 버전"]},paused:{msgid:"paused",msgstr:["일시정지됨"]},"Preview image":{msgid:"Preview image",msgstr:["미리보기 이미지"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["모든 체크박스 선택"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["모든 파일 선택"]},"Select all new files":{msgid:"Select all new files",msgstr:["모든 새 파일 선택"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["{count}개의 파일 넘기기"]},"Unknown size":{msgid:"Unknown size",msgstr:["크기를 알 수 없음"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["업로드 취소됨"]},"Upload files":{msgid:"Upload files",msgstr:["파일 업로드"]},"Upload progress":{msgid:"Upload progress",msgstr:["업로드 진행도"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["어떤 파일을 보존하시겠습니까?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["계속하기 위해서는 한 파일에 최소 하나의 버전을 선택해야 합니다."]}}}}},{locale:"la",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Latin (https://www.transifex.com/nextcloud/teams/64236/la/)","Content-Type":"text/plain; charset=UTF-8",Language:"la","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: la\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)","Content-Type":"text/plain; charset=UTF-8",Language:"lb","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lb\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)","Content-Type":"text/plain; charset=UTF-8",Language:"lo","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lo\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lt_LT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)","Content-Type":"text/plain; charset=UTF-8",Language:"lt_LT","Plural-Forms":"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lv",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)","Content-Type":"text/plain; charset=UTF-8",Language:"lv","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"mk",json:{charset:"utf-8",headers:{"Last-Translator":"Сашко Тодоров <sasetodorov@gmail.com>, 2022","Language-Team":"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)","Content-Type":"text/plain; charset=UTF-8",Language:"mk","Plural-Forms":"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nСашко Тодоров <sasetodorov@gmail.com>, 2022\n"},msgstr:["Last-Translator: Сашко Тодоров <sasetodorov@gmail.com>, 2022\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["преостануваат {seconds} секунди"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["преостанува {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["уште неколку секунди"]},Add:{msgid:"Add",msgstr:["Додади"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Прекини прикачување"]},"estimating time left":{msgid:"estimating time left",msgstr:["приближно преостанато време"]},paused:{msgid:"paused",msgstr:["паузирано"]},"Upload files":{msgid:"Upload files",msgstr:["Прикачување датотеки"]}}}}},{locale:"mn",json:{charset:"utf-8",headers:{"Last-Translator":"BATKHUYAG Ganbold, 2023","Language-Team":"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)","Content-Type":"text/plain; charset=UTF-8",Language:"mn","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nBATKHUYAG Ganbold, 2023\n"},msgstr:["Last-Translator: BATKHUYAG Ganbold, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mn\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} секунд үлдсэн"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} үлдсэн"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["хэдхэн секунд үлдсэн"]},Add:{msgid:"Add",msgstr:["Нэмэх"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Илгээлтийг цуцлах"]},"estimating time left":{msgid:"estimating time left",msgstr:["Үлдсэн хугацааг тооцоолж байна"]},paused:{msgid:"paused",msgstr:["түр зогсоосон"]},"Upload files":{msgid:"Upload files",msgstr:["Файл илгээх"]}}}}},{locale:"mr",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)","Content-Type":"text/plain; charset=UTF-8",Language:"mr","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mr\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ms_MY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)","Content-Type":"text/plain; charset=UTF-8",Language:"ms_MY","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ms_MY\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"my",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)","Content-Type":"text/plain; charset=UTF-8",Language:"my","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: my\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nb_NO",json:{charset:"utf-8",headers:{"Last-Translator":"Syvert Fossdal, 2024","Language-Team":"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)","Content-Type":"text/plain; charset=UTF-8",Language:"nb_NO","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nSyvert Fossdal, 2024\n"},msgstr:["Last-Translator: Syvert Fossdal, 2024\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file conflict","{count} filkonflikter"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file conflict in {dirname}","{count} filkonflikter i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekunder igjen"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} igjen"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["noen få sekunder igjen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Avbryt opplastninger"]},Continue:{msgid:"Continue",msgstr:["Fortsett"]},"estimating time left":{msgid:"estimating time left",msgstr:["Estimerer tid igjen"]},"Existing version":{msgid:"Existing version",msgstr:["Gjeldende versjon"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Hvis du velger begge versjoner, vil den kopierte filen få et tall lagt til navnet."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Siste gang redigert ukjent"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny versjon"]},paused:{msgid:"paused",msgstr:["pauset"]},"Preview image":{msgid:"Preview image",msgstr:["Forhåndsvis bilde"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Velg alle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Velg alle eksisterende filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Velg alle nye filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Skip this file","Hopp over {count} filer"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukjent størrelse"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Opplasting avbrutt"]},"Upload files":{msgid:"Upload files",msgstr:["Last opp filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fremdrift, opplasting"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvilke filer vil du beholde?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du må velge minst en versjon av hver fil for å fortsette."]}}}}},{locale:"ne",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)","Content-Type":"text/plain; charset=UTF-8",Language:"ne","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ne\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nl",json:{charset:"utf-8",headers:{"Last-Translator":"Rico <rico-schwab@hotmail.com>, 2023","Language-Team":"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)","Content-Type":"text/plain; charset=UTF-8",Language:"nl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nRico <rico-schwab@hotmail.com>, 2023\n"},msgstr:["Last-Translator: Rico <rico-schwab@hotmail.com>, 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Nog {seconds} seconden"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{seconds} over"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Nog een paar seconden"]},Add:{msgid:"Add",msgstr:["Voeg toe"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Uploads annuleren"]},"estimating time left":{msgid:"estimating time left",msgstr:["Schatting van de resterende tijd"]},paused:{msgid:"paused",msgstr:["Gepauzeerd"]},"Upload files":{msgid:"Upload files",msgstr:["Upload bestanden"]}}}}},{locale:"nn",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)","Content-Type":"text/plain; charset=UTF-8",Language:"nn","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nn_NO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)","Content-Type":"text/plain; charset=UTF-8",Language:"nn_NO","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"oc",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)","Content-Type":"text/plain; charset=UTF-8",Language:"oc","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"pl",json:{charset:"utf-8",headers:{"Last-Translator":"Valdnet, 2024","Language-Team":"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)","Content-Type":"text/plain; charset=UTF-8",Language:"pl","Plural-Forms":"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nM H <haincu@o2.pl>, 2023\nValdnet, 2024\n"},msgstr:["Last-Translator: Valdnet, 2024\nLanguage-Team: Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["konflikt 1 pliku","{count} konfliktów plików","{count} konfliktów plików","{count} konfliktów plików"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} konfliktowy plik w {dirname}","{count} konfliktowych plików w {dirname}","{count} konfliktowych plików w {dirname}","{count} konfliktowych plików w {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Pozostało {seconds} sekund"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Pozostało {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Pozostało kilka sekund"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Anuluj wysyłanie"]},Continue:{msgid:"Continue",msgstr:["Kontynuuj"]},"estimating time left":{msgid:"estimating time left",msgstr:["Szacowanie pozostałego czasu"]},"Existing version":{msgid:"Existing version",msgstr:["Istniejąca wersja"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Jeżeli wybierzesz obie wersje to do nazw skopiowanych plików zostanie dodany numer"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Nieznana data ostatniej modyfikacji"]},New:{msgid:"New",msgstr:["Nowy"]},"New version":{msgid:"New version",msgstr:["Nowa wersja"]},paused:{msgid:"paused",msgstr:["Wstrzymane"]},"Preview image":{msgid:"Preview image",msgstr:["Podgląd obrazu"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Zaznacz wszystkie boxy"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Zaznacz wszystkie istniejące pliki"]},"Select all new files":{msgid:"Select all new files",msgstr:["Zaznacz wszystkie nowe pliki"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Pomiń 1 plik","Pomiń {count} plików","Pomiń {count} plików","Pomiń {count} plików"]},"Unknown size":{msgid:"Unknown size",msgstr:["Nieznany rozmiar"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Anulowano wysyłanie"]},"Upload files":{msgid:"Upload files",msgstr:["Wyślij pliki"]},"Upload progress":{msgid:"Upload progress",msgstr:["Postęp wysyłania"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Które pliki chcesz zachować"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Aby kontynuować, musisz wybrać co najmniej jedną wersję każdego pliku."]}}}}},{locale:"ps",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)","Content-Type":"text/plain; charset=UTF-8",Language:"ps","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ps\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"pt_BR",json:{charset:"utf-8",headers:{"Last-Translator":"Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024","Language-Team":"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_BR","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nLeonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\n"},msgstr:["Last-Translator: Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} arquivos em conflito","{count} arquivos em conflito","{count} arquivos em conflito"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} conflitos de arquivo em {dirname}","{count} conflitos de arquivo em {dirname}","{count} conflitos de arquivo em {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["alguns segundos restantes"]},Cancel:{msgid:"Cancel",msgstr:["Cancelar"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Cancelar a operação inteira"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar uploads"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tempo restante"]},"Existing version":{msgid:"Existing version",msgstr:["Versão existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se você selecionar ambas as versões, o arquivo copiado terá um número adicionado ao seu nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Data da última modificação desconhecida"]},New:{msgid:"New",msgstr:["Novo"]},"New version":{msgid:"New version",msgstr:["Nova versão"]},paused:{msgid:"paused",msgstr:["pausado"]},"Preview image":{msgid:"Preview image",msgstr:["Visualizar imagem"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marque todas as caixas de seleção"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Selecione todos os arquivos existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Selecione todos os novos arquivos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Ignorar {count} arquivos","Ignorar {count} arquivos","Ignorar {count} arquivos"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamanho desconhecido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Envio cancelado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar arquivos"]},"Upload progress":{msgid:"Upload progress",msgstr:["Envio em progresso"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Quando uma pasta é selecionada, quaisquer arquivos dentro dela também serão sobrescritos."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quais arquivos você deseja manter?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Você precisa selecionar pelo menos uma versão de cada arquivo para continuar."]}}}}},{locale:"pt_PT",json:{charset:"utf-8",headers:{"Last-Translator":"Manuela Silva <mmsrs@sky.com>, 2022","Language-Team":"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_PT","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nManuela Silva <mmsrs@sky.com>, 2022\n"},msgstr:["Last-Translator: Manuela Silva <mmsrs@sky.com>, 2022\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["faltam {seconds} segundo(s)"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["faltam {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["faltam uns segundos"]},Add:{msgid:"Add",msgstr:["Adicionar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar envios"]},"estimating time left":{msgid:"estimating time left",msgstr:["tempo em falta estimado"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar ficheiros"]}}}}},{locale:"ro",json:{charset:"utf-8",headers:{"Last-Translator":"Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022","Language-Team":"Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)","Content-Type":"text/plain; charset=UTF-8",Language:"ro","Plural-Forms":"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMădălin Vasiliu <contact@madalinvasiliu.com>, 2022\n"},msgstr:["Last-Translator: Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\nLanguage-Team: Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ro\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secunde rămase"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} rămas"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["câteva secunde rămase"]},Add:{msgid:"Add",msgstr:["Adaugă"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Anulați încărcările"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimarea timpului rămas"]},paused:{msgid:"paused",msgstr:["pus pe pauză"]},"Upload files":{msgid:"Upload files",msgstr:["Încarcă fișiere"]}}}}},{locale:"ru",json:{charset:"utf-8",headers:{"Last-Translator":"Александр, 2023","Language-Team":"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)","Content-Type":"text/plain; charset=UTF-8",Language:"ru","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMax Smith <sevinfolds@gmail.com>, 2023\nАлександр, 2023\n"},msgstr:["Last-Translator: Александр, 2023\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["конфликт {count} файла","конфликт {count} файлов","конфликт {count} файлов","конфликт {count} файлов"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["конфликт {count} файла в {dirname}","конфликт {count} файлов в {dirname}","конфликт {count} файлов в {dirname}","конфликт {count} файлов в {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["осталось {seconds} секунд"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["осталось {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["осталось несколько секунд"]},Add:{msgid:"Add",msgstr:["Добавить"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Отменить загрузки"]},Continue:{msgid:"Continue",msgstr:["Продолжить"]},"estimating time left":{msgid:"estimating time left",msgstr:["оценка оставшегося времени"]},"Existing version":{msgid:"Existing version",msgstr:["Текущая версия"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Если вы выберете обе версии, к имени скопированного файла будет добавлен номер."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Дата последнего изменения неизвестна"]},"New version":{msgid:"New version",msgstr:["Новая версия"]},paused:{msgid:"paused",msgstr:["приостановлено"]},"Preview image":{msgid:"Preview image",msgstr:["Предварительный просмотр"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Установить все флажки"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Выбрать все существующие файлы"]},"Select all new files":{msgid:"Select all new files",msgstr:["Выбрать все новые файлы"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Пропустить файл","Пропустить {count} файла","Пропустить {count} файлов","Пропустить {count} файлов"]},"Unknown size":{msgid:"Unknown size",msgstr:["Неизвестный размер"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Загрузка отменена"]},"Upload files":{msgid:"Upload files",msgstr:["Загрузка файлов"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Какие файлы вы хотите сохранить?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Для продолжения вам нужно выбрать по крайней мере одну версию каждого файла."]}}}}},{locale:"ru_RU",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)","Content-Type":"text/plain; charset=UTF-8",Language:"ru_RU","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru_RU\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sc",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)","Content-Type":"text/plain; charset=UTF-8",Language:"sc","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sc\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"si",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)","Content-Type":"text/plain; charset=UTF-8",Language:"si","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"si_LK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)","Content-Type":"text/plain; charset=UTF-8",Language:"si_LK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sk_SK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)","Content-Type":"text/plain; charset=UTF-8",Language:"sk_SK","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sl",json:{charset:"utf-8",headers:{"Last-Translator":"Matej Urbančič <>, 2022","Language-Team":"Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)","Content-Type":"text/plain; charset=UTF-8",Language:"sl","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMatej Urbančič <>, 2022\n"},msgstr:["Last-Translator: Matej Urbančič <>, 2022\nLanguage-Team: Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["še {seconds} sekund"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["še {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["še nekaj sekund"]},Add:{msgid:"Add",msgstr:["Dodaj"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Prekliči pošiljanje"]},"estimating time left":{msgid:"estimating time left",msgstr:["ocenjen čas do konca"]},paused:{msgid:"paused",msgstr:["v premoru"]},"Upload files":{msgid:"Upload files",msgstr:["Pošlji datoteke"]}}}}},{locale:"sl_SI",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)","Content-Type":"text/plain; charset=UTF-8",Language:"sl_SI","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl_SI\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sq",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)","Content-Type":"text/plain; charset=UTF-8",Language:"sq","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sq\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sr",json:{charset:"utf-8",headers:{"Last-Translator":"Иван Пешић, 2023","Language-Team":"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)","Content-Type":"text/plain; charset=UTF-8",Language:"sr","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nИван Пешић, 2023\n"},msgstr:["Last-Translator: Иван Пешић, 2023\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} фајл конфликт","{count} фајл конфликта","{count} фајл конфликта"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} фајл конфликт у {dirname}","{count} фајл конфликта у {dirname}","{count} фајл конфликта у {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["преостало је {seconds} секунди"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} преостало"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["преостало је неколико секунди"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Обустави отпремања"]},Continue:{msgid:"Continue",msgstr:["Настави"]},"estimating time left":{msgid:"estimating time left",msgstr:["процена преосталог времена"]},"Existing version":{msgid:"Existing version",msgstr:["Постојећа верзија"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Ако изаберете обе верзије, на име копираног фајла ће се додати број."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Није познат датум последње измене"]},New:{msgid:"New",msgstr:["Ново"]},"New version":{msgid:"New version",msgstr:["Нова верзија"]},paused:{msgid:"paused",msgstr:["паузирано"]},"Preview image":{msgid:"Preview image",msgstr:["Слика прегледа"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Штиклирај сва поља за штиклирање"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Изабери све постојеће фајлове"]},"Select all new files":{msgid:"Select all new files",msgstr:["Изабери све нове фајлове"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Прескочи овај фајл","Прескочи {count} фајла","Прескочи {count} фајлова"]},"Unknown size":{msgid:"Unknown size",msgstr:["Непозната величина"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Отпремање је отказано"]},"Upload files":{msgid:"Upload files",msgstr:["Отпреми фајлове"]},"Upload progress":{msgid:"Upload progress",msgstr:["Напредак отпремања"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Које фајлове желите да задржите?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Морате да изаберете барем једну верзију сваког фајла да наставите."]}}}}},{locale:"sr@latin",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)","Content-Type":"text/plain; charset=UTF-8",Language:"sr@latin","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr@latin\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sv",json:{charset:"utf-8",headers:{"Last-Translator":"Magnus Höglund, 2024","Language-Team":"Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)","Content-Type":"text/plain; charset=UTF-8",Language:"sv","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMagnus Höglund, 2024\n"},msgstr:["Last-Translator: Magnus Höglund, 2024\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} filkonflikt","{count} filkonflikter"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} filkonflikt i {dirname}","{count} filkonflikter i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekunder kvarstår"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} kvarstår"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["några sekunder kvar"]},Cancel:{msgid:"Cancel",msgstr:["Avbryt"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Avbryt hela operationen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Avbryt uppladdningar"]},Continue:{msgid:"Continue",msgstr:["Fortsätt"]},"estimating time left":{msgid:"estimating time left",msgstr:["uppskattar kvarstående tid"]},"Existing version":{msgid:"Existing version",msgstr:["Nuvarande version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Om du väljer båda versionerna kommer den kopierade filen att få ett nummer tillagt  i namnet."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Senaste ändringsdatum okänt"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny version"]},paused:{msgid:"paused",msgstr:["pausad"]},"Preview image":{msgid:"Preview image",msgstr:["Förhandsgranska bild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Markera alla kryssrutor"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Välj alla befintliga filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Välj alla nya filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Hoppa över denna fil","Hoppa över {count} filer"]},"Unknown size":{msgid:"Unknown size",msgstr:["Okänd storlek"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Uppladdningen avbröts"]},"Upload files":{msgid:"Upload files",msgstr:["Ladda upp filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Uppladdningsförlopp"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["När en inkommande mapp väljs skrivs även alla konfliktande filer i den över."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Vilka filer vill du behålla?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du måste välja minst en version av varje fil för att fortsätta."]}}}}},{locale:"sw",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)","Content-Type":"text/plain; charset=UTF-8",Language:"sw","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sw\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ta",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)","Content-Type":"text/plain; charset=UTF-8",Language:"ta","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ta_LK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)","Content-Type":"text/plain; charset=UTF-8",Language:"ta_LK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"th",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Thai (https://www.transifex.com/nextcloud/teams/64236/th/)","Content-Type":"text/plain; charset=UTF-8",Language:"th","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"th_TH",json:{charset:"utf-8",headers:{"Last-Translator":"Phongpanot Phairat <ppnplus@protonmail.com>, 2022","Language-Team":"Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)","Content-Type":"text/plain; charset=UTF-8",Language:"th_TH","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPhongpanot Phairat <ppnplus@protonmail.com>, 2022\n"},msgstr:["Last-Translator: Phongpanot Phairat <ppnplus@protonmail.com>, 2022\nLanguage-Team: Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th_TH\nPlural-Forms: nplurals=1; plural=0;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["เหลืออีก {seconds} วินาที"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["เหลืออีก {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["เหลืออีกไม่กี่วินาที"]},Add:{msgid:"Add",msgstr:["เพิ่ม"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["ยกเลิกการอัปโหลด"]},"estimating time left":{msgid:"estimating time left",msgstr:["กำลังคำนวณเวลาที่เหลือ"]},paused:{msgid:"paused",msgstr:["หยุดชั่วคราว"]},"Upload files":{msgid:"Upload files",msgstr:["อัปโหลดไฟล์"]}}}}},{locale:"tk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)","Content-Type":"text/plain; charset=UTF-8",Language:"tk","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tk\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"tr",json:{charset:"utf-8",headers:{"Last-Translator":"Kaya Zeren <kayazeren@gmail.com>, 2024","Language-Team":"Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)","Content-Type":"text/plain; charset=UTF-8",Language:"tr","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nKaya Zeren <kayazeren@gmail.com>, 2024\n"},msgstr:["Last-Translator: Kaya Zeren <kayazeren@gmail.com>, 2024\nLanguage-Team: Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} dosya çakışması var","{count} dosya çakışması var"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} klasöründe {count} dosya çakışması var","{dirname} klasöründe {count} dosya çakışması var"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} saniye kaldı"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} kaldı"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["bir kaç saniye kaldı"]},Cancel:{msgid:"Cancel",msgstr:["İptal"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Tüm işlemi iptal et"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Yüklemeleri iptal et"]},Continue:{msgid:"Continue",msgstr:["İlerle"]},"estimating time left":{msgid:"estimating time left",msgstr:["öngörülen kalan süre"]},"Existing version":{msgid:"Existing version",msgstr:["Var olan sürüm"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["İki sürümü de seçerseniz, kopyalanan dosyanın adına bir sayı eklenir."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Son değiştirilme tarihi bilinmiyor"]},New:{msgid:"New",msgstr:["Yeni"]},"New version":{msgid:"New version",msgstr:["Yeni sürüm"]},paused:{msgid:"paused",msgstr:["duraklatıldı"]},"Preview image":{msgid:"Preview image",msgstr:["Görsel ön izlemesi"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Tüm kutuları işaretle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Tüm var olan dosyaları seç"]},"Select all new files":{msgid:"Select all new files",msgstr:["Tüm yeni dosyaları seç"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Bu dosyayı atla","{count} dosyayı atla"]},"Unknown size":{msgid:"Unknown size",msgstr:["Boyut bilinmiyor"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Yükleme iptal edildi"]},"Upload files":{msgid:"Upload files",msgstr:["Dosyaları yükle"]},"Upload progress":{msgid:"Upload progress",msgstr:["Yükleme ilerlemesi"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Bir gelen klasör seçildiğinde, içindeki çakışan dosyaların da üzerine yazılır."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hangi dosyaları tutmak istiyorsunuz?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["İlerlemek için her dosyanın en az bir sürümünü seçmelisiniz."]}}}}},{locale:"ug",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)","Content-Type":"text/plain; charset=UTF-8",Language:"ug","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ug\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"uk",json:{charset:"utf-8",headers:{"Last-Translator":"O St <oleksiy.stasevych@gmail.com>, 2024","Language-Team":"Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)","Content-Type":"text/plain; charset=UTF-8",Language:"uk","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nO St <oleksiy.stasevych@gmail.com>, 2024\n"},msgstr:["Last-Translator: O St <oleksiy.stasevych@gmail.com>, 2024\nLanguage-Team: Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} конфліктний файл","{count} конфліктних файли","{count} конфліктних файлів","{count} конфліктних файлів"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} конфліктний файл у каталозі {dirname}","{count} конфліктних файли у каталозі {dirname}","{count} конфліктних файлів у каталозі {dirname}","{count} конфліктних файлів у каталозі {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Залишилося {seconds} секунд"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Залишилося {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["залишилося кілька секунд"]},Cancel:{msgid:"Cancel",msgstr:["Скасувати"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Скасувати операцію повністю"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Скасувати завантаження"]},Continue:{msgid:"Continue",msgstr:["Продовжити"]},"estimating time left":{msgid:"estimating time left",msgstr:["оцінка часу, що залишився"]},"Existing version":{msgid:"Existing version",msgstr:["Присутня версія"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Якщо ви виберете обидві версії, то буде створено копію файлу, до назви якої буде додано цифру."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Дата останньої зміни невідома"]},New:{msgid:"New",msgstr:["Нове"]},"New version":{msgid:"New version",msgstr:["Нова версія"]},paused:{msgid:"paused",msgstr:["призупинено"]},"Preview image":{msgid:"Preview image",msgstr:["Попередній перегляд"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Вибрати все"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Вибрати усі присутні файли"]},"Select all new files":{msgid:"Select all new files",msgstr:["Вибрати усі нові файли"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Пропустити файл","Пропустити {count} файли","Пропустити {count} файлів","Пропустити {count} файлів"]},"Unknown size":{msgid:"Unknown size",msgstr:["Невідомий розмір"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Завантаження скасовано"]},"Upload files":{msgid:"Upload files",msgstr:["Завантажити файли"]},"Upload progress":{msgid:"Upload progress",msgstr:["Поступ завантаження"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Усі конфліктні файли у вибраному каталозі призначення буде перезаписано поверх."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Які файли залишити?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Для продовження потрібно вибрати принаймні одну версію для кожного файлу."]}}}}},{locale:"ur_PK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)","Content-Type":"text/plain; charset=UTF-8",Language:"ur_PK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ur_PK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"uz",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)","Content-Type":"text/plain; charset=UTF-8",Language:"uz","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uz\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"vi",json:{charset:"utf-8",headers:{"Last-Translator":"Tung DangQuang, 2023","Language-Team":"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)","Content-Type":"text/plain; charset=UTF-8",Language:"vi","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nTung DangQuang, 2023\n"},msgstr:["Last-Translator: Tung DangQuang, 2023\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: vi\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Tập tin xung đột"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} tập tin lỗi trong {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Còn {second} giây"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Còn lại {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Còn lại một vài giây"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Huỷ tải lên"]},Continue:{msgid:"Continue",msgstr:["Tiếp Tục"]},"estimating time left":{msgid:"estimating time left",msgstr:["Thời gian còn lại dự kiến"]},"Existing version":{msgid:"Existing version",msgstr:["Phiên Bản Hiện Tại"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Nếu bạn chọn cả hai phiên bản, tệp được sao chép sẽ có thêm một số vào tên của nó."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Ngày sửa dổi lần cuối không xác định"]},New:{msgid:"New",msgstr:["Tạo Mới"]},"New version":{msgid:"New version",msgstr:["Phiên Bản Mới"]},paused:{msgid:"paused",msgstr:["đã tạm dừng"]},"Preview image":{msgid:"Preview image",msgstr:["Xem Trước Ảnh"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Chọn tất cả hộp checkbox"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Chọn tất cả các tập tin có sẵn"]},"Select all new files":{msgid:"Select all new files",msgstr:["Chọn tất cả các tập tin mới"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Bỏ Qua {count} tập tin"]},"Unknown size":{msgid:"Unknown size",msgstr:["Không rõ dung lượng"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Dừng Tải Lên"]},"Upload files":{msgid:"Upload files",msgstr:["Tập tin tải lên"]},"Upload progress":{msgid:"Upload progress",msgstr:["Đang Tải Lên"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Bạn muốn giữ tập tin nào?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Bạn cần chọn ít nhất một phiên bản tập tin mới có thể tiếp tục"]}}}}},{locale:"zh_CN",json:{charset:"utf-8",headers:{"Last-Translator":"Hongbo Chen, 2023","Language-Team":"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_CN","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nHongbo Chen, 2023\n"},msgstr:["Last-Translator: Hongbo Chen, 2023\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count}文件冲突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["在{dirname}目录下有{count}个文件冲突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩余 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩余 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["还剩几秒"]},Add:{msgid:"Add",msgstr:["添加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上传"]},Continue:{msgid:"Continue",msgstr:["继续"]},"estimating time left":{msgid:"estimating time left",msgstr:["估计剩余时间"]},"Existing version":{msgid:"Existing version",msgstr:["版本已存在"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["如果选择所有的版本,新增版本的文件名为原文件名加数字"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["文件最后修改日期未知"]},"New version":{msgid:"New version",msgstr:["新版本"]},paused:{msgid:"paused",msgstr:["已暂停"]},"Preview image":{msgid:"Preview image",msgstr:["图片预览"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["选择所有的选择框"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["选择所有存在的文件"]},"Select all new files":{msgid:"Select all new files",msgstr:["选择所有的新文件"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["跳过{count}个文件"]},"Unknown size":{msgid:"Unknown size",msgstr:["文件大小未知"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["取消上传"]},"Upload files":{msgid:"Upload files",msgstr:["上传文件"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["你要保留哪些文件?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["每个文件至少选择一个版本"]}}}}},{locale:"zh_HK",json:{charset:"utf-8",headers:{"Last-Translator":"Café Tango, 2023","Language-Team":"Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_HK","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nCafé Tango, 2023\n"},msgstr:["Last-Translator: Café Tango, 2023\nLanguage-Team: Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_HK\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} 個檔案衝突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} 中有 {count} 個檔案衝突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩餘 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩餘 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["還剩幾秒"]},Add:{msgid:"Add",msgstr:["添加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上傳"]},Continue:{msgid:"Continue",msgstr:["繼續"]},"estimating time left":{msgid:"estimating time left",msgstr:["估計剩餘時間"]},"Existing version":{msgid:"Existing version",msgstr:["既有版本"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["若您選取兩個版本,複製的檔案的名稱將會新增編號。"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["最後修改日期不詳"]},"New version":{msgid:"New version",msgstr:["新版本 "]},paused:{msgid:"paused",msgstr:["已暫停"]},"Preview image":{msgid:"Preview image",msgstr:["預覽圖片"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["選取所有核取方塊"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["選取所有既有檔案"]},"Select all new files":{msgid:"Select all new files",msgstr:["選取所有新檔案"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["略過 {count} 個檔案"]},"Unknown size":{msgid:"Unknown size",msgstr:["大小不詳"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["已取消上傳"]},"Upload files":{msgid:"Upload files",msgstr:["上傳檔案"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["您想保留哪些檔案?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["您必須為每個檔案都至少選取一個版本以繼續。"]}}}}},{locale:"zh_TW",json:{charset:"utf-8",headers:{"Last-Translator":"黃柏諺 <s8321414@gmail.com>, 2024","Language-Team":"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_TW","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\n黃柏諺 <s8321414@gmail.com>, 2024\n"},msgstr:["Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2024\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} 個檔案衝突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} 中有 {count} 個檔案衝突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩餘 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩餘 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["還剩幾秒"]},Cancel:{msgid:"Cancel",msgstr:["取消"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["取消整個操作"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上傳"]},Continue:{msgid:"Continue",msgstr:["繼續"]},"estimating time left":{msgid:"estimating time left",msgstr:["估計剩餘時間"]},"Existing version":{msgid:"Existing version",msgstr:["既有版本"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["若您選取兩個版本,複製的檔案的名稱將會新增編號。"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["最後修改日期未知"]},New:{msgid:"New",msgstr:["新增"]},"New version":{msgid:"New version",msgstr:["新版本"]},paused:{msgid:"paused",msgstr:["已暫停"]},"Preview image":{msgid:"Preview image",msgstr:["預覽圖片"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["選取所有核取方塊"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["選取所有既有檔案"]},"Select all new files":{msgid:"Select all new files",msgstr:["選取所有新檔案"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["略過 {count} 檔案"]},"Unknown size":{msgid:"Unknown size",msgstr:["未知大小"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["已取消上傳"]},"Upload files":{msgid:"Upload files",msgstr:["上傳檔案"]},"Upload progress":{msgid:"Upload progress",msgstr:["上傳進度"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["選取傳入資料夾後,其中任何的衝突檔案都會被覆寫。"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["您想保留哪些檔案?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["您必須為每個檔案都至少選取一個版本以繼續。"]}}}}}].map((t=>nt.addTranslation(t.locale,t.json)));const st=nt.build(),it=st.ngettext.bind(st),rt=st.gettext.bind(st),ot=U.Ay.extend({name:"UploadPicker",components:{Cancel:Z,NcActionButton:B.A,NcActions:R.A,NcButton:j.A,NcIconSvgWrapper:M.A,NcProgressBar:z.A,Plus:tt,Upload:et},props:{accept:{type:Array,default:null},disabled:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},destination:{type:y.vd,default:void 0},content:{type:Array,default:()=>[]},forbiddenCharacters:{type:Array,default:()=>[]}},data:()=>({addLabel:rt("New"),cancelLabel:rt("Cancel uploads"),uploadLabel:rt("Upload files"),progressLabel:rt("Upload progress"),progressTimeId:`nc-uploader-progress-${Math.random().toString(36).slice(7)}`,eta:null,timeLeft:"",newFileMenuEntries:[],uploadManager:ct()}),computed:{totalQueueSize(){return this.uploadManager.info?.size||0},uploadedQueueSize(){return this.uploadManager.info?.progress||0},progress(){return Math.round(this.uploadedQueueSize/this.totalQueueSize*100)||0},queue(){return this.uploadManager.queue},hasFailure(){return 0!==this.queue?.filter((t=>t.status===W.FAILED)).length},isUploading(){return this.queue?.length>0},isAssembling(){return 0!==this.queue?.filter((t=>t.status===W.ASSEMBLING)).length},isPaused(){return this.uploadManager.info?.status===Q.PAUSED},buttonName(){if(!this.isUploading)return this.addLabel}},watch:{destination(t){this.setDestination(t)},totalQueueSize(t){this.eta=O({min:0,max:t}),this.updateStatus()},uploadedQueueSize(t){this.eta?.report?.(t),this.updateStatus()},isPaused(t){t?this.$emit("paused",this.queue):this.$emit("resumed",this.queue)}},beforeMount(){this.destination&&this.setDestination(this.destination),this.uploadManager.addNotifier(this.onUploadCompletion),Y.debug("UploadPicker initialised")},methods:{onClick(){this.$refs.input.click()},async onPick(){let t=[...this.$refs.input.files];if(dt(t,this.content)){const e=t.filter((t=>this.content.find((e=>e.basename===t.name)))).filter(Boolean),n=t.filter((t=>!e.includes(t)));try{const{selected:s,renamed:i}=await ut(this.destination.basename,e,this.content);t=[...n,...s,...i]}catch{return void(0,D.Qg)(rt("Upload cancelled"))}}t.forEach((t=>{const e=(this.forbiddenCharacters||[]).find((e=>t.name.includes(e)));e?(0,D.Qg)(rt(`"${e}" is not allowed inside a file name.`)):this.uploadManager.upload(t.name,t).catch((()=>{}))})),this.$refs.form.reset()},onCancel(){this.uploadManager.queue.forEach((t=>{t.cancel()})),this.$refs.form.reset()},updateStatus(){if(this.isPaused)return void(this.timeLeft=rt("paused"));const t=Math.round(this.eta.estimate());if(t!==1/0)if(t<10)this.timeLeft=rt("a few seconds left");else if(t>60){const e=new Date(0);e.setSeconds(t);const n=e.toISOString().slice(11,19);this.timeLeft=rt("{time} left",{time:n})}else this.timeLeft=rt("{seconds} seconds left",{seconds:t});else this.timeLeft=rt("estimating time left")},setDestination(t){this.destination?(this.uploadManager.destination=t,this.newFileMenuEntries=(0,y.m1)(t)):Y.debug("Invalid destination")},onUploadCompletion(t){t.status===W.FAILED?this.$emit("failed",t):this.$emit("uploaded",t)}}}),at=J(ot,(function(){var t=this,e=t._self._c;return t._self._setupProxy,t.destination?e("form",{ref:"form",staticClass:"upload-picker",class:{"upload-picker--uploading":t.isUploading,"upload-picker--paused":t.isPaused},attrs:{"data-cy-upload-picker":""}},[t.newFileMenuEntries&&0===t.newFileMenuEntries.length?e("NcButton",{attrs:{disabled:t.disabled,"data-cy-upload-picker-add":"",type:"secondary"},on:{click:t.onClick},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Plus",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,2954875042)},[t._v(" "+t._s(t.buttonName)+" ")]):e("NcActions",{attrs:{"menu-name":t.buttonName,"menu-title":t.addLabel,type:"secondary"},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Plus",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,2954875042)},[e("NcActionButton",{attrs:{"data-cy-upload-picker-add":"","close-after-click":!0},on:{click:t.onClick},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Upload",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,3606034491)},[t._v(" "+t._s(t.uploadLabel)+" ")]),t._l(t.newFileMenuEntries,(function(n){return e("NcActionButton",{key:n.id,staticClass:"upload-picker__menu-entry",attrs:{icon:n.iconClass,"close-after-click":!0},on:{click:function(e){return n.handler(t.destination,t.content)}},scopedSlots:t._u([n.iconSvgInline?{key:"icon",fn:function(){return[e("NcIconSvgWrapper",{attrs:{svg:n.iconSvgInline}})]},proxy:!0}:null],null,!0)},[t._v(" "+t._s(n.displayName)+" ")])}))],2),e("div",{directives:[{name:"show",rawName:"v-show",value:t.isUploading,expression:"isUploading"}],staticClass:"upload-picker__progress"},[e("NcProgressBar",{attrs:{"aria-label":t.progressLabel,"aria-describedby":t.progressTimeId,error:t.hasFailure,value:t.progress,size:"medium"}}),e("p",{attrs:{id:t.progressTimeId}},[t._v(" "+t._s(t.timeLeft)+" ")])],1),t.isUploading?e("NcButton",{staticClass:"upload-picker__cancel",attrs:{type:"tertiary","aria-label":t.cancelLabel,"data-cy-upload-picker-cancel":""},on:{click:t.onCancel},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Cancel",{attrs:{title:"",size:20}})]},proxy:!0}],null,!1,4076886712)}):t._e(),e("input",{directives:[{name:"show",rawName:"v-show",value:!1,expression:"false"}],ref:"input",attrs:{type:"file",accept:t.accept?.join?.(", "),multiple:t.multiple,"data-cy-upload-picker-input":""},on:{change:t.onPick}})],1):t._e()}),[],!1,null,"eca9500a",null,null).exports;let lt=null;function ct(){const t=null!==document.querySelector('input[name="isPublic"][value="1"]');return lt instanceof X||(lt=new X(t)),lt}async function ut(t,e,s){const i=(0,U.$V)((()=>Promise.all([n.e(4208),n.e(6075)]).then(n.bind(n,56075))));return new Promise(((n,r)=>{const o=new U.Ay({name:"ConflictPickerRoot",render:a=>a(i,{props:{dirname:t,conflicts:e,content:s},on:{submit(t){n(t),o.$destroy(),o.$el?.parentNode?.removeChild(o.$el)},cancel(t){r(t??new Error("Canceled")),o.$destroy(),o.$el?.parentNode?.removeChild(o.$el)}}})});o.$mount(),document.body.appendChild(o.$el)}))}function dt(t,e){const n=e.map((t=>t.basename));return t.filter((t=>{const e=t instanceof File?t.name:t.basename;return-1!==n.indexOf(e)})).length>0}},53110:(t,e,n)=>{"use strict";n.d(e,{k3:()=>o,pe:()=>r});var s=n(28893);const{Axios:i,AxiosError:r,CanceledError:o,isCancel:a,CancelToken:l,VERSION:c,all:u,Cancel:d,isAxiosError:m,spread:p,toFormData:f,AxiosHeaders:h,HttpStatusCode:g,formToJSON:v,getAdapter:w,mergeConfig:y}=s.A}},r={};function o(t){var e=r[t];if(void 0!==e)return e.exports;var n=r[t]={id:t,loaded:!1,exports:{}};return i[t].call(n.exports,n,n.exports,o),n.loaded=!0,n.exports}o.m=i,e=[],o.O=(t,n,s,i)=>{if(!n){var r=1/0;for(u=0;u<e.length;u++){n=e[u][0],s=e[u][1],i=e[u][2];for(var a=!0,l=0;l<n.length;l++)(!1&i||r>=i)&&Object.keys(o.O).every((t=>o.O[t](n[l])))?n.splice(l--,1):(a=!1,i<r&&(r=i));if(a){e.splice(u--,1);var c=s();void 0!==c&&(t=c)}}return t}i=i||0;for(var u=e.length;u>0&&e[u-1][2]>i;u--)e[u]=e[u-1];e[u]=[n,s,i]},o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var n in e)o.o(e,n)&&!o.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},o.f={},o.e=t=>Promise.all(Object.keys(o.f).reduce(((e,n)=>(o.f[n](t,e),e)),[])),o.u=t=>t+"-"+t+".js?v="+{6075:"b0265ee919d9196a6424",7560:"8bb59db6d769c5865c25",8618:"d30d39583cd1936d2676"}[t],o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n={},s="nextcloud:",o.l=(t,e,i,r)=>{if(n[t])n[t].push(e);else{var a,l;if(void 0!==i)for(var c=document.getElementsByTagName("script"),u=0;u<c.length;u++){var d=c[u];if(d.getAttribute("src")==t||d.getAttribute("data-webpack")==s+i){a=d;break}}a||(l=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,o.nc&&a.setAttribute("nonce",o.nc),a.setAttribute("data-webpack",s+i),a.src=t),n[t]=[e];var m=(e,s)=>{a.onerror=a.onload=null,clearTimeout(p);var i=n[t];if(delete n[t],a.parentNode&&a.parentNode.removeChild(a),i&&i.forEach((t=>t(s))),e)return e(s)},p=setTimeout(m.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=m.bind(null,a.onerror),a.onload=m.bind(null,a.onload),l&&document.head.appendChild(a)}},o.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.nmd=t=>(t.paths=[],t.children||(t.children=[]),t),o.j=2882,(()=>{var t;o.g.importScripts&&(t=o.g.location+"");var e=o.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var n=e.getElementsByTagName("script");if(n.length)for(var s=n.length-1;s>-1&&(!t||!/^http(s?):/.test(t));)t=n[s--].src}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=t})(),(()=>{o.b=document.baseURI||self.location.href;var t={2882:0};o.f.j=(e,n)=>{var s=o.o(t,e)?t[e]:void 0;if(0!==s)if(s)n.push(s[2]);else{var i=new Promise(((n,i)=>s=t[e]=[n,i]));n.push(s[2]=i);var r=o.p+o.u(e),a=new Error;o.l(r,(n=>{if(o.o(t,e)&&(0!==(s=t[e])&&(t[e]=void 0),s)){var i=n&&("load"===n.type?"missing":n.type),r=n&&n.target&&n.target.src;a.message="Loading chunk "+e+" failed.\n("+i+": "+r+")",a.name="ChunkLoadError",a.type=i,a.request=r,s[1](a)}}),"chunk-"+e,e)}},o.O.j=e=>0===t[e];var e=(e,n)=>{var s,i,r=n[0],a=n[1],l=n[2],c=0;if(r.some((e=>0!==t[e]))){for(s in a)o.o(a,s)&&(o.m[s]=a[s]);if(l)var u=l(o)}for(e&&e(n);c<r.length;c++)i=r[c],o.o(t,i)&&t[i]&&t[i][0](),t[i]=0;return o.O(u)},n=self.webpackChunknextcloud=self.webpackChunknextcloud||[];n.forEach(e.bind(null,0)),n.push=e.bind(null,n.push.bind(n))})(),o.nc=void 0;var a=o.O(void 0,[4208],(()=>o(88425)));a=o.O(a)})();
+//# sourceMappingURL=files-main.js.map?v=bde1d16dd7e5c368dd4f
\ No newline at end of file
index 6cf64c74b7114651b9b5406826478bec0c643e49..50764bd02aed2c0866c89940c93b213145eea1e2 100644 (file)
@@ -1 +1 @@
-{"version":3,"file":"files-main.js?v=addef92475a9b35bc34d","mappings":";UAAIA,ECAAC,EACAC,2BCCJ,IAAIC,EAAMC,OAAOC,UAAUC,eACvBC,EAAS,IASb,SAASC,IAAU,CA4BnB,SAASC,EAAGC,EAAIC,EAASC,GACvBC,KAAKH,GAAKA,EACVG,KAAKF,QAAUA,EACfE,KAAKD,KAAOA,IAAQ,CACtB,CAaA,SAASE,EAAYC,EAASC,EAAON,EAAIC,EAASC,GAChD,GAAkB,mBAAPF,EACT,MAAM,IAAIO,UAAU,mCAGtB,IAAIC,EAAW,IAAIT,EAAGC,EAAIC,GAAWI,EAASH,GAC1CO,EAAMZ,EAASA,EAASS,EAAQA,EAMpC,OAJKD,EAAQK,QAAQD,GACXJ,EAAQK,QAAQD,GAAKT,GAC1BK,EAAQK,QAAQD,GAAO,CAACJ,EAAQK,QAAQD,GAAMD,GADhBH,EAAQK,QAAQD,GAAKE,KAAKH,IADlCH,EAAQK,QAAQD,GAAOD,EAAUH,EAAQO,gBAI7DP,CACT,CASA,SAASQ,EAAWR,EAASI,GACI,KAAzBJ,EAAQO,aAAoBP,EAAQK,QAAU,IAAIZ,SAC5CO,EAAQK,QAAQD,EAC9B,CASA,SAASK,IACPX,KAAKO,QAAU,IAAIZ,EACnBK,KAAKS,aAAe,CACtB,CAzEIlB,OAAOqB,SACTjB,EAAOH,UAAYD,OAAOqB,OAAO,OAM5B,IAAIjB,GAASkB,YAAWnB,GAAS,IA2ExCiB,EAAanB,UAAUsB,WAAa,WAClC,IACIC,EACAC,EAFAC,EAAQ,GAIZ,GAA0B,IAAtBjB,KAAKS,aAAoB,OAAOQ,EAEpC,IAAKD,KAASD,EAASf,KAAKO,QACtBjB,EAAI4B,KAAKH,EAAQC,IAAOC,EAAMT,KAAKd,EAASsB,EAAKG,MAAM,GAAKH,GAGlE,OAAIzB,OAAO6B,sBACFH,EAAMI,OAAO9B,OAAO6B,sBAAsBL,IAG5CE,CACT,EASAN,EAAanB,UAAU8B,UAAY,SAAmBnB,GACpD,IAAIG,EAAMZ,EAASA,EAASS,EAAQA,EAChCoB,EAAWvB,KAAKO,QAAQD,GAE5B,IAAKiB,EAAU,MAAO,GACtB,GAAIA,EAAS1B,GAAI,MAAO,CAAC0B,EAAS1B,IAElC,IAAK,IAAI2B,EAAI,EAAGC,EAAIF,EAASG,OAAQC,EAAK,IAAIC,MAAMH,GAAID,EAAIC,EAAGD,IAC7DG,EAAGH,GAAKD,EAASC,GAAG3B,GAGtB,OAAO8B,CACT,EASAhB,EAAanB,UAAUqC,cAAgB,SAAuB1B,GAC5D,IAAIG,EAAMZ,EAASA,EAASS,EAAQA,EAChCmB,EAAYtB,KAAKO,QAAQD,GAE7B,OAAKgB,EACDA,EAAUzB,GAAW,EAClByB,EAAUI,OAFM,CAGzB,EASAf,EAAanB,UAAUsC,KAAO,SAAc3B,EAAO4B,EAAIC,EAAIC,EAAIC,EAAIC,GACjE,IAAI7B,EAAMZ,EAASA,EAASS,EAAQA,EAEpC,IAAKH,KAAKO,QAAQD,GAAM,OAAO,EAE/B,IAEI8B,EACAZ,EAHAF,EAAYtB,KAAKO,QAAQD,GACzB+B,EAAMC,UAAUZ,OAIpB,GAAIJ,EAAUzB,GAAI,CAGhB,OAFIyB,EAAUvB,MAAMC,KAAKuC,eAAepC,EAAOmB,EAAUzB,QAAI2C,GAAW,GAEhEH,GACN,KAAK,EAAG,OAAOf,EAAUzB,GAAGqB,KAAKI,EAAUxB,UAAU,EACrD,KAAK,EAAG,OAAOwB,EAAUzB,GAAGqB,KAAKI,EAAUxB,QAASiC,IAAK,EACzD,KAAK,EAAG,OAAOT,EAAUzB,GAAGqB,KAAKI,EAAUxB,QAASiC,EAAIC,IAAK,EAC7D,KAAK,EAAG,OAAOV,EAAUzB,GAAGqB,KAAKI,EAAUxB,QAASiC,EAAIC,EAAIC,IAAK,EACjE,KAAK,EAAG,OAAOX,EAAUzB,GAAGqB,KAAKI,EAAUxB,QAASiC,EAAIC,EAAIC,EAAIC,IAAK,EACrE,KAAK,EAAG,OAAOZ,EAAUzB,GAAGqB,KAAKI,EAAUxB,QAASiC,EAAIC,EAAIC,EAAIC,EAAIC,IAAK,EAG3E,IAAKX,EAAI,EAAGY,EAAO,IAAIR,MAAMS,EAAK,GAAIb,EAAIa,EAAKb,IAC7CY,EAAKZ,EAAI,GAAKc,UAAUd,GAG1BF,EAAUzB,GAAG4C,MAAMnB,EAAUxB,QAASsC,EACxC,KAAO,CACL,IACIM,EADAhB,EAASJ,EAAUI,OAGvB,IAAKF,EAAI,EAAGA,EAAIE,EAAQF,IAGtB,OAFIF,EAAUE,GAAGzB,MAAMC,KAAKuC,eAAepC,EAAOmB,EAAUE,GAAG3B,QAAI2C,GAAW,GAEtEH,GACN,KAAK,EAAGf,EAAUE,GAAG3B,GAAGqB,KAAKI,EAAUE,GAAG1B,SAAU,MACpD,KAAK,EAAGwB,EAAUE,GAAG3B,GAAGqB,KAAKI,EAAUE,GAAG1B,QAASiC,GAAK,MACxD,KAAK,EAAGT,EAAUE,GAAG3B,GAAGqB,KAAKI,EAAUE,GAAG1B,QAASiC,EAAIC,GAAK,MAC5D,KAAK,EAAGV,EAAUE,GAAG3B,GAAGqB,KAAKI,EAAUE,GAAG1B,QAASiC,EAAIC,EAAIC,GAAK,MAChE,QACE,IAAKG,EAAM,IAAKM,EAAI,EAAGN,EAAO,IAAIR,MAAMS,EAAK,GAAIK,EAAIL,EAAKK,IACxDN,EAAKM,EAAI,GAAKJ,UAAUI,GAG1BpB,EAAUE,GAAG3B,GAAG4C,MAAMnB,EAAUE,GAAG1B,QAASsC,GAGpD,CAEA,OAAO,CACT,EAWAzB,EAAanB,UAAUmD,GAAK,SAAYxC,EAAON,EAAIC,GACjD,OAAOG,EAAYD,KAAMG,EAAON,EAAIC,GAAS,EAC/C,EAWAa,EAAanB,UAAUO,KAAO,SAAcI,EAAON,EAAIC,GACrD,OAAOG,EAAYD,KAAMG,EAAON,EAAIC,GAAS,EAC/C,EAYAa,EAAanB,UAAU+C,eAAiB,SAAwBpC,EAAON,EAAIC,EAASC,GAClF,IAAIO,EAAMZ,EAASA,EAASS,EAAQA,EAEpC,IAAKH,KAAKO,QAAQD,GAAM,OAAON,KAC/B,IAAKH,EAEH,OADAa,EAAWV,KAAMM,GACVN,KAGT,IAAIsB,EAAYtB,KAAKO,QAAQD,GAE7B,GAAIgB,EAAUzB,GAEVyB,EAAUzB,KAAOA,GACfE,IAAQuB,EAAUvB,MAClBD,GAAWwB,EAAUxB,UAAYA,GAEnCY,EAAWV,KAAMM,OAEd,CACL,IAAK,IAAIkB,EAAI,EAAGT,EAAS,GAAIW,EAASJ,EAAUI,OAAQF,EAAIE,EAAQF,KAEhEF,EAAUE,GAAG3B,KAAOA,GACnBE,IAASuB,EAAUE,GAAGzB,MACtBD,GAAWwB,EAAUE,GAAG1B,UAAYA,IAErCiB,EAAOP,KAAKc,EAAUE,IAOtBT,EAAOW,OAAQ1B,KAAKO,QAAQD,GAAyB,IAAlBS,EAAOW,OAAeX,EAAO,GAAKA,EACpEL,EAAWV,KAAMM,EACxB,CAEA,OAAON,IACT,EASAW,EAAanB,UAAUoD,mBAAqB,SAA4BzC,GACtE,IAAIG,EAUJ,OARIH,GACFG,EAAMZ,EAASA,EAASS,EAAQA,EAC5BH,KAAKO,QAAQD,IAAMI,EAAWV,KAAMM,KAExCN,KAAKO,QAAU,IAAIZ,EACnBK,KAAKS,aAAe,GAGfT,IACT,EAKAW,EAAanB,UAAUqD,IAAMlC,EAAanB,UAAU+C,eACpD5B,EAAanB,UAAUS,YAAcU,EAAanB,UAAUmD,GAK5DhC,EAAamC,SAAWpD,EAKxBiB,EAAaA,aAAeA,EAM1BoC,EAAOC,QAAUrC,8MCxTZ,MAAMsC,GAAQC,EAAAA,EAAAA,qBCtBrB,MAAMC,EAAQ,eACRC,EAAgB,IAAIC,OAAO,IAAMF,EAAQ,aAAc,MACvDG,EAAe,IAAID,OAAO,IAAMF,EAAQ,KAAM,MAEpD,SAASI,EAAiBC,EAAYC,GACrC,IAEC,MAAO,CAACC,mBAAmBF,EAAWG,KAAK,KAC5C,CAAE,MAEF,CAEA,GAA0B,IAAtBH,EAAW9B,OACd,OAAO8B,EAGRC,EAAQA,GAAS,EAGjB,MAAMG,EAAOJ,EAAWrC,MAAM,EAAGsC,GAC3BI,EAAQL,EAAWrC,MAAMsC,GAE/B,OAAO7B,MAAMpC,UAAU6B,OAAOH,KAAK,GAAIqC,EAAiBK,GAAOL,EAAiBM,GACjF,CAEA,SAASC,EAAOC,GACf,IACC,OAAOL,mBAAmBK,EAC3B,CAAE,MACD,IAAIC,EAASD,EAAME,MAAMb,IAAkB,GAE3C,IAAK,IAAI5B,EAAI,EAAGA,EAAIwC,EAAOtC,OAAQF,IAGlCwC,GAFAD,EAAQR,EAAiBS,EAAQxC,GAAGmC,KAAK,KAE1BM,MAAMb,IAAkB,GAGxC,OAAOW,CACR,CACD,CCvCe,SAASG,EAAaC,EAAQC,GAC5C,GAAwB,iBAAXD,GAA4C,iBAAdC,EAC1C,MAAM,IAAIhE,UAAU,iDAGrB,GAAe,KAAX+D,GAA+B,KAAdC,EACpB,MAAO,GAGR,MAAMC,EAAiBF,EAAOG,QAAQF,GAEtC,OAAwB,IAApBC,EACI,GAGD,CACNF,EAAOhD,MAAM,EAAGkD,GAChBF,EAAOhD,MAAMkD,EAAiBD,EAAU1C,QAE1C,CCnBO,SAAS6C,EAAYC,EAAQC,GACnC,MAAMC,EAAS,CAAC,EAEhB,GAAI9C,MAAM+C,QAAQF,GACjB,IAAK,MAAMG,KAAOH,EAAW,CAC5B,MAAMI,EAAatF,OAAOuF,yBAAyBN,EAAQI,GACvDC,GAAYE,YACfxF,OAAOyF,eAAeN,EAAQE,EAAKC,EAErC,MAGA,IAAK,MAAMD,KAAOK,QAAQC,QAAQV,GAAS,CAC1C,MAAMK,EAAatF,OAAOuF,yBAAyBN,EAAQI,GACvDC,EAAWE,YAEVN,EAAUG,EADAJ,EAAOI,GACKJ,IACzBjF,OAAOyF,eAAeN,EAAQE,EAAKC,EAGtC,CAGD,OAAOH,CACR,CCpBA,MAAMS,EAAoBC,GAASA,QAG7BC,EAAkBlB,GAAUmB,mBAAmBnB,GAAQoB,WAAW,YAAYC,GAAK,IAAIA,EAAEC,WAAW,GAAGC,SAAS,IAAIC,kBAEpHC,EAA2BC,OAAO,4BA8OxC,SAASC,EAA6BV,GACrC,GAAqB,iBAAVA,GAAuC,IAAjBA,EAAM1D,OACtC,MAAM,IAAItB,UAAU,uDAEtB,CAEA,SAAS2F,EAAOX,EAAOY,GACtB,OAAIA,EAAQD,OACJC,EAAQC,OAASZ,EAAgBD,GAASE,mBAAmBF,GAG9DA,CACR,CAEA,SAAS,EAAOA,EAAOY,GACtB,OAAIA,EAAQlC,OHzLE,SAA4BoC,GAC1C,GAA0B,iBAAfA,EACV,MAAM,IAAI9F,UAAU,6DAA+D8F,EAAa,KAGjG,IAEC,OAAOxC,mBAAmBwC,EAC3B,CAAE,MAED,OA9CF,SAAkCnC,GAEjC,MAAMoC,EAAa,CAClB,SAAU,KACV,SAAU,MAGX,IAAIlC,EAAQX,EAAa8C,KAAKrC,GAC9B,KAAOE,GAAO,CACb,IAECkC,EAAWlC,EAAM,IAAMP,mBAAmBO,EAAM,GACjD,CAAE,MACD,MAAMS,EAASZ,EAAOG,EAAM,IAExBS,IAAWT,EAAM,KACpBkC,EAAWlC,EAAM,IAAMS,EAEzB,CAEAT,EAAQX,EAAa8C,KAAKrC,EAC3B,CAGAoC,EAAW,OAAS,IAEpB,MAAME,EAAU9G,OAAO+G,KAAKH,GAE5B,IAAK,MAAMvB,KAAOyB,EAEjBtC,EAAQA,EAAMwC,QAAQ,IAAIlD,OAAOuB,EAAK,KAAMuB,EAAWvB,IAGxD,OAAOb,CACR,CAYSyC,CAAyBN,EACjC,CACD,CG8KS,CAAgBd,GAGjBA,CACR,CAEA,SAASqB,EAAW1C,GACnB,OAAInC,MAAM+C,QAAQZ,GACVA,EAAM2C,OAGO,iBAAV3C,EACH0C,EAAWlH,OAAO+G,KAAKvC,IAC5B2C,MAAK,CAACC,EAAGC,IAAMC,OAAOF,GAAKE,OAAOD,KAClCE,KAAIlC,GAAOb,EAAMa,KAGbb,CACR,CAEA,SAASgD,EAAWhD,GACnB,MAAMiD,EAAYjD,EAAMO,QAAQ,KAKhC,OAJmB,IAAf0C,IACHjD,EAAQA,EAAM5C,MAAM,EAAG6F,IAGjBjD,CACR,CAYA,SAASkD,EAAW7B,EAAOY,GAO1B,OANIA,EAAQkB,eAAiBL,OAAOM,MAAMN,OAAOzB,KAA6B,iBAAVA,GAAuC,KAAjBA,EAAMgC,OAC/FhC,EAAQyB,OAAOzB,IACLY,EAAQqB,eAA2B,OAAVjC,GAA2C,SAAxBA,EAAMkC,eAAoD,UAAxBlC,EAAMkC,gBAC9FlC,EAAgC,SAAxBA,EAAMkC,eAGRlC,CACR,CAEO,SAASmC,EAAQxD,GAEvB,MAAMyD,GADNzD,EAAQgD,EAAWhD,IACMO,QAAQ,KACjC,OAAoB,IAAhBkD,EACI,GAGDzD,EAAM5C,MAAMqG,EAAa,EACjC,CAEO,SAASC,EAAMC,EAAO1B,GAW5BF,GAVAE,EAAU,CACTlC,QAAQ,EACR4C,MAAM,EACNiB,YAAa,OACbC,qBAAsB,IACtBV,cAAc,EACdG,eAAe,KACZrB,IAGiC4B,sBAErC,MAAMC,EApMP,SAA8B7B,GAC7B,IAAItB,EAEJ,OAAQsB,EAAQ2B,aACf,IAAK,QACJ,MAAO,CAAC/C,EAAKQ,EAAO0C,KACnBpD,EAAS,YAAY0B,KAAKxB,GAE1BA,EAAMA,EAAI2B,QAAQ,UAAW,IAExB7B,QAKoBlC,IAArBsF,EAAYlD,KACfkD,EAAYlD,GAAO,CAAC,GAGrBkD,EAAYlD,GAAKF,EAAO,IAAMU,GAR7B0C,EAAYlD,GAAOQ,CAQe,EAIrC,IAAK,UACJ,MAAO,CAACR,EAAKQ,EAAO0C,KACnBpD,EAAS,SAAS0B,KAAKxB,GACvBA,EAAMA,EAAI2B,QAAQ,OAAQ,IAErB7B,OAKoBlC,IAArBsF,EAAYlD,GAKhBkD,EAAYlD,GAAO,IAAIkD,EAAYlD,GAAMQ,GAJxC0C,EAAYlD,GAAO,CAACQ,GALpB0C,EAAYlD,GAAOQ,CAS2B,EAIjD,IAAK,uBACJ,MAAO,CAACR,EAAKQ,EAAO0C,KACnBpD,EAAS,WAAW0B,KAAKxB,GACzBA,EAAMA,EAAI2B,QAAQ,SAAU,IAEvB7B,OAKoBlC,IAArBsF,EAAYlD,GAKhBkD,EAAYlD,GAAO,IAAIkD,EAAYlD,GAAMQ,GAJxC0C,EAAYlD,GAAO,CAACQ,GALpB0C,EAAYlD,GAAOQ,CAS2B,EAIjD,IAAK,QACL,IAAK,YACJ,MAAO,CAACR,EAAKQ,EAAO0C,KACnB,MAAMnD,EAA2B,iBAAVS,GAAsBA,EAAM2C,SAAS/B,EAAQ4B,sBAC9DI,EAAmC,iBAAV5C,IAAuBT,GAAW,EAAOS,EAAOY,GAAS+B,SAAS/B,EAAQ4B,sBACzGxC,EAAQ4C,EAAiB,EAAO5C,EAAOY,GAAWZ,EAClD,MAAM6C,EAAWtD,GAAWqD,EAAiB5C,EAAM3B,MAAMuC,EAAQ4B,sBAAsBd,KAAIoB,GAAQ,EAAOA,EAAMlC,KAAuB,OAAVZ,EAAiBA,EAAQ,EAAOA,EAAOY,GACpK8B,EAAYlD,GAAOqD,CAAQ,EAI7B,IAAK,oBACJ,MAAO,CAACrD,EAAKQ,EAAO0C,KACnB,MAAMnD,EAAU,SAASwD,KAAKvD,GAG9B,GAFAA,EAAMA,EAAI2B,QAAQ,OAAQ,KAErB5B,EAEJ,YADAmD,EAAYlD,GAAOQ,EAAQ,EAAOA,EAAOY,GAAWZ,GAIrD,MAAMgD,EAAuB,OAAVhD,EAChB,GACAA,EAAM3B,MAAMuC,EAAQ4B,sBAAsBd,KAAIoB,GAAQ,EAAOA,EAAMlC,UAE7CxD,IAArBsF,EAAYlD,GAKhBkD,EAAYlD,GAAO,IAAIkD,EAAYlD,MAASwD,GAJ3CN,EAAYlD,GAAOwD,CAImC,EAIzD,QACC,MAAO,CAACxD,EAAKQ,EAAO0C,UACMtF,IAArBsF,EAAYlD,GAKhBkD,EAAYlD,GAAO,IAAI,CAACkD,EAAYlD,IAAMyD,OAAQjD,GAJjD0C,EAAYlD,GAAOQ,CAIoC,EAI5D,CA0FmBkD,CAAqBtC,GAGjCuC,EAAchJ,OAAOqB,OAAO,MAElC,GAAqB,iBAAV8G,EACV,OAAOa,EAKR,KAFAb,EAAQA,EAAMN,OAAOb,QAAQ,SAAU,KAGtC,OAAOgC,EAGR,IAAK,MAAMC,KAAad,EAAMjE,MAAM,KAAM,CACzC,GAAkB,KAAd+E,EACH,SAGD,MAAMC,EAAazC,EAAQlC,OAAS0E,EAAUjD,WAAW,IAAK,KAAOiD,EAErE,IAAK5D,EAAKQ,GAASlB,EAAauE,EAAY,UAEhCjG,IAARoC,IACHA,EAAM6D,GAKPrD,OAAkB5C,IAAV4C,EAAsB,KAAQ,CAAC,QAAS,YAAa,qBAAqB2C,SAAS/B,EAAQ2B,aAAevC,EAAQ,EAAOA,EAAOY,GACxI6B,EAAU,EAAOjD,EAAKoB,GAAUZ,EAAOmD,EACxC,CAEA,IAAK,MAAO3D,EAAKQ,KAAU7F,OAAO8G,QAAQkC,GACzC,GAAqB,iBAAVnD,GAAgC,OAAVA,EAChC,IAAK,MAAOsD,EAAMC,KAAWpJ,OAAO8G,QAAQjB,GAC3CA,EAAMsD,GAAQzB,EAAW0B,EAAQ3C,QAGlCuC,EAAY3D,GAAOqC,EAAW7B,EAAOY,GAIvC,OAAqB,IAAjBA,EAAQU,KACJ6B,IAKiB,IAAjBvC,EAAQU,KAAgBnH,OAAO+G,KAAKiC,GAAa7B,OAASnH,OAAO+G,KAAKiC,GAAa7B,KAAKV,EAAQU,OAAOkC,QAAO,CAAClE,EAAQE,KAC9H,MAAMQ,EAAQmD,EAAY3D,GAE1B,OADAF,EAAOE,GAAOiE,QAAQzD,IAA2B,iBAAVA,IAAuBxD,MAAM+C,QAAQS,GAASqB,EAAWrB,GAASA,EAClGV,CAAM,GACXnF,OAAOqB,OAAO,MAClB,CAEO,SAASkI,EAAUtE,EAAQwB,GACjC,IAAKxB,EACJ,MAAO,GAWRsB,GARAE,EAAU,CACTD,QAAQ,EACRE,QAAQ,EACR0B,YAAa,OACbC,qBAAsB,OACnB5B,IAGiC4B,sBAErC,MAAMmB,EAAenE,GACnBoB,EAAQgD,UAAY7D,EAAkBX,EAAOI,KAC1CoB,EAAQiD,iBAAmC,KAAhBzE,EAAOI,GAGjCiD,EAjZP,SAA+B7B,GAC9B,OAAQA,EAAQ2B,aACf,IAAK,QACJ,OAAO/C,GAAO,CAACF,EAAQU,KACtB,MAAM8D,EAAQxE,EAAOhD,OAErB,YACWc,IAAV4C,GACIY,EAAQgD,UAAsB,OAAV5D,GACpBY,EAAQiD,iBAA6B,KAAV7D,EAExBV,EAGM,OAAVU,EACI,IACHV,EAAQ,CAACqB,EAAOnB,EAAKoB,GAAU,IAAKkD,EAAO,KAAKvF,KAAK,KAInD,IACHe,EACH,CAACqB,EAAOnB,EAAKoB,GAAU,IAAKD,EAAOmD,EAAOlD,GAAU,KAAMD,EAAOX,EAAOY,IAAUrC,KAAK,IACvF,EAIH,IAAK,UACJ,OAAOiB,GAAO,CAACF,EAAQU,SAEX5C,IAAV4C,GACIY,EAAQgD,UAAsB,OAAV5D,GACpBY,EAAQiD,iBAA6B,KAAV7D,EAExBV,EAGM,OAAVU,EACI,IACHV,EACH,CAACqB,EAAOnB,EAAKoB,GAAU,MAAMrC,KAAK,KAI7B,IACHe,EACH,CAACqB,EAAOnB,EAAKoB,GAAU,MAAOD,EAAOX,EAAOY,IAAUrC,KAAK,KAK9D,IAAK,uBACJ,OAAOiB,GAAO,CAACF,EAAQU,SAEX5C,IAAV4C,GACIY,EAAQgD,UAAsB,OAAV5D,GACpBY,EAAQiD,iBAA6B,KAAV7D,EAExBV,EAGM,OAAVU,EACI,IACHV,EACH,CAACqB,EAAOnB,EAAKoB,GAAU,UAAUrC,KAAK,KAIjC,IACHe,EACH,CAACqB,EAAOnB,EAAKoB,GAAU,SAAUD,EAAOX,EAAOY,IAAUrC,KAAK,KAKjE,IAAK,QACL,IAAK,YACL,IAAK,oBAAqB,CACzB,MAAMwF,EAA4C,sBAAxBnD,EAAQ2B,YAC/B,MACA,IAEH,OAAO/C,GAAO,CAACF,EAAQU,SAEX5C,IAAV4C,GACIY,EAAQgD,UAAsB,OAAV5D,GACpBY,EAAQiD,iBAA6B,KAAV7D,EAExBV,GAIRU,EAAkB,OAAVA,EAAiB,GAAKA,EAER,IAAlBV,EAAOhD,OACH,CAAC,CAACqE,EAAOnB,EAAKoB,GAAUmD,EAAmBpD,EAAOX,EAAOY,IAAUrC,KAAK,KAGzE,CAAC,CAACe,EAAQqB,EAAOX,EAAOY,IAAUrC,KAAKqC,EAAQ4B,uBAExD,CAEA,QACC,OAAOhD,GAAO,CAACF,EAAQU,SAEX5C,IAAV4C,GACIY,EAAQgD,UAAsB,OAAV5D,GACpBY,EAAQiD,iBAA6B,KAAV7D,EAExBV,EAGM,OAAVU,EACI,IACHV,EACHqB,EAAOnB,EAAKoB,IAIP,IACHtB,EACH,CAACqB,EAAOnB,EAAKoB,GAAU,IAAKD,EAAOX,EAAOY,IAAUrC,KAAK,KAK9D,CAmRmByF,CAAsBpD,GAElCqD,EAAa,CAAC,EAEpB,IAAK,MAAOzE,EAAKQ,KAAU7F,OAAO8G,QAAQ7B,GACpCuE,EAAanE,KACjByE,EAAWzE,GAAOQ,GAIpB,MAAMkB,EAAO/G,OAAO+G,KAAK+C,GAMzB,OAJqB,IAAjBrD,EAAQU,MACXJ,EAAKI,KAAKV,EAAQU,MAGZJ,EAAKQ,KAAIlC,IACf,MAAMQ,EAAQZ,EAAOI,GAErB,YAAcpC,IAAV4C,EACI,GAGM,OAAVA,EACIW,EAAOnB,EAAKoB,GAGhBpE,MAAM+C,QAAQS,GACI,IAAjBA,EAAM1D,QAAwC,sBAAxBsE,EAAQ2B,YAC1B5B,EAAOnB,EAAKoB,GAAW,KAGxBZ,EACLwD,OAAOf,EAAUjD,GAAM,IACvBjB,KAAK,KAGDoC,EAAOnB,EAAKoB,GAAW,IAAMD,EAAOX,EAAOY,EAAQ,IACxDsD,QAAO9D,GAAKA,EAAE9D,OAAS,IAAGiC,KAAK,IACnC,CAEO,SAAS4F,EAASC,EAAKxD,GAC7BA,EAAU,CACTlC,QAAQ,KACLkC,GAGJ,IAAKyD,EAAMC,GAAQxF,EAAasF,EAAK,KAMrC,YAJahH,IAATiH,IACHA,EAAOD,GAGD,CACNA,IAAKC,GAAMhG,MAAM,OAAO,IAAM,GAC9BiE,MAAOD,EAAMF,EAAQiC,GAAMxD,MACvBA,GAAWA,EAAQ2D,yBAA2BD,EAAO,CAACE,mBAAoB,EAAOF,EAAM1D,IAAY,CAAC,EAE1G,CAEO,SAAS6D,EAAarF,EAAQwB,GACpCA,EAAU,CACTD,QAAQ,EACRE,QAAQ,EACR,CAACL,IAA2B,KACzBI,GAGJ,MAAMwD,EAAMzC,EAAWvC,EAAOgF,KAAK/F,MAAM,KAAK,IAAM,GAQpD,IAAIqG,EAAchB,EALJ,IACVrB,EAHiBF,EAAQ/C,EAAOgF,KAGZ,CAAC9C,MAAM,OAC3BlC,EAAOkD,OAGwB1B,GACnC8D,IAAgB,IAAIA,IAEpB,IAAIJ,EAvML,SAAiBF,GAChB,IAAIE,EAAO,GACX,MAAM1C,EAAYwC,EAAIlF,QAAQ,KAK9B,OAJmB,IAAf0C,IACH0C,EAAOF,EAAIrI,MAAM6F,IAGX0C,CACR,CA+LYK,CAAQvF,EAAOgF,KAC1B,GAAyC,iBAA9BhF,EAAOoF,mBAAiC,CAClD,MAAMI,EAA6B,IAAIC,IAAIT,GAC3CQ,EAA2BN,KAAOlF,EAAOoF,mBACzCF,EAAO1D,EAAQJ,GAA4BoE,EAA2BN,KAAO,IAAIlF,EAAOoF,oBACzF,CAEA,MAAO,GAAGJ,IAAMM,IAAcJ,GAC/B,CAEO,SAASQ,EAAKnG,EAAOuF,EAAQtD,GACnCA,EAAU,CACT2D,yBAAyB,EACzB,CAAC/D,IAA2B,KACzBI,GAGJ,MAAM,IAACwD,EAAG,MAAE9B,EAAK,mBAAEkC,GAAsBL,EAASxF,EAAOiC,GAEzD,OAAO6D,EAAa,CACnBL,MACA9B,MAAOnD,EAAYmD,EAAO4B,GAC1BM,sBACE5D,EACJ,CAEO,SAASmE,EAAQpG,EAAOuF,EAAQtD,GAGtC,OAAOkE,EAAKnG,EAFYnC,MAAM+C,QAAQ2E,GAAU1E,IAAQ0E,EAAOvB,SAASnD,GAAO,CAACA,EAAKQ,KAAWkE,EAAO1E,EAAKQ,GAExEY,EACrC,CCvgBA,yBCiBA,SAASoE,EAAQzD,EAAGC,GAClB,IAAK,IAAIhC,KAAOgC,EACdD,EAAE/B,GAAOgC,EAAEhC,GAEb,OAAO+B,CACT,CAIA,IAAI0D,EAAkB,WAClBC,EAAwB,SAAUC,GAAK,MAAO,IAAMA,EAAE9E,WAAW,GAAGC,SAAS,GAAK,EAClF8E,EAAU,OAKV,EAAS,SAAUC,GAAO,OAAOnF,mBAAmBmF,GACnDlE,QAAQ8D,EAAiBC,GACzB/D,QAAQiE,EAAS,IAAM,EAE5B,SAAS,EAAQC,GACf,IACE,OAAO/G,mBAAmB+G,EAC5B,CAAE,MAAOC,GAIT,CACA,OAAOD,CACT,CA0BA,IAAIE,EAAsB,SAAUvF,GAAS,OAAiB,MAATA,GAAkC,iBAAVA,EAAqBA,EAAQwF,OAAOxF,EAAS,EAE1H,SAASyF,EAAYnD,GACnB,IAAIoD,EAAM,CAAC,EAIX,OAFApD,EAAQA,EAAMN,OAAOb,QAAQ,YAAa,MAM1CmB,EAAMjE,MAAM,KAAKsH,SAAQ,SAAUC,GACjC,IAAIC,EAAQD,EAAMzE,QAAQ,MAAO,KAAK9C,MAAM,KACxCmB,EAAM,EAAOqG,EAAMC,SACnBC,EAAMF,EAAMvJ,OAAS,EAAI,EAAOuJ,EAAMtH,KAAK,MAAQ,UAEtCnB,IAAbsI,EAAIlG,GACNkG,EAAIlG,GAAOuG,EACFvJ,MAAM+C,QAAQmG,EAAIlG,IAC3BkG,EAAIlG,GAAKpE,KAAK2K,GAEdL,EAAIlG,GAAO,CAACkG,EAAIlG,GAAMuG,EAE1B,IAEOL,GAjBEA,CAkBX,CAEA,SAASM,EAAgBC,GACvB,IAAIP,EAAMO,EACN9L,OAAO+G,KAAK+E,GACXvE,KAAI,SAAUlC,GACb,IAAIuG,EAAME,EAAIzG,GAEd,QAAYpC,IAAR2I,EACF,MAAO,GAGT,GAAY,OAARA,EACF,OAAO,EAAOvG,GAGhB,GAAIhD,MAAM+C,QAAQwG,GAAM,CACtB,IAAIzG,EAAS,GAWb,OAVAyG,EAAIJ,SAAQ,SAAUO,QACP9I,IAAT8I,IAGS,OAATA,EACF5G,EAAOlE,KAAK,EAAOoE,IAEnBF,EAAOlE,KAAK,EAAOoE,GAAO,IAAM,EAAO0G,IAE3C,IACO5G,EAAOf,KAAK,IACrB,CAEA,OAAO,EAAOiB,GAAO,IAAM,EAAOuG,EACpC,IACC7B,QAAO,SAAU9D,GAAK,OAAOA,EAAE9D,OAAS,CAAG,IAC3CiC,KAAK,KACN,KACJ,OAAOmH,EAAO,IAAMA,EAAO,EAC7B,CAIA,IAAIS,EAAkB,OAEtB,SAASC,EACPC,EACAC,EACAC,EACAC,GAEA,IAAIR,EAAiBQ,GAAUA,EAAO5F,QAAQoF,eAE1C1D,EAAQgE,EAAShE,OAAS,CAAC,EAC/B,IACEA,EAAQmE,EAAMnE,EAChB,CAAE,MAAOoE,GAAI,CAEb,IAAIC,EAAQ,CACV/K,KAAM0K,EAAS1K,MAASyK,GAAUA,EAAOzK,KACzCgL,KAAOP,GAAUA,EAAOO,MAAS,CAAC,EAClCC,KAAMP,EAASO,MAAQ,IACvBvC,KAAMgC,EAAShC,MAAQ,GACvBhC,MAAOA,EACPwE,OAAQR,EAASQ,QAAU,CAAC,EAC5BC,SAAUC,EAAYV,EAAUN,GAChCiB,QAASZ,EAASa,EAAYb,GAAU,IAK1C,OAHIE,IACFI,EAAMJ,eAAiBS,EAAYT,EAAgBP,IAE9C7L,OAAOgN,OAAOR,EACvB,CAEA,SAASF,EAAOzG,GACd,GAAIxD,MAAM+C,QAAQS,GAChB,OAAOA,EAAM0B,IAAI+E,GACZ,GAAIzG,GAA0B,iBAAVA,EAAoB,CAC7C,IAAI0F,EAAM,CAAC,EACX,IAAK,IAAIlG,KAAOQ,EACd0F,EAAIlG,GAAOiH,EAAMzG,EAAMR,IAEzB,OAAOkG,CACT,CACE,OAAO1F,CAEX,CAGA,IAAIoH,EAAQhB,EAAY,KAAM,CAC5BS,KAAM,MAGR,SAASK,EAAab,GAEpB,IADA,IAAIX,EAAM,GACHW,GACLX,EAAI2B,QAAQhB,GACZA,EAASA,EAAOiB,OAElB,OAAO5B,CACT,CAEA,SAASsB,EACPO,EACAC,GAEA,IAAIX,EAAOU,EAAIV,KACXvE,EAAQiF,EAAIjF,WAAsB,IAAVA,IAAmBA,EAAQ,CAAC,GACxD,IAAIgC,EAAOiD,EAAIjD,KAGf,YAHmC,IAATA,IAAkBA,EAAO,KAG3CuC,GAAQ,MADAW,GAAmBxB,GACF1D,GAASgC,CAC5C,CAEA,SAASmD,EAAalG,EAAGC,EAAGkG,GAC1B,OAAIlG,IAAM4F,EACD7F,IAAMC,IACHA,IAEDD,EAAEsF,MAAQrF,EAAEqF,KACdtF,EAAEsF,KAAK1F,QAAQgF,EAAiB,MAAQ3E,EAAEqF,KAAK1F,QAAQgF,EAAiB,MAAQuB,GACrFnG,EAAE+C,OAAS9C,EAAE8C,MACbqD,EAAcpG,EAAEe,MAAOd,EAAEc,WAClBf,EAAE3F,OAAQ4F,EAAE5F,OAEnB2F,EAAE3F,OAAS4F,EAAE5F,OACZ8L,GACCnG,EAAE+C,OAAS9C,EAAE8C,MACfqD,EAAcpG,EAAEe,MAAOd,EAAEc,QACzBqF,EAAcpG,EAAEuF,OAAQtF,EAAEsF,SAMhC,CAEA,SAASa,EAAepG,EAAGC,GAKzB,QAJW,IAAND,IAAeA,EAAI,CAAC,QACd,IAANC,IAAeA,EAAI,CAAC,IAGpBD,IAAMC,EAAK,OAAOD,IAAMC,EAC7B,IAAIoG,EAAQzN,OAAO+G,KAAKK,GAAGD,OACvBuG,EAAQ1N,OAAO+G,KAAKM,GAAGF,OAC3B,OAAIsG,EAAMtL,SAAWuL,EAAMvL,QAGpBsL,EAAME,OAAM,SAAUtI,EAAKpD,GAChC,IAAI2L,EAAOxG,EAAE/B,GAEb,GADWqI,EAAMzL,KACJoD,EAAO,OAAO,EAC3B,IAAIwI,EAAOxG,EAAEhC,GAEb,OAAY,MAARuI,GAAwB,MAARC,EAAuBD,IAASC,EAEhC,iBAATD,GAAqC,iBAATC,EAC9BL,EAAcI,EAAMC,GAEtBxC,OAAOuC,KAAUvC,OAAOwC,EACjC,GACF,CAqBA,SAASC,EAAoBtB,GAC3B,IAAK,IAAIvK,EAAI,EAAGA,EAAIuK,EAAMM,QAAQ3K,OAAQF,IAAK,CAC7C,IAAIiK,EAASM,EAAMM,QAAQ7K,GAC3B,IAAK,IAAIR,KAAQyK,EAAO6B,UAAW,CACjC,IAAIC,EAAW9B,EAAO6B,UAAUtM,GAC5BwM,EAAM/B,EAAOgC,WAAWzM,GAC5B,GAAKuM,GAAaC,EAAlB,QACO/B,EAAOgC,WAAWzM,GACzB,IAAK,IAAI0M,EAAM,EAAGA,EAAMF,EAAI9L,OAAQgM,IAC7BH,EAASI,mBAAqBH,EAAIE,GAAKH,EAHZ,CAKpC,CACF,CACF,CAEA,IAAIK,GAAO,CACT5M,KAAM,aACN6M,YAAY,EACZC,MAAO,CACL9M,KAAM,CACJ+M,KAAMnD,OACNoD,QAAS,YAGbC,OAAQ,SAAiBC,EAAGvB,GAC1B,IAAImB,EAAQnB,EAAImB,MACZK,EAAWxB,EAAIwB,SACfzB,EAASC,EAAID,OACb0B,EAAOzB,EAAIyB,KAGfA,EAAKC,YAAa,EAalB,IATA,IAAIC,EAAI5B,EAAO6B,eACXvN,EAAO8M,EAAM9M,KACb+K,EAAQW,EAAO8B,OACfC,EAAQ/B,EAAOgC,mBAAqBhC,EAAOgC,iBAAmB,CAAC,GAI/DC,EAAQ,EACRC,GAAW,EACRlC,GAAUA,EAAOmC,cAAgBnC,GAAQ,CAC9C,IAAIoC,EAAYpC,EAAOqC,OAASrC,EAAOqC,OAAOX,KAAO,CAAC,EAClDU,EAAUT,YACZM,IAEEG,EAAUE,WAAatC,EAAOuC,iBAAmBvC,EAAOwC,YAC1DN,GAAW,GAEblC,EAASA,EAAOyC,OAClB,CAIA,GAHAf,EAAKgB,gBAAkBT,EAGnBC,EAAU,CACZ,IAAIS,EAAaZ,EAAMzN,GACnBsO,EAAkBD,GAAcA,EAAWE,UAC/C,OAAID,GAGED,EAAWG,aACbC,GAAgBH,EAAiBlB,EAAMiB,EAAWtD,MAAOsD,EAAWG,aAE/DlB,EAAEgB,EAAiBlB,EAAMD,IAGzBG,GAEX,CAEA,IAAIjC,EAAUN,EAAMM,QAAQsC,GACxBY,EAAYlD,GAAWA,EAAQ7I,WAAWxC,GAG9C,IAAKqL,IAAYkD,EAEf,OADAd,EAAMzN,GAAQ,KACPsN,IAITG,EAAMzN,GAAQ,CAAEuO,UAAWA,GAI3BnB,EAAKsB,sBAAwB,SAAUC,EAAIxE,GAEzC,IAAIyE,EAAUvD,EAAQiB,UAAUtM,IAE7BmK,GAAOyE,IAAYD,IAClBxE,GAAOyE,IAAYD,KAErBtD,EAAQiB,UAAUtM,GAAQmK,EAE9B,GAIEiD,EAAKyB,OAASzB,EAAKyB,KAAO,CAAC,IAAIC,SAAW,SAAU5B,EAAG6B,GACvD1D,EAAQiB,UAAUtM,GAAQ+O,EAAMC,iBAClC,EAIA5B,EAAKyB,KAAKI,KAAO,SAAUF,GACrBA,EAAM3B,KAAKY,WACbe,EAAMC,mBACND,EAAMC,oBAAsB3D,EAAQiB,UAAUtM,KAE9CqL,EAAQiB,UAAUtM,GAAQ+O,EAAMC,mBAMlC3C,EAAmBtB,EACrB,EAEA,IAAIyD,EAAcnD,EAAQyB,OAASzB,EAAQyB,MAAM9M,GAUjD,OARIwO,IACFpF,EAAOqE,EAAMzN,GAAO,CAClB+K,MAAOA,EACPyD,YAAaA,IAEfC,GAAgBF,EAAWnB,EAAMrC,EAAOyD,IAGnClB,EAAEiB,EAAWnB,EAAMD,EAC5B,GAGF,SAASsB,GAAiBF,EAAWnB,EAAMrC,EAAOyD,GAEhD,IAAIU,EAAc9B,EAAKN,MAezB,SAAuB/B,EAAOoE,GAC5B,cAAeA,GACb,IAAK,YACH,OACF,IAAK,SACH,OAAOA,EACT,IAAK,WACH,OAAOA,EAAOpE,GAChB,IAAK,UACH,OAAOoE,EAASpE,EAAMG,YAAS1J,EAUrC,CAlCiC4N,CAAarE,EAAOyD,GACnD,GAAIU,EAAa,CAEfA,EAAc9B,EAAKN,MAAQ1D,EAAO,CAAC,EAAG8F,GAEtC,IAAIG,EAAQjC,EAAKiC,MAAQjC,EAAKiC,OAAS,CAAC,EACxC,IAAK,IAAIzL,KAAOsL,EACTX,EAAUzB,OAAWlJ,KAAO2K,EAAUzB,QACzCuC,EAAMzL,GAAOsL,EAAYtL,UAClBsL,EAAYtL,GAGzB,CACF,CAyBA,SAAS0L,GACPC,EACAC,EACAC,GAEA,IAAIC,EAAYH,EAASI,OAAO,GAChC,GAAkB,MAAdD,EACF,OAAOH,EAGT,GAAkB,MAAdG,GAAmC,MAAdA,EACvB,OAAOF,EAAOD,EAGhB,IAAIK,EAAQJ,EAAK/M,MAAM,KAKlBgN,GAAWG,EAAMA,EAAMlP,OAAS,IACnCkP,EAAMC,MAKR,IADA,IAAIC,EAAWP,EAAShK,QAAQ,MAAO,IAAI9C,MAAM,KACxCjC,EAAI,EAAGA,EAAIsP,EAASpP,OAAQF,IAAK,CACxC,IAAIuP,EAAUD,EAAStP,GACP,OAAZuP,EACFH,EAAMC,MACe,MAAZE,GACTH,EAAMpQ,KAAKuQ,EAEf,CAOA,MAJiB,KAAbH,EAAM,IACRA,EAAMnE,QAAQ,IAGTmE,EAAMjN,KAAK,IACpB,CAyBA,SAASqN,GAAW/E,GAClB,OAAOA,EAAK1F,QAAQ,gBAAiB,IACvC,CAEA,IAAI0K,GAAUrP,MAAM+C,SAAW,SAAUuM,GACvC,MAA8C,kBAAvC3R,OAAOC,UAAUkG,SAASxE,KAAKgQ,EACxC,EAKIC,GAmZJ,SAASC,EAAcnF,EAAM3F,EAAMN,GAQjC,OAPKiL,GAAQ3K,KACXN,EAAkCM,GAAQN,EAC1CM,EAAO,IAGTN,EAAUA,GAAW,CAAC,EAElBiG,aAAgB5I,OAlJtB,SAAyB4I,EAAM3F,GAE7B,IAAI+K,EAASpF,EAAKqF,OAAOrN,MAAM,aAE/B,GAAIoN,EACF,IAAK,IAAI7P,EAAI,EAAGA,EAAI6P,EAAO3P,OAAQF,IACjC8E,EAAK9F,KAAK,CACRQ,KAAMQ,EACN9B,OAAQ,KACR6R,UAAW,KACXC,UAAU,EACVC,QAAQ,EACRC,SAAS,EACTC,UAAU,EACVC,QAAS,OAKf,OAAOC,GAAW5F,EAAM3F,EAC1B,CA+HWwL,CAAe7F,EAA4B,GAGhDgF,GAAQhF,GAxHd,SAAwBA,EAAM3F,EAAMN,GAGlC,IAFA,IAAIiF,EAAQ,GAEHzJ,EAAI,EAAGA,EAAIyK,EAAKvK,OAAQF,IAC/ByJ,EAAMzK,KAAK4Q,EAAanF,EAAKzK,GAAI8E,EAAMN,GAASsL,QAKlD,OAAOO,GAFM,IAAIxO,OAAO,MAAQ4H,EAAMtH,KAAK,KAAO,IAAKoO,GAAM/L,IAEnCM,EAC5B,CA+GW0L,CAAoC,EAA8B,EAAQhM,GArGrF,SAAyBiG,EAAM3F,EAAMN,GACnC,OAAOiM,GAAe,GAAMhG,EAAMjG,GAAUM,EAAMN,EACpD,CAsGSkM,CAAqC,EAA8B,EAAQlM,EACpF,EAnaImM,GAAU,GAEVC,GAAqBC,GACrBC,GAAmBL,GAOnBM,GAAc,IAAIlP,OAAO,CAG3B,UAOA,0GACAM,KAAK,KAAM,KASb,SAAS,GAAO8G,EAAKzE,GAQnB,IAPA,IAKI8E,EALA9G,EAAS,GACTY,EAAM,EACNsE,EAAQ,EACR+C,EAAO,GACPuG,EAAmBxM,GAAWA,EAAQuL,WAAa,IAGf,OAAhCzG,EAAMyH,GAAYnM,KAAKqE,KAAe,CAC5C,IAAIgI,EAAI3H,EAAI,GACR4H,EAAU5H,EAAI,GACd6H,EAAS7H,EAAI5B,MAKjB,GAJA+C,GAAQxB,EAAItJ,MAAM+H,EAAOyJ,GACzBzJ,EAAQyJ,EAASF,EAAE/Q,OAGfgR,EACFzG,GAAQyG,EAAQ,OADlB,CAKA,IAAIE,EAAOnI,EAAIvB,GACXxJ,EAASoL,EAAI,GACb9J,EAAO8J,EAAI,GACX+H,EAAU/H,EAAI,GACdgI,EAAQhI,EAAI,GACZiI,EAAWjI,EAAI,GACf6G,EAAW7G,EAAI,GAGfmB,IACFjI,EAAOxD,KAAKyL,GACZA,EAAO,IAGT,IAAIyF,EAAoB,MAAVhS,GAA0B,MAARkT,GAAgBA,IAASlT,EACrD+R,EAAsB,MAAbsB,GAAiC,MAAbA,EAC7BvB,EAAwB,MAAbuB,GAAiC,MAAbA,EAC/BxB,EAAYzG,EAAI,IAAM0H,EACtBZ,EAAUiB,GAAWC,EAEzB9O,EAAOxD,KAAK,CACVQ,KAAMA,GAAQ4D,IACdlF,OAAQA,GAAU,GAClB6R,UAAWA,EACXC,SAAUA,EACVC,OAAQA,EACRC,QAASA,EACTC,WAAYA,EACZC,QAASA,EAAUoB,GAAYpB,GAAYD,EAAW,KAAO,KAAOsB,GAAa1B,GAAa,OA9BhG,CAgCF,CAYA,OATIrI,EAAQuB,EAAI/I,SACduK,GAAQxB,EAAIyI,OAAOhK,IAIjB+C,GACFjI,EAAOxD,KAAKyL,GAGPjI,CACT,CAmBA,SAASmP,GAA0B1I,GACjC,OAAO2I,UAAU3I,GAAKlE,QAAQ,WAAW,SAAUgE,GACjD,MAAO,IAAMA,EAAE9E,WAAW,GAAGC,SAAS,IAAIC,aAC5C,GACF,CAiBA,SAAS0M,GAAkBrO,EAAQgC,GAKjC,IAHA,IAAIqN,EAAU,IAAIzR,MAAMoC,EAAOtC,QAGtBF,EAAI,EAAGA,EAAIwC,EAAOtC,OAAQF,IACR,iBAAdwC,EAAOxC,KAChB6R,EAAQ7R,GAAK,IAAI6B,OAAO,OAASW,EAAOxC,GAAGoQ,QAAU,KAAMG,GAAM/L,KAIrE,OAAO,SAAUqF,EAAKiI,GAMpB,IALA,IAAIrH,EAAO,GACPmC,EAAO/C,GAAO,CAAC,EAEftF,GADUuN,GAAQ,CAAC,GACFC,OAASJ,GAA2B7N,mBAEhD9D,EAAI,EAAGA,EAAIwC,EAAOtC,OAAQF,IAAK,CACtC,IAAI2B,EAAQa,EAAOxC,GAEnB,GAAqB,iBAAV2B,EAAX,CAMA,IACI4N,EADA3L,EAAQgJ,EAAKjL,EAAMnC,MAGvB,GAAa,MAAToE,EAAe,CACjB,GAAIjC,EAAMqO,SAAU,CAEdrO,EAAMuO,UACRzF,GAAQ9I,EAAMzD,QAGhB,QACF,CACE,MAAM,IAAIU,UAAU,aAAe+C,EAAMnC,KAAO,kBAEpD,CAEA,GAAIiQ,GAAQ7L,GAAZ,CACE,IAAKjC,EAAMsO,OACT,MAAM,IAAIrR,UAAU,aAAe+C,EAAMnC,KAAO,kCAAoCwS,KAAK1K,UAAU1D,GAAS,KAG9G,GAAqB,IAAjBA,EAAM1D,OAAc,CACtB,GAAIyB,EAAMqO,SACR,SAEA,MAAM,IAAIpR,UAAU,aAAe+C,EAAMnC,KAAO,oBAEpD,CAEA,IAAK,IAAI0B,EAAI,EAAGA,EAAI0C,EAAM1D,OAAQgB,IAAK,CAGrC,GAFAqO,EAAUhL,EAAOX,EAAM1C,KAElB2Q,EAAQ7R,GAAG2G,KAAK4I,GACnB,MAAM,IAAI3Q,UAAU,iBAAmB+C,EAAMnC,KAAO,eAAiBmC,EAAMyO,QAAU,oBAAsB4B,KAAK1K,UAAUiI,GAAW,KAGvI9E,IAAe,IAANvJ,EAAUS,EAAMzD,OAASyD,EAAMoO,WAAaR,CACvD,CAGF,KAxBA,CA4BA,GAFAA,EAAU5N,EAAMwO,SA5EbyB,UA4EuChO,GA5ExBmB,QAAQ,SAAS,SAAUgE,GAC/C,MAAO,IAAMA,EAAE9E,WAAW,GAAGC,SAAS,IAAIC,aAC5C,IA0EuDI,EAAOX,IAErDiO,EAAQ7R,GAAG2G,KAAK4I,GACnB,MAAM,IAAI3Q,UAAU,aAAe+C,EAAMnC,KAAO,eAAiBmC,EAAMyO,QAAU,oBAAsBb,EAAU,KAGnH9E,GAAQ9I,EAAMzD,OAASqR,CARvB,CA1CA,MAHE9E,GAAQ9I,CAsDZ,CAEA,OAAO8I,CACT,CACF,CAQA,SAASgH,GAAcxI,GACrB,OAAOA,EAAIlE,QAAQ,6BAA8B,OACnD,CAQA,SAASyM,GAAaF,GACpB,OAAOA,EAAMvM,QAAQ,gBAAiB,OACxC,CASA,SAASsL,GAAY4B,EAAInN,GAEvB,OADAmN,EAAGnN,KAAOA,EACHmN,CACT,CAQA,SAAS1B,GAAO/L,GACd,OAAOA,GAAWA,EAAQ0N,UAAY,GAAK,GAC7C,CAuEA,SAASzB,GAAgBjO,EAAQsC,EAAMN,GAChCiL,GAAQ3K,KACXN,EAAkCM,GAAQN,EAC1CM,EAAO,IAUT,IALA,IAAIL,GAFJD,EAAUA,GAAW,CAAC,GAEDC,OACjB0N,GAAsB,IAAhB3N,EAAQ2N,IACd5H,EAAQ,GAGHvK,EAAI,EAAGA,EAAIwC,EAAOtC,OAAQF,IAAK,CACtC,IAAI2B,EAAQa,EAAOxC,GAEnB,GAAqB,iBAAV2B,EACT4I,GAASkH,GAAa9P,OACjB,CACL,IAAIzD,EAASuT,GAAa9P,EAAMzD,QAC5BmT,EAAU,MAAQ1P,EAAMyO,QAAU,IAEtCtL,EAAK9F,KAAK2C,GAENA,EAAMsO,SACRoB,GAAW,MAAQnT,EAASmT,EAAU,MAaxC9G,GANI8G,EAJA1P,EAAMqO,SACHrO,EAAMuO,QAGChS,EAAS,IAAMmT,EAAU,KAFzB,MAAQnT,EAAS,IAAMmT,EAAU,MAKnCnT,EAAS,IAAMmT,EAAU,GAIvC,CACF,CAEA,IAAItB,EAAY0B,GAAajN,EAAQuL,WAAa,KAC9CqC,EAAoB7H,EAAM5K,OAAOoQ,EAAU7P,UAAY6P,EAkB3D,OAZKtL,IACH8F,GAAS6H,EAAoB7H,EAAM5K,MAAM,GAAIoQ,EAAU7P,QAAUqK,GAAS,MAAQwF,EAAY,WAI9FxF,GADE4H,EACO,IAIA1N,GAAU2N,EAAoB,GAAK,MAAQrC,EAAY,MAG3DM,GAAW,IAAIxO,OAAO,IAAM0I,EAAOgG,GAAM/L,IAAWM,EAC7D,CAgCA6K,GAAe1J,MAAQ0K,GACvBhB,GAAe0C,QA9Tf,SAAkBpJ,EAAKzE,GACrB,OAAOqM,GAAiB,GAAM5H,EAAKzE,GAAUA,EAC/C,EA6TAmL,GAAekB,iBAAmBD,GAClCjB,GAAec,eAAiBK,GAKhC,IAAIwB,GAAqBvU,OAAOqB,OAAO,MAEvC,SAASmT,GACP9H,EACAC,EACA8H,GAEA9H,EAASA,GAAU,CAAC,EACpB,IACE,IAAI+H,EACFH,GAAmB7H,KAClB6H,GAAmB7H,GAAQkF,GAAe0C,QAAQ5H,IAMrD,MAFgC,iBAArBC,EAAOgI,YAA0BhI,EAAO,GAAKA,EAAOgI,WAExDD,EAAO/H,EAAQ,CAAEqH,QAAQ,GAClC,CAAE,MAAOzH,GAKP,MAAO,EACT,CAAE,eAEOI,EAAO,EAChB,CACF,CAIA,SAASiI,GACPC,EACAxE,EACAa,EACA7E,GAEA,IAAIgH,EAAsB,iBAARwB,EAAmB,CAAEnI,KAAMmI,GAAQA,EAErD,GAAIxB,EAAKyB,YACP,OAAOzB,EACF,GAAIA,EAAK5R,KAAM,CAEpB,IAAIkL,GADJ0G,EAAOxI,EAAO,CAAC,EAAGgK,IACAlI,OAIlB,OAHIA,GAA4B,iBAAXA,IACnB0G,EAAK1G,OAAS9B,EAAO,CAAC,EAAG8B,IAEpB0G,CACT,CAGA,IAAKA,EAAK3G,MAAQ2G,EAAK1G,QAAU0D,EAAS,EACxCgD,EAAOxI,EAAO,CAAC,EAAGwI,IACbyB,aAAc,EACnB,IAAIC,EAAWlK,EAAOA,EAAO,CAAC,EAAGwF,EAAQ1D,QAAS0G,EAAK1G,QACvD,GAAI0D,EAAQ5O,KACV4R,EAAK5R,KAAO4O,EAAQ5O,KACpB4R,EAAK1G,OAASoI,OACT,GAAI1E,EAAQvD,QAAQ3K,OAAQ,CACjC,IAAI6S,EAAU3E,EAAQvD,QAAQuD,EAAQvD,QAAQ3K,OAAS,GAAGuK,KAC1D2G,EAAK3G,KAAO8H,GAAWQ,EAASD,EAAsB1E,EAAY,KACpE,CAGA,OAAOgD,CACT,CAEA,IAAI4B,EAnhBN,SAAoBvI,GAClB,IAAIvC,EAAO,GACPhC,EAAQ,GAER+M,EAAYxI,EAAK3H,QAAQ,KACzBmQ,GAAa,IACf/K,EAAOuC,EAAK9K,MAAMsT,GAClBxI,EAAOA,EAAK9K,MAAM,EAAGsT,IAGvB,IAAIC,EAAazI,EAAK3H,QAAQ,KAM9B,OALIoQ,GAAc,IAChBhN,EAAQuE,EAAK9K,MAAMuT,EAAa,GAChCzI,EAAOA,EAAK9K,MAAM,EAAGuT,IAGhB,CACLzI,KAAMA,EACNvE,MAAOA,EACPgC,KAAMA,EAEV,CA8fmBiL,CAAU/B,EAAK3G,MAAQ,IACpC2I,EAAYhF,GAAWA,EAAQ3D,MAAS,IACxCA,EAAOuI,EAAWvI,KAClBqE,GAAYkE,EAAWvI,KAAM2I,EAAUnE,GAAUmC,EAAKnC,QACtDmE,EAEAlN,EAv9BN,SACEA,EACAmN,EACAC,QAEoB,IAAfD,IAAwBA,EAAa,CAAC,GAE3C,IACIE,EADAtN,EAAQqN,GAAejK,EAE3B,IACEkK,EAActN,EAAMC,GAAS,GAC/B,CAAE,MAAOoE,GAEPiJ,EAAc,CAAC,CACjB,CACA,IAAK,IAAInQ,KAAOiQ,EAAY,CAC1B,IAAIzP,EAAQyP,EAAWjQ,GACvBmQ,EAAYnQ,GAAOhD,MAAM+C,QAAQS,GAC7BA,EAAM0B,IAAI6D,GACVA,EAAoBvF,EAC1B,CACA,OAAO2P,CACT,CAi8BcC,CACVR,EAAW9M,MACXkL,EAAKlL,MACLkE,GAAUA,EAAO5F,QAAQ6E,YAGvBnB,EAAOkJ,EAAKlJ,MAAQ8K,EAAW9K,KAKnC,OAJIA,GAA2B,MAAnBA,EAAKiH,OAAO,KACtBjH,EAAO,IAAMA,GAGR,CACL2K,aAAa,EACbpI,KAAMA,EACNvE,MAAOA,EACPgC,KAAMA,EAEV,CAKA,IA4NIuL,GAzNAC,GAAO,WAAa,EAMpBC,GAAO,CACTnU,KAAM,aACN8M,MAAO,CACLsH,GAAI,CACFrH,KAbQ,CAACnD,OAAQrL,QAcjB8V,UAAU,GAEZC,IAAK,CACHvH,KAAMnD,OACNoD,QAAS,KAEXuH,OAAQ1M,QACR2M,MAAO3M,QACP4M,UAAW5M,QACX4H,OAAQ5H,QACRtC,QAASsC,QACT6M,YAAa9K,OACb+K,iBAAkB/K,OAClBgL,iBAAkB,CAChB7H,KAAMnD,OACNoD,QAAS,QAEX7N,MAAO,CACL4N,KA/BW,CAACnD,OAAQhJ,OAgCpBoM,QAAS,UAGbC,OAAQ,SAAiBK,GACvB,IAAIuH,EAAW7V,KAEX4L,EAAS5L,KAAK8V,QACdlG,EAAU5P,KAAKwO,OACf7B,EAAMf,EAAOmK,QACf/V,KAAKoV,GACLxF,EACA5P,KAAKyQ,QAEH/E,EAAWiB,EAAIjB,SACfK,EAAQY,EAAIZ,MACZiK,EAAOrJ,EAAIqJ,KAEXC,EAAU,CAAC,EACXC,EAAoBtK,EAAO5F,QAAQmQ,gBACnCC,EAAyBxK,EAAO5F,QAAQqQ,qBAExCC,EACmB,MAArBJ,EAA4B,qBAAuBA,EACjDK,EACwB,MAA1BH,EACI,2BACAA,EACFV,EACkB,MAApB1V,KAAK0V,YAAsBY,EAAsBtW,KAAK0V,YACpDC,EACuB,MAAzB3V,KAAK2V,iBACDY,EACAvW,KAAK2V,iBAEPa,EAAgBzK,EAAMJ,eACtBH,EAAY,KAAM2I,GAAkBpI,EAAMJ,gBAAiB,KAAMC,GACjEG,EAEJkK,EAAQN,GAAoB9I,EAAY+C,EAAS4G,EAAexW,KAAKyV,WACrEQ,EAAQP,GAAe1V,KAAKwV,OAASxV,KAAKyV,UACtCQ,EAAQN,GAn2BhB,SAA0B/F,EAAS6G,GACjC,OAGQ,IAFN7G,EAAQ3D,KAAK1F,QAAQgF,EAAiB,KAAKjH,QACzCmS,EAAOxK,KAAK1F,QAAQgF,EAAiB,SAErCkL,EAAO/M,MAAQkG,EAAQlG,OAAS+M,EAAO/M,OAK7C,SAAwBkG,EAAS6G,GAC/B,IAAK,IAAI7R,KAAO6R,EACd,KAAM7R,KAAOgL,GACX,OAAO,EAGX,OAAO,CACT,CAXI8G,CAAc9G,EAAQlI,MAAO+O,EAAO/O,MAExC,CA41BQiP,CAAgB/G,EAAS4G,GAE7B,IAAIZ,EAAmBK,EAAQN,GAAoB3V,KAAK4V,iBAAmB,KAEvEgB,EAAU,SAAU9K,GAClB+K,GAAW/K,KACT+J,EAAStP,QACXqF,EAAOrF,QAAQmF,EAAUwJ,IAEzBtJ,EAAOpL,KAAKkL,EAAUwJ,IAG5B,EAEIvS,EAAK,CAAEmU,MAAOD,IACdjV,MAAM+C,QAAQ3E,KAAKG,OACrBH,KAAKG,MAAM4K,SAAQ,SAAUe,GAC3BnJ,EAAGmJ,GAAK8K,CACV,IAEAjU,EAAG3C,KAAKG,OAASyW,EAGnB,IAAIxI,EAAO,CAAE2I,MAAOd,GAEhBe,GACDhX,KAAKiX,aAAaC,YACnBlX,KAAKiX,aAAajJ,SAClBhO,KAAKiX,aAAajJ,QAAQ,CACxBgI,KAAMA,EACNjK,MAAOA,EACPoL,SAAUP,EACVQ,SAAUnB,EAAQP,GAClB2B,cAAepB,EAAQN,KAG3B,GAAIqB,EAAY,CAKd,GAA0B,IAAtBA,EAAWtV,OACb,OAAOsV,EAAW,GACb,GAAIA,EAAWtV,OAAS,IAAMsV,EAAWtV,OAO9C,OAA6B,IAAtBsV,EAAWtV,OAAe4M,IAAMA,EAAE,OAAQ,CAAC,EAAG0I,EAEzD,CAmBA,GAAiB,MAAbhX,KAAKsV,IACPlH,EAAKzL,GAAKA,EACVyL,EAAKiC,MAAQ,CAAE2F,KAAMA,EAAM,eAAgBJ,OACtC,CAEL,IAAIjP,EAAI2Q,GAAWtX,KAAKuX,OAAOvJ,SAC/B,GAAIrH,EAAG,CAELA,EAAE6Q,UAAW,EACb,IAAIC,EAAS9Q,EAAEyH,KAAOhE,EAAO,CAAC,EAAGzD,EAAEyH,MAGnC,IAAK,IAAIjO,KAFTsX,EAAM9U,GAAK8U,EAAM9U,IAAM,CAAC,EAEN8U,EAAM9U,GAAI,CAC1B,IAAI+U,EAAYD,EAAM9U,GAAGxC,GACrBA,KAASwC,IACX8U,EAAM9U,GAAGxC,GAASyB,MAAM+C,QAAQ+S,GAAaA,EAAY,CAACA,GAE9D,CAEA,IAAK,IAAIC,KAAWhV,EACdgV,KAAWF,EAAM9U,GAEnB8U,EAAM9U,GAAGgV,GAASnX,KAAKmC,EAAGgV,IAE1BF,EAAM9U,GAAGgV,GAAWf,EAIxB,IAAIgB,EAAUjR,EAAEyH,KAAKiC,MAAQjG,EAAO,CAAC,EAAGzD,EAAEyH,KAAKiC,OAC/CuH,EAAO5B,KAAOA,EACd4B,EAAO,gBAAkBhC,CAC3B,MAEExH,EAAKzL,GAAKA,CAEd,CAEA,OAAO2L,EAAEtO,KAAKsV,IAAKlH,EAAMpO,KAAKuX,OAAOvJ,QACvC,GAGF,SAAS6I,GAAY/K,GAEnB,KAAIA,EAAE+L,SAAW/L,EAAEgM,QAAUhM,EAAEiM,SAAWjM,EAAEkM,UAExClM,EAAEmM,uBAEWzV,IAAbsJ,EAAEoM,QAAqC,IAAbpM,EAAEoM,QAAhC,CAEA,GAAIpM,EAAEqM,eAAiBrM,EAAEqM,cAAcC,aAAc,CACnD,IAAI3B,EAAS3K,EAAEqM,cAAcC,aAAa,UAC1C,GAAI,cAAcjQ,KAAKsO,GAAW,MACpC,CAKA,OAHI3K,EAAEuM,gBACJvM,EAAEuM,kBAEG,CAVgD,CAWzD,CAEA,SAASf,GAAYnJ,GACnB,GAAIA,EAEF,IADA,IAAImK,EACK9W,EAAI,EAAGA,EAAI2M,EAASzM,OAAQF,IAAK,CAExC,GAAkB,OADlB8W,EAAQnK,EAAS3M,IACP8T,IACR,OAAOgD,EAET,GAAIA,EAAMnK,WAAamK,EAAQhB,GAAWgB,EAAMnK,WAC9C,OAAOmK,CAEX,CAEJ,CAsDA,IAAIC,GAA8B,oBAAXC,OAIvB,SAASC,GACPC,EACAC,EACAC,EACAC,EACAC,GAGA,IAAIC,EAAWJ,GAAe,GAE1BK,EAAUJ,GAAcrZ,OAAOqB,OAAO,MAEtCqY,EAAUJ,GAActZ,OAAOqB,OAAO,MAE1C8X,EAAO3N,SAAQ,SAAUgB,GACvBmN,GAAeH,EAAUC,EAASC,EAASlN,EAAO+M,EACpD,IAGA,IAAK,IAAItX,EAAI,EAAGC,EAAIsX,EAASrX,OAAQF,EAAIC,EAAGD,IACtB,MAAhBuX,EAASvX,KACXuX,EAASvY,KAAKuY,EAASI,OAAO3X,EAAG,GAAG,IACpCC,IACAD,KAgBJ,MAAO,CACLuX,SAAUA,EACVC,QAASA,EACTC,QAASA,EAEb,CAEA,SAASC,GACPH,EACAC,EACAC,EACAlN,EACAW,EACA0M,GAEA,IAAInN,EAAOF,EAAME,KACbjL,EAAO+K,EAAM/K,KAmBbqY,EACFtN,EAAMsN,qBAAuB,CAAC,EAC5BC,EA2HN,SACErN,EACAS,EACAzG,GAGA,OADKA,IAAUgG,EAAOA,EAAK1F,QAAQ,MAAO,KAC1B,MAAZ0F,EAAK,IACK,MAAVS,EAD0BT,EAEvB+E,GAAYtE,EAAW,KAAI,IAAMT,EAC1C,CApIuBsN,CAActN,EAAMS,EAAQ2M,EAAoBpT,QAElC,kBAAxB8F,EAAMyN,gBACfH,EAAoB3F,UAAY3H,EAAMyN,eAGxC,IAAI/N,EAAS,CACXQ,KAAMqN,EACNG,MAAOC,GAAkBJ,EAAgBD,GACzC7V,WAAYuI,EAAMvI,YAAc,CAAEwK,QAASjC,EAAMwD,WACjDoK,MAAO5N,EAAM4N,MACc,iBAAhB5N,EAAM4N,MACX,CAAC5N,EAAM4N,OACP5N,EAAM4N,MACR,GACJrM,UAAW,CAAC,EACZG,WAAY,CAAC,EACbzM,KAAMA,EACN0L,OAAQA,EACR0M,QAASA,EACTQ,SAAU7N,EAAM6N,SAChBC,YAAa9N,EAAM8N,YACnB7N,KAAMD,EAAMC,MAAQ,CAAC,EACrB8B,MACiB,MAAf/B,EAAM+B,MACF,CAAC,EACD/B,EAAMvI,WACJuI,EAAM+B,MACN,CAAEE,QAASjC,EAAM+B,QAoC3B,GAjCI/B,EAAMoC,UAoBRpC,EAAMoC,SAASpD,SAAQ,SAAUuN,GAC/B,IAAIwB,EAAeV,EACfpI,GAAWoI,EAAU,IAAOd,EAAU,WACtC9V,EACJ0W,GAAeH,EAAUC,EAASC,EAASX,EAAO7M,EAAQqO,EAC5D,IAGGd,EAAQvN,EAAOQ,QAClB8M,EAASvY,KAAKiL,EAAOQ,MACrB+M,EAAQvN,EAAOQ,MAAQR,QAGLjJ,IAAhBuJ,EAAM4N,MAER,IADA,IAAII,EAAUnY,MAAM+C,QAAQoH,EAAM4N,OAAS5N,EAAM4N,MAAQ,CAAC5N,EAAM4N,OACvDnY,EAAI,EAAGA,EAAIuY,EAAQrY,SAAUF,EAAG,CAWvC,IAAIwY,EAAa,CACf/N,KAXU8N,EAAQvY,GAYlB2M,SAAUpC,EAAMoC,UAElB+K,GACEH,EACAC,EACAC,EACAe,EACAtN,EACAjB,EAAOQ,MAAQ,IAEnB,CAGEjL,IACGiY,EAAQjY,KACXiY,EAAQjY,GAAQyK,GAStB,CAEA,SAASiO,GACPzN,EACAoN,GAaA,OAXYlI,GAAelF,EAAM,GAAIoN,EAYvC,CAiBA,SAASY,GACPvB,EACA9M,GAEA,IAAIe,EAAM8L,GAAeC,GACrBK,EAAWpM,EAAIoM,SACfC,EAAUrM,EAAIqM,QACdC,EAAUtM,EAAIsM,QA4BlB,SAAShV,EACPmQ,EACA8F,EACAvO,GAEA,IAAID,EAAWyI,GAAkBC,EAAK8F,GAAc,EAAOtO,GACvD5K,EAAO0K,EAAS1K,KAEpB,GAAIA,EAAM,CACR,IAAIyK,EAASwN,EAAQjY,GAIrB,IAAKyK,EAAU,OAAO0O,EAAa,KAAMzO,GACzC,IAAI0O,EAAa3O,EAAOgO,MAAMnT,KAC3BgD,QAAO,SAAU1E,GAAO,OAAQA,EAAI4M,QAAU,IAC9C1K,KAAI,SAAUlC,GAAO,OAAOA,EAAI5D,IAAM,IAMzC,GAJ+B,iBAApB0K,EAASQ,SAClBR,EAASQ,OAAS,CAAC,GAGjBgO,GAA+C,iBAAxBA,EAAahO,OACtC,IAAK,IAAItH,KAAOsV,EAAahO,SACrBtH,KAAO8G,EAASQ,SAAWkO,EAAW9V,QAAQM,IAAQ,IAC1D8G,EAASQ,OAAOtH,GAAOsV,EAAahO,OAAOtH,IAMjD,OADA8G,EAASO,KAAO8H,GAAWtI,EAAOQ,KAAMP,EAASQ,QAC1CiO,EAAa1O,EAAQC,EAAUC,EACxC,CAAO,GAAID,EAASO,KAAM,CACxBP,EAASQ,OAAS,CAAC,EACnB,IAAK,IAAI1K,EAAI,EAAGA,EAAIuX,EAASrX,OAAQF,IAAK,CACxC,IAAIyK,EAAO8M,EAASvX,GAChB6Y,EAAWrB,EAAQ/M,GACvB,GAAIqO,GAAWD,EAASZ,MAAO/N,EAASO,KAAMP,EAASQ,QACrD,OAAOiO,EAAaE,EAAU3O,EAAUC,EAE5C,CACF,CAEA,OAAOwO,EAAa,KAAMzO,EAC5B,CAsFA,SAASyO,EACP1O,EACAC,EACAC,GAEA,OAAIF,GAAUA,EAAOmO,SAzFvB,SACEnO,EACAC,GAEA,IAAI6O,EAAmB9O,EAAOmO,SAC1BA,EAAuC,mBAArBW,EAClBA,EAAiB/O,EAAYC,EAAQC,EAAU,KAAME,IACrD2O,EAMJ,GAJwB,iBAAbX,IACTA,EAAW,CAAE3N,KAAM2N,KAGhBA,GAAgC,iBAAbA,EAMtB,OAAOO,EAAa,KAAMzO,GAG5B,IAAI+H,EAAKmG,EACL5Y,EAAOyS,EAAGzS,KACViL,EAAOwH,EAAGxH,KACVvE,EAAQgE,EAAShE,MACjBgC,EAAOgC,EAAShC,KAChBwC,EAASR,EAASQ,OAKtB,GAJAxE,EAAQ+L,EAAGhU,eAAe,SAAWgU,EAAG/L,MAAQA,EAChDgC,EAAO+J,EAAGhU,eAAe,QAAUgU,EAAG/J,KAAOA,EAC7CwC,EAASuH,EAAGhU,eAAe,UAAYgU,EAAGvH,OAASA,EAE/ClL,EAMF,OAJmBiY,EAAQjY,GAIpBiD,EAAM,CACXoQ,aAAa,EACbrT,KAAMA,EACN0G,MAAOA,EACPgC,KAAMA,EACNwC,OAAQA,QACP1J,EAAWkJ,GACT,GAAIO,EAAM,CAEf,IAAIsI,EAmFV,SAA4BtI,EAAMR,GAChC,OAAO6E,GAAYrE,EAAMR,EAAOiB,OAASjB,EAAOiB,OAAOT,KAAO,KAAK,EACrE,CArFoBuO,CAAkBvO,EAAMR,GAItC,OAAOxH,EAAM,CACXoQ,aAAa,EACbpI,KAJiB8H,GAAWQ,EAASrI,GAKrCxE,MAAOA,EACPgC,KAAMA,QACLlH,EAAWkJ,EAChB,CAIE,OAAOyO,EAAa,KAAMzO,EAE9B,CA2BWkO,CAASnO,EAAQE,GAAkBD,GAExCD,GAAUA,EAAO2N,QA3BvB,SACE3N,EACAC,EACA0N,GAEA,IACIqB,EAAexW,EAAM,CACvBoQ,aAAa,EACbpI,KAHgB8H,GAAWqF,EAAS1N,EAASQ,UAK/C,GAAIuO,EAAc,CAChB,IAAIpO,EAAUoO,EAAapO,QACvBqO,EAAgBrO,EAAQA,EAAQ3K,OAAS,GAE7C,OADAgK,EAASQ,OAASuO,EAAavO,OACxBiO,EAAaO,EAAehP,EACrC,CACA,OAAOyO,EAAa,KAAMzO,EAC5B,CAWWiO,CAAMlO,EAAQC,EAAUD,EAAO2N,SAEjC5N,EAAYC,EAAQC,EAAUC,EAAgBC,EACvD,CAEA,MAAO,CACL3H,MAAOA,EACP0W,SAxKF,SAAmBC,EAAe7O,GAChC,IAAIW,EAAmC,iBAAlBkO,EAA8B3B,EAAQ2B,QAAiBpY,EAE5EiW,GAAe,CAAC1M,GAAS6O,GAAgB7B,EAAUC,EAASC,EAASvM,GAGjEA,GAAUA,EAAOiN,MAAMjY,QACzB+W,GAEE/L,EAAOiN,MAAM7S,KAAI,SAAU6S,GAAS,MAAO,CAAG1N,KAAM0N,EAAOxL,SAAU,CAACpC,GAAW,IACjFgN,EACAC,EACAC,EACAvM,EAGN,EAyJEmO,UAvJF,WACE,OAAO9B,EAASjS,KAAI,SAAUmF,GAAQ,OAAO+M,EAAQ/M,EAAO,GAC9D,EAsJE6O,UA9KF,SAAoBpC,GAClBD,GAAeC,EAAQK,EAAUC,EAASC,EAC5C,EA8KF,CAEA,SAASqB,GACPb,EACAxN,EACAC,GAEA,IAAIuG,EAAIxG,EAAKhI,MAAMwV,GAEnB,IAAKhH,EACH,OAAO,EACF,IAAKvG,EACV,OAAO,EAGT,IAAK,IAAI1K,EAAI,EAAGa,EAAMoQ,EAAE/Q,OAAQF,EAAIa,IAAOb,EAAG,CAC5C,IAAIoD,EAAM6U,EAAMnT,KAAK9E,EAAI,GACrBoD,IAEFsH,EAAOtH,EAAI5D,MAAQ,aAA+B,iBAATyR,EAAEjR,GAAkB,EAAOiR,EAAEjR,IAAMiR,EAAEjR,GAElF,CAEA,OAAO,CACT,CASA,IAAIuZ,GACFxC,IAAaC,OAAOwC,aAAexC,OAAOwC,YAAYC,IAClDzC,OAAOwC,YACPE,KAEN,SAASC,KACP,OAAOJ,GAAKE,MAAMG,QAAQ,EAC5B,CAEA,IAAIC,GAAOF,KAEX,SAASG,KACP,OAAOD,EACT,CAEA,SAASE,GAAa3W,GACpB,OAAQyW,GAAOzW,CACjB,CAIA,IAAI4W,GAAgBjc,OAAOqB,OAAO,MAElC,SAAS6a,KAEH,sBAAuBjD,OAAOkD,UAChClD,OAAOkD,QAAQC,kBAAoB,UAOrC,IAAIC,EAAkBpD,OAAO9M,SAASmQ,SAAW,KAAOrD,OAAO9M,SAASoQ,KACpEC,EAAevD,OAAO9M,SAASsK,KAAKzP,QAAQqV,EAAiB,IAE7DI,EAAY5R,EAAO,CAAC,EAAGoO,OAAOkD,QAAQO,OAI1C,OAHAD,EAAUpX,IAAM0W,KAChB9C,OAAOkD,QAAQQ,aAAaF,EAAW,GAAID,GAC3CvD,OAAO2D,iBAAiB,WAAYC,IAC7B,WACL5D,OAAO6D,oBAAoB,WAAYD,GACzC,CACF,CAEA,SAASE,GACP1Q,EACAwJ,EACAmH,EACAC,GAEA,GAAK5Q,EAAO6Q,IAAZ,CAIA,IAAIC,EAAW9Q,EAAO5F,QAAQ2W,eACzBD,GASL9Q,EAAO6Q,IAAIG,WAAU,WACnB,IAAIC,EA6CR,WACE,IAAIjY,EAAM0W,KACV,GAAI1W,EACF,OAAO4W,GAAc5W,EAEzB,CAlDmBkY,GACXC,EAAeL,EAASxb,KAC1B0K,EACAwJ,EACAmH,EACAC,EAAQK,EAAW,MAGhBE,IAI4B,mBAAtBA,EAAaC,KACtBD,EACGC,MAAK,SAAUD,GACdE,GAAiB,EAAgBJ,EACnC,IACCK,OAAM,SAAUxS,GAIjB,IAEFuS,GAAiBF,EAAcF,GAEnC,GAtCA,CAuCF,CAEA,SAASM,KACP,IAAIvY,EAAM0W,KACN1W,IACF4W,GAAc5W,GAAO,CACnBY,EAAGgT,OAAO4E,YACVC,EAAG7E,OAAO8E,aAGhB,CAEA,SAASlB,GAAgBtQ,GACvBqR,KACIrR,EAAEmQ,OAASnQ,EAAEmQ,MAAMrX,KACrB2W,GAAYzP,EAAEmQ,MAAMrX,IAExB,CAmBA,SAAS2Y,GAAiBlS,GACxB,OAAOmS,GAASnS,EAAI7F,IAAMgY,GAASnS,EAAIgS,EACzC,CAEA,SAASI,GAAmBpS,GAC1B,MAAO,CACL7F,EAAGgY,GAASnS,EAAI7F,GAAK6F,EAAI7F,EAAIgT,OAAO4E,YACpCC,EAAGG,GAASnS,EAAIgS,GAAKhS,EAAIgS,EAAI7E,OAAO8E,YAExC,CASA,SAASE,GAAUE,GACjB,MAAoB,iBAANA,CAChB,CAEA,IAAIC,GAAyB,OAE7B,SAASV,GAAkBF,EAAcF,GACvC,IAdwBxR,EAcpBuS,EAAmC,iBAAjBb,EACtB,GAAIa,GAA6C,iBAA1Bb,EAAac,SAAuB,CAGzD,IAAIC,EAAKH,GAAuBxV,KAAK4U,EAAac,UAC9CE,SAASC,eAAejB,EAAac,SAAS1c,MAAM,IACpD4c,SAASE,cAAclB,EAAac,UAExC,GAAIC,EAAI,CACN,IAAInL,EACFoK,EAAapK,QAAyC,iBAAxBoK,EAAapK,OACvCoK,EAAapK,OACb,CAAC,EAEPkK,EAjDN,SAA6BiB,EAAInL,GAC/B,IACIuL,EADQH,SAASI,gBACDC,wBAChBC,EAASP,EAAGM,wBAChB,MAAO,CACL5Y,EAAG6Y,EAAOza,KAAOsa,EAAQta,KAAO+O,EAAOnN,EACvC6X,EAAGgB,EAAOC,IAAMJ,EAAQI,IAAM3L,EAAO0K,EAEzC,CAyCiBkB,CAAmBT,EAD9BnL,EA1BG,CACLnN,EAAGgY,IAFmBnS,EA2BKsH,GAzBXnN,GAAK6F,EAAI7F,EAAI,EAC7B6X,EAAGG,GAASnS,EAAIgS,GAAKhS,EAAIgS,EAAI,GA0B7B,MAAWE,GAAgBR,KACzBF,EAAWY,GAAkBV,GAEjC,MAAWa,GAAYL,GAAgBR,KACrCF,EAAWY,GAAkBV,IAG3BF,IAEE,mBAAoBkB,SAASI,gBAAgBK,MAC/ChG,OAAOiG,SAAS,CACd7a,KAAMiZ,EAASrX,EACf8Y,IAAKzB,EAASQ,EAEdX,SAAUK,EAAaL,WAGzBlE,OAAOiG,SAAS5B,EAASrX,EAAGqX,EAASQ,GAG3C,CAIA,IAGQqB,GAHJC,GACFpG,MAKmC,KAH7BmG,GAAKlG,OAAOoG,UAAUC,WAGpBva,QAAQ,gBAAuD,IAA/Boa,GAAGpa,QAAQ,iBACd,IAAjCoa,GAAGpa,QAAQ,mBACe,IAA1Boa,GAAGpa,QAAQ,YACsB,IAAjCoa,GAAGpa,QAAQ,mBAKNkU,OAAOkD,SAA+C,mBAA7BlD,OAAOkD,QAAQoD,UAGnD,SAASA,GAAWtV,EAAKjD,GACvB4W,KAGA,IAAIzB,EAAUlD,OAAOkD,QACrB,IACE,GAAInV,EAAS,CAEX,IAAIyV,EAAY5R,EAAO,CAAC,EAAGsR,EAAQO,OACnCD,EAAUpX,IAAM0W,KAChBI,EAAQQ,aAAaF,EAAW,GAAIxS,EACtC,MACEkS,EAAQoD,UAAU,CAAEla,IAAK2W,GAAYJ,OAAkB,GAAI3R,EAE/D,CAAE,MAAOsC,GACP0M,OAAO9M,SAASnF,EAAU,UAAY,UAAUiD,EAClD,CACF,CAEA,SAAS0S,GAAc1S,GACrBsV,GAAUtV,GAAK,EACjB,CAGA,IAAIuV,GAAwB,CAC1BC,WAAY,EACZC,QAAS,EACTC,UAAW,EACXC,WAAY,IA0Bd,SAASC,GAAgC7C,EAAMnH,GAC7C,OAAOiK,GACL9C,EACAnH,EACA2J,GAAsBG,UACrB,8BAAkC3C,EAAa,SAAI,SAAcnH,EAAW,SAAI,2BAErF,CAWA,SAASiK,GAAmB9C,EAAMnH,EAAIrH,EAAMuR,GAC1C,IAAIC,EAAQ,IAAIC,MAAMF,GAMtB,OALAC,EAAME,WAAY,EAClBF,EAAMhD,KAAOA,EACbgD,EAAMnK,GAAKA,EACXmK,EAAMxR,KAAOA,EAENwR,CACT,CAEA,IAAIG,GAAkB,CAAC,SAAU,QAAS,QAY1C,SAASC,GAASjV,GAChB,OAAOnL,OAAOC,UAAUkG,SAASxE,KAAKwJ,GAAKpG,QAAQ,UAAY,CACjE,CAEA,SAASsb,GAAqBlV,EAAKmV,GACjC,OACEF,GAAQjV,IACRA,EAAI+U,YACU,MAAbI,GAAqBnV,EAAIqD,OAAS8R,EAEvC,CAIA,SAASC,GAAUC,EAAOlgB,EAAImgB,GAC5B,IAAIC,EAAO,SAAU/W,GACfA,GAAS6W,EAAMre,OACjBse,IAEID,EAAM7W,GACRrJ,EAAGkgB,EAAM7W,IAAQ,WACf+W,EAAK/W,EAAQ,EACf,IAEA+W,EAAK/W,EAAQ,EAGnB,EACA+W,EAAK,EACP,CAsEA,SAASC,GACP7T,EACAxM,GAEA,OAAOsgB,GAAQ9T,EAAQvF,KAAI,SAAU2L,GACnC,OAAOlT,OAAO+G,KAAKmM,EAAEjP,YAAYsD,KAAI,SAAUlC,GAAO,OAAO/E,EAC3D4S,EAAEjP,WAAWoB,GACb6N,EAAEnF,UAAU1I,GACZ6N,EAAG7N,EACF,GACL,IACF,CAEA,SAASub,GAASjP,GAChB,OAAOtP,MAAMpC,UAAU6B,OAAOoB,MAAM,GAAIyO,EAC1C,CAEA,IAAIkP,GACgB,mBAAXva,QACuB,iBAAvBA,OAAOwa,YAUhB,SAAStgB,GAAMF,GACb,IAAIygB,GAAS,EACb,OAAO,WAEL,IADA,IAAIle,EAAO,GAAIC,EAAMC,UAAUZ,OACvBW,KAAQD,EAAMC,GAAQC,UAAWD,GAEzC,IAAIie,EAEJ,OADAA,GAAS,EACFzgB,EAAG4C,MAAMzC,KAAMoC,EACxB,CACF,CAIA,IAAIme,GAAU,SAAkB3U,EAAQ4E,GACtCxQ,KAAK4L,OAASA,EACd5L,KAAKwQ,KAgOP,SAAwBA,GACtB,IAAKA,EACH,GAAI+H,GAAW,CAEb,IAAIiI,EAASzC,SAASE,cAAc,QAGpCzN,GAFAA,EAAQgQ,GAAUA,EAAOpI,aAAa,SAAY,KAEtC7R,QAAQ,qBAAsB,GAC5C,MACEiK,EAAO,IAQX,MAJuB,MAAnBA,EAAKG,OAAO,KACdH,EAAO,IAAMA,GAGRA,EAAKjK,QAAQ,MAAO,GAC7B,CAlPcka,CAAcjQ,GAE1BxQ,KAAK4P,QAAUpD,EACfxM,KAAK0gB,QAAU,KACf1gB,KAAK2gB,OAAQ,EACb3gB,KAAK4gB,SAAW,GAChB5gB,KAAK6gB,cAAgB,GACrB7gB,KAAK8gB,SAAW,GAChB9gB,KAAKsB,UAAY,EACnB,EA6PA,SAASyf,GACPC,EACAhgB,EACAigB,EACAC,GAEA,IAAIC,EAASjB,GAAkBc,GAAS,SAAUI,EAAK7T,EAAUtJ,EAAOW,GACtE,IAAIyc,EAUR,SACED,EACAxc,GAMA,MAJmB,mBAARwc,IAETA,EAAMnM,GAAK7K,OAAOgX,IAEbA,EAAIpb,QAAQpB,EACrB,CAnBgB0c,CAAaF,EAAKpgB,GAC9B,GAAIqgB,EACF,OAAOzf,MAAM+C,QAAQ0c,GACjBA,EAAMva,KAAI,SAAUua,GAAS,OAAOJ,EAAKI,EAAO9T,EAAUtJ,EAAOW,EAAM,IACvEqc,EAAKI,EAAO9T,EAAUtJ,EAAOW,EAErC,IACA,OAAOub,GAAQe,EAAUC,EAAOD,UAAYC,EAC9C,CAqBA,SAASI,GAAWF,EAAO9T,GACzB,GAAIA,EACF,OAAO,WACL,OAAO8T,EAAM5e,MAAM8K,EAAUjL,UAC/B,CAEJ,CArSAie,GAAQ/gB,UAAUgiB,OAAS,SAAiBxB,GAC1ChgB,KAAKggB,GAAKA,CACZ,EAEAO,GAAQ/gB,UAAUiiB,QAAU,SAAkBzB,EAAI0B,GAC5C1hB,KAAK2gB,MACPX,KAEAhgB,KAAK4gB,SAASpgB,KAAKwf,GACf0B,GACF1hB,KAAK6gB,cAAcrgB,KAAKkhB,GAG9B,EAEAnB,GAAQ/gB,UAAUmiB,QAAU,SAAkBD,GAC5C1hB,KAAK8gB,SAAStgB,KAAKkhB,EACrB,EAEAnB,GAAQ/gB,UAAUoiB,aAAe,SAC/BlW,EACAmW,EACAC,GAEE,IAEE/V,EAFE8J,EAAW7V,KAIjB,IACE+L,EAAQ/L,KAAK4L,OAAO3H,MAAMyH,EAAU1L,KAAK4P,QAC3C,CAAE,MAAO9D,GAKP,MAJA9L,KAAK8gB,SAAS/V,SAAQ,SAAUiV,GAC9BA,EAAGlU,EACL,IAEMA,CACR,CACA,IAAIiW,EAAO/hB,KAAK4P,QAChB5P,KAAKgiB,kBACHjW,GACA,WACE8J,EAASoM,YAAYlW,GACrB8V,GAAcA,EAAW9V,GACzB8J,EAASqM,YACTrM,EAASjK,OAAOuW,WAAWpX,SAAQ,SAAU8E,GAC3CA,GAAQA,EAAK9D,EAAOgW,EACtB,IAGKlM,EAAS8K,QACZ9K,EAAS8K,OAAQ,EACjB9K,EAAS+K,SAAS7V,SAAQ,SAAUiV,GAClCA,EAAGjU,EACL,IAEJ,IACA,SAAUrB,GACJoX,GACFA,EAAQpX,GAENA,IAAQmL,EAAS8K,QAKdf,GAAoBlV,EAAKqU,GAAsBC,aAAe+C,IAASvV,IAC1EqJ,EAAS8K,OAAQ,EACjB9K,EAASgL,cAAc9V,SAAQ,SAAUiV,GACvCA,EAAGtV,EACL,KAGN,GAEJ,EAEA6V,GAAQ/gB,UAAUwiB,kBAAoB,SAA4BjW,EAAO8V,EAAYC,GACjF,IAAIjM,EAAW7V,KAEb4P,EAAU5P,KAAK4P,QACnB5P,KAAK0gB,QAAU3U,EACf,IAhSwCwQ,EACpCgD,EA+RA6C,EAAQ,SAAU1X,IAIfkV,GAAoBlV,IAAQiV,GAAQjV,KACnCmL,EAASiL,SAASpf,OACpBmU,EAASiL,SAAS/V,SAAQ,SAAUiV,GAClCA,EAAGtV,EACL,IAKA2X,EAAQ9C,MAAM7U,IAGlBoX,GAAWA,EAAQpX,EACrB,EACI4X,EAAiBvW,EAAMM,QAAQ3K,OAAS,EACxC6gB,EAAmB3S,EAAQvD,QAAQ3K,OAAS,EAChD,GACEmL,EAAYd,EAAO6D,IAEnB0S,IAAmBC,GACnBxW,EAAMM,QAAQiW,KAAoB1S,EAAQvD,QAAQkW,GAMlD,OAJAviB,KAAKkiB,YACDnW,EAAMrC,MACR4S,GAAatc,KAAK4L,OAAQgE,EAAS7D,GAAO,GAErCqW,IA7TL7C,EAAQF,GAD4B9C,EA8TO3M,EAAS7D,EA1TtDgT,GAAsBI,WACrB,sDAA0D5C,EAAa,SAAI,OAGxEvb,KAAO,uBACNue,IAwTP,IA5O+BlT,EA4O3BM,EAuHN,SACEiD,EACAgD,GAEA,IAAIpR,EACAghB,EAAMC,KAAKD,IAAI5S,EAAQlO,OAAQkR,EAAKlR,QACxC,IAAKF,EAAI,EAAGA,EAAIghB,GACV5S,EAAQpO,KAAOoR,EAAKpR,GADLA,KAKrB,MAAO,CACLkhB,QAAS9P,EAAKzR,MAAM,EAAGK,GACvBmhB,UAAW/P,EAAKzR,MAAMK,GACtBohB,YAAahT,EAAQzO,MAAMK,GAE/B,CAvIYqhB,CACR7iB,KAAK4P,QAAQvD,QACbN,EAAMM,SAEFqW,EAAU/V,EAAI+V,QACdE,EAAcjW,EAAIiW,YAClBD,EAAYhW,EAAIgW,UAElB5C,EAAQ,GAAG1e,OA6JjB,SAA6BuhB,GAC3B,OAAO7B,GAAc6B,EAAa,mBAAoBrB,IAAW,EACnE,CA7JIuB,CAAmBF,GAEnB5iB,KAAK4L,OAAOmX,YA6JhB,SAA6BL,GAC3B,OAAO3B,GAAc2B,EAAS,oBAAqBnB,GACrD,CA7JIyB,CAAmBN,GAEnBC,EAAU7b,KAAI,SAAU2L,GAAK,OAAOA,EAAEoH,WAAa,KA5PtBxN,EA8PNsW,EA7PlB,SAAUvN,EAAImH,EAAM3J,GACzB,IAAIqQ,GAAW,EACXvC,EAAU,EACVnB,EAAQ,KAEZW,GAAkB7T,GAAS,SAAU+U,EAAKlT,EAAGjK,EAAOW,GAMlD,GAAmB,mBAARwc,QAAkC5e,IAAZ4e,EAAI8B,IAAmB,CACtDD,GAAW,EACXvC,IAEA,IA0BI5V,EA1BAiL,EAAUhW,IAAK,SAAUojB,GAuErC,IAAqB9X,MAtEI8X,GAuEZC,YAAehD,IAAyC,WAA5B/U,EAAIxF,OAAOwa,gBAtExC8C,EAAcA,EAAYnV,SAG5BoT,EAAIiC,SAAkC,mBAAhBF,EAClBA,EACAlO,GAAK7K,OAAO+Y,GAChBlf,EAAMT,WAAWoB,GAAOue,IACxBzC,GACe,GACb9N,GAEJ,IAEI0Q,EAASvjB,IAAK,SAAUwjB,GAC1B,IAAIC,EAAM,qCAAuC5e,EAAM,KAAO2e,EAEzDhE,IACHA,EAAQI,GAAQ4D,GACZA,EACA,IAAI/D,MAAMgE,GACd5Q,EAAK2M,GAET,IAGA,IACEzU,EAAMsW,EAAIrL,EAASuN,EACrB,CAAE,MAAOxX,GACPwX,EAAOxX,EACT,CACA,GAAIhB,EACF,GAAwB,mBAAbA,EAAIkS,KACblS,EAAIkS,KAAKjH,EAASuN,OACb,CAEL,IAAIG,EAAO3Y,EAAIyE,UACXkU,GAA6B,mBAAdA,EAAKzG,MACtByG,EAAKzG,KAAKjH,EAASuN,EAEvB,CAEJ,CACF,IAEKL,GAAYrQ,GACnB,IAkMI8Q,EAAW,SAAU7T,EAAM+C,GAC7B,GAAIiD,EAAS6K,UAAY3U,EACvB,OAAOqW,EAAMhD,GAA+BxP,EAAS7D,IAEvD,IACE8D,EAAK9D,EAAO6D,GAAS,SAAUwF,IAClB,IAAPA,GAEFS,EAASqM,WAAU,GACnBE,EA1UV,SAAuC7F,EAAMnH,GAC3C,OAAOiK,GACL9C,EACAnH,EACA2J,GAAsBE,QACrB,4BAAgC1C,EAAa,SAAI,SAAcnH,EAAW,SAAI,4BAEnF,CAmUgBuO,CAA6B/T,EAAS7D,KACnC4T,GAAQvK,IACjBS,EAASqM,WAAU,GACnBE,EAAMhN,IAEQ,iBAAPA,GACQ,iBAAPA,IACc,iBAAZA,EAAGnJ,MAAwC,iBAAZmJ,EAAGpU,OAG5CohB,EApXV,SAA0C7F,EAAMnH,GAC9C,OAAOiK,GACL9C,EACAnH,EACA2J,GAAsBC,WACrB,+BAAmCzC,EAAa,SAAI,SAgDzD,SAAyBnH,GACvB,GAAkB,iBAAPA,EAAmB,OAAOA,EACrC,GAAI,SAAUA,EAAM,OAAOA,EAAGnJ,KAC9B,IAAIP,EAAW,CAAC,EAIhB,OAHAgU,GAAgB3U,SAAQ,SAAUnG,GAC5BA,KAAOwQ,IAAM1J,EAAS9G,GAAOwQ,EAAGxQ,GACtC,IACO4O,KAAK1K,UAAU4C,EAAU,KAAM,EACxC,CAxDsE,CAChE0J,GACG,4BAET,CA2WgBwO,CAAgChU,EAAS7D,IAC7B,iBAAPqJ,GAAmBA,EAAG7O,QAC/BsP,EAAStP,QAAQ6O,GAEjBS,EAASrV,KAAK4U,IAIhBxC,EAAKwC,EAET,GACF,CAAE,MAAOtJ,GACPsW,EAAMtW,EACR,CACF,EAEAgU,GAASC,EAAO2D,GAAU,WAGxB,IAAIG,EA0HR,SACElB,GAEA,OAAO5B,GACL4B,EACA,oBACA,SAAUtB,EAAOnT,EAAGjK,EAAOW,GACzB,OAKN,SACEyc,EACApd,EACAW,GAEA,OAAO,SAA0BwQ,EAAImH,EAAM3J,GACzC,OAAOyO,EAAMjM,EAAImH,GAAM,SAAUyD,GACb,mBAAPA,IACJ/b,EAAMwJ,WAAW7I,KACpBX,EAAMwJ,WAAW7I,GAAO,IAE1BX,EAAMwJ,WAAW7I,GAAKpE,KAAKwf,IAE7BpN,EAAKoN,EACP,GACF,CACF,CArBa8D,CAAezC,EAAOpd,EAAOW,EACtC,GAEJ,CApIsBmf,CAAmBpB,GAErC7C,GADY+D,EAAYxiB,OAAOwU,EAASjK,OAAOoY,cAC/BN,GAAU,WACxB,GAAI7N,EAAS6K,UAAY3U,EACvB,OAAOqW,EAAMhD,GAA+BxP,EAAS7D,IAEvD8J,EAAS6K,QAAU,KACnBmB,EAAW9V,GACP8J,EAASjK,OAAO6Q,KAClB5G,EAASjK,OAAO6Q,IAAIG,WAAU,WAC5BvP,EAAmBtB,EACrB,GAEJ,GACF,GACF,EAEAwU,GAAQ/gB,UAAUyiB,YAAc,SAAsBlW,GACpD/L,KAAK4P,QAAU7D,EACf/L,KAAKggB,IAAMhgB,KAAKggB,GAAGjU,EACrB,EAEAwU,GAAQ/gB,UAAUykB,eAAiB,WAEnC,EAEA1D,GAAQ/gB,UAAU0kB,SAAW,WAG3BlkB,KAAKsB,UAAUyJ,SAAQ,SAAUoZ,GAC/BA,GACF,IACAnkB,KAAKsB,UAAY,GAIjBtB,KAAK4P,QAAUpD,EACfxM,KAAK0gB,QAAU,IACjB,EAoHA,IAAI0D,GAA6B,SAAU7D,GACzC,SAAS6D,EAAcxY,EAAQ4E,GAC7B+P,EAAQrf,KAAKlB,KAAM4L,EAAQ4E,GAE3BxQ,KAAKqkB,eAAiBC,GAAYtkB,KAAKwQ,KACzC,CAkFA,OAhFK+P,IAAU6D,EAAavjB,UAAY0f,GACxC6D,EAAa5kB,UAAYD,OAAOqB,OAAQ2f,GAAWA,EAAQ/gB,WAC3D4kB,EAAa5kB,UAAU+kB,YAAcH,EAErCA,EAAa5kB,UAAUykB,eAAiB,WACtC,IAAIpO,EAAW7V,KAEf,KAAIA,KAAKsB,UAAUI,OAAS,GAA5B,CAIA,IAAIkK,EAAS5L,KAAK4L,OACd4Y,EAAe5Y,EAAO5F,QAAQ2W,eAC9B8H,EAAiB9F,IAAqB6F,EAEtCC,GACFzkB,KAAKsB,UAAUd,KAAKib,MAGtB,IAAIiJ,EAAqB,WACvB,IAAI9U,EAAUiG,EAASjG,QAInBlE,EAAW4Y,GAAYzO,EAASrF,MAChCqF,EAASjG,UAAYpD,GAASd,IAAamK,EAASwO,gBAIxDxO,EAAS+L,aAAalW,GAAU,SAAUK,GACpC0Y,GACFnI,GAAa1Q,EAAQG,EAAO6D,GAAS,EAEzC,GACF,EACA4I,OAAO2D,iBAAiB,WAAYuI,GACpC1kB,KAAKsB,UAAUd,MAAK,WAClBgY,OAAO6D,oBAAoB,WAAYqI,EACzC,GA7BA,CA8BF,EAEAN,EAAa5kB,UAAUmlB,GAAK,SAAaC,GACvCpM,OAAOkD,QAAQiJ,GAAGC,EACpB,EAEAR,EAAa5kB,UAAUgB,KAAO,SAAekL,EAAUmW,EAAYC,GACjE,IAAIjM,EAAW7V,KAGX6kB,EADM7kB,KACU4P,QACpB5P,KAAK4hB,aAAalW,GAAU,SAAUK,GACpC+S,GAAU9N,GAAU6E,EAASrF,KAAOzE,EAAMI,WAC1CmQ,GAAazG,EAASjK,OAAQG,EAAO8Y,GAAW,GAChDhD,GAAcA,EAAW9V,EAC3B,GAAG+V,EACL,EAEAsC,EAAa5kB,UAAU+G,QAAU,SAAkBmF,EAAUmW,EAAYC,GACvE,IAAIjM,EAAW7V,KAGX6kB,EADM7kB,KACU4P,QACpB5P,KAAK4hB,aAAalW,GAAU,SAAUK,GACpCmQ,GAAalL,GAAU6E,EAASrF,KAAOzE,EAAMI,WAC7CmQ,GAAazG,EAASjK,OAAQG,EAAO8Y,GAAW,GAChDhD,GAAcA,EAAW9V,EAC3B,GAAG+V,EACL,EAEAsC,EAAa5kB,UAAU0iB,UAAY,SAAoB1hB,GACrD,GAAI8jB,GAAYtkB,KAAKwQ,QAAUxQ,KAAK4P,QAAQzD,SAAU,CACpD,IAAIyD,EAAUoB,GAAUhR,KAAKwQ,KAAOxQ,KAAK4P,QAAQzD,UACjD3L,EAAOse,GAAUlP,GAAWsM,GAAatM,EAC3C,CACF,EAEAwU,EAAa5kB,UAAUslB,mBAAqB,WAC1C,OAAOR,GAAYtkB,KAAKwQ,KAC1B,EAEO4T,CACT,CAxFgC,CAwF9B7D,IAEF,SAAS+D,GAAa9T,GACpB,IAAIvE,EAAOuM,OAAO9M,SAASqZ,SACvBC,EAAgB/Y,EAAK3E,cACrB2d,EAAgBzU,EAAKlJ,cAQzB,OAJIkJ,GAAUwU,IAAkBC,GAC6B,IAA1DD,EAAc1gB,QAAQ0M,GAAUiU,EAAgB,QACjDhZ,EAAOA,EAAK9K,MAAMqP,EAAK9O,UAEjBuK,GAAQ,KAAOuM,OAAO9M,SAASwZ,OAAS1M,OAAO9M,SAAShC,IAClE,CAIA,IAAIyb,GAA4B,SAAU5E,GACxC,SAAS4E,EAAavZ,EAAQ4E,EAAM4U,GAClC7E,EAAQrf,KAAKlB,KAAM4L,EAAQ4E,GAEvB4U,GAqGR,SAAwB5U,GACtB,IAAI9E,EAAW4Y,GAAY9T,GAC3B,IAAK,OAAOrI,KAAKuD,GAEf,OADA8M,OAAO9M,SAASnF,QAAQyK,GAAUR,EAAO,KAAO9E,KACzC,CAEX,CA3GoB2Z,CAAcrlB,KAAKwQ,OAGnC8U,IACF,CA8FA,OA5FK/E,IAAU4E,EAAYtkB,UAAY0f,GACvC4E,EAAY3lB,UAAYD,OAAOqB,OAAQ2f,GAAWA,EAAQ/gB,WAC1D2lB,EAAY3lB,UAAU+kB,YAAcY,EAIpCA,EAAY3lB,UAAUykB,eAAiB,WACrC,IAAIpO,EAAW7V,KAEf,KAAIA,KAAKsB,UAAUI,OAAS,GAA5B,CAIA,IACI8iB,EADSxkB,KAAK4L,OACQ5F,QAAQ2W,eAC9B8H,EAAiB9F,IAAqB6F,EAEtCC,GACFzkB,KAAKsB,UAAUd,KAAKib,MAGtB,IAAIiJ,EAAqB,WACvB,IAAI9U,EAAUiG,EAASjG,QAClB0V,MAGLzP,EAAS+L,aAAa,MAAW,SAAU7V,GACrC0Y,GACFnI,GAAazG,EAASjK,OAAQG,EAAO6D,GAAS,GAE3C+O,IACH4G,GAAYxZ,EAAMI,SAEtB,GACF,EACIqZ,EAAY7G,GAAoB,WAAa,aACjDnG,OAAO2D,iBACLqJ,EACAd,GAEF1kB,KAAKsB,UAAUd,MAAK,WAClBgY,OAAO6D,oBAAoBmJ,EAAWd,EACxC,GA/BA,CAgCF,EAEAS,EAAY3lB,UAAUgB,KAAO,SAAekL,EAAUmW,EAAYC,GAChE,IAAIjM,EAAW7V,KAGX6kB,EADM7kB,KACU4P,QACpB5P,KAAK4hB,aACHlW,GACA,SAAUK,GACR0Z,GAAS1Z,EAAMI,UACfmQ,GAAazG,EAASjK,OAAQG,EAAO8Y,GAAW,GAChDhD,GAAcA,EAAW9V,EAC3B,GACA+V,EAEJ,EAEAqD,EAAY3lB,UAAU+G,QAAU,SAAkBmF,EAAUmW,EAAYC,GACtE,IAAIjM,EAAW7V,KAGX6kB,EADM7kB,KACU4P,QACpB5P,KAAK4hB,aACHlW,GACA,SAAUK,GACRwZ,GAAYxZ,EAAMI,UAClBmQ,GAAazG,EAASjK,OAAQG,EAAO8Y,GAAW,GAChDhD,GAAcA,EAAW9V,EAC3B,GACA+V,EAEJ,EAEAqD,EAAY3lB,UAAUmlB,GAAK,SAAaC,GACtCpM,OAAOkD,QAAQiJ,GAAGC,EACpB,EAEAO,EAAY3lB,UAAU0iB,UAAY,SAAoB1hB,GACpD,IAAIoP,EAAU5P,KAAK4P,QAAQzD,SACvB,OAAcyD,IAChBpP,EAAOilB,GAAS7V,GAAW2V,GAAY3V,GAE3C,EAEAuV,EAAY3lB,UAAUslB,mBAAqB,WACzC,OAAO,IACT,EAEOK,CACT,CAvG+B,CAuG7B5E,IAUF,SAAS+E,KACP,IAAIrZ,EAAO,KACX,MAAuB,MAAnBA,EAAK0E,OAAO,KAGhB4U,GAAY,IAAMtZ,IACX,EACT,CAEA,SAAS,KAGP,IAAI+J,EAAOwC,OAAO9M,SAASsK,KACvB9M,EAAQ8M,EAAK1R,QAAQ,KAEzB,OAAI4E,EAAQ,EAAY,GAExB8M,EAAOA,EAAK7U,MAAM+H,EAAQ,EAG5B,CAEA,SAASwc,GAAQzZ,GACf,IAAI+J,EAAOwC,OAAO9M,SAASsK,KACvBxU,EAAIwU,EAAK1R,QAAQ,KAErB,OADW9C,GAAK,EAAIwU,EAAK7U,MAAM,EAAGK,GAAKwU,GACxB,IAAM/J,CACvB,CAEA,SAASwZ,GAAUxZ,GACb0S,GACFG,GAAU4G,GAAOzZ,IAEjBuM,OAAO9M,SAAShC,KAAOuC,CAE3B,CAEA,SAASsZ,GAAatZ,GAChB0S,GACFzC,GAAawJ,GAAOzZ,IAEpBuM,OAAO9M,SAASnF,QAAQmf,GAAOzZ,GAEnC,CAIA,IAAI0Z,GAAgC,SAAUpF,GAC5C,SAASoF,EAAiB/Z,EAAQ4E,GAChC+P,EAAQrf,KAAKlB,KAAM4L,EAAQ4E,GAC3BxQ,KAAK4Q,MAAQ,GACb5Q,KAAKkJ,OAAS,CAChB,CAoEA,OAlEKqX,IAAUoF,EAAgB9kB,UAAY0f,GAC3CoF,EAAgBnmB,UAAYD,OAAOqB,OAAQ2f,GAAWA,EAAQ/gB,WAC9DmmB,EAAgBnmB,UAAU+kB,YAAcoB,EAExCA,EAAgBnmB,UAAUgB,KAAO,SAAekL,EAAUmW,EAAYC,GACpE,IAAIjM,EAAW7V,KAEfA,KAAK4hB,aACHlW,GACA,SAAUK,GACR8J,EAASjF,MAAQiF,EAASjF,MAAMzP,MAAM,EAAG0U,EAAS3M,MAAQ,GAAG7H,OAAO0K,GACpE8J,EAAS3M,QACT2Y,GAAcA,EAAW9V,EAC3B,GACA+V,EAEJ,EAEA6D,EAAgBnmB,UAAU+G,QAAU,SAAkBmF,EAAUmW,EAAYC,GAC1E,IAAIjM,EAAW7V,KAEfA,KAAK4hB,aACHlW,GACA,SAAUK,GACR8J,EAASjF,MAAQiF,EAASjF,MAAMzP,MAAM,EAAG0U,EAAS3M,OAAO7H,OAAO0K,GAChE8V,GAAcA,EAAW9V,EAC3B,GACA+V,EAEJ,EAEA6D,EAAgBnmB,UAAUmlB,GAAK,SAAaC,GAC1C,IAAI/O,EAAW7V,KAEX4lB,EAAc5lB,KAAKkJ,MAAQ0b,EAC/B,KAAIgB,EAAc,GAAKA,GAAe5lB,KAAK4Q,MAAMlP,QAAjD,CAGA,IAAIqK,EAAQ/L,KAAK4Q,MAAMgV,GACvB5lB,KAAKgiB,kBACHjW,GACA,WACE,IAAIgW,EAAOlM,EAASjG,QACpBiG,EAAS3M,MAAQ0c,EACjB/P,EAASoM,YAAYlW,GACrB8J,EAASjK,OAAOuW,WAAWpX,SAAQ,SAAU8E,GAC3CA,GAAQA,EAAK9D,EAAOgW,EACtB,GACF,IACA,SAAUrX,GACJkV,GAAoBlV,EAAKqU,GAAsBI,cACjDtJ,EAAS3M,MAAQ0c,EAErB,GAhBF,CAkBF,EAEAD,EAAgBnmB,UAAUslB,mBAAqB,WAC7C,IAAIlV,EAAU5P,KAAK4Q,MAAM5Q,KAAK4Q,MAAMlP,OAAS,GAC7C,OAAOkO,EAAUA,EAAQzD,SAAW,GACtC,EAEAwZ,EAAgBnmB,UAAU0iB,UAAY,WAEtC,EAEOyD,CACT,CA1EmC,CA0EjCpF,IAMEsF,GAAY,SAAoB7f,QACjB,IAAZA,IAAqBA,EAAU,CAAC,GAKrChG,KAAKyc,IAAM,KACXzc,KAAK8lB,KAAO,GACZ9lB,KAAKgG,QAAUA,EACfhG,KAAK+iB,YAAc,GACnB/iB,KAAKgkB,aAAe,GACpBhkB,KAAKmiB,WAAa,GAClBniB,KAAK+lB,QAAU9L,GAAcjU,EAAQ0S,QAAU,GAAI1Y,MAEnD,IAAIgmB,EAAOhgB,EAAQggB,MAAQ,OAW3B,OAVAhmB,KAAKolB,SACM,YAATY,IAAuBrH,KAA0C,IAArB3Y,EAAQof,SAClDplB,KAAKolB,WACPY,EAAO,QAEJzN,KACHyN,EAAO,YAEThmB,KAAKgmB,KAAOA,EAEJA,GACN,IAAK,UACHhmB,KAAK0b,QAAU,IAAI0I,GAAapkB,KAAMgG,EAAQwK,MAC9C,MACF,IAAK,OACHxQ,KAAK0b,QAAU,IAAIyJ,GAAYnlB,KAAMgG,EAAQwK,KAAMxQ,KAAKolB,UACxD,MACF,IAAK,WACHplB,KAAK0b,QAAU,IAAIiK,GAAgB3lB,KAAMgG,EAAQwK,MAOvD,EAEIyV,GAAqB,CAAE/L,aAAc,CAAEgM,cAAc,IAEzDL,GAAUrmB,UAAUyE,MAAQ,SAAgBmQ,EAAKxE,EAASjE,GACxD,OAAO3L,KAAK+lB,QAAQ9hB,MAAMmQ,EAAKxE,EAASjE,EAC1C,EAEAsa,GAAmB/L,aAAaiM,IAAM,WACpC,OAAOnmB,KAAK0b,SAAW1b,KAAK0b,QAAQ9L,OACtC,EAEAiW,GAAUrmB,UAAUyQ,KAAO,SAAewM,GACtC,IAAI5G,EAAW7V,KA0BjB,GAjBAA,KAAK8lB,KAAKtlB,KAAKic,GAIfA,EAAI2J,MAAM,kBAAkB,WAE1B,IAAIld,EAAQ2M,EAASiQ,KAAKxhB,QAAQmY,GAC9BvT,GAAS,GAAK2M,EAASiQ,KAAK3M,OAAOjQ,EAAO,GAG1C2M,EAAS4G,MAAQA,IAAO5G,EAAS4G,IAAM5G,EAASiQ,KAAK,IAAM,MAE1DjQ,EAAS4G,KAAO5G,EAAS6F,QAAQwI,UACxC,KAIIlkB,KAAKyc,IAAT,CAIAzc,KAAKyc,IAAMA,EAEX,IAAIf,EAAU1b,KAAK0b,QAEnB,GAAIA,aAAmB0I,IAAgB1I,aAAmByJ,GAAa,CACrE,IASIlB,EAAiB,SAAUoC,GAC7B3K,EAAQuI,iBAVgB,SAAUoC,GAClC,IAAI9J,EAAOb,EAAQ9L,QACf4U,EAAe3O,EAAS7P,QAAQ2W,eACfgC,IAAqB6F,GAEpB,aAAc6B,GAClC/J,GAAazG,EAAUwQ,EAAc9J,GAAM,EAE/C,CAGE+J,CAAoBD,EACtB,EACA3K,EAAQkG,aACNlG,EAAQoJ,qBACRb,EACAA,EAEJ,CAEAvI,EAAQ8F,QAAO,SAAUzV,GACvB8J,EAASiQ,KAAK/a,SAAQ,SAAU0R,GAC9BA,EAAI8J,OAASxa,CACf,GACF,GA/BA,CAgCF,EAEA8Z,GAAUrmB,UAAUgnB,WAAa,SAAqB3mB,GACpD,OAAO4mB,GAAazmB,KAAK+iB,YAAaljB,EACxC,EAEAgmB,GAAUrmB,UAAUknB,cAAgB,SAAwB7mB,GAC1D,OAAO4mB,GAAazmB,KAAKgkB,aAAcnkB,EACzC,EAEAgmB,GAAUrmB,UAAUmnB,UAAY,SAAoB9mB,GAClD,OAAO4mB,GAAazmB,KAAKmiB,WAAYtiB,EACvC,EAEAgmB,GAAUrmB,UAAUiiB,QAAU,SAAkBzB,EAAI0B,GAClD1hB,KAAK0b,QAAQ+F,QAAQzB,EAAI0B,EAC3B,EAEAmE,GAAUrmB,UAAUmiB,QAAU,SAAkBD,GAC9C1hB,KAAK0b,QAAQiG,QAAQD,EACvB,EAEAmE,GAAUrmB,UAAUgB,KAAO,SAAekL,EAAUmW,EAAYC,GAC5D,IAAIjM,EAAW7V,KAGjB,IAAK6hB,IAAeC,GAA8B,oBAAZ8E,QACpC,OAAO,IAAIA,SAAQ,SAAU7Q,EAASuN,GACpCzN,EAAS6F,QAAQlb,KAAKkL,EAAUqK,EAASuN,EAC3C,IAEAtjB,KAAK0b,QAAQlb,KAAKkL,EAAUmW,EAAYC,EAE5C,EAEA+D,GAAUrmB,UAAU+G,QAAU,SAAkBmF,EAAUmW,EAAYC,GAClE,IAAIjM,EAAW7V,KAGjB,IAAK6hB,IAAeC,GAA8B,oBAAZ8E,QACpC,OAAO,IAAIA,SAAQ,SAAU7Q,EAASuN,GACpCzN,EAAS6F,QAAQnV,QAAQmF,EAAUqK,EAASuN,EAC9C,IAEAtjB,KAAK0b,QAAQnV,QAAQmF,EAAUmW,EAAYC,EAE/C,EAEA+D,GAAUrmB,UAAUmlB,GAAK,SAAaC,GACpC5kB,KAAK0b,QAAQiJ,GAAGC,EAClB,EAEAiB,GAAUrmB,UAAUqnB,KAAO,WACzB7mB,KAAK2kB,IAAI,EACX,EAEAkB,GAAUrmB,UAAUsnB,QAAU,WAC5B9mB,KAAK2kB,GAAG,EACV,EAEAkB,GAAUrmB,UAAUunB,qBAAuB,SAA+B3R,GACxE,IAAIrJ,EAAQqJ,EACRA,EAAG/I,QACD+I,EACApV,KAAK+V,QAAQX,GAAIrJ,MACnB/L,KAAKka,aACT,OAAKnO,EAGE,GAAG1K,OAAOoB,MACf,GACAsJ,EAAMM,QAAQvF,KAAI,SAAU2L,GAC1B,OAAOlT,OAAO+G,KAAKmM,EAAEjP,YAAYsD,KAAI,SAAUlC,GAC7C,OAAO6N,EAAEjP,WAAWoB,EACtB,GACF,KARO,EAUX,EAEAihB,GAAUrmB,UAAUuW,QAAU,SAC5BX,EACAxF,EACAa,GAGA,IAAI/E,EAAWyI,GAAkBiB,EADjCxF,EAAUA,GAAW5P,KAAK0b,QAAQ9L,QACYa,EAAQzQ,MAClD+L,EAAQ/L,KAAKiE,MAAMyH,EAAUkE,GAC7BzD,EAAWJ,EAAMJ,gBAAkBI,EAAMI,SAEzC6J,EA4CN,SAAqBxF,EAAMrE,EAAU6Z,GACnC,IAAI/Z,EAAgB,SAAT+Z,EAAkB,IAAM7Z,EAAWA,EAC9C,OAAOqE,EAAOQ,GAAUR,EAAO,IAAMvE,GAAQA,CAC/C,CA/Ca+a,CADAhnB,KAAK0b,QAAQlL,KACIrE,EAAUnM,KAAKgmB,MAC3C,MAAO,CACLta,SAAUA,EACVK,MAAOA,EACPiK,KAAMA,EAENiR,aAAcvb,EACd2X,SAAUtX,EAEd,EAEA8Z,GAAUrmB,UAAUqb,UAAY,WAC9B,OAAO7a,KAAK+lB,QAAQlL,WACtB,EAEAgL,GAAUrmB,UAAUmb,SAAW,SAAmBC,EAAe7O,GAC/D/L,KAAK+lB,QAAQpL,SAASC,EAAe7O,GACjC/L,KAAK0b,QAAQ9L,UAAYpD,GAC3BxM,KAAK0b,QAAQkG,aAAa5hB,KAAK0b,QAAQoJ,qBAE3C,EAEAe,GAAUrmB,UAAUsb,UAAY,SAAoBpC,GAIlD1Y,KAAK+lB,QAAQjL,UAAUpC,GACnB1Y,KAAK0b,QAAQ9L,UAAYpD,GAC3BxM,KAAK0b,QAAQkG,aAAa5hB,KAAK0b,QAAQoJ,qBAE3C,EAEAvlB,OAAO2nB,iBAAkBrB,GAAUrmB,UAAWymB,IAE9C,IAAIkB,GAActB,GAElB,SAASY,GAAcW,EAAMvnB,GAE3B,OADAunB,EAAK5mB,KAAKX,GACH,WACL,IAAI2B,EAAI4lB,EAAK9iB,QAAQzE,GACjB2B,GAAK,GAAK4lB,EAAKjO,OAAO3X,EAAG,EAC/B,CACF,CAQAqkB,GAAUwB,QA70DV,SAASA,EAASC,GAChB,IAAID,EAAQE,WAAatS,KAASqS,EAAlC,CACAD,EAAQE,WAAY,EAEpBtS,GAAOqS,EAEP,IAAIE,EAAQ,SAAU9J,GAAK,YAAalb,IAANkb,CAAiB,EAE/C+J,EAAmB,SAAU9X,EAAI+X,GACnC,IAAIlmB,EAAImO,EAAGgY,SAASC,aAChBJ,EAAMhmB,IAAMgmB,EAAMhmB,EAAIA,EAAE4M,OAASoZ,EAAMhmB,EAAIA,EAAEkO,wBAC/ClO,EAAEmO,EAAI+X,EAEV,EAEAJ,EAAIO,MAAM,CACRC,aAAc,WACRN,EAAMxnB,KAAK2nB,SAAS/b,SACtB5L,KAAK6O,YAAc7O,KACnBA,KAAK+nB,QAAU/nB,KAAK2nB,SAAS/b,OAC7B5L,KAAK+nB,QAAQ9X,KAAKjQ,MAClBsnB,EAAIU,KAAKC,eAAejoB,KAAM,SAAUA,KAAK+nB,QAAQrM,QAAQ9L,UAE7D5P,KAAK6O,YAAe7O,KAAKmP,SAAWnP,KAAKmP,QAAQN,aAAgB7O,KAEnEynB,EAAiBznB,KAAMA,KACzB,EACAkoB,UAAW,WACTT,EAAiBznB,KACnB,IAGFT,OAAOyF,eAAesiB,EAAI9nB,UAAW,UAAW,CAC9C2mB,IAAK,WAAkB,OAAOnmB,KAAK6O,YAAYkZ,OAAQ,IAGzDxoB,OAAOyF,eAAesiB,EAAI9nB,UAAW,SAAU,CAC7C2mB,IAAK,WAAkB,OAAOnmB,KAAK6O,YAAY0X,MAAO,IAGxDe,EAAI/X,UAAU,aAAc3B,IAC5B0Z,EAAI/X,UAAU,aAAc4F,IAE5B,IAAIgT,EAASb,EAAInX,OAAOiY,sBAExBD,EAAOE,iBAAmBF,EAAOG,iBAAmBH,EAAOI,kBAAoBJ,EAAOK,OA5CtC,CA6ClD,EAgyDA3C,GAAU4C,QAAU,QACpB5C,GAAUjG,oBAAsBA,GAChCiG,GAAU9G,sBAAwBA,GAClC8G,GAAU6C,eAAiBlc,EAEvB+L,IAAaC,OAAO8O,KACtB9O,OAAO8O,IAAIqB,IAAI9C,IC7kGjByB,EAAAA,GAAIqB,IAAIC,IAER,MAAMC,GAAeD,GAAOppB,UAAUgB,KACtCooB,GAAOppB,UAAUgB,KAAO,SAAc4U,EAAIyM,EAAYC,GAClD,OAAID,GAAcC,EACP+G,GAAa3nB,KAAKlB,KAAMoV,EAAIyM,EAAYC,GAC5C+G,GAAa3nB,KAAKlB,KAAMoV,GAAI8H,OAAMxS,GAAOA,GACpD,EACA,MAwBA,GAxBe,IAAIke,GAAO,CACtB5C,KAAM,UAGNxV,MAAMsY,EAAAA,EAAAA,IAAY,eAClB3S,gBAAiB,SACjBuC,OAAQ,CACJ,CACIzM,KAAM,IAEN2N,SAAU,CAAE5Y,KAAM,WAAYkL,OAAQ,CAAE6c,KAAM,WAElD,CACI9c,KAAM,wBACNjL,KAAM,WACN8M,OAAO,IAIf1C,cAAAA,CAAe1D,GACX,MAAMhD,EAASoF,EAAYhB,UAAUpB,GAAOnB,QAAQ,SAAU,KAC9D,OAAO7B,EAAU,IAAMA,EAAU,EACrC,qbClCJ,wCCoBA,MCpBsG,GDoBtG,CACE1D,KAAM,UACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,sBEff,UAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,gCAAgCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,g5BAAg5B,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UACx5C,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,uEEShC,MAAMC,IAAaC,EAAAA,GAAAA,GAAU,QAAS,cAAe,CAAC,GACzCC,GAAqB,WAC9B,MAAMC,GAAQC,EAAAA,EAAAA,IAAY,aAAc,CACpClO,MAAOA,KAAA,CACH8N,gBAEJK,QAAS,CACLC,UAAYpO,GAAW8M,GAAS9M,EAAM8N,WAAWhB,IAAS,CAAC,GAE/DuB,QAAS,CAILC,QAAAA,CAASxB,EAAMnkB,EAAKQ,GACXpF,KAAK+pB,WAAWhB,IACjBzB,EAAAA,GAAAA,IAAQtnB,KAAK+pB,WAAYhB,EAAM,CAAC,GAEpCzB,EAAAA,GAAAA,IAAQtnB,KAAK+pB,WAAWhB,GAAOnkB,EAAKQ,EACxC,EAIA,YAAMolB,CAAOzB,EAAMnkB,EAAKQ,GACpBqlB,GAAAA,EAAMC,KAAI5B,EAAAA,EAAAA,IAAY,4BAADznB,OAA6B0nB,EAAI,KAAA1nB,OAAIuD,IAAQ,CAC9DQ,WAEJtD,EAAAA,GAAAA,IAAK,2BAA4B,CAAEinB,OAAMnkB,MAAKQ,SAClD,EAMAulB,YAAAA,GAA+C,IAAlC/lB,EAAGtC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,WAAYymB,EAAIzmB,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,QAElCtC,KAAKwqB,OAAOzB,EAAM,eAAgBnkB,GAClC5E,KAAKwqB,OAAOzB,EAAM,oBAAqB,MAC3C,EAIA6B,sBAAAA,GAAuC,IAAhB7B,EAAIzmB,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,QAC1B,MACMuoB,EAA4C,SADnC7qB,KAAKqqB,UAAUtB,IAAS,CAAE+B,kBAAmB,QAChCA,kBAA8B,OAAS,MAEnE9qB,KAAKwqB,OAAOzB,EAAM,oBAAqB8B,EAC3C,KAGFE,EAAkBb,KAAM5nB,WAQ9B,OANKyoB,EAAgBC,gBACjBC,EAAAA,GAAAA,IAAU,4BAA4B,SAAAC,GAAgC,IAAtB,KAAEnC,EAAI,IAAEnkB,EAAG,MAAEQ,GAAO8lB,EAChEH,EAAgBR,SAASxB,EAAMnkB,EAAKQ,EACxC,IACA2lB,EAAgBC,cAAe,GAE5BD,CACX,EC9DA,IAAeI,WAAAA,MACbC,OAAO,SACPC,aACAC,QCHF,SAASC,GAAUC,EAAOC,EAAUzlB,GAClC,IAcI0lB,EAdAR,EAAOllB,GAAW,CAAC,EACnB2lB,EAAkBT,EAAKU,WACvBA,OAAiC,IAApBD,GAAqCA,EAClDE,EAAiBX,EAAKY,UACtBA,OAA+B,IAAnBD,GAAoCA,EAChDE,EAAoBb,EAAKc,aACzBA,OAAqC,IAAtBD,OAA+BvpB,EAAYupB,EAS1D7M,GAAY,EAEZ+M,EAAW,EAEf,SAASC,IACHR,GACFS,aAAaT,EAEjB,CAkBA,SAASU,IACP,IAAK,IAAIC,EAAO/pB,UAAUZ,OAAQ4qB,EAAa,IAAI1qB,MAAMyqB,GAAOhR,EAAO,EAAGA,EAAOgR,EAAMhR,IACrFiR,EAAWjR,GAAQ/Y,UAAU+Y,GAG/B,IAAIkR,EAAOvsB,KACPwsB,EAAUtR,KAAKD,MAAQgR,EAO3B,SAAS7lB,IACP6lB,EAAW/Q,KAAKD,MAChBwQ,EAAShpB,MAAM8pB,EAAMD,EACvB,CAOA,SAASG,IACPf,OAAYlpB,CACd,CAjBI0c,IAmBC4M,IAAaE,GAAiBN,GAMjCtlB,IAGF8lB,SAEqB1pB,IAAjBwpB,GAA8BQ,EAAUhB,EACtCM,GAMFG,EAAW/Q,KAAKD,MAEX2Q,IACHF,EAAYgB,WAAWV,EAAeS,EAAQrmB,EAAMolB,KAOtDplB,KAEsB,IAAfwlB,IAYTF,EAAYgB,WAAWV,EAAeS,EAAQrmB,OAAuB5D,IAAjBwpB,EAA6BR,EAAQgB,EAAUhB,IAEvG,CAIA,OAFAY,EAAQO,OAxFR,SAAgB3mB,GACd,IACI4mB,GADQ5mB,GAAW,CAAC,GACO6mB,aAC3BA,OAAsC,IAAvBD,GAAwCA,EAE3DV,IACAhN,GAAa2N,CACf,EAmFOT,CACT,iBCzHA,MCpB2G,GDoB3G,CACEprB,KAAM,eACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,sCAAsCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,8HAA8H,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UAC5oB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,wBEkBhC,MCpC2L,GDoC3L,CACA9oB,KAAA,kBAEAwC,WAAA,CACAspB,SAAA,GACAC,oBAAA,KACAC,cAAAA,GAAAA,GAGA5e,KAAAA,KACA,CACA6e,qBAAA,EACAC,cAAAlD,EAAAA,GAAAA,GAAA,+BAIAmD,SAAA,CACAC,iBAAAA,GAAA,IAAAC,EAAAC,EAAAC,EACA,MAAAC,GAAAC,EAAAA,EAAAA,IAAA,QAAAJ,EAAA,KAAAH,oBAAA,IAAAG,OAAA,EAAAA,EAAAK,MAAA,MACAC,GAAAF,EAAAA,EAAAA,IAAA,QAAAH,EAAA,KAAAJ,oBAAA,IAAAI,OAAA,EAAAA,EAAAM,OAAA,MAGA,eAAAL,EAAA,KAAAL,oBAAA,IAAAK,OAAA,EAAAA,EAAAK,OAAA,EACA,KAAAC,EAAA,gCAAAL,kBAGA,KAAAK,EAAA,kCACAH,KAAAF,EACAI,MAAAD,GAEA,EACAG,mBAAAA,GACA,YAAAZ,aAAA3c,SAIA,KAAAsd,EAAA,gCAAAX,cAHA,EAIA,GAGAa,WAAAA,GAKAC,YAAA,KAAAC,2BAAA,MAEAhD,EAAAA,GAAAA,IAAA,0BAAAgD,6BACAhD,EAAAA,GAAAA,IAAA,0BAAAgD,6BACAhD,EAAAA,GAAAA,IAAA,wBAAAgD,6BACAhD,EAAAA,GAAAA,IAAA,0BAAAgD,2BACA,EAEAC,OAAAA,GAAA,IAAAC,EAAAC,GAWA,QAAAD,EAAA,KAAAjB,oBAAA,IAAAiB,OAAA,EAAAA,EAAAP,OAAA,YAAAQ,EAAA,KAAAlB,oBAAA,IAAAkB,OAAA,EAAAA,EAAAC,OAAA,GACA,KAAAC,wBAEA,EAEAC,QAAA,CAEAC,4BLuDMC,GADkB,CAAC,EACCC,QAGjBnD,GK1DT,cAAAprB,GACA,KAAAwuB,mBAAAxuB,EACA,GLwDmC,CAC/B6rB,cAA0B,UAHG,IAAjByC,IAAkCA,OKpDlDR,2BAAA1C,GAAA,cAAAprB,GACA,KAAAwuB,mBAAAxuB,EACA,IAQA,wBAAAwuB,GAAA,IAAAxuB,EAAAmC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,QACA,SAAA2qB,oBAAA,CAIA,KAAAA,qBAAA,EACA,QAAA2B,EAAAC,EAAAC,EAAAC,EACA,MAAAC,QAAAvE,GAAAA,EAAAtE,KAAA2C,EAAAA,EAAAA,IAAA,6BACA,GAAAkG,SAAA,QAAAJ,EAAAI,EAAA5gB,YAAA,IAAAwgB,IAAAA,EAAAxgB,KACA,UAAAoR,MAAA,0BAKA,QAAAqP,EAAA,KAAA3B,oBAAA,IAAA2B,OAAA,EAAAA,EAAAR,MAAA,YAAAS,EAAAE,EAAA5gB,KAAAA,YAAA,IAAA0gB,OAAA,EAAAA,EAAAT,OAAA,YAAAU,EAAAC,EAAA5gB,KAAAA,YAAA,IAAA2gB,OAAA,EAAAA,EAAAnB,OAAA,GACA,KAAAU,yBAGA,KAAApB,aAAA8B,EAAA5gB,KAAAA,IACA,OAAAmR,GACA0P,GAAA1P,MAAA,mCAAAA,UAEApf,IACA+uB,EAAAA,GAAAA,IAAArB,EAAA,2CAEA,SACA,KAAAZ,qBAAA,CACA,CAxBA,CAyBA,EAEAqB,sBAAAA,IACAY,EAAAA,GAAAA,IAAA,KAAArB,EAAA,6EACA,EAEAA,EAAAsB,GAAAA,KLKA,IAEMV,yJOvJFzoB,GAAU,CAAC,EAEfA,GAAQopB,kBAAoB,KAC5BppB,GAAQqpB,cAAgB,KAElBrpB,GAAQspB,OAAS,UAAc,KAAM,QAE3CtpB,GAAQupB,OAAS,KACjBvpB,GAAQwpB,mBAAqB,KAEhB,KAAI,KAASxpB,IAKJ,MAAW,KAAQypB,QAAS,KAAQA,OCP1D,UAXgB,QACd,ICTW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAQD,EAAI8D,aAAc7D,EAAG,sBAAsB,CAACG,YAAY,uCAAuCzS,MAAM,CAAE,sDAAuDqS,EAAI8D,aAAaU,OAAS,GAAGvd,MAAM,CAAC,aAAa+Y,EAAIyE,EAAE,QAAS,wBAAwB,QAAUzE,EAAI6D,oBAAoB,KAAO7D,EAAIgE,kBAAkB,MAAQhE,EAAI0E,oBAAoB,0CAA0C,IAAInrB,GAAG,CAAC,MAAQ,SAAS8mB,GAAyD,OAAjDA,EAAOiG,kBAAkBjG,EAAOpR,iBAAwB+Q,EAAIoF,2BAA2B/rB,MAAM,KAAMH,UAAU,IAAI,CAAC+mB,EAAG,WAAW,CAAChZ,MAAM,CAAC,KAAO,OAAO,KAAO,IAAIsf,KAAK,SAASvG,EAAIQ,GAAG,KAAMR,EAAI8D,aAAaU,OAAS,EAAGvE,EAAG,gBAAgB,CAAChZ,MAAM,CAAC,KAAO,QAAQ,MAAQ+Y,EAAI8D,aAAa3c,SAAW,GAAG,MAAQkS,KAAKmN,IAAIxG,EAAI8D,aAAa3c,SAAU,MAAMof,KAAK,UAAUvG,EAAIU,MAAM,GAAGV,EAAIU,IACh2B,GACsB,IDUpB,EACA,KACA,WACA,MAI8B,QEnBhC,sCCoBA,MCpB4G,GDoB5G,CACE9oB,KAAM,gBACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,sCAAsCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,oMAAoM,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UACltB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,wBEQhC,MC1BmL,GD0BnL,CACA9oB,KAAA,UACA8M,MAAA,CACAgQ,GAAA,CACA/P,KAAA8hB,SACAxa,UAAA,IAGA6Y,OAAAA,GACA,KAAA4B,IAAAC,YAAA,KAAAjS,KACA,GElBA,IAXgB,QACd,ICRW,WAA+C,OAAOuL,EAA5BrpB,KAAYspB,MAAMD,IAAa,MACtE,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QEZ1B2G,IAAahG,EAAAA,GAAAA,GAAU,QAAS,SAAU,CAC5CiG,aAAa,EACbC,qBAAqB,EACrBC,sBAAsB,EACtBC,oBAAoB,EACpBC,WAAW,IAEFC,GAAqB,WAC9B,MAsBMC,GAtBQpG,EAAAA,EAAAA,IAAY,aAAc,CACpClO,MAAOA,KAAA,CACH+T,gBAEJ1F,QAAS,CAILC,QAAAA,CAAS3lB,EAAKQ,GACVkiB,EAAAA,GAAAA,IAAQtnB,KAAKgwB,WAAYprB,EAAKQ,EAClC,EAIA,YAAMolB,CAAO5lB,EAAKQ,SACRqlB,GAAAA,EAAMC,KAAI5B,EAAAA,EAAAA,IAAY,6BAA+BlkB,GAAM,CAC7DQ,WAEJtD,EAAAA,GAAAA,IAAK,uBAAwB,CAAE8C,MAAKQ,SACxC,IAGgB8kB,IAAM5nB,WAQ9B,OANKiuB,EAAgBvF,gBACjBC,EAAAA,GAAAA,IAAU,wBAAwB,SAAAC,GAA0B,IAAhB,IAAEtmB,EAAG,MAAEQ,GAAO8lB,EACtDqF,EAAgBhG,SAAS3lB,EAAKQ,EAClC,IACAmrB,EAAgBvF,cAAe,GAE5BuF,CACX,ECqEA,IACAvvB,KAAA,WACAwC,WAAA,CACAgtB,UAAA,GACAC,oBAAA,KACAC,qBAAA,KACAC,sBAAA,KACAC,aAAA,KACAC,QAAAA,IAGA/iB,MAAA,CACAgjB,KAAA,CACA/iB,KAAAlF,QACAmF,SAAA,IAIA+iB,MAAAA,KAEA,CACAR,gBAFAD,OAMAliB,IAAAA,GAAA,IAAA4iB,EAAAC,EAAAC,EACA,OAEAC,UAAA,QAAAH,EAAAxY,OAAA4Y,WAAA,IAAAJ,GAAA,QAAAA,EAAAA,EAAAK,aAAA,IAAAL,GAAA,QAAAA,EAAAA,EAAAM,gBAAA,IAAAN,OAAA,EAAAA,EAAAG,WAAA,GAGAI,WAAAC,EAAAA,EAAAA,IAAA,aAAAlsB,mBAAA,QAAA2rB,GAAAQ,EAAAA,EAAAA,aAAA,IAAAR,OAAA,EAAAA,EAAAS,MACAC,WAAA,iEACAC,gBAAA9I,EAAAA,EAAAA,IAAA,sDACA+I,iBAAA,EACAC,eAAA,QAAAZ,GAAAlH,EAAAA,GAAAA,GAAA,iEAAAkH,GAAAA,EAEA,EAEA/D,SAAA,CACA6C,UAAAA,GACA,YAAAO,gBAAAP,UACA,GAGAjC,WAAAA,GAEA,KAAAoD,SAAApmB,SAAAgnB,GAAAA,EAAAjB,QACA,EAEAkB,aAAAA,GAEA,KAAAb,SAAApmB,SAAAgnB,GAAAA,EAAAE,SACA,EAEA1D,QAAA,CACA2D,OAAAA,GACA,KAAAxI,MAAA,QACA,EAEAyI,SAAAA,CAAAvtB,EAAAQ,GACA,KAAAmrB,gBAAA/F,OAAA5lB,EAAAQ,EACA,EAEA,iBAAAgtB,GACArU,SAAAE,cAAA,0BAAAoU,SAEAzT,UAAA0T,iBAMA1T,UAAA0T,UAAAC,UAAA,KAAAhB,WACA,KAAAM,iBAAA,GACAW,EAAAA,GAAAA,IAAA3E,EAAA,2CACAnB,YAAA,KACA,KAAAmF,iBAAA,IACA,OATA3C,EAAAA,GAAAA,IAAArB,EAAA,sCAUA,EAEAA,EAAAsB,GAAAA,KCnMoL,sBCWhL,GAAU,CAAC,EAEf,GAAQC,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IbTW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,sBAAsB,CAAChZ,MAAM,CAAC,KAAO+Y,EAAI0H,KAAK,mBAAkB,EAAK,KAAO1H,EAAIyE,EAAE,QAAS,mBAAmBlrB,GAAG,CAAC,cAAcymB,EAAI8I,UAAU,CAAC7I,EAAG,uBAAuB,CAAChZ,MAAM,CAAC,GAAK,WAAW,KAAO+Y,EAAIyE,EAAE,QAAS,oBAAoB,CAACxE,EAAG,wBAAwB,CAAChZ,MAAM,CAAC,iCAAiC,uBAAuB,QAAU+Y,EAAI4G,WAAWG,sBAAsBxtB,GAAG,CAAC,iBAAiB,SAAS8mB,GAAQ,OAAOL,EAAI+I,UAAU,uBAAwB1I,EAAO,IAAI,CAACL,EAAIQ,GAAG,WAAWR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,yBAAyB,YAAYzE,EAAIQ,GAAG,KAAKP,EAAG,wBAAwB,CAAChZ,MAAM,CAAC,iCAAiC,qBAAqB,QAAU+Y,EAAI4G,WAAWI,oBAAoBztB,GAAG,CAAC,iBAAiB,SAAS8mB,GAAQ,OAAOL,EAAI+I,UAAU,qBAAsB1I,EAAO,IAAI,CAACL,EAAIQ,GAAG,WAAWR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,8BAA8B,YAAYzE,EAAIQ,GAAG,KAAKP,EAAG,wBAAwB,CAAChZ,MAAM,CAAC,iCAAiC,cAAc,QAAU+Y,EAAI4G,WAAWC,aAAattB,GAAG,CAAC,iBAAiB,SAAS8mB,GAAQ,OAAOL,EAAI+I,UAAU,cAAe1I,EAAO,IAAI,CAACL,EAAIQ,GAAG,WAAWR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,sBAAsB,YAAYzE,EAAIQ,GAAG,KAAKP,EAAG,wBAAwB,CAAChZ,MAAM,CAAC,iCAAiC,sBAAsB,QAAU+Y,EAAI4G,WAAWE,qBAAqBvtB,GAAG,CAAC,iBAAiB,SAAS8mB,GAAQ,OAAOL,EAAI+I,UAAU,sBAAuB1I,EAAO,IAAI,CAACL,EAAIQ,GAAG,WAAWR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,wBAAwB,YAAYzE,EAAIQ,GAAG,KAAMR,EAAI0I,eAAgBzI,EAAG,wBAAwB,CAAChZ,MAAM,CAAC,iCAAiC,YAAY,QAAU+Y,EAAI4G,WAAWK,WAAW1tB,GAAG,CAAC,iBAAiB,SAAS8mB,GAAQ,OAAOL,EAAI+I,UAAU,YAAa1I,EAAO,IAAI,CAACL,EAAIQ,GAAG,WAAWR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,yBAAyB,YAAYzE,EAAIU,MAAM,GAAGV,EAAIQ,GAAG,KAA8B,IAAxBR,EAAI+H,SAASzvB,OAAc2nB,EAAG,uBAAuB,CAAChZ,MAAM,CAAC,GAAK,gBAAgB,KAAO+Y,EAAIyE,EAAE,QAAS,yBAAyB,CAACzE,EAAIqJ,GAAIrJ,EAAI+H,UAAU,SAASY,GAAS,MAAO,CAAC1I,EAAG,UAAU,CAACzkB,IAAImtB,EAAQ/wB,KAAKqP,MAAM,CAAC,GAAK0hB,EAAQjU,MAAM,KAAI,GAAGsL,EAAIU,KAAKV,EAAIQ,GAAG,KAAKP,EAAG,uBAAuB,CAAChZ,MAAM,CAAC,GAAK,SAAS,KAAO+Y,EAAIyE,EAAE,QAAS,YAAY,CAACxE,EAAG,eAAe,CAAChZ,MAAM,CAAC,GAAK,mBAAmB,MAAQ+Y,EAAIyE,EAAE,QAAS,cAAc,wBAAuB,EAAK,QAAUzE,EAAIyI,gBAAgB,wBAAwBzI,EAAIyE,EAAE,QAAS,qBAAqB,MAAQzE,EAAImI,UAAU,SAAW,WAAW,KAAO,OAAO5uB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOA,EAAOhT,OAAO4b,QAAQ,EAAE,wBAAwBjJ,EAAIgJ,aAAaM,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,uBAAuB/E,GAAG,WAAW,MAAO,CAACwpB,EAAG,YAAY,CAAChZ,MAAM,CAAC,KAAO,MAAM,EAAEuiB,OAAM,OAAUxJ,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACA,EAAG,IAAI,CAACG,YAAY,eAAenZ,MAAM,CAAC,KAAO+Y,EAAIuI,WAAW,OAAS,SAAS,IAAM,wBAAwB,CAACvI,EAAIQ,GAAG,aAAaR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,qDAAqD,kBAAkBzE,EAAIQ,GAAG,KAAKP,EAAG,MAAMD,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACA,EAAG,IAAI,CAACG,YAAY,eAAenZ,MAAM,CAAC,KAAO+Y,EAAIwI,iBAAiB,CAACxI,EAAIQ,GAAG,aAAaR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,0FAA0F,mBAAmB,IAAI,EAChqG,GACsB,IaUpB,EACA,KACA,WACA,MAI8B,QCnB0N,GCU1P,CACI7sB,KAAM,aACNwC,WAAY,CACRqvB,IAAG,GACHC,gBAAe,GACfC,gBAAe,KACfhG,oBAAmB,KACnBiG,iBAAgB,KAChBC,cAAaA,IAEjBlC,MAAKA,KAEM,CACHhG,gBAFoBd,OAK5B7b,KAAIA,KACO,CACH8kB,gBAAgB,IAGxB/F,SAAU,CACNgG,aAAAA,GAAgB,IAAAC,EACZ,OAAkB,QAAXA,EAAA,KAAK5kB,cAAM,IAAA4kB,GAAQ,QAARA,EAAXA,EAAalnB,cAAM,IAAAknB,OAAA,EAAnBA,EAAqBrK,OAAQ,OACxC,EACAsK,WAAAA,GACI,OAAO,KAAKC,MAAMC,MAAKxK,GAAQA,EAAKyK,KAAO,KAAKL,eACpD,EACAG,KAAAA,GACI,OAAO,KAAKG,YAAYH,KAC5B,EACAI,WAAAA,GACI,OAAO,KAAKJ,MAEPhqB,QAAOyf,IAASA,EAAKrc,SAErBhG,MAAK,CAACC,EAAGC,IACHD,EAAEgtB,MAAQ/sB,EAAE+sB,OAE3B,EACAC,UAAAA,GACI,OAAO,KAAKN,MAEPhqB,QAAOyf,KAAUA,EAAKrc,SAEtB9D,QAAO,CAACwe,EAAM2B,KACf3B,EAAK2B,EAAKrc,QAAU,IAAK0a,EAAK2B,EAAKrc,SAAW,GAAKqc,GAEnD3B,EAAK2B,EAAKrc,QAAQhG,MAAK,CAACC,EAAGC,IAChBD,EAAEgtB,MAAQ/sB,EAAE+sB,QAEhBvM,IACR,CAAC,EACR,GAEJyM,MAAO,CACHR,WAAAA,CAAYtK,EAAM+K,GACV/K,EAAKyK,MAAOM,aAAO,EAAPA,EAASN,MACrB,KAAKC,YAAYM,UAAUhL,GAC3BkG,GAAO+E,MAAK,2BAAA3yB,OAA4ByyB,EAAQN,GAAE,QAAAnyB,OAAO0nB,EAAKyK,IAAM,CAAEjX,KAAMuX,EAAS1e,GAAI2T,IACzF,KAAKkL,SAASlL,GAEtB,GAEJgF,WAAAA,GACQ,KAAKsF,cACLpE,GAAO+E,MAAM,6CAA8C,CAAEjL,KAAM,KAAKsK,cACxE,KAAKY,SAAS,KAAKZ,aAE3B,EACA9E,QAAS,CAOL2F,qBAAAA,CAAsBnL,GAAM,IAAAoL,EACxB,OAA+B,QAAxBA,EAAA,KAAKP,WAAW7K,EAAKyK,WAAG,IAAAW,OAAA,EAAxBA,EAA0BzyB,QAAS,CAC9C,EACAuyB,QAAAA,CAASlL,GAAM,IAAAqL,EAAAC,EAEL,QAAND,EAAA5b,cAAM,IAAA4b,GAAK,QAALA,EAANA,EAAQhD,WAAG,IAAAgD,GAAO,QAAPA,EAAXA,EAAa/C,aAAK,IAAA+C,GAAS,QAATA,EAAlBA,EAAoBE,eAAO,IAAAF,GAAO,QAAPC,EAA3BD,EAA6BnC,aAAK,IAAAoC,GAAlCA,EAAAnzB,KAAAkzB,GACA,KAAKX,YAAYM,UAAUhL,IAC3BjnB,EAAAA,GAAAA,IAAK,2BAA4BinB,EACrC,EAMAwL,cAAAA,CAAexL,GAEX,MAAMyL,EAAa,KAAKA,WAAWzL,GAEnCA,EAAK0L,UAAYD,EACjB,KAAKzJ,gBAAgBP,OAAOzB,EAAKyK,GAAI,YAAagB,EACtD,EAMAA,UAAAA,CAAWzL,GAAM,IAAA2L,EACb,MAAoE,kBAAf,QAA9CA,EAAO,KAAK3J,gBAAgBV,UAAUtB,EAAKyK,WAAG,IAAAkB,OAAA,EAAvCA,EAAyCD,WACI,IAArD,KAAK1J,gBAAgBV,UAAUtB,EAAKyK,IAAIiB,UACtB,IAAlB1L,EAAK0L,QACf,EAKAE,oBAAAA,CAAqB5L,GACjB,GAAIA,EAAK7c,OAAQ,CACb,MAAM,IAAE0oB,GAAQ7L,EAAK7c,OACrB,MAAO,CAAElL,KAAM,WAAYkL,OAAQ6c,EAAK7c,OAAQxE,MAAO,CAAEktB,OAC7D,CACA,MAAO,CAAE5zB,KAAM,WAAYkL,OAAQ,CAAE6c,KAAMA,EAAKyK,IACpD,EAIAqB,YAAAA,GACI,KAAK3B,gBAAiB,CAC1B,EAIA4B,eAAAA,GACI,KAAK5B,gBAAiB,CAC1B,EACArF,EAAGsB,GAAAA,qBClIP,GAAU,CAAC,EAEf,GAAQC,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,kBAAkB,CAAChZ,MAAM,CAAC,2BAA2B,GAAG,aAAa+Y,EAAIyE,EAAE,QAAS,UAAU6E,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,OAAO/E,GAAG,WAAW,OAAOupB,EAAIqJ,GAAIrJ,EAAIsK,aAAa,SAAS3K,GAAM,OAAOM,EAAG,sBAAsB,CAACzkB,IAAImkB,EAAKyK,GAAGnjB,MAAM,CAAC,kBAAiB,EAAK,gCAAgC0Y,EAAKyK,GAAG,MAAQpK,EAAI8K,sBAAsBnL,GAAM,KAAOA,EAAKgM,UAAU,KAAOhM,EAAK/nB,KAAK,KAAOooB,EAAIoL,WAAWzL,GAAM,OAASA,EAAKiM,OAAO,GAAK5L,EAAIuL,qBAAqB5L,IAAOpmB,GAAG,CAAC,cAAc,SAAS8mB,GAAQ,OAAOL,EAAImL,eAAexL,EAAK,IAAI,CAAEA,EAAKkM,KAAM5L,EAAG,mBAAmB,CAAChZ,MAAM,CAAC,KAAO,OAAO,IAAM0Y,EAAKkM,MAAMtF,KAAK,SAASvG,EAAIU,KAAKV,EAAIQ,GAAG,KAAKR,EAAIqJ,GAAIrJ,EAAIwK,WAAW7K,EAAKyK,KAAK,SAASlb,GAAO,OAAO+Q,EAAG,sBAAsB,CAACzkB,IAAI0T,EAAMkb,GAAGnjB,MAAM,CAAC,gCAAgCiI,EAAMkb,GAAG,cAAa,EAAK,KAAOlb,EAAMyc,UAAU,KAAOzc,EAAMtX,KAAK,GAAKooB,EAAIuL,qBAAqBrc,KAAS,CAAEA,EAAM2c,KAAM5L,EAAG,mBAAmB,CAAChZ,MAAM,CAAC,KAAO,OAAO,IAAMiI,EAAM2c,MAAMtF,KAAK,SAASvG,EAAIU,MAAM,EAAE,KAAI,EAAE,GAAE,EAAE8I,OAAM,GAAM,CAAChuB,IAAI,SAAS/E,GAAG,WAAW,MAAO,CAACwpB,EAAG,KAAK,CAACG,YAAY,kCAAkC,CAACH,EAAG,mBAAmBD,EAAIQ,GAAG,KAAKP,EAAG,sBAAsB,CAAChZ,MAAM,CAAC,aAAa+Y,EAAIyE,EAAE,QAAS,+BAA+B,KAAOzE,EAAIyE,EAAE,QAAS,kBAAkB,2CAA2C,IAAIlrB,GAAG,CAAC,MAAQ,SAAS8mB,GAAyD,OAAjDA,EAAOpR,iBAAiBoR,EAAOiG,kBAAyBtG,EAAIyL,aAAapyB,MAAM,KAAMH,UAAU,IAAI,CAAC+mB,EAAG,MAAM,CAAChZ,MAAM,CAAC,KAAO,OAAO,KAAO,IAAIsf,KAAK,UAAU,IAAI,GAAG,EAAEiD,OAAM,MAAS,CAACxJ,EAAIQ,GAAG,KAAKR,EAAIQ,GAAG,KAAKP,EAAG,gBAAgB,CAAChZ,MAAM,CAAC,KAAO+Y,EAAI8J,eAAe,oCAAoC,IAAIvwB,GAAG,CAAC,MAAQymB,EAAI0L,oBAAoB,EACrtD,GACsB,IEUpB,EACA,KACA,WACA,MAI8B,QCnBhC,4ECoBA,MCpB2H,GDoB3H,CACE9zB,KAAM,+BACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,wDAAwDnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,4FAA4F,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UAC5nB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,uEEEhC,MCpB8G,GDoB9G,CACE9oB,KAAM,kBACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,yCAAyCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,sKAAsK,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UACvrB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElB2E,GCoB3G,CACE9oB,KAAM,eACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,sCAAsCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,0DAA0D,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UACxkB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,wBEOzB,MACMoL,GAAS,IAAIC,EAAAA,GAAW,CACjC3B,GAF0B,UAG1B4B,YAAaA,KAAMvH,EAAAA,GAAAA,IAAE,QAAS,gBAC9BwH,cAAeA,IAAMC,GAErBC,QAAUC,IAAU,IAAApB,EAAAlJ,EAAAuK,EAEhB,OAAqB,IAAjBD,EAAM9zB,UAGL8zB,EAAM,MAIA,QAAPpB,EAAC5b,cAAM,IAAA4b,GAAK,QAALA,EAANA,EAAQhD,WAAG,IAAAgD,GAAO,QAAPA,EAAXA,EAAa/C,aAAK,IAAA+C,IAAlBA,EAAoBE,UAG+D,QAAxFpJ,GAAqB,QAAbuK,EAAAD,EAAM,GAAGE,YAAI,IAAAD,OAAA,EAAbA,EAAeE,WAAW,aAAcH,EAAM,GAAGI,cAAgBC,EAAAA,GAAWC,YAAI,IAAA5K,GAAAA,CAAU,EAEtG,UAAM9kB,CAAK2vB,EAAMhN,EAAM6L,GACnB,IAKI,aAHMpc,OAAO4Y,IAAIC,MAAMiD,QAAQxD,KAAKiF,EAAK9pB,MAEzCuM,OAAOwd,IAAI3E,MAAMzI,OAAOqN,UAAU,KAAM,CAAElN,KAAMA,EAAKyK,GAAI0C,OAAQH,EAAKG,QAAU,CAAEtB,QAAO,GAClF,IACX,CACA,MAAOrV,GAEH,OADA0P,GAAO1P,MAAM,8BAA+B,CAAEA,WACvC,CACX,CACJ,EACAoU,OAAQ,KCtDCwC,GAAgB,WACzB,MAwDMC,GAxDQjM,EAAAA,EAAAA,IAAY,QAAS,CAC/BlO,MAAOA,KAAA,CACHoa,MAAO,CAAC,EACRC,MAAO,CAAC,IAEZlM,QAAS,CAILmM,QAAUta,GAAWuX,GAAOvX,EAAMoa,MAAM7C,GAKxCgD,SAAWva,GAAWwa,GAAQA,EACzB3vB,KAAI0sB,GAAMvX,EAAMoa,MAAM7C,KACtBlqB,OAAOT,SAIZ6tB,QAAUza,GAAW0a,GAAY1a,EAAMqa,MAAMK,IAEjDrM,QAAS,CACLsM,WAAAA,CAAYpB,GAER,MAAMa,EAAQb,EAAM5sB,QAAO,CAACiuB,EAAKd,IACxBA,EAAKG,QAIVW,EAAId,EAAKG,QAAUH,EACZc,IAJH5H,GAAO1P,MAAM,6CAA8CwW,GACpDc,IAIZ,CAAC,GACJvP,EAAAA,GAAAA,IAAQtnB,KAAM,QAAS,IAAKA,KAAKq2B,SAAUA,GAC/C,EACAS,WAAAA,CAAYtB,GACRA,EAAMzqB,SAAQgrB,IACNA,EAAKG,QACL5O,EAAAA,GAAIyP,OAAO/2B,KAAKq2B,MAAON,EAAKG,OAChC,GAER,EACAc,OAAAA,CAAO9L,GAAoB,IAAnB,QAAEyL,EAAO,KAAEjB,GAAMxK,EACrB5D,EAAAA,GAAAA,IAAQtnB,KAAKs2B,MAAOK,EAASjB,EACjC,EACAuB,aAAAA,CAAclB,GACV/1B,KAAK82B,YAAY,CAACf,GACtB,EACAmB,aAAAA,CAAcnB,GACV/1B,KAAK42B,YAAY,CAACb,GACtB,EACAoB,aAAAA,CAAcpB,GACV/1B,KAAK42B,YAAY,CAACb,GACtB,IAGU7L,IAAM5nB,WAQxB,OANK8zB,EAAUpL,gBACXC,EAAAA,GAAAA,IAAU,qBAAsBmL,EAAUc,gBAC1CjM,EAAAA,GAAAA,IAAU,qBAAsBmL,EAAUa,gBAC1ChM,EAAAA,GAAAA,IAAU,qBAAsBmL,EAAUe,eAC1Cf,EAAUpL,cAAe,GAEtBoL,CACX,EChEagB,GAAgB,WACzB,MAAMf,EAAQF,KAoERkB,GAnEQlN,EAAAA,EAAAA,IAAY,QAAS,CAC/BlO,MAAOA,KAAA,CACHqb,MAAO,CAAC,IAEZlN,QAAS,CACLmN,QAAUtb,GACC,CAAC0a,EAAS1qB,KACb,GAAKgQ,EAAMqb,MAAMX,GAGjB,OAAO1a,EAAMqb,MAAMX,GAAS1qB,EAAK,GAI7Cqe,QAAS,CACLkN,OAAAA,CAAQC,GAECz3B,KAAKs3B,MAAMG,EAAQd,UACpBrP,EAAAA,GAAAA,IAAQtnB,KAAKs3B,MAAOG,EAAQd,QAAS,CAAC,GAG1CrP,EAAAA,GAAAA,IAAQtnB,KAAKs3B,MAAMG,EAAQd,SAAUc,EAAQxrB,KAAMwrB,EAAQvB,OAC/D,EACAgB,aAAAA,CAAcnB,GAAM,IAAA2B,EAChB,MAAMf,GAAyB,QAAfe,GAAAC,EAAAA,EAAAA,aAAe,IAAAD,GAAQ,QAARA,EAAfA,EAAiBE,cAAM,IAAAF,OAAA,EAAvBA,EAAyBlE,KAAM,QAC/C,GAAKuC,EAAKG,OAAV,CAcA,GATIH,EAAKhoB,OAAS8pB,EAAAA,GAASC,QACvB93B,KAAKw3B,QAAQ,CACTb,UACA1qB,KAAM8pB,EAAK9pB,KACXiqB,OAAQH,EAAKG,SAKA,MAAjBH,EAAKgC,QAAiB,CACtB,MAAMrC,EAAOW,EAAMK,QAAQC,GAK3B,OAJKjB,EAAKsC,WACN1Q,EAAAA,GAAAA,IAAQoO,EAAM,YAAa,SAE/BA,EAAKsC,UAAUx3B,KAAKu1B,EAAKG,OAE7B,CAGA,GAAIl2B,KAAKs3B,MAAMX,GAASZ,EAAKgC,SAAU,CACnC,MAAME,EAAWj4B,KAAKs3B,MAAMX,GAASZ,EAAKgC,SACpCG,EAAe7B,EAAME,QAAQ0B,GAEnC,OADAhJ,GAAO+E,MAAM,yCAA0C,CAAEkE,eAAcnC,SAClEmC,GAIAA,EAAaF,WACd1Q,EAAAA,GAAAA,IAAQ4Q,EAAc,YAAa,SAEvCA,EAAaF,UAAUx3B,KAAKu1B,EAAKG,cAN7BjH,GAAO1P,MAAM,0BAA2B,CAAE0Y,YAQlD,CACAhJ,GAAO+E,MAAM,wDAAyD,CAAE+B,QAnCxE,MAFI9G,GAAO1P,MAAM,qBAAsB,CAAEwW,QAsC7C,IAGW7L,IAAM5nB,WASzB,OAPK+0B,EAAWrM,gBAEZC,EAAAA,GAAAA,IAAU,qBAAsBoM,EAAWH,eAG3CG,EAAWrM,cAAe,GAEvBqM,CACX,ECnFac,IAAoBhO,EAAAA,EAAAA,IAAY,YAAa,CACtDlO,MAAOA,KAAA,CACHmc,SAAU,GACVC,cAAe,GACfC,kBAAmB,OAEvBhO,QAAS,CAILiO,GAAAA,GAAoB,IAAhBC,EAASl2B,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,GACZglB,EAAAA,GAAAA,IAAQtnB,KAAM,WAAY,IAAI,IAAIy4B,IAAID,IAC1C,EAIAE,YAAAA,GAAuC,IAA1BJ,EAAiBh2B,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,KAE7BglB,EAAAA,GAAAA,IAAQtnB,KAAM,gBAAiBs4B,EAAoBt4B,KAAKo4B,SAAW,IACnE9Q,EAAAA,GAAAA,IAAQtnB,KAAM,oBAAqBs4B,EACvC,EAIAK,KAAAA,GACIrR,EAAAA,GAAAA,IAAQtnB,KAAM,WAAY,IAC1BsnB,EAAAA,GAAAA,IAAQtnB,KAAM,gBAAiB,IAC/BsnB,EAAAA,GAAAA,IAAQtnB,KAAM,oBAAqB,KACvC,KC5BR,IAAI44B,GACG,MAAMC,GAAmB,WAQ5B,OANAD,IAAWE,EAAAA,GAAAA,MACG3O,EAAAA,EAAAA,IAAY,WAAY,CAClClO,MAAOA,KAAA,CACH8D,MAAO6Y,GAAS7Y,SAGjBmK,IAAM5nB,UACjB,ECHA,SAASwG,GAAU1D,GAEf,OAAIA,aAAiB8V,KACV9V,EAAM2zB,cAEVnuB,OAAOxF,EAClB,qDCFO,MAAM4zB,WAAkBC,KAG3B1U,WAAAA,CAAYvjB,GAAqB,IAAfk4B,EAAQ52B,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,aACzB62B,MAAM,GAAIn4B,EAAM,CAAE+M,KAAM,2BAH5B,gaAII/N,KAAKo5B,UAAYF,CACrB,CACA,YAAIA,CAASA,GACTl5B,KAAKo5B,UAAYF,CACrB,CACA,YAAIA,GACA,OAAOl5B,KAAKo5B,SAChB,CACA,QAAIjQ,GACA,OAAOnpB,KAAKq5B,sBAAsBr5B,KACtC,CACA,gBAAIs5B,GACA,OAA8B,IAA1Bt5B,KAAKo5B,UAAU13B,OACRwZ,KAAKD,MAETjb,KAAKu5B,uBAAuBv5B,KACvC,CAMAu5B,sBAAAA,CAAuBC,GACnB,OAAOA,EAAUN,SAAStwB,QAAO,CAACiuB,EAAK4C,IAC5BA,EAAKH,aAAezC,EAIrB4C,EAAKH,aACLzC,GACP,EACP,CAKAwC,qBAAAA,CAAsBG,GAClB,OAAOA,EAAUN,SAAStwB,QAAO,CAACiuB,EAAK6C,IAI5B7C,EAAM6C,EAAMvQ,MACpB,EACP,EAMG,MAAMwQ,GAAeC,UAExB,GAAIF,EAAMG,OACN,OAAO,IAAIjT,SAAQ,CAAC7Q,EAASuN,KACzBoW,EAAMD,KAAK1jB,EAASuN,EAAO,IAInC2L,GAAO+E,MAAM,+BAAgC,CAAE0F,MAAOA,EAAM14B,OAC5D,MAAMw4B,EAAYE,EACZrzB,QAAgByzB,GAAcN,GAC9BN,SAAkBtS,QAAQmT,IAAI1zB,EAAQS,IAAI6yB,MAAgBtxB,OAChE,OAAO,IAAI2wB,GAAUQ,EAAUx4B,KAAMk4B,EAAS,EAM5CY,GAAiBN,IACnB,MAAMQ,EAAYR,EAAUS,eAC5B,OAAO,IAAIrT,SAAQ,CAAC7Q,EAASuN,KACzB,MAAMjd,EAAU,GACV6zB,EAAaA,KACfF,EAAUG,aAAaC,IACfA,EAAQ14B,QACR2E,EAAQ7F,QAAQ45B,GAChBF,KAGAnkB,EAAQ1P,EACZ,IACAkZ,IACA+D,EAAO/D,EAAM,GACf,EAEN2a,GAAY,GACd,EAEOG,GAA6BT,UACtC,MAAMU,GAAYC,EAAAA,EAAAA,MAElB,UADwBD,EAAUE,OAAOze,GACzB,CACZkT,GAAO+E,MAAM,wCAAyC,CAAEjY,uBAClDue,EAAUG,gBAAgB1e,EAAc,CAAE2e,WAAW,IAC3D,MAAMC,QAAaL,EAAUK,KAAK5e,EAAc,CAAE6e,SAAS,EAAMxsB,MAAMysB,EAAAA,EAAAA,SACvE/4B,EAAAA,GAAAA,IAAK,sBAAsBg5B,EAAAA,EAAAA,IAAgBH,EAAKvsB,MACpD,GAES2sB,GAAkBnB,MAAOvD,EAAO2E,EAAa9B,KACtD,IAEI,MAAM+B,EAAY5E,EAAM/sB,QAAQmwB,GACrBP,EAAS3F,MAAMwC,GAASA,EAAKmF,YAAczB,aAAgBR,KAAOQ,EAAKz4B,KAAOy4B,EAAKyB,cAC3F5xB,OAAOT,SAEJsyB,EAAU9E,EAAM/sB,QAAQmwB,IAClBwB,EAAUlzB,SAAS0xB,MAGzB,SAAErB,EAAQ,QAAEgD,SAAkBC,EAAAA,GAAAA,GAAmBL,EAAY/uB,KAAMgvB,EAAW/B,GAGpF,OAFAjK,GAAO+E,MAAM,sBAAuB,CAAEmH,UAAS/C,WAAUgD,YAEjC,IAApBhD,EAAS12B,QAAmC,IAAnB05B,EAAQ15B,SAEjC45B,EAAAA,GAAAA,KAASzN,EAAAA,GAAAA,IAAE,QAAS,iCACpBoB,GAAOsM,KAAK,wCACL,IAGJ,IAAIJ,KAAY/C,KAAagD,EACxC,CACA,MAAO7b,GACH8C,GAAQ9C,MAAMA,IAEd2P,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,qBACrBoB,GAAO1P,MAAM,4BACjB,CACA,MAAO,EAAE,+DCvHb,IAAIQ,GAIG,MAAMyb,GAAWA,KACfzb,KACDA,GAAQ,IAAI0b,GAAAA,EAAO,CAAEC,YAAa,KAE/B3b,IAEJ,IAAI4b,IACX,SAAWA,GACPA,EAAqB,KAAI,OACzBA,EAAqB,KAAI,OACzBA,EAA6B,aAAI,cACpC,CAJD,CAIGA,KAAmBA,GAAiB,CAAC,IACjC,MAAMC,GAAWpG,GAE2B,IADzBA,EAAM5sB,QAAO,CAACgnB,EAAKmG,IAAStT,KAAKmN,IAAIA,EAAKmG,EAAKH,cAAcC,EAAAA,GAAWgG,KACtEhG,EAAAA,GAAWiG,QAQ1BC,GAAWvG,GANIA,IACjBA,EAAMtoB,OAAM6oB,IAAQ,IAAAiG,EAAAC,EAEvB,OADwBzoB,KAAK/L,MAA2C,QAAtCu0B,EAAgB,QAAhBC,EAAClG,EAAKmG,kBAAU,IAAAD,OAAA,EAAfA,EAAkB,2BAAmB,IAAAD,EAAAA,EAAI,MACpDG,MAAKC,GAAiC,gBAApBA,EAAUC,QAAiD,IAAtBD,EAAU7G,SAAuC,aAAlB6G,EAAUx3B,KAAmB,IAMxI03B,CAAY9G,kCC9BhB,MAAM+G,GAAW,UAAHl7B,OAA6B,QAA7B4vB,IAAaQ,EAAAA,EAAAA,aAAgB,IAAAR,QAAA,EAAhBA,GAAkBS,KACvC8K,IAAiBhL,EAAAA,EAAAA,IAAkB,MAAQ+K,ICJ3CE,GAAW,SAAUhyB,GAC9B,OAAOA,EAAIhH,MAAM,IAAImF,QAAO,SAAUjC,EAAGC,GAErC,OADAD,GAAMA,GAAK,GAAKA,EAAKC,EAAEnB,WAAW,IACvBkB,CACf,GAAG,EACP,ECnBM+1B,GFmBmB,WAA8B,IAA7BC,EAAOr6B,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAGk6B,GAChC,MAAME,GAASE,EAAAA,GAAAA,IAAaD,GAEtBE,EAAc15B,IAChBu5B,SAAAA,EAAQG,WAAW,CAEf,mBAAoB,iBAEpBC,aAAc35B,QAAAA,EAAS,IACzB,EAsBN,OAnBA45B,EAAAA,EAAAA,IAAqBF,GACrBA,GAAWG,EAAAA,EAAAA,QAMKC,EAAAA,GAAAA,MAIRC,MAAM,SAAS,CAAC1zB,EAAKxD,KACzB,MAAMm3B,EAAUn3B,EAAQm3B,QAKxB,OAJIA,SAAAA,EAASC,SACTp3B,EAAQo3B,OAASD,EAAQC,cAClBD,EAAQC,QAEZC,MAAM7zB,EAAKxD,EAAQ,IAEvB02B,CACX,CEnDeY,GACFC,GAAe,SAAUxH,GAAM,IAAA9E,EACxC,MAAMuM,EAAyB,QAAnBvM,GAAGQ,EAAAA,EAAAA,aAAgB,IAAAR,OAAA,EAAhBA,EAAkBS,IACjC,IAAK8L,EACD,MAAM,IAAIhe,MAAM,oBAEpB,MAAM1R,EAAQioB,EAAKjoB,MACb8nB,GAAc6H,EAAAA,EAAAA,IAAoB3vB,aAAK,EAALA,EAAO8nB,aACzC8H,GAAS5vB,EAAM,aAAe0vB,GAAQ93B,WACtC4L,GAASkgB,EAAAA,EAAAA,IAAkB,MAAQ+K,GAAWxG,EAAK4H,UAInDC,EAAW,CACbpK,IAJO1lB,aAAK,EAALA,EAAOooB,QAAS,EACrBuG,GAASnrB,IACTxD,aAAK,EAALA,EAAOooB,SAAU,EAGnB5kB,SACAusB,MAAO,IAAI3iB,KAAK6a,EAAK+H,SACrBC,KAAMhI,EAAKgI,MAAQ,2BACnB5U,MAAMrb,aAAK,EAALA,EAAOqb,OAAQ,EACrByM,cACA8H,QACAhI,KAAM6G,GACNL,WAAY,IACLnG,KACAjoB,EACHkwB,WAAYlwB,aAAK,EAALA,EAAQ,eACpBmwB,QAAQnwB,aAAK,EAALA,EAAOooB,QAAS,IAIhC,cADO0H,EAAS1B,WAAWpuB,MACN,SAAdioB,EAAKhoB,KACN,IAAIkrB,EAAAA,GAAK2E,GACT,IAAI9F,EAAAA,GAAO8F,EACrB,EACaM,GAAc,WAAgB,IAAfjyB,EAAI3J,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,IAC/B,MAAM67B,EAAa,IAAIC,gBACjBC,GAAkBxD,EAAAA,EAAAA,MACxB,OAAO,IAAIyD,GAAAA,mBAAkB1E,MAAO7jB,EAASuN,EAAQib,KACjDA,GAAS,IAAMJ,EAAW/b,UAC1B,IACI,MAAMoc,QAAyB9B,GAAO+B,qBAAqBxyB,EAAM,CAC7D2uB,SAAS,EACTxsB,KAAMiwB,EACNK,aAAa,EACbC,OAAQR,EAAWQ,SAEjBjJ,EAAO8I,EAAiBpwB,KAAK,GAC7B8qB,EAAWsF,EAAiBpwB,KAAKjN,MAAM,GAC7C,GAAIu0B,EAAKiI,WAAa1xB,EAClB,MAAM,IAAIuT,MAAM,2CAEpBzJ,EAAQ,CACJ6oB,OAAQrB,GAAa7H,GACrBwD,SAAUA,EAASpyB,KAAIpC,IACnB,IACI,OAAO64B,GAAa74B,EACxB,CACA,MAAO6a,GAEH,OADA0P,GAAO1P,MAAM,0BAADle,OAA2BqD,EAAOw2B,SAAQ,KAAK,CAAE3b,UACtD,IACX,KACDjW,OAAOT,UAElB,CACA,MAAO0W,GACH+D,EAAO/D,EACX,IAER,ECTasf,GAAiBrJ,IAC1B,MAAMsJ,EAAYtJ,EAAMlsB,QAAOysB,GAAQA,EAAKhoB,OAAS8pB,EAAAA,GAASoB,OAAMv3B,OAC9Dq9B,EAAcvJ,EAAMlsB,QAAOysB,GAAQA,EAAKhoB,OAAS8pB,EAAAA,GAASC,SAAQp2B,OACxE,OAAkB,IAAdo9B,GACOla,EAAAA,GAAAA,IAAE,QAAS,uBAAwB,wBAAyBma,EAAa,CAAEA,gBAE7D,IAAhBA,GACEna,EAAAA,GAAAA,IAAE,QAAS,mBAAoB,oBAAqBka,EAAW,CAAEA,cAE1D,IAAdA,GACOla,EAAAA,GAAAA,IAAE,QAAS,kCAAmC,mCAAoCma,EAAa,CAAEA,gBAExF,IAAhBA,GACOna,EAAAA,GAAAA,IAAE,QAAS,gCAAiC,iCAAkCka,EAAW,CAAEA,eAE/FjR,EAAAA,GAAAA,IAAE,QAAS,8CAA+C,CAAEiR,YAAWC,eAAc,ECvC1FC,GAAqBxJ,GACnBoG,GAAQpG,GACJuG,GAAQvG,GACDmG,GAAesD,aAEnBtD,GAAeuD,KAGnBvD,GAAewD,KAWbC,GAAuBxF,eAAO7D,EAAMiF,EAAaoC,GAA8B,IAAtBiC,EAAS/8B,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,IAAAA,UAAA,GAC3E,IAAK04B,EACD,OAEJ,GAAIA,EAAYjtB,OAAS8pB,EAAAA,GAASC,OAC9B,MAAM,IAAItY,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,gCAG/B,GAAIuP,IAAWzB,GAAeuD,MAAQnJ,EAAKgC,UAAYiD,EAAY/uB,KAC/D,MAAM,IAAIuT,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,kDAa/B,GAAI,GAAAxsB,OAAG25B,EAAY/uB,KAAI,KAAI0pB,WAAW,GAADt0B,OAAI00B,EAAK9pB,KAAI,MAC9C,MAAM,IAAIuT,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,4EAG/BvG,EAAAA,GAAAA,IAAQyO,EAAM,SAAUuJ,EAAAA,GAAWC,SACnC,MAAMxf,EAAQyb,KACd,aAAazb,EAAMyf,KAAI5F,UACnB,MAAM6F,EAAcv2B,GACF,IAAVA,GACO2kB,EAAAA,GAAAA,IAAE,QAAS,WAEfA,EAAAA,GAAAA,IAAE,QAAS,iBAAarrB,EAAW0G,GAE9C,IACI,MAAMwzB,GAASnC,EAAAA,EAAAA,MACTmF,GAAc/7B,EAAAA,GAAAA,MAAKg8B,EAAAA,GAAa5J,EAAK9pB,MACrC2zB,GAAkBj8B,EAAAA,GAAAA,MAAKg8B,EAAAA,GAAa3E,EAAY/uB,MACtD,GAAImxB,IAAWzB,GAAewD,KAAM,CAChC,IAAI1oB,EAASsf,EAAKmF,SAElB,IAAKmE,EAAW,CACZ,MAAMQ,QAAmBnD,EAAO+B,qBAAqBmB,GACrDnpB,EDvES,SAACzV,EAAM8+B,GAChC,MAAMxsB,EAAO,CACTysB,OAASnb,GAAC,IAAAvjB,OAASujB,EAAC,KACpBob,qBAAqB,KAH0B19B,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,CAAC,GAMvD,IAAI29B,EAAUj/B,EACVQ,EAAI,EACR,KAAOs+B,EAAW/3B,SAASk4B,IAAU,CACjC,MAAMC,EAAM5sB,EAAK0sB,oBAAsB,IAAKG,EAAAA,GAAAA,SAAQn/B,GAC9CwP,GAAO0qB,EAAAA,GAAAA,UAASl6B,EAAMk/B,GAC5BD,EAAU,GAAH5+B,OAAMmP,EAAI,KAAAnP,OAAIiS,EAAKysB,OAAOv+B,MAAIH,OAAG6+B,EAC5C,CACA,OAAOD,CACX,CCyD6BG,CAAcrK,EAAKmF,SAAU2E,EAAW/4B,KAAK8d,GAAMA,EAAEsW,WAAW,CACrE6E,OAAQN,EACRO,oBAAqBjK,EAAKhoB,OAAS8pB,EAAAA,GAASC,QAEpD,CAGA,SAFM4E,EAAO2D,SAASX,GAAa/7B,EAAAA,GAAAA,MAAKi8B,EAAiBnpB,IAErDsf,EAAKgC,UAAYiD,EAAY/uB,KAAM,CACnC,MAAM,KAAEmC,SAAesuB,EAAO/B,MAAKh3B,EAAAA,GAAAA,MAAKi8B,EAAiBnpB,GAAS,CAC9DmkB,SAAS,EACTxsB,MAAMysB,EAAAA,EAAAA,SAEV/4B,EAAAA,GAAAA,IAAK,sBAAsBg5B,EAAAA,EAAAA,IAAgB1sB,GAC/C,CACJ,KACK,CAED,MAAMyxB,QAAmB3B,GAAYlD,EAAY/uB,MACjD,IAAIq0B,EAAAA,GAAAA,GAAY,CAACvK,GAAO8J,EAAW3G,UAC/B,IAEI,MAAM,SAAEd,EAAQ,QAAEgD,SAAkBC,EAAAA,GAAAA,GAAmBL,EAAY/uB,KAAM,CAAC8pB,GAAO8J,EAAW3G,UAG5F,IAAKd,EAAS12B,SAAW05B,EAAQ15B,OAG7B,aAFMg7B,EAAO6D,WAAWb,QACxB59B,EAAAA,GAAAA,IAAK,qBAAsBi0B,EAGnC,CACA,MAAOxW,GAGH,YADA2P,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,kBAEzB,OAIE6O,EAAO8D,SAASd,GAAa/7B,EAAAA,GAAAA,MAAKi8B,EAAiB7J,EAAKmF,YAG9Dp5B,EAAAA,GAAAA,IAAK,qBAAsBi0B,EAC/B,CACJ,CACA,MAAOxW,GACH,GAAIA,aAAiBkhB,GAAAA,GAAY,KAAAC,EAAAC,EAAAC,EAC7B,GAAgC,OAA5BrhB,SAAe,QAAVmhB,EAALnhB,EAAOyP,gBAAQ,IAAA0R,OAAA,EAAfA,EAAiBG,QACjB,MAAM,IAAIrhB,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,kEAE1B,GAAgC,OAA5BtO,SAAe,QAAVohB,EAALphB,EAAOyP,gBAAQ,IAAA2R,OAAA,EAAfA,EAAiBE,QACtB,MAAM,IAAIrhB,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,yBAE1B,GAAgC,OAA5BtO,SAAe,QAAVqhB,EAALrhB,EAAOyP,gBAAQ,IAAA4R,OAAA,EAAfA,EAAiBC,QACtB,MAAM,IAAIrhB,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,oCAE1B,GAAItO,EAAMD,QACX,MAAM,IAAIE,MAAMD,EAAMD,QAE9B,CAEA,MADA2P,GAAO+E,MAAMzU,GACP,IAAIC,KACd,CAAC,QAEG8H,EAAAA,GAAAA,IAAQyO,EAAM,cAAUvzB,EAC5B,IAER,EAQMs+B,GAA0BlH,eAAO1E,GAA6B,IAArBN,EAAGtyB,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,IAAKkzB,EAAKlzB,UAAAZ,OAAA,EAAAY,UAAA,QAAAE,EAC3D,MAAMu+B,EAAUvL,EAAM1uB,KAAIivB,GAAQA,EAAKG,SAAQ5sB,OAAOT,SAChDm4B,GAAaC,EAAAA,GAAAA,KAAqBpT,EAAAA,GAAAA,IAAE,QAAS,uBAC9CqT,kBAAiB,GACjBC,WAAWvc,GAEmC,IAAvCA,EAAEgR,YAAcC,EAAAA,GAAWuL,UAE3BL,EAAQh5B,SAAS6c,EAAEsR,UAE1BmL,kBAAkB,IAClBC,gBAAe,GACfC,QAAQ3M,GACb,OAAO,IAAIhO,SAAQ,CAAC7Q,EAASuN,KACzB0d,EAAWQ,kBAAiB,CAACC,EAAYx1B,KACrC,MAAMy1B,EAAU,GACVjrB,GAASykB,EAAAA,GAAAA,UAASjvB,GAClB01B,EAAWnM,EAAM1uB,KAAIivB,GAAQA,EAAKgC,UAClCT,EAAQ9B,EAAM1uB,KAAIivB,GAAQA,EAAK9pB,OAerC,OAdIipB,IAAWyG,GAAewD,MAAQjK,IAAWyG,GAAesD,cAC5DyC,EAAQlhC,KAAK,CACTohC,MAAOnrB,GAASoX,EAAAA,GAAAA,IAAE,QAAS,mBAAoB,CAAEpX,eAAUjU,EAAW,CAAEq/B,QAAQ,EAAOC,UAAU,KAAWjU,EAAAA,GAAAA,IAAE,QAAS,QACvH9f,KAAM,UACNknB,KAAM8M,GACN,cAAMtW,CAASuP,GACXjlB,EAAQ,CACJilB,YAAaA,EAAY,GACzB9F,OAAQyG,GAAewD,MAE/B,IAIJwC,EAAS55B,SAASkE,IAIlBqrB,EAAMvvB,SAASkE,IAIfipB,IAAWyG,GAAeuD,MAAQhK,IAAWyG,GAAesD,cAC5DyC,EAAQlhC,KAAK,CACTohC,MAAOnrB,GAASoX,EAAAA,GAAAA,IAAE,QAAS,mBAAoB,CAAEpX,eAAUjU,EAAW,CAAEq/B,QAAQ,EAAOC,UAAU,KAAWjU,EAAAA,GAAAA,IAAE,QAAS,QACvH9f,KAAMmnB,IAAWyG,GAAeuD,KAAO,UAAY,YACnDjK,KAAM+M,GACN,cAAMvW,CAASuP,GACXjlB,EAAQ,CACJilB,YAAaA,EAAY,GACzB9F,OAAQyG,GAAeuD,MAE/B,IAhBGwC,CAmBG,IAEHV,EAAW1V,QACnBphB,OAAOgT,OAAOqC,IACjB0P,GAAO+E,MAAMzU,GACTA,aAAiB0iB,GAAAA,GACjB3e,EAAO,IAAI9D,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,sCAG5BvK,EAAO,IAAI9D,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,kCAChC,GACF,GAEV,EACsB,IAAIsH,EAAAA,GAAW,CACjC3B,GAAI,YACJ4B,WAAAA,CAAYI,GACR,OAAQwJ,GAAkBxJ,IACtB,KAAKmG,GAAeuD,KAChB,OAAOrR,EAAAA,GAAAA,IAAE,QAAS,QACtB,KAAK8N,GAAewD,KAChB,OAAOtR,EAAAA,GAAAA,IAAE,QAAS,QACtB,KAAK8N,GAAesD,aAChB,OAAOpR,EAAAA,GAAAA,IAAE,QAAS,gBAE9B,EACAwH,cAAeA,IAAM2M,GACrBzM,QAAQC,KAECA,EAAMtoB,OAAM6oB,IAAI,IAAAmM,EAAA,OAAa,QAAbA,EAAInM,EAAKL,YAAI,IAAAwM,OAAA,EAATA,EAAWvM,WAAW,UAAU,KAGlDH,EAAM9zB,OAAS,IAAMk6B,GAAQpG,IAAUuG,GAAQvG,IAE1D,UAAMpvB,CAAK2vB,EAAMhN,EAAM6L,GACnB,MAAMM,EAAS8J,GAAkB,CAACjJ,IAClC,IAAIrxB,EACJ,IACIA,QAAeo8B,GAAwB5L,EAAQN,EAAK,CAACmB,GACzD,CACA,MAAOjqB,GAEH,OADAmjB,GAAO1P,MAAMzT,IACN,CACX,CACA,IAEI,aADMszB,GAAqBrJ,EAAMrxB,EAAOs2B,YAAat2B,EAAOwwB,SACrD,CACX,CACA,MAAO3V,GACH,SAAIA,aAAiBC,OAAWD,EAAMD,YAClC4P,EAAAA,GAAAA,IAAU3P,EAAMD,SAET,KAGf,CACJ,EACA,eAAM6iB,CAAU3M,EAAOzM,EAAM6L,GACzB,MAAMM,EAAS8J,GAAkBxJ,GAC3B9wB,QAAeo8B,GAAwB5L,EAAQN,EAAKY,GACpD4M,EAAW5M,EAAM1uB,KAAI8yB,UACvB,IAEI,aADMwF,GAAqBrJ,EAAMrxB,EAAOs2B,YAAat2B,EAAOwwB,SACrD,CACX,CACA,MAAO3V,GAEH,OADA0P,GAAO1P,MAAM,aAADle,OAAcqD,EAAOwwB,OAAM,SAAS,CAAEa,OAAMxW,WACjD,CACX,KAKJ,aAAaqH,QAAQmT,IAAIqI,EAC7B,EACAzO,MAAO,qBC1QJ,MAAM0O,GAAyBzI,UAIlC,MAAMvzB,EAAUi8B,EACXh5B,QAAQpB,GACS,SAAdA,EAAKq6B,OACLtT,GAAO+E,MAAM,wBAAyB,CAAEuO,KAAMr6B,EAAKq6B,KAAMx0B,KAAM7F,EAAK6F,QAC7D,KAGZjH,KAAKoB,IAAS,IAAAgjB,EAAAsX,EAAAC,EAAAC,EAEb,OACiC,QADjCxX,EAA2B,QAA3BsX,EAAOt6B,SAAgB,QAAZu6B,EAAJv6B,EAAMy6B,kBAAU,IAAAF,OAAA,EAAhBA,EAAAvhC,KAAAgH,UAAoB,IAAAs6B,EAAAA,EACpBt6B,SAAsB,QAAlBw6B,EAAJx6B,EAAM06B,wBAAgB,IAAAF,OAAA,EAAtBA,EAAAxhC,KAAAgH,UAA0B,IAAAgjB,EAAAA,EAC1BhjB,CAAI,IAEf,IAAI26B,GAAS,EACb,MAAMC,EAAW,IAAI9J,GAAU,QAE/B,IAAK,MAAMU,KAASrzB,EAEhB,GAAIqzB,aAAiBqJ,iBAArB,CACI9T,GAAO+T,KAAK,+DACZ,MAAMvJ,EAAOC,EAAMuJ,YACnB,GAAa,OAATxJ,EAAe,CACfxK,GAAO+T,KAAK,qCAAsC,CAAEj1B,KAAM2rB,EAAM3rB,KAAMw0B,KAAM7I,EAAM6I,QAClFrT,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,oDACrB,QACJ,CAGA,GAAkB,yBAAd4L,EAAK1rB,OAAoC0rB,EAAK1rB,KAAM,CAC/C80B,IACD5T,GAAO+T,KAAK,8EACZE,EAAAA,GAAAA,KAAYrV,EAAAA,GAAAA,IAAE,QAAS,uFACvBgV,GAAS,GAEb,QACJ,CACAC,EAAS5J,SAAS14B,KAAKi5B,EAE3B,MAEA,IACIqJ,EAAS5J,SAAS14B,WAAWm5B,GAAaD,GAC9C,CACA,MAAOna,GAEH0P,GAAO1P,MAAM,mCAAoC,CAAEA,SACvD,CAEJ,OAAOujB,CAAQ,EAENK,GAAsBvJ,MAAOlE,EAAMsF,EAAa9B,KACzD,MAAMN,GAAWE,EAAAA,GAAAA,KAKjB,SAHUwH,EAAAA,GAAAA,GAAY5K,EAAKwD,SAAUA,KACjCxD,EAAKwD,eAAiB6B,GAAgBrF,EAAKwD,SAAU8B,EAAa9B,IAEzC,IAAzBxD,EAAKwD,SAASx3B,OAGd,OAFAutB,GAAOsM,KAAK,qBAAsB,CAAE7F,UACpC4F,EAAAA,GAAAA,KAASzN,EAAAA,GAAAA,IAAE,QAAS,uBACb,GAGXoB,GAAO+E,MAAM,sBAAD3yB,OAAuB25B,EAAY/uB,MAAQ,CAAEypB,OAAMwD,SAAUxD,EAAKwD,WAC9E,MAAMnZ,EAAQ,GACRqjB,EAA0BxJ,MAAOJ,EAAWvtB,KAC9C,IAAK,MAAMwtB,KAAQD,EAAUN,SAAU,CAGnC,MAAMmK,GAAe1/B,EAAAA,GAAAA,MAAKsI,EAAMwtB,EAAKz4B,MAGrC,GAAIy4B,aAAgBT,GAApB,CACI,MAAMjd,GAAeunB,EAAAA,GAAAA,IAAU3D,EAAAA,GAAa3E,EAAY/uB,KAAMo3B,GAC9D,IACIhhB,GAAQ2R,MAAM,uBAAwB,CAAEqP,uBAClChJ,GAA2Bte,SAC3BqnB,EAAwB3J,EAAM4J,EACxC,CACA,MAAO9jB,IACH2P,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,6CAA8C,CAAE2L,UAAWC,EAAKz4B,QACrFiuB,GAAO1P,MAAM,GAAI,CAAEA,QAAOxD,eAAcyd,UAAWC,GACvD,CAEJ,MAEAxK,GAAO+E,MAAM,sBAAuBrwB,EAAAA,GAAAA,MAAKq3B,EAAY/uB,KAAMo3B,GAAe,CAAE5J,SAE5E1Z,EAAMvf,KAAKo4B,EAAS2K,OAAOF,EAAc5J,EAAMuB,EAAY1pB,QAC/D,GAIJsnB,EAAS4K,cAGHJ,EAAwB1N,EAAM,KACpCkD,EAAS6K,QAET,MAEMC,SAFgB9c,QAAQ+c,WAAW5jB,IAElBzW,QAAO5E,GAA4B,aAAlBA,EAAOm8B,SAC/C,OAAI6C,EAAOhiC,OAAS,GAChButB,GAAO1P,MAAM,8BAA+B,CAAEmkB,YAC9CxU,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,qCACd,KAEXoB,GAAO+E,MAAM,gCACbxB,EAAAA,GAAAA,KAAY3E,EAAAA,GAAAA,IAAE,QAAS,gCAChBjH,QAAQmT,IAAIha,GAAM,EAEhB6jB,GAAsBhK,eAAOpE,EAAOwF,EAAa9B,GAA6B,IAAnB2K,EAAMvhC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,IAAAA,UAAA,GAC1E,MAAMyd,EAAQ,GAKd,SAHUugB,EAAAA,GAAAA,GAAY9K,EAAO0D,KACzB1D,QAAcuF,GAAgBvF,EAAOwF,EAAa9B,IAEjC,IAAjB1D,EAAM9zB,OAGN,OAFAutB,GAAOsM,KAAK,sBAAuB,CAAE/F,eACrC8F,EAAAA,GAAAA,KAASzN,EAAAA,GAAAA,IAAE,QAAS,wBAGxB,IAAK,MAAMkI,KAAQP,EACflO,EAAAA,GAAAA,IAAQyO,EAAM,SAAUuJ,EAAAA,GAAWC,SAEnCxf,EAAMvf,KAAK4+B,GAAqBrJ,EAAMiF,EAAa6I,EAASlI,GAAewD,KAAOxD,GAAeuD,OAGrG,MAAM9E,QAAgBxT,QAAQ+c,WAAW5jB,GACzCyV,EAAMzqB,SAAQgrB,GAAQzO,EAAAA,GAAAA,IAAQyO,EAAM,cAAUvzB,KAE9C,MAAMkhC,EAAStJ,EAAQ9wB,QAAO5E,GAA4B,aAAlBA,EAAOm8B,SAC/C,GAAI6C,EAAOhiC,OAAS,EAGhB,OAFAutB,GAAO1P,MAAM,sCAAuC,CAAEmkB,gBACtDxU,EAAAA,GAAAA,IAAU2U,GAAShW,EAAAA,GAAAA,IAAE,QAAS,mCAAoCA,EAAAA,GAAAA,IAAE,QAAS,kCAGjFoB,GAAO+E,MAAM,+BACbxB,EAAAA,GAAAA,IAAYqR,GAAShW,EAAAA,GAAAA,IAAE,QAAS,8BAA+BA,EAAAA,GAAAA,IAAE,QAAS,4BAC9E,ECjKaiW,IAAsB3Z,EAAAA,EAAAA,IAAY,WAAY,CACvDlO,MAAOA,KAAA,CACH8nB,SAAU,KAEdzZ,QAAS,CAILiO,GAAAA,GAAoB,IAAhBC,EAASl2B,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,GACZglB,EAAAA,GAAAA,IAAQtnB,KAAM,WAAYw4B,EAC9B,EAIAG,KAAAA,GACIrR,EAAAA,GAAAA,IAAQtnB,KAAM,WAAY,GAC9B,KCjBR,GAAesnB,EAAAA,GAAIld,OAAO,CACtBgE,KAAIA,KACO,CACH41B,eAAgB,OAGxB9V,OAAAA,GAAU,IAAA+V,EACN,MAAMC,EAAanmB,SAASE,cAAc,oBAC1Cje,KAAKgkC,eAAwC,QAA1BC,EAAGC,aAAU,EAAVA,EAAYC,mBAAW,IAAAF,EAAAA,EAAI,KACjDjkC,KAAKokC,gBAAkB,IAAIC,gBAAgBh+B,IACnCA,EAAQ3E,OAAS,GAAK2E,EAAQ,GAAGoQ,SAAWytB,IAC5ClkC,KAAKgkC,eAAiB39B,EAAQ,GAAGi+B,YAAYC,MACjD,IAEJvkC,KAAKokC,gBAAgBI,QAAQN,EACjC,EACAlS,aAAAA,GACIhyB,KAAKokC,gBAAgBK,YACzB,ICxCuP,ICiB5OC,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,cACNwC,WAAY,CACRmhC,cAAa,KACbC,aAAY,KACZ5R,iBAAgBA,GAAAA,GAEpB6R,OAAQ,CACJC,IAEJh3B,MAAO,CACH7B,KAAM,CACF8B,KAAMnD,OACNoD,QAAS,MAGjB+iB,MAAKA,KAMM,CACHgU,cANkBjB,KAOlBkB,WANe7O,KAOfkB,WANeD,KAOf6N,eANmB9M,KAOnB+M,cANkBrM,OAS1B1L,SAAU,CACNkG,WAAAA,GACI,OAAO,KAAKI,YAAYmE,MAC5B,EACAuN,IAAAA,GAC4BtO,MAIxB,MAAO,CAAC,OAFM,KAAK5qB,KAAKxI,MAAM,KAAK6F,OAAOT,SAAS/B,KAF3B+vB,EAE8C,IAFrCzxB,GAAWyxB,GAAG,GAAAx1B,OAAO+D,EAAK,OAIrC0B,KAAKmF,GAASA,EAAK1F,QAAQ,WAAY,QACjE,EACA6+B,QAAAA,GACI,OAAO,KAAKD,KAAKr+B,KAAI,CAAC8tB,EAAK1rB,KACvB,MAAMgtB,EAAS,KAAKmP,kBAAkBzQ,GAChCxf,EAAK,IAAK,KAAK5G,OAAQtC,OAAQ,CAAEgqB,UAAUxuB,MAAO,CAAEktB,QAC1D,MAAO,CACHA,MACApf,OAAO,EACPxU,KAAM,KAAKskC,kBAAkB1Q,GAC7Bxf,KAEAmwB,YAAar8B,IAAU,KAAKi8B,KAAKzjC,OAAS,EAC7C,GAET,EACA8jC,kBAAAA,GACI,OAA2C,IAApC,KAAKN,cAAcnlB,MAAMre,MACpC,EAEA+jC,qBAAAA,GAGI,OAAO,KAAKD,oBAAsB,KAAKxB,eAAiB,GAC5D,EAEA0B,QAAAA,GAAW,IAAAC,EAAAC,EACP,OAA6B,QAA7BD,EAAuB,QAAvBC,EAAO,KAAKvS,mBAAW,IAAAuS,OAAA,EAAhBA,EAAkB3Q,YAAI,IAAA0Q,EAAAA,4IACjC,EACAE,aAAAA,GACI,OAAO,KAAKZ,eAAe7M,QAC/B,EACA0N,aAAAA,GACI,OAAO,KAAKf,cAAchB,QAC9B,GAEJxV,QAAS,CACLwX,aAAAA,CAAcvS,GACV,OAAO,KAAKwR,WAAWzO,QAAQ/C,EACnC,EACA6R,iBAAAA,CAAkBp5B,GAAM,IAAA+5B,EACpB,OAAO,KAAK3O,WAAWE,QAAwB,QAAjByO,EAAC,KAAK3S,mBAAW,IAAA2S,OAAA,EAAhBA,EAAkBxS,GAAIvnB,EACzD,EACAq5B,iBAAAA,CAAkBr5B,GAAM,IAAAgwB,EACFgK,EAAlB,GAAa,MAATh6B,EACA,OAAuB,QAAhBg6B,EAAA,KAAKxS,mBAAW,IAAAwS,GAAQ,QAARA,EAAhBA,EAAkBrO,cAAM,IAAAqO,OAAA,EAAxBA,EAA0BjlC,QAAQ6sB,EAAAA,GAAAA,IAAE,QAAS,QAExD,MAAMqY,EAAS,KAAKb,kBAAkBp5B,GAChC8pB,EAAQmQ,EAAU,KAAKH,cAAcG,QAAU1jC,EACrD,OAAOuzB,SAAgB,QAAZkG,EAAJlG,EAAMmG,kBAAU,IAAAD,OAAA,EAAhBA,EAAkB7G,eAAe8F,EAAAA,GAAAA,UAASjvB,EACrD,EACAk6B,OAAAA,CAAQ/wB,GAAI,IAAAgxB,GACJhxB,SAAS,QAAPgxB,EAAFhxB,EAAI1N,aAAK,IAAA0+B,OAAA,EAATA,EAAWxR,OAAQ,KAAKpmB,OAAO9G,MAAMktB,KACrC,KAAKlL,MAAM,SAEnB,EACA2c,UAAAA,CAAWlmC,EAAO8L,GAEVA,IAAS,KAAKk5B,KAAK,KAAKA,KAAKzjC,OAAS,GAKtCvB,EAAM4X,QACN5X,EAAMmmC,aAAaC,WAAa,OAGhCpmC,EAAMmmC,aAAaC,WAAa,OARhCpmC,EAAMmmC,aAAaC,WAAa,MAUxC,EACA,YAAMC,CAAOrmC,EAAO8L,GAAM,IAAAw6B,EAAAC,EAAAC,EAEtB,KAAK,KAAKb,eAAoC,QAAnBW,EAACtmC,EAAMmmC,oBAAY,IAAAG,GAAO,QAAPA,EAAlBA,EAAoBnE,aAAK,IAAAmE,GAAzBA,EAA2B/kC,QACnD,OAKJvB,EAAMkY,iBAEN,MAAMmgB,EAAY,KAAKsN,cACjBxD,EAAQ,KAAsB,QAAlBoE,EAAAvmC,EAAMmmC,oBAAY,IAAAI,OAAA,EAAlBA,EAAoBpE,QAAS,IAGzCQ,QAAiBT,GAAuBC,GAExCpJ,QAAiC,QAAtByN,EAAM,KAAKtT,mBAAW,IAAAsT,OAAA,EAAhBA,EAAkBzI,YAAYjyB,IAC/C2yB,EAAS1F,aAAQ,EAARA,EAAU0F,OACzB,IAAKA,EAED,YADA1P,EAAAA,GAAAA,IAAU,KAAKrB,EAAE,QAAS,0CAG9B,MAAM+Y,EAAuD,IAA5ChI,EAAOhJ,YAAcC,EAAAA,GAAWuL,QAC3CyC,EAAS1jC,EAAM4X,QAGrB,IAAK6uB,GAA4B,IAAjBzmC,EAAM+X,OAClB,OAIJ,GAFA+W,GAAO+E,MAAM,UAAW,CAAE7zB,QAAOy+B,SAAQpG,YAAWsK,aAEhDA,EAAS5J,SAASx3B,OAAS,EAE3B,kBADMyhC,GAAoBL,EAAUlE,EAAQ1F,EAASA,UAIzD,MAAM1D,EAAQgD,EAAU1xB,KAAIovB,GAAU,KAAK8O,WAAWzO,QAAQL,WACxD0N,GAAoBpO,EAAOoJ,EAAQ1F,EAASA,SAAU2K,GAGxDrL,EAAU2D,MAAKjG,GAAU,KAAK2P,cAAc99B,SAASmuB,OACrDjH,GAAO+E,MAAM,gDACb,KAAKiR,eAAetM,QAE5B,EACAkO,eAAAA,CAAgB39B,EAAO49B,GAAS,IAAAC,EAC5B,OAAID,SAAW,QAAJC,EAAPD,EAAS1xB,UAAE,IAAA2xB,GAAO,QAAPA,EAAXA,EAAar/B,aAAK,IAAAq/B,OAAA,EAAlBA,EAAoBnS,OAAQ,KAAKpmB,OAAO9G,MAAMktB,KACvC/G,EAAAA,GAAAA,IAAE,QAAS,4BAEH,IAAV3kB,GACE2kB,EAAAA,GAAAA,IAAE,QAAS,8BAA+BiZ,GAE9C,IACX,EACAE,cAAAA,CAAeF,GAAS,IAAAG,EACpB,OAAIH,SAAW,QAAJG,EAAPH,EAAS1xB,UAAE,IAAA6xB,GAAO,QAAPA,EAAXA,EAAav/B,aAAK,IAAAu/B,OAAA,EAAlBA,EAAoBrS,OAAQ,KAAKpmB,OAAO9G,MAAMktB,KACvC/G,EAAAA,GAAAA,IAAE,QAAS,4BAEf,IACX,EACAA,EAACA,GAAAA,sBC/KL,GAAU,CAAC,EAEf,GAAQuB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,gBAAgB,CAACG,YAAY,0BAA0BzS,MAAM,CAAE,yCAA0CqS,EAAIqc,uBAAwBp1B,MAAM,CAAC,oCAAoC,GAAG,aAAa+Y,EAAIyE,EAAE,QAAS,2BAA2B6E,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,UAAU/E,GAAG,WAAW,MAAO,CAACupB,EAAI+d,GAAG,WAAW,EAAEvU,OAAM,IAAO,MAAK,IAAOxJ,EAAIqJ,GAAIrJ,EAAIgc,UAAU,SAAS0B,EAAQ59B,GAAO,OAAOmgB,EAAG,eAAeD,EAAIG,GAAG,CAAC3kB,IAAIkiC,EAAQlS,IAAIvkB,MAAM,CAAC,IAAM,OAAO,GAAKy2B,EAAQ1xB,GAAG,kBAA4B,IAAVlM,GAAekgB,EAAI4a,gBAAkB,IAAI,MAAQ5a,EAAIyd,gBAAgB39B,EAAO49B,GAAS,mBAAmB1d,EAAI4d,eAAeF,IAAUnkC,GAAG,CAAC,KAAO,SAAS8mB,GAAQ,OAAOL,EAAIod,OAAO/c,EAAQqd,EAAQlS,IAAI,GAAGwS,SAAS,CAAC,MAAQ,SAAS3d,GAAQ,OAAOL,EAAI+c,QAAQW,EAAQ1xB,GAAG,EAAE,SAAW,SAASqU,GAAQ,OAAOL,EAAIid,WAAW5c,EAAQqd,EAAQlS,IAAI,GAAGlC,YAAYtJ,EAAIuJ,GAAG,CAAY,IAAVzpB,EAAa,CAACtE,IAAI,OAAO/E,GAAG,WAAW,MAAO,CAACwpB,EAAG,mBAAmB,CAAChZ,MAAM,CAAC,KAAO,GAAG,IAAM+Y,EAAIsc,YAAY,EAAE9S,OAAM,GAAM,MAAM,MAAK,IAAO,eAAekU,GAAQ,GAAO,IAAG,EACjmC,GACsB,IEUpB,EACA,KACA,WACA,MAI8B,QCnBhC,gBCsBO,MAAMO,IAAsBld,EAAAA,EAAAA,IAAY,cAAe,CAC1DlO,MAAOA,KAAA,CACHqrB,OAAQ,SCDHC,GAAmB,WAC5B,MAMMC,GANQrd,EAAAA,EAAAA,IAAY,WAAY,CAClClO,MAAOA,KAAA,CACHwrB,kBAAcjlC,EACdy9B,QAAS,MAGK/V,IAAM5nB,WAS5B,OAPKklC,EAAcxc,gBACfC,EAAAA,GAAAA,IAAU,qBAAqB,SAAU8K,GACrCyR,EAAcC,aAAe1R,EAC7ByR,EAAcvH,QAAUlK,EAAKmF,QACjC,IACAsM,EAAcxc,cAAe,GAE1Bwc,CACX,kBCpBA,MCpB+G,GDoB/G,CACExmC,KAAM,mBACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,0CAA0CnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,gIAAgI,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UAClpB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,wBEbhC,SAAexC,EAAAA,GAAIld,OAAO,CACtBpJ,KAAM,qBACNwC,WAAY,CACRkkC,iBAAgB,GAChBC,WAAUA,GAAAA,GAEdv5B,KAAIA,KACO,CACHonB,MAAO,KAGfrI,SAAU,CACNya,YAAAA,GACI,OAA6B,IAAtB,KAAKpS,MAAM9zB,MACtB,EACAmmC,cAAAA,GACI,OAAO,KAAKD,cACL,KAAKpS,MAAM,GAAGznB,OAAS8pB,EAAAA,GAASC,MAC3C,EACA92B,IAAAA,GACI,OAAK,KAAKmoB,KAGV,GAAA9nB,OAAU,KAAKymC,QAAO,OAAAzmC,OAAM,KAAK8nB,MAFtB,KAAK2e,OAGpB,EACA3e,IAAAA,GACI,MAAM4e,EAAY,KAAKvS,MAAM5sB,QAAO,CAACo/B,EAAOjS,IAASiS,EAAQjS,EAAK5M,MAAQ,GAAG,GACvEA,EAAO8e,SAASF,EAAW,KAAO,EACxC,MAAoB,iBAAT5e,GAAqBA,EAAO,EAC5B,MAEJsE,EAAAA,EAAAA,IAAetE,GAAM,EAChC,EACA2e,OAAAA,GACI,GAAI,KAAKF,aAAc,KAAA3L,EACnB,MAAMlG,EAAO,KAAKP,MAAM,GACxB,OAAsB,QAAfyG,EAAAlG,EAAKmG,kBAAU,IAAAD,OAAA,EAAfA,EAAiB7G,cAAeW,EAAKmF,QAChD,CACA,OAAO2D,GAAc,KAAKrJ,MAC9B,GAEJjH,QAAS,CACL/D,MAAAA,CAAOgL,GACH,KAAKA,MAAQA,EACb,KAAK0S,MAAMC,WAAWC,kBAEtB5S,EAAMr0B,MAAM,EAAG,GAAG4J,SAAQgrB,IACtB,MAAMsS,EAAUtqB,SAASE,cAAa,mCAAA5c,OAAoC00B,EAAKG,OAAM,iCACjFmS,GACoB,KAAKH,MAAMC,WACnBpY,YAAYsY,EAAQC,WAAWC,WAAU,GACzD,IAEJ,KAAK3rB,WAAU,KACX,KAAK8M,MAAM,SAAU,KAAKoG,IAAI,GAEtC,KC7D0P,sBCW9P,GAAU,CAAC,EAEf,GAAQV,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IHTW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,MAAM,CAACG,YAAY,yBAAyB,CAACH,EAAG,OAAO,CAACG,YAAY,+BAA+B,CAACH,EAAG,OAAO,CAAC1c,IAAI,eAAeyc,EAAIQ,GAAG,KAAMR,EAAIye,eAAgBxe,EAAG,cAAcA,EAAG,qBAAqB,GAAGD,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAACG,YAAY,+BAA+B,CAACJ,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIpoB,UACvY,GACsB,IGUpB,EACA,KACA,KACA,MAI8B,QCjB1BwnC,GAAUlhB,EAAAA,GAAIld,OAAOq+B,IAC3B,IAAIJ,GC8BJ/gB,EAAAA,GAAIohB,UAAU,iBAAkBC,GAAAA,IAChC,UAAejE,EAAAA,EAAAA,IAAgB,CAC3B52B,MAAO,CACHwD,OAAQ,CACJvD,KAAM,CAAC+pB,EAAAA,GAAQ8Q,EAAAA,GAAQC,EAAAA,IACvBxzB,UAAU,GAEdmgB,MAAO,CACHznB,KAAMnM,MACNyT,UAAU,GAEd2uB,eAAgB,CACZj2B,KAAMlH,OACNmH,QAAS,IAGjBI,KAAIA,KACO,CACH06B,QAAS,GACTC,UAAU,EACVC,UAAU,IAGlB7b,SAAU,CACNkG,WAAAA,GACI,OAAOrzB,KAAKyzB,YAAYmE,MAC5B,EACAqR,UAAAA,GAAa,IAAA7V,EAET,QAAmB,QAAXA,EAAApzB,KAAKwO,cAAM,IAAA4kB,GAAO,QAAPA,EAAXA,EAAa1rB,aAAK,IAAA0rB,GAAK,QAALA,EAAlBA,EAAoBwB,WAAG,IAAAxB,OAAA,EAAvBA,EAAyB1tB,aAAc,KAAKa,QAAQ,WAAY,KAC5E,EACA2iC,aAAAA,GAAgB,IAAAC,EAAAC,EACZ,OAAyB,QAAlBD,EAAAnpC,KAAKwO,OAAOtC,cAAM,IAAAi9B,OAAA,EAAlBA,EAAoBjT,UAA2B,QAArBkT,EAAIppC,KAAKwO,OAAO9G,aAAK,IAAA0hC,OAAA,EAAjBA,EAAmBlT,SAAU,IACtE,EACAA,MAAAA,GAAS,IAAAmT,EACL,OAAkB,QAAlBA,EAAOrpC,KAAKsR,cAAM,IAAA+3B,OAAA,EAAXA,EAAanT,MACxB,EACAoT,QAAAA,GACI,OAAO7M,GAASz8B,KAAKsR,OAAOA,OAChC,EACAi4B,SAAAA,GACI,OAAOvpC,KAAKsR,OAAOuvB,SAAWvB,EAAAA,GAAWC,OAC7C,EACAiK,SAAAA,GAAY,IAAAC,EACR,OAA0B,QAA1BA,EAAIzpC,KAAKsR,OAAO4qB,kBAAU,IAAAuN,GAAtBA,EAAwBrU,aACjB+K,EAAAA,GAAAA,SAAQngC,KAAKsR,OAAO4qB,WAAW9G,aAEnCp1B,KAAKsR,OAAOk4B,WAAa,EACpC,EACApU,WAAAA,GACI,MAAM8K,EAAMlgC,KAAKwpC,UACXxoC,EAAQhB,KAAKsR,OAAO4qB,WAAW9G,aAC9Bp1B,KAAKsR,OAAO4pB,SAEnB,OAAQgF,EAAal/B,EAAKG,MAAM,EAAG,EAAI++B,EAAIx+B,QAA7BV,CAClB,EACA8kC,aAAAA,GACI,OAAO9lC,KAAK+kC,cAAchB,QAC9B,EACA8B,aAAAA,GACI,OAAO7lC,KAAKilC,eAAe7M,QAC/B,EACAsR,UAAAA,GACI,OAAO1pC,KAAKk2B,QAAUl2B,KAAK6lC,cAAc99B,SAAS/H,KAAKk2B,OAC3D,EACAyT,UAAAA,GACI,OAAO3pC,KAAKwnC,cAAcC,eAAiBznC,KAAKsR,MACpD,EACAs4B,qBAAAA,GACI,OAAO5pC,KAAK2pC,YAAc3pC,KAAKgkC,eAAiB,GACpD,EACA5sB,QAAAA,GAAW,IAAAyyB,EAAAC,EAAAC,EAAAC,EACP,OAAkB,QAAXH,EAAA7pC,KAAKk2B,cAAM,IAAA2T,GAAU,QAAVC,EAAXD,EAAankC,gBAAQ,IAAAokC,OAAA,EAArBA,EAAA5oC,KAAA2oC,OAAgD,QAAvBE,EAAK/pC,KAAKkpC,qBAAa,IAAAa,GAAU,QAAVC,EAAlBD,EAAoBrkC,gBAAQ,IAAAskC,OAAA,EAA5BA,EAAA9oC,KAAA6oC,GACzC,EACAE,OAAAA,GACI,GAAIjqC,KAAK2pC,WACL,OAAO,EAEX,MAAMM,EAAWlU,GACsC,KAA3CA,aAAI,EAAJA,EAAMH,aAAcC,EAAAA,GAAWiG,QAG3C,OAAI97B,KAAK6lC,cAAcnkC,OAAS,EACd1B,KAAK6lC,cAAc/+B,KAAIovB,GAAUl2B,KAAKglC,WAAWzO,QAAQL,KAC1DhpB,MAAM+8B,GAEhBA,EAAQjqC,KAAKsR,OACxB,EACAs1B,OAAAA,GACI,QAAI5mC,KAAKsR,OAAOvD,OAAS8pB,EAAAA,GAASC,QAI9B93B,KAAKk2B,QAAUl2B,KAAK8lC,cAAc/9B,SAAS/H,KAAKk2B,SAGK,IAAjDl2B,KAAKsR,OAAOskB,YAAcC,EAAAA,GAAWuL,QACjD,EACA8I,WAAY,CACR/jB,GAAAA,GACI,OAAOnmB,KAAKmqC,iBAAiB7C,SAAWtnC,KAAKspC,SAAS5jC,UAC1D,EACA6yB,GAAAA,CAAI+O,GAEA,GAAIA,EAAQ,KAAA8C,EAGR,MAAM1U,EAAe,QAAX0U,EAAGpqC,KAAK8vB,WAAG,IAAAsa,OAAA,EAARA,EAAUC,QAAQ,oBAC/B3U,EAAKlX,MAAM8rB,eAAe,iBAC1B5U,EAAKlX,MAAM8rB,eAAe,gBAC9B,CACAtqC,KAAKmqC,iBAAiB7C,OAASA,EAAStnC,KAAKspC,SAAS5jC,WAAa,IACvE,IAGRmuB,MAAO,CAKHviB,MAAAA,CAAO3K,EAAGC,GACFD,EAAE2K,SAAW1K,EAAE0K,QACftR,KAAKuqC,YAEb,GAEJvY,aAAAA,GACIhyB,KAAKuqC,YACT,EACAhc,QAAS,CACLgc,UAAAA,GAAa,IAAAC,EAAAC,EAETzqC,KAAK8oC,QAAU,GAEL,QAAV0B,EAAAxqC,KAAKkoC,aAAK,IAAAsC,GAAS,QAATA,EAAVA,EAAYnC,eAAO,IAAAmC,GAAO,QAAPC,EAAnBD,EAAqB7R,aAAK,IAAA8R,GAA1BA,EAAAvpC,KAAAspC,GAEAxqC,KAAKkqC,YAAa,CACtB,EAEAQ,YAAAA,CAAavqC,GAET,GAAIH,KAAKkqC,WACL,OAIJ,IAAKlqC,KAAKgpC,SAAU,KAAA2B,EAEhB,MAAMjV,EAAe,QAAXiV,EAAG3qC,KAAK8vB,WAAG,IAAA6a,OAAA,EAARA,EAAUN,QAAQ,oBACzB/F,EAAc5O,EAAKtX,wBAGzBsX,EAAKlX,MAAMosB,YAAY,gBAAiBnoB,KAAKD,IAAI,EAAGriB,EAAM0qC,QAAUvG,EAAY1gC,KAAO,KAAO,MAC9F8xB,EAAKlX,MAAMosB,YAAY,gBAAiBnoB,KAAKD,IAAI,EAAGriB,EAAM2qC,QAAUxG,EAAYhmB,KAAO,KAC3F,CAEA,MAAMysB,EAAwB/qC,KAAK6lC,cAAcnkC,OAAS,EAC1D1B,KAAKmqC,iBAAiB7C,OAAStnC,KAAK0pC,YAAcqB,EAAwB,SAAW/qC,KAAKspC,SAAS5jC,WAEnGvF,EAAMkY,iBACNlY,EAAMuvB,iBACV,EACAsb,iBAAAA,CAAkB7qC,GACd,GAAIA,EAAM4X,SAAW5X,EAAM0X,QAGvB,OAFA1X,EAAMkY,iBACNG,OAAOsY,MAAKhI,EAAAA,EAAAA,IAAY,cAAe,CAAEod,OAAQlmC,KAAKk2B,WAC/C,EAEXl2B,KAAKkoC,MAAM5d,QAAQ0gB,kBAAkB7qC,EACzC,EACA8qC,sBAAAA,CAAuB9qC,GAAO,IAAA+qC,EAC1B/qC,EAAMkY,iBACNlY,EAAMuvB,kBACFyb,UAAsB,QAATD,EAAbC,GAAe5V,eAAO,IAAA2V,GAAtBA,EAAAhqC,KAAAiqC,GAAyB,CAACnrC,KAAKsR,QAAStR,KAAKqzB,cAC7C8X,GAAc/kC,KAAKpG,KAAKsR,OAAQtR,KAAKqzB,YAAarzB,KAAKipC,WAE/D,EACA5C,UAAAA,CAAWlmC,GACPH,KAAK+oC,SAAW/oC,KAAK4mC,QAChB5mC,KAAK4mC,QAKNzmC,EAAM4X,QACN5X,EAAMmmC,aAAaC,WAAa,OAGhCpmC,EAAMmmC,aAAaC,WAAa,OARhCpmC,EAAMmmC,aAAaC,WAAa,MAUxC,EACA6E,WAAAA,CAAYjrC,GAGR,MAAMgY,EAAgBhY,EAAMgY,cACxBA,SAAAA,EAAekzB,SAASlrC,EAAMmrC,iBAGlCtrC,KAAK+oC,UAAW,EACpB,EACA,iBAAMwC,CAAYprC,GAAO,IAAAsmC,EAAA+E,EAAA9E,EAErB,GADAvmC,EAAMuvB,mBACD1vB,KAAKiqC,UAAYjqC,KAAKk2B,OAGvB,OAFA/1B,EAAMkY,sBACNlY,EAAMuvB,kBAGVT,GAAO+E,MAAM,eAAgB,CAAE7zB,UAEb,QAAlBsmC,EAAAtmC,EAAMmmC,oBAAY,IAAAG,GAAW,QAAX+E,EAAlB/E,EAAoBgF,iBAAS,IAAAD,GAA7BA,EAAAtqC,KAAAulC,GAEAzmC,KAAKwnC,cAAckE,SAGf1rC,KAAK6lC,cAAc99B,SAAS/H,KAAKk2B,QACjCl2B,KAAK+kC,cAAcxM,IAAIv4B,KAAK6lC,eAG5B7lC,KAAK+kC,cAAcxM,IAAI,CAACv4B,KAAKk2B,SAEjC,MAAMV,EAAQx1B,KAAK+kC,cAAchB,SAC5Bj9B,KAAIovB,GAAUl2B,KAAKglC,WAAWzO,QAAQL,KACrCyV,OD3PmB/R,UAC1B,IAAIhT,SAAS7Q,IACXsyB,KACDA,IAAU,IAAIG,IAAUoD,SACxB7tB,SAAS8tB,KAAK9b,YAAYsY,GAAQvY,MAEtCuY,GAAQ7d,OAAOgL,GACf6S,GAAQyD,IAAI,UAAU,KAClB/1B,EAAQsyB,GAAQvY,KAChBuY,GAAQ0D,KAAK,SAAS,GACxB,ICiPsBC,CAAsBxW,GACxB,QAAlBkR,EAAAvmC,EAAMmmC,oBAAY,IAAAI,GAAlBA,EAAoBuF,aAAaN,GAAQ,IAAK,GAClD,EACAO,SAAAA,GACIlsC,KAAK+kC,cAAcpM,QACnB34B,KAAK+oC,UAAW,EAChB9Z,GAAO+E,MAAM,aACjB,EACA,YAAMwS,CAAOrmC,GAAO,IAAAgsC,EAAAC,EAAAxG,EAEhB,KAAK5lC,KAAK8lC,eAAoC,QAAnBqG,EAAChsC,EAAMmmC,oBAAY,IAAA6F,GAAO,QAAPA,EAAlBA,EAAoB7J,aAAK,IAAA6J,GAAzBA,EAA2BzqC,QACnD,OAEJvB,EAAMkY,iBACNlY,EAAMuvB,kBAEN,MAAM8I,EAAYx4B,KAAK8lC,cACjBxD,EAAQ,KAAsB,QAAlB8J,EAAAjsC,EAAMmmC,oBAAY,IAAA8F,OAAA,EAAlBA,EAAoB9J,QAAS,IAGzCQ,QAAiBT,GAAuBC,GAExCpJ,QAAiC,QAAtB0M,EAAM5lC,KAAKqzB,mBAAW,IAAAuS,OAAA,EAAhBA,EAAkB1H,YAAYl+B,KAAKsR,OAAOrF,OAC3D2yB,EAAS1F,aAAQ,EAARA,EAAU0F,OACzB,IAAKA,EAED,YADA1P,EAAAA,GAAAA,IAAUlvB,KAAK6tB,EAAE,QAAS,0CAK9B,IAAK7tB,KAAK4mC,SAAWzmC,EAAM+X,OACvB,OAEJ,MAAM2rB,EAAS1jC,EAAM4X,QAIrB,GAHA/X,KAAK+oC,UAAW,EAChB9Z,GAAO+E,MAAM,UAAW,CAAE7zB,QAAOy+B,SAAQpG,YAAWsK,aAEhDA,EAAS5J,SAASx3B,OAAS,EAE3B,kBADMyhC,GAAoBL,EAAUlE,EAAQ1F,EAASA,UAIzD,MAAM1D,EAAQgD,EAAU1xB,KAAIovB,GAAUl2B,KAAKglC,WAAWzO,QAAQL,WACxD0N,GAAoBpO,EAAOoJ,EAAQ1F,EAASA,SAAU2K,GAGxDrL,EAAU2D,MAAKjG,GAAUl2B,KAAK6lC,cAAc99B,SAASmuB,OACrDjH,GAAO+E,MAAM,gDACbh0B,KAAKilC,eAAetM,QAE5B,EACA9K,EAACA,GAAAA,qBC5ST,MCNmQ,GDMnQ,CACI7sB,KAAM,sBACN8M,MAAO,CACHwD,OAAQ,CACJvD,KAAMxO,OACN8V,UAAU,GAEdge,YAAa,CACTtlB,KAAMxO,OACN8V,UAAU,GAEdpH,OAAQ,CACJF,KAAM8hB,SACNxa,UAAU,IAGlBwe,MAAO,CACHviB,MAAAA,GACI,KAAK+6B,mBACT,EACAhZ,WAAAA,GACI,KAAKgZ,mBACT,GAEJne,OAAAA,GACI,KAAKme,mBACT,EACA9d,QAAS,CACL,uBAAM8d,GACF,MAAMC,QAAgB,KAAKr+B,OAAO,KAAKqD,OAAQ,KAAK+hB,aAChDiZ,EACA,KAAKxc,IAAIsY,gBAAgBkE,GAGzB,KAAKxc,IAAIsY,iBAEjB,IExBR,IAXgB,QACd,IFRW,WAA+C,OAAO/e,EAA5BrpB,KAAYspB,MAAMD,IAAa,OACtE,GACsB,IESpB,EACA,KACA,KACA,MAI8B,QClBhC,wCCoBA,MCpB4G,GDoB5G,CACEroB,KAAM,gBACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,uCAAuCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,2EAA2E,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UAC1lB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QHL1BQ,IAAUiiB,EAAAA,EAAAA,MAChB,IAAe7H,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,mBACNwC,WAAY,CACRgpC,cAAa,GACbC,oBAAmB,GACnBC,eAAc,KACdC,UAAS,KACTC,kBAAiB,KACjB5Z,iBAAgB,KAChB6Z,cAAaA,GAAAA,GAEjB/+B,MAAO,CACHk2B,eAAgB,CACZj2B,KAAMlH,OACNwO,UAAU,GAEdyzB,QAAS,CACL/6B,KAAMnD,OACNyK,UAAU,GAEdiyB,OAAQ,CACJv5B,KAAMlF,QACNmF,SAAS,GAEbsD,OAAQ,CACJvD,KAAMxO,OACN8V,UAAU,GAEd2zB,SAAU,CACNj7B,KAAMlF,QACNmF,SAAS,IAGjBI,KAAIA,KACO,CACH0+B,cAAe,OAGvB3f,SAAU,CACN8b,UAAAA,GAAa,IAAA7V,EAET,QAAmB,QAAXA,EAAA,KAAK5kB,cAAM,IAAA4kB,GAAO,QAAPA,EAAXA,EAAa1rB,aAAK,IAAA0rB,GAAK,QAALA,EAAlBA,EAAoBwB,WAAG,IAAAxB,OAAA,EAAvBA,EAAyB1tB,aAAc,KAAKa,QAAQ,WAAY,KAC5E,EACA8sB,WAAAA,GACI,OAAO,KAAKI,YAAYmE,MAC5B,EACA2R,SAAAA,GACI,OAAO,KAAKj4B,OAAOuvB,SAAWvB,EAAAA,GAAWC,OAC7C,EAEAwN,cAAAA,GACI,OAAI,KAAKz7B,OAAO4qB,WAAW+B,OAChB,GAEJ3T,GACFhhB,QAAO4rB,IAAWA,EAAOK,SAAWL,EAAOK,QAAQ,CAAC,KAAKjkB,QAAS,KAAK+hB,eACvE3sB,MAAK,CAACC,EAAGC,KAAOD,EAAEgtB,OAAS,IAAM/sB,EAAE+sB,OAAS,IACrD,EAEAqZ,oBAAAA,GACI,OAAI,KAAKhJ,eAAiB,KAAO,KAAKgF,SAC3B,GAEJ,KAAK+D,eAAezjC,QAAO4rB,IAAM,IAAA+X,EAAA,OAAI/X,SAAc,QAAR+X,EAAN/X,EAAQgY,cAAM,IAAAD,OAAA,EAAdA,EAAA/rC,KAAAg0B,EAAiB,KAAK5jB,OAAQ,KAAK+hB,YAAY,GAC/F,EAEA8Z,oBAAAA,GACI,OAAI,KAAKnE,SACE,GAEJ,KAAK+D,eAAezjC,QAAO4rB,GAAyC,mBAAxBA,EAAOkY,cAC9D,EAEAC,qBAAAA,GACI,OAAO,KAAKN,eAAezjC,QAAO4rB,KAAYA,UAAAA,EAAQlnB,UAC1D,EAEAs/B,kBAAAA,GAGI,GAAI,KAAKR,cACL,OAAO,KAAKE,qBAEhB,MAAM1iB,EAAU,IAET,KAAK0iB,wBAEL,KAAKD,eAAezjC,QAAO4rB,GAAUA,EAAOlnB,UAAYu/B,EAAAA,GAAYC,QAAyC,mBAAxBtY,EAAOkY,gBACjG9jC,QAAO,CAAClE,EAAO8D,EAAOqjB,IAEbrjB,IAAUqjB,EAAKkhB,WAAUvY,GAAUA,EAAO1B,KAAOpuB,EAAMouB,OAG5Dka,EAAgBpjB,EAAQhhB,QAAO4rB,IAAWA,EAAOxoB,SAAQ5F,KAAIouB,GAAUA,EAAO1B,KAEpF,OAAOlJ,EAAQhhB,QAAO4rB,KAAYA,EAAOxoB,QAAUghC,EAAc3lC,SAASmtB,EAAOxoB,UACrF,EACAihC,qBAAAA,GACI,OAAO,KAAKZ,eACPzjC,QAAO4rB,GAAUA,EAAOxoB,SACxB9D,QAAO,CAACsI,EAAKgkB,KACThkB,EAAIgkB,EAAOxoB,UACZwE,EAAIgkB,EAAOxoB,QAAU,IAEzBwE,EAAIgkB,EAAOxoB,QAAQlM,KAAK00B,GACjBhkB,IACR,CAAC,EACR,EACAg5B,WAAY,CACR/jB,GAAAA,GACI,OAAO,KAAKmhB,MAChB,EACA/O,GAAAA,CAAInzB,GACA,KAAKskB,MAAM,gBAAiBtkB,EAChC,GAOJwoC,qBAAoBA,IACT7vB,SAASE,cAAc,8BAElC4vB,SAAAA,GACI,OAAO,KAAKv8B,OAAOw8B,YAAY,aACnC,GAEJvf,QAAS,CACLwf,iBAAAA,CAAkB7Y,GACd,IAAK,KAAK8T,UAAa,KAAKhF,eAAiB,KAAO9O,EAAOgY,SAAoC,mBAAjBhY,EAAOjM,MAAsB,CAGvG,MAAMA,EAAQiM,EAAOjM,MAAM,CAAC,KAAK3X,QAAS,KAAK+hB,aAC/C,GAAIpK,EACA,OAAOA,CACf,CACA,OAAOiM,EAAOE,YAAY,CAAC,KAAK9jB,QAAS,KAAK+hB,YAClD,EACA,mBAAM2a,CAAc9Y,GAA2B,IAAnB+Y,EAAS3rC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,IAAAA,UAAA,GAEjC,GAAI,KAAKinC,WAA8B,KAAjB,KAAKT,QACvB,OAGJ,GAAI,KAAK6E,sBAAsBzY,EAAO1B,IAElC,YADA,KAAKsZ,cAAgB5X,GAGzB,MAAME,EAAcF,EAAOE,YAAY,CAAC,KAAK9jB,QAAS,KAAK+hB,aAC3D,IAEI,KAAK3J,MAAM,iBAAkBwL,EAAO1B,IACpClM,EAAAA,GAAAA,IAAQ,KAAKhW,OAAQ,SAAUguB,EAAAA,GAAWC,SAC1C,MAAM2O,QAAgBhZ,EAAO9uB,KAAK,KAAKkL,OAAQ,KAAK+hB,YAAa,KAAK4V,YAEtE,GAAIiF,QACA,OAEJ,GAAIA,EAEA,YADA1b,EAAAA,GAAAA,KAAY3E,EAAAA,GAAAA,IAAE,QAAS,+CAAgD,CAAEuH,kBAG7ElG,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,gCAAiC,CAAEuH,gBAC5D,CACA,MAAOtpB,GACHmjB,GAAO1P,MAAM,+BAAgC,CAAE2V,SAAQppB,KACvDojB,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,gCAAiC,CAAEuH,gBAC5D,CAAC,QAGG,KAAK1L,MAAM,iBAAkB,IAC7BpC,EAAAA,GAAAA,IAAQ,KAAKhW,OAAQ,cAAU9O,GAE3ByrC,IACA,KAAKnB,cAAgB,KAE7B,CACJ,EACA9B,iBAAAA,CAAkB7qC,GACV,KAAKktC,sBAAsB3rC,OAAS,IACpCvB,EAAMkY,iBACNlY,EAAMuvB,kBAEN,KAAK2d,sBAAsB,GAAGjnC,KAAK,KAAKkL,OAAQ,KAAK+hB,YAAa,KAAK4V,YAE/E,EACAkF,MAAAA,CAAO3a,GAAI,IAAA4a,EACP,OAAqC,QAA9BA,EAAA,KAAKT,sBAAsBna,UAAG,IAAA4a,OAAA,EAA9BA,EAAgC1sC,QAAS,CACpD,EACA,uBAAM2sC,CAAkBnZ,GACpB,KAAK4X,cAAgB,WAEf,KAAKlwB,YAEX,KAAKA,WAAU,KAAM,IAAA4tB,EAEjB,MAAM8D,EAA8C,QAApC9D,EAAG,KAAKtC,MAAK,UAAA7mC,OAAW6zB,EAAO1B,YAAK,IAAAgX,OAAA,EAAjCA,EAAoC,GACvC,IAAA+D,EAAZD,IACsC,QAAtCC,EAAAD,EAAWxe,IAAI7R,cAAc,iBAAS,IAAAswB,GAAtCA,EAAwCC,QAC5C,GAER,EACA3gB,EAACA,GAAAA,MKzNgQ,sBCWrQ,GAAU,CAAC,EAEf,GAAQuB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,uBCftD,GAAU,CAAC,EAEf,GAAQL,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCjB1D,IAAI,IAAY,QACd,IRVW,WAAiB,IAAAgf,EAAAC,EAAKtlB,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,KAAK,CAACG,YAAY,0BAA0BnZ,MAAM,CAAC,iCAAiC,KAAK,CAAC+Y,EAAIqJ,GAAIrJ,EAAI+jB,sBAAsB,SAASjY,GAAQ,OAAO7L,EAAG,sBAAsB,CAACzkB,IAAIswB,EAAO1B,GAAGhK,YAAY,iCAAiCzS,MAAM,0BAA4Bme,EAAO1B,GAAGnjB,MAAM,CAAC,eAAe+Y,EAAIiK,YAAY,OAAS6B,EAAOkY,aAAa,OAAShkB,EAAI9X,SAAS,IAAG8X,EAAIQ,GAAG,KAAKP,EAAG,YAAY,CAAC1c,IAAI,cAAc0D,MAAM,CAAC,qBAAqB+Y,EAAIwkB,qBAAqB,UAAYxkB,EAAIwkB,qBAAqB,cAAa,EAAK,KAAO,WAAW,aAAiD,IAApCxkB,EAAI4jB,qBAAqBtrC,OAAuD,OAAS0nB,EAAI4jB,qBAAqBtrC,OAAO,KAAO0nB,EAAI8gB,YAAYvnC,GAAG,CAAC,cAAc,SAAS8mB,GAAQL,EAAI8gB,WAAWzgB,CAAM,EAAE,MAAQ,SAASA,GAAQL,EAAI0jB,cAAgB,IAAI,IAAI,CAAC1jB,EAAIqJ,GAAIrJ,EAAIkkB,oBAAoB,SAASpY,GAAO,IAAAyZ,EAAC,OAAOtlB,EAAG,iBAAiB,CAACzkB,IAAIswB,EAAO1B,GAAG7mB,IAAG,UAAAtL,OAAW6zB,EAAO1B,IAAKob,UAAS,EAAK73B,MAAM,CAClhC,CAAC,0BAAD1V,OAA2B6zB,EAAO1B,MAAO,EACzC,+BAAkCpK,EAAI+kB,OAAOjZ,EAAO1B,KACnDnjB,MAAM,CAAC,qBAAqB+Y,EAAI+kB,OAAOjZ,EAAO1B,IAAI,gCAAgC0B,EAAO1B,GAAG,UAAUpK,EAAI+kB,OAAOjZ,EAAO1B,IAAI,MAAoB,QAAbmb,EAACzZ,EAAOjM,aAAK,IAAA0lB,OAAA,EAAZA,EAAAztC,KAAAg0B,EAAe,CAAC9L,EAAI9X,QAAS8X,EAAIiK,cAAc1wB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAI4kB,cAAc9Y,EAAO,GAAGxC,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,OAAO/E,GAAG,WAAW,MAAO,CAAEupB,EAAI0f,UAAY5T,EAAO1B,GAAInK,EAAG,gBAAgB,CAAChZ,MAAM,CAAC,KAAO,MAAMgZ,EAAG,mBAAmB,CAAChZ,MAAM,CAAC,IAAM6kB,EAAOG,cAAc,CAACjM,EAAI9X,QAAS8X,EAAIiK,gBAAgB,EAAET,OAAM,IAAO,MAAK,IAAO,CAACxJ,EAAIQ,GAAG,WAAWR,EAAIS,GAAqB,WAAlBT,EAAIykB,WAAwC,mBAAd3Y,EAAO1B,GAA0B,GAAKpK,EAAI2kB,kBAAkB7Y,IAAS,WAAW,IAAG9L,EAAIQ,GAAG,KAAMR,EAAI0jB,eAAiB1jB,EAAIukB,sBAAuC,QAAlBc,EAACrlB,EAAI0jB,qBAAa,IAAA2B,OAAA,EAAjBA,EAAmBjb,IAAK,CAACnK,EAAG,iBAAiB,CAACG,YAAY,8BAA8B7mB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIilB,kBAAkBjlB,EAAI0jB,cAAc,GAAGpa,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,OAAO/E,GAAG,WAAW,MAAO,CAACwpB,EAAG,iBAAiB,EAAEuJ,OAAM,IAAO,MAAK,EAAM,aAAa,CAACxJ,EAAIQ,GAAG,aAAaR,EAAIS,GAAGT,EAAI2kB,kBAAkB3kB,EAAI0jB,gBAAgB,cAAc1jB,EAAIQ,GAAG,KAAKP,EAAG,qBAAqBD,EAAIQ,GAAG,KAAKR,EAAIqJ,GAAIrJ,EAAIukB,sBAAuC,QAAlBe,EAACtlB,EAAI0jB,qBAAa,IAAA4B,OAAA,EAAjBA,EAAmBlb,KAAK,SAAS0B,GAAO,IAAA2Z,EAAC,OAAOxlB,EAAG,iBAAiB,CAACzkB,IAAIswB,EAAO1B,GAAGhK,YAAY,kCAAkCzS,MAAK,0BAAA1V,OAA2B6zB,EAAO1B,IAAKnjB,MAAM,CAAC,oBAAoB,GAAG,gCAAgC6kB,EAAO1B,GAAG,MAAoB,QAAbqb,EAAC3Z,EAAOjM,aAAK,IAAA4lB,OAAA,EAAZA,EAAA3tC,KAAAg0B,EAAe,CAAC9L,EAAI9X,QAAS8X,EAAIiK,cAAc1wB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAI4kB,cAAc9Y,EAAO,GAAGxC,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,OAAO/E,GAAG,WAAW,MAAO,CAAEupB,EAAI0f,UAAY5T,EAAO1B,GAAInK,EAAG,gBAAgB,CAAChZ,MAAM,CAAC,KAAO,MAAMgZ,EAAG,mBAAmB,CAAChZ,MAAM,CAAC,IAAM6kB,EAAOG,cAAc,CAACjM,EAAI9X,QAAS8X,EAAIiK,gBAAgB,EAAET,OAAM,IAAO,MAAK,IAAO,CAACxJ,EAAIQ,GAAG,aAAaR,EAAIS,GAAGT,EAAI2kB,kBAAkB7Y,IAAS,aAAa,KAAI9L,EAAIU,MAAM,IAAI,EACnyD,GACsB,IQQpB,EACA,KACA,WACA,MAIF,SAAe,GAAiB,QCpB0O,ICQ3P4a,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,oBACNwC,WAAY,CACRmtB,sBAAqB,KACrBkc,cAAaA,GAAAA,GAEjB/+B,MAAO,CACHooB,OAAQ,CACJnoB,KAAMlH,OACNwO,UAAU,GAEdk0B,UAAW,CACPx7B,KAAMlF,QACNmF,SAAS,GAEbwnB,MAAO,CACHznB,KAAMnM,MACNyT,UAAU,GAEd/D,OAAQ,CACJvD,KAAMxO,OACN8V,UAAU,IAGlB0b,KAAAA,GACI,MAAMkU,EAAiB9M,KACjB2W,ECNkB,WAC5B,MAmBMA,GAnBQ3kB,EAAAA,EAAAA,IAAY,WAAY,CAClClO,MAAOA,KAAA,CACHnE,QAAQ,EACRC,SAAS,EACTF,SAAS,EACTG,UAAU,IAEdsS,QAAS,CACLykB,OAAAA,CAAQ5uC,GACCA,IACDA,EAAQqY,OAAOrY,OAEnBmnB,EAAAA,GAAAA,IAAQtnB,KAAM,WAAYG,EAAM2X,QAChCwP,EAAAA,GAAAA,IAAQtnB,KAAM,YAAaG,EAAM4X,SACjCuP,EAAAA,GAAAA,IAAQtnB,KAAM,YAAaG,EAAM0X,SACjCyP,EAAAA,GAAAA,IAAQtnB,KAAM,aAAcG,EAAM6X,SACtC,IAGckS,IAAM5nB,WAQ5B,OANKwsC,EAAc9jB,eACfxS,OAAO2D,iBAAiB,UAAW2yB,EAAcC,SACjDv2B,OAAO2D,iBAAiB,QAAS2yB,EAAcC,SAC/Cv2B,OAAO2D,iBAAiB,YAAa2yB,EAAcC,SACnDD,EAAc9jB,cAAe,GAE1B8jB,CACX,CDvB8BE,GACtB,MAAO,CACHF,gBACA7J,iBAER,EACA9X,SAAU,CACN0Y,aAAAA,GACI,OAAO,KAAKZ,eAAe7M,QAC/B,EACAsR,UAAAA,GACI,OAAO,KAAK7D,cAAc99B,SAAS,KAAKmuB,OAC5C,EACAhtB,KAAAA,GACI,OAAO,KAAKssB,MAAMiY,WAAW1X,GAASA,EAAKG,SAAW,KAAKA,QAC/D,EACA2D,MAAAA,GACI,OAAO,KAAKvoB,OAAOvD,OAAS8pB,EAAAA,GAASoB,IACzC,EACAgW,SAAAA,GACI,OAAO,KAAKpV,QACNhM,EAAAA,GAAAA,IAAE,QAAS,4CAA6C,CAAEuH,YAAa,KAAK9jB,OAAO4pB,YACnFrN,EAAAA,GAAAA,IAAE,QAAS,8CAA+C,CAAEuH,YAAa,KAAK9jB,OAAO4pB,UAC/F,GAEJ3M,QAAS,CACL2gB,iBAAAA,CAAkB9W,GAAU,IAAA+W,EACxB,MAAMC,EAAmB,KAAKlmC,MACxBovB,EAAoB,KAAK2M,eAAe3M,kBAE9C,GAAsB,QAAlB6W,EAAA,KAAKL,qBAAa,IAAAK,GAAlBA,EAAoBn3B,UAAkC,OAAtBsgB,EAA4B,CAC5D,MAAM+W,EAAoB,KAAKxJ,cAAc99B,SAAS,KAAKmuB,QACrDuN,EAAQhhB,KAAKmN,IAAIwf,EAAkB9W,GACnC3kB,EAAM8O,KAAKD,IAAI8V,EAAmB8W,GAClC/W,EAAgB,KAAK4M,eAAe5M,cACpCiX,EAAgB,KAAK9Z,MACtB1uB,KAAI2yB,GAAQA,EAAKvD,SACjB/0B,MAAMsiC,EAAO9vB,EAAM,GACnBrK,OAAOT,SAEN2vB,EAAY,IAAIH,KAAkBiX,GACnChmC,QAAO4sB,IAAWmZ,GAAqBnZ,IAAW,KAAKA,SAI5D,OAHAjH,GAAO+E,MAAM,oDAAqD,CAAEyP,QAAO9vB,MAAK27B,gBAAeD,2BAE/F,KAAKpK,eAAe1M,IAAIC,EAE5B,CACA,MAAMA,EAAYJ,EACZ,IAAI,KAAKyN,cAAe,KAAK3P,QAC7B,KAAK2P,cAAcv8B,QAAO4sB,GAAUA,IAAW,KAAKA,SAC1DjH,GAAO+E,MAAM,qBAAsB,CAAEwE,cACrC,KAAKyM,eAAe1M,IAAIC,GACxB,KAAKyM,eAAevM,aAAa0W,EACrC,EACAG,cAAAA,GACI,KAAKtK,eAAetM,OACxB,EACA9K,EAACA,GAAAA,MEzET,IAXgB,QACd,IFRW,WAAkB,IAAIzE,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,KAAK,CAACG,YAAY,2BAA2B7mB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAIA,EAAO1b,KAAKzJ,QAAQ,QAAQ8kB,EAAIomB,GAAG/lB,EAAOgmB,QAAQ,MAAM,GAAGhmB,EAAO7kB,IAAI,CAAC,MAAM,YAA0B6kB,EAAO1R,SAAS0R,EAAOzR,UAAUyR,EAAO3R,QAAQ2R,EAAO5R,QAA/D,KAA0FuR,EAAImmB,eAAe9sC,MAAM,KAAMH,UAAU,IAAI,CAAE8mB,EAAImgB,UAAWlgB,EAAG,iBAAiBA,EAAG,wBAAwB,CAAChZ,MAAM,CAAC,aAAa+Y,EAAI6lB,UAAU,QAAU7lB,EAAIsgB,YAAY/mC,GAAG,CAAC,iBAAiBymB,EAAI8lB,sBAAsB,EACnkB,GACsB,IESpB,EACA,KACA,KACA,MAI8B,QClBhC,gBAUA,MAAMQ,IAAsB1lB,EAAAA,GAAAA,GAAU,QAAS,sBAAuB,ICVgM,GDWvP1C,EAAAA,GAAIld,OAAO,CACtBpJ,KAAM,gBACNwC,WAAY,CACRmsC,YAAWA,GAAAA,GAEf7hC,MAAO,CACHsnB,YAAa,CACTrnB,KAAMnD,OACNyK,UAAU,GAEdm0B,UAAW,CACPz7B,KAAMnD,OACNyK,UAAU,GAEd2uB,eAAgB,CACZj2B,KAAMlH,OACNwO,UAAU,GAEdmgB,MAAO,CACHznB,KAAMnM,MACNyT,UAAU,GAEd/D,OAAQ,CACJvD,KAAMxO,OACN8V,UAAU,GAEd2zB,SAAU,CACNj7B,KAAMlF,QACNmF,SAAS,IAGjB+iB,MAAKA,KAEM,CACHyW,cAFkBD,OAK1Bpa,SAAU,CACNwc,UAAAA,GACI,OAAO,KAAKnC,cAAcC,eAAiB,KAAKn2B,MACpD,EACAs4B,qBAAAA,GACI,OAAO,KAAKD,YAAc,KAAK3F,eAAiB,GACpD,EACA/D,QAAS,CACL9Z,GAAAA,GACI,OAAO,KAAKqhB,cAAcvH,OAC9B,EACA1H,GAAAA,CAAI0H,GACA,KAAKuH,cAAcvH,QAAUA,CACjC,GAEJ2P,WAAAA,GAKI,MAJmB,CACf,CAAC/X,EAAAA,GAASoB,OAAOpL,EAAAA,GAAAA,IAAE,QAAS,aAC5B,CAACgK,EAAAA,GAASC,SAASjK,EAAAA,GAAAA,IAAE,QAAS,gBAEhB,KAAKvc,OAAOvD,KAClC,EACA8hC,MAAAA,GAAS,IAAAC,EAAAzG,EACL,GAAI,KAAK/3B,OAAO4qB,WAAW+B,OACvB,MAAO,CACH8R,GAAI,OACJ7jC,OAAQ,CACJ+c,OAAO4E,EAAAA,GAAAA,IAAE,QAAS,8BAI9B,MAAMwf,EAAoC,QAAfyC,EAAG,KAAK3gC,eAAO,IAAA2gC,GAAO,QAAPA,EAAZA,EAAc5H,aAAK,IAAA4H,GAAS,QAATA,EAAnBA,EAAqBxlB,eAAO,IAAAwlB,OAAA,EAA5BA,EAA8BzC,sBAC5D,OAAIA,aAAqB,EAArBA,EAAuB3rC,QAAS,EAGzB,CACHquC,GAAI,IACJ7jC,OAAQ,CACJ+c,MALOokB,EAAsB,GACVjY,YAAY,CAAC,KAAK9jB,QAAS,KAAK+hB,aAKnD2c,KAAM,SACNC,SAAU,OAIP,QAAX5G,EAAA,KAAK/3B,cAAM,IAAA+3B,OAAA,EAAXA,EAAazT,aAAcC,EAAAA,GAAWqa,KAC/B,CACHH,GAAI,IACJ7jC,OAAQ,CACJikC,SAAU,KAAK7+B,OAAO4pB,SACtBllB,KAAM,KAAK1E,OAAOA,OAClB2X,OAAO4E,EAAAA,GAAAA,IAAE,QAAS,uBAAwB,CAAE7sB,KAAM,KAAKo0B,cACvD6a,SAAU,MAIf,CACHF,GAAI,OAEZ,GAEJlc,MAAO,CAMH8V,WAAY,CACRyG,WAAW,EACXx5B,OAAAA,CAAQy5B,GACAA,GACA,KAAKC,eAEb,IAGR/hB,QAAS,CAMLgiB,kBAAAA,CAAmBpwC,GAAO,IAAAqwC,EAAAC,EACtB,MAAM1sC,EAAQ5D,EAAMsW,OACdwpB,GAA2B,QAAjBuQ,GAAAC,EAAA,KAAKxQ,SAAQ74B,YAAI,IAAAopC,OAAA,EAAjBA,EAAAtvC,KAAAuvC,KAAyB,GACzCxhB,GAAO+E,MAAM,0BAA2B,CAAEiM,YAC1C,IACI,KAAKyQ,gBAAgBzQ,GACrBl8B,EAAM4sC,kBAAkB,IACxB5sC,EAAMklB,MAAQ,EAClB,CACA,MAAOnd,GACH/H,EAAM4sC,kBAAkB7kC,EAAEwT,SAC1Bvb,EAAMklB,MAAQnd,EAAEwT,OACpB,CAAC,QAEGvb,EAAM6sC,gBACV,CACJ,EACAF,eAAAA,CAAgB1vC,GACZ,MAAM6vC,EAAc7vC,EAAKoG,OACzB,GAAoB,MAAhBypC,GAAuC,OAAhBA,EACvB,MAAM,IAAIrxB,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,oCAAqC,CAAE7sB,UAEjE,GAA2B,IAAvB6vC,EAAYnvC,OACjB,MAAM,IAAI8d,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,+BAE1B,IAAkC,IAA9BgjB,EAAYvsC,QAAQ,KACzB,MAAM,IAAIkb,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,2CAE1B,GAAIgjB,EAAY5sC,MAAM6sC,GAAG3gC,OAAO4gC,uBACjC,MAAM,IAAIvxB,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,uCAAwC,CAAE7sB,UAEpE,GAAI,KAAKgwC,kBAAkBhwC,GAC5B,MAAM,IAAIwe,OAAMqO,EAAAA,GAAAA,IAAE,QAAS,4BAA6B,CAAEoS,QAASj/B,KAQvE,OANgB6vC,EAAYptC,MAAM,IAC1BsH,SAAQkmC,IACZ,IAA2C,IAAvCvB,GAAoBprC,QAAQ2sC,GAC5B,MAAM,IAAIzxB,MAAM,KAAKqO,EAAE,QAAS,8CAA+C,CAAEojB,SACrF,KAEG,CACX,EACAD,iBAAAA,CAAkBhwC,GACd,OAAO,KAAKw0B,MAAMjC,MAAKwC,GAAQA,EAAKmF,WAAal6B,GAAQ+0B,IAAS,KAAKzkB,QAC3E,EACAg/B,aAAAA,GACI,KAAK1zB,WAAU,KAAM,IAAAs0B,EAEjB,MAAMC,GAAa,KAAK7/B,OAAOk4B,WAAa,IAAI/lC,MAAM,IAAI/B,OACpDA,EAAS,KAAK4P,OAAO4pB,SAASz3B,MAAM,IAAI/B,OAASyvC,EACjDptC,EAA8B,QAAzBmtC,EAAG,KAAKhJ,MAAMkJ,mBAAW,IAAAF,GAAO,QAAPA,EAAtBA,EAAwBhJ,aAAK,IAAAgJ,GAAY,QAAZA,EAA7BA,EAA+BG,kBAAU,IAAAH,GAAO,QAAPA,EAAzCA,EAA2ChJ,aAAK,IAAAgJ,OAAA,EAAhDA,EAAkDntC,MAC3DA,GAILA,EAAMutC,kBAAkB,EAAG5vC,GAC3BqC,EAAMyqC,QAENzqC,EAAMwtC,cAAc,IAAIC,MAAM,WAN1BviB,GAAO1P,MAAM,kCAMsB,GAE/C,EACAkyB,YAAAA,GACS,KAAK9H,YAIV,KAAKnC,cAAckE,QACvB,EAEA,cAAMgG,GAAW,IAAAC,EAAAC,EACb,MAAMC,EAAU,KAAKvgC,OAAO4pB,SACtB4W,EAAmB,KAAKxgC,OAAOygC,cAC/B9R,GAA2B,QAAjB0R,GAAAC,EAAA,KAAK3R,SAAQ74B,YAAI,IAAAuqC,OAAA,EAAjBA,EAAAzwC,KAAA0wC,KAAyB,GACzC,GAAgB,KAAZ3R,EAIJ,GAAI4R,IAAY5R,EAKhB,GAAI,KAAK+Q,kBAAkB/Q,IACvB/Q,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,wDADzB,CAKA,KAAKib,QAAU,WACfxhB,EAAAA,GAAAA,IAAQ,KAAKhW,OAAQ,SAAUguB,EAAAA,GAAWC,SAE1C,KAAKjuB,OAAO0gC,OAAO/R,GACnBhR,GAAO+E,MAAM,iBAAkB,CAAEgH,YAAa,KAAK1pB,OAAOygC,cAAeD,qBACzE,UACUrnB,EAAAA,GAAAA,GAAM,CACR2S,OAAQ,OACR5zB,IAAKsoC,EACL3U,QAAS,CACL8U,YAAa,KAAK3gC,OAAOygC,cACzBG,UAAW,QAInBpwC,EAAAA,GAAAA,IAAK,qBAAsB,KAAKwP,SAChCxP,EAAAA,GAAAA,IAAK,qBAAsB,KAAKwP,SAChCkhB,EAAAA,GAAAA,KAAY3E,EAAAA,GAAAA,IAAE,QAAS,qCAAsC,CAAEgkB,UAAS5R,aAExE,KAAKwR,eACL,KAAK70B,WAAU,KACX,KAAKsrB,MAAMhN,SAASsT,OAAO,GAEnC,CACA,MAAOjvB,GAAO,IAAAmhB,EAAAC,EAKV,GAJA1R,GAAO1P,MAAM,4BAA6B,CAAEA,UAC5C,KAAKjO,OAAO0gC,OAAOH,GACnB,KAAK3J,MAAMkJ,YAAY5C,QAES,OAA5BjvB,SAAe,QAAVmhB,EAALnhB,EAAOyP,gBAAQ,IAAA0R,OAAA,EAAfA,EAAiBG,QAEjB,YADA3R,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,2DAA4D,CAAEgkB,aAGlF,GAAgC,OAA5BtyB,SAAe,QAAVohB,EAALphB,EAAOyP,gBAAQ,IAAA2R,OAAA,EAAfA,EAAiBE,QAEtB,YADA3R,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,8FAA+F,CAAEoS,UAASrL,IAAK,KAAKqU,eAI7I/Z,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,+BAAgC,CAAEgkB,YAC3D,CAAC,QAEG,KAAK/I,SAAU,EACfxhB,EAAAA,GAAAA,IAAQ,KAAKhW,OAAQ,cAAU9O,EACnC,CA7CA,MAPI,KAAKivC,oBAJLviB,EAAAA,GAAAA,KAAUrB,EAAAA,GAAAA,IAAE,QAAS,wBAyD7B,EACAA,EAACA,GAAAA,MEnPT,IAXgB,QACd,IFRW,WAAkB,IAAIzE,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAoB9d,EAAIugB,WAAYtgB,EAAG,OAAO,CAAC8oB,WAAW,CAAC,CAACnxC,KAAK,mBAAmBoxC,QAAQ,qBAAqBhtC,MAAOgkB,EAAIqoB,aAAcY,WAAW,iBAAiB7oB,YAAY,yBAAyBnZ,MAAM,CAAC,aAAa+Y,EAAIyE,EAAE,QAAS,gBAAgBlrB,GAAG,CAAC,OAAS,SAAS8mB,GAAyD,OAAjDA,EAAOpR,iBAAiBoR,EAAOiG,kBAAyBtG,EAAIsoB,SAASjvC,MAAM,KAAMH,UAAU,IAAI,CAAC+mB,EAAG,cAAc,CAAC1c,IAAI,cAAc0D,MAAM,CAAC,MAAQ+Y,EAAIwmB,YAAY,WAAY,EAAK,UAAY,EAAE,UAAW,EAAK,MAAQxmB,EAAI6W,QAAQ,aAAe,QAAQt9B,GAAG,CAAC,eAAe,SAAS8mB,GAAQL,EAAI6W,QAAQxW,CAAM,EAAE,MAAQ,CAACL,EAAImnB,mBAAmB,SAAS9mB,GAAQ,OAAIA,EAAO1b,KAAKzJ,QAAQ,QAAQ8kB,EAAIomB,GAAG/lB,EAAOgmB,QAAQ,MAAM,GAAGhmB,EAAO7kB,IAAI,CAAC,MAAM,WAAkB,KAAYwkB,EAAIqoB,aAAahvC,MAAM,KAAMH,UAAU,OAAO,GAAG+mB,EAAGD,EAAIymB,OAAOE,GAAG3mB,EAAIG,GAAG,CAAC5c,IAAI,WAAW2I,IAAI,YAAYkU,YAAY,4BAA4BnZ,MAAM,CAAC,cAAc+Y,EAAIugB,WAAW,mCAAmC,IAAIhnC,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,YAAYL,EAAIymB,OAAO3jC,QAAO,GAAO,CAACmd,EAAG,OAAO,CAACG,YAAY,6BAA6B,CAACH,EAAG,OAAO,CAACG,YAAY,wBAAwB8oB,SAAS,CAAC,YAAclpB,EAAIS,GAAGT,EAAIgM,gBAAgBhM,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAACG,YAAY,2BAA2B8oB,SAAS,CAAC,YAAclpB,EAAIS,GAAGT,EAAIogB,iBAC13C,GACsB,IESpB,EACA,KACA,KACA,MAI8B,QClBhC,gBCoBA,MCpBuG,GDoBvG,CACExoC,KAAM,WACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,iCAAiCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,0FAA0F,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UACnmB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElB6E,GCoB7G,CACE9oB,KAAM,iBACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,wCAAwCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,6IAA6I,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UAC7pB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElBsE,GCoBtG,CACE9oB,KAAM,UACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,gCAAgCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,0KAA0K,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UAClrB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElB0E,GCoB1G,CACE9oB,KAAM,cACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,oCAAoCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,uLAAuL,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UACnsB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElBsE,GCoBtG,CACE9oB,KAAM,UACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,gCAAgCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,gVAAgV,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UACx1B,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElB6E,GCoB7G,CACE9oB,KAAM,iBACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,wCAAwCnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,mGAAmG,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UACnnB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElBiK,GCuBjM,CACA9oB,KAAA,kBACA8M,MAAA,CACAmb,MAAA,CACAlb,KAAAnD,OACAoD,QAAA,IAEAkb,UAAA,CACAnb,KAAAnD,OACAoD,QAAA,gBAEAmb,KAAA,CACApb,KAAAlH,OACAmH,QAAA,MClBA,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,wCAAwCnZ,MAAM,CAAC,eAAe+Y,EAAIH,MAAM,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,gGAAgG+Y,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,8FAA8F+Y,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,gFAAgF+Y,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,gGAAgG+Y,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,kFAAkF+Y,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,4SACpjC,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElBqO,ICetPq0B,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,eACNwC,WAAY,CACRwvB,iBAAgBA,GAAAA,GAEpB5kB,KAAIA,KACO,CACHmkC,8MAGR,aAAMrkB,GAAU,IAAAskB,QACN,KAAK51B,YAEX,MAAMkB,EAAK,KAAKgS,IAAI7R,cAAc,OAClCH,SAAgB,QAAd00B,EAAF10B,EAAI20B,oBAAY,IAAAD,GAAhBA,EAAAtxC,KAAA4c,EAAmB,UAAW,cAClC,EACAyQ,QAAS,CACLV,EAACA,GAAAA,sBCrBL,GAAU,CAAC,EAEf,GAAQuB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,mBAAmB,CAACG,YAAY,uBAAuBnZ,MAAM,CAAC,KAAO+Y,EAAIyE,EAAE,QAAS,YAAY,IAAMzE,EAAImpB,UAC7M,GACsB,IEUpB,EACA,KACA,WACA,MAI8B,QCnByO,GjCmB1PjrB,EAAAA,GAAIld,OAAO,CACtBpJ,KAAM,mBACNwC,WAAY,CACRkvC,iBAAgB,KAChBC,gBAAe,GACfC,gBAAe,GACfC,aAAY,GACZC,SAAQ,GACRnL,WAAU,KACVoL,eAAc,GACdC,QAAO,GACPC,SAAQ,KACRC,YAAW,GACXC,QAAOA,IAEXrlC,MAAO,CACHwD,OAAQ,CACJvD,KAAMxO,OACN8V,UAAU,GAEd0zB,SAAU,CACNh7B,KAAMlF,QACNmF,SAAS,GAEbg7B,SAAU,CACNj7B,KAAMlF,QACNmF,SAAS,IAGjB+iB,MAAKA,KAEM,CACHR,gBAFoBD,OAK5BliB,KAAIA,KACO,CACHglC,sBAAkB5wC,IAG1B2qB,SAAU,CACN+I,MAAAA,GAAS,IAAAmT,EAAAgK,EACL,OAAkB,QAAlBhK,EAAO,KAAK/3B,cAAM,IAAA+3B,GAAQ,QAARA,EAAXA,EAAanT,cAAM,IAAAmT,GAAU,QAAVgK,EAAnBhK,EAAqB3jC,gBAAQ,IAAA2tC,OAAA,EAA7BA,EAAAnyC,KAAAmoC,EACX,EACAiK,UAAAA,GACI,OAA2C,IAApC,KAAKhiC,OAAO4qB,WAAWqX,QAClC,EACAvjB,UAAAA,GACI,OAAO,KAAKO,gBAAgBP,UAChC,EACAwjB,YAAAA,GACI,OAA+C,IAAxC,KAAKxjB,WAAWE,mBAC3B,EACAujB,UAAAA,GACI,GAAI,KAAKniC,OAAOvD,OAAS8pB,EAAAA,GAASC,OAC9B,OAAO,KAEX,IAA8B,IAA1B,KAAKsb,iBACL,OAAO,KAEX,IACI,MAAMK,EAAa,KAAKniC,OAAO4qB,WAAWuX,aACnC3qB,EAAAA,EAAAA,IAAY,gCAAiC,CAC5CoN,OAAQ,KAAKA,SAEf1sB,EAAM,IAAIS,IAAIuO,OAAO9M,SAASgoC,OAASD,GAO7C,OALAjqC,EAAImqC,aAAapb,IAAI,IAAK,KAAKyQ,SAAW,MAAQ,MAClDx/B,EAAImqC,aAAapb,IAAI,IAAK,KAAKyQ,SAAW,MAAQ,MAClDx/B,EAAImqC,aAAapb,IAAI,eAAgB,QAErC/uB,EAAImqC,aAAapb,IAAI,KAA2B,IAAtB,KAAKib,aAAwB,IAAM,KACtDhqC,EAAIwM,IACf,CACA,MAAOlK,GACH,OAAO,IACX,CACJ,EACA8nC,WAAAA,GACI,YkCrEgDpxC,IlCqEhC,KAAK8O,OkCrEjB4qB,WAAW,6BlCsEJ2X,GAEJ,IACX,EACAC,aAAAA,GAAgB,IAAAC,EAAAC,EAAAC,EAAAC,EACZ,GAAI,KAAK5iC,OAAOvD,OAAS8pB,EAAAA,GAASC,OAC9B,OAAO,KAGX,GAAkD,KAAnC,QAAXic,EAAA,KAAKziC,cAAM,IAAAyiC,GAAY,QAAZA,EAAXA,EAAa7X,kBAAU,IAAA6X,OAAA,EAAvBA,EAA0B,iBAC1B,OAAOf,GAGX,GAAe,QAAfgB,EAAI,KAAK1iC,cAAM,IAAA0iC,GAAY,QAAZA,EAAXA,EAAa9X,kBAAU,IAAA8X,GAAvBA,EAA0B,UAC1B,OAAOb,GAGX,MAAMgB,EAAa50C,OAAO60C,QAAkB,QAAXH,EAAA,KAAK3iC,cAAM,IAAA2iC,GAAY,QAAZA,EAAXA,EAAa/X,kBAAU,IAAA+X,OAAA,EAAvBA,EAA0B,iBAAkB,CAAC,GAAG5rC,OACjF,GAAI8rC,EAAWhY,MAAKpuB,GAAQA,IAASsmC,GAAAA,EAAUC,iBAAmBvmC,IAASsmC,GAAAA,EAAUE,mBACjF,OAAOtB,GAAAA,EAGX,GAAIkB,EAAWzyC,OAAS,EACpB,OAAOixC,GAEX,OAAmB,QAAnBuB,EAAQ,KAAK5iC,cAAM,IAAA4iC,GAAY,QAAZA,EAAXA,EAAahY,kBAAU,IAAAgY,OAAA,EAAvBA,EAA0B,eAC9B,IAAK,WACL,IAAK,mBACD,OAAOhB,GACX,IAAK,QACD,OAAOR,GAAAA,EACX,IAAK,aACD,OAAOE,GAEf,OAAO,IACX,GAEJrkB,QAAS,CAELoK,KAAAA,GAEI,KAAKya,sBAAmB5wC,EACpB,KAAK0lC,MAAMC,aACX,KAAKD,MAAMC,WAAWqM,IAAM,GAEpC,EACAC,iBAAAA,CAAkBt0C,GAAO,IAAAu0C,EAEK,MAAV,QAAZA,EAAAv0C,EAAMsW,cAAM,IAAAi+B,OAAA,EAAZA,EAAcF,OAGlB,KAAKpB,kBAAmB,EAC5B,EACAvlB,EAACA,GAAAA,MmCtIT,IAXgB,QACd,InCRW,WAAkB,IAAIzE,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,OAAO,CAACG,YAAY,wBAAwB,CAAsB,WAApBJ,EAAI9X,OAAOvD,KAAmB,CAAEqb,EAAI2f,SAAU3f,EAAIurB,GAAG,GAAG,CAACvrB,EAAIurB,GAAG,GAAGvrB,EAAIQ,GAAG,KAAMR,EAAI0qB,cAAezqB,EAAGD,EAAI0qB,cAAc,CAACx+B,IAAI,cAAckU,YAAY,iCAAiCJ,EAAIU,OAAQV,EAAIqqB,aAAuC,IAAzBrqB,EAAIgqB,iBAA2B/pB,EAAG,MAAM,CAAC1c,IAAI,aAAa6c,YAAY,+BAA+BzS,MAAM,CAAC,wCAAiE,IAAzBqS,EAAIgqB,kBAA4B/iC,MAAM,CAAC,IAAM,GAAG,QAAU,OAAO,IAAM+Y,EAAIqqB,YAAY9wC,GAAG,CAAC,MAAQymB,EAAIqrB,kBAAkB,KAAO,SAAShrB,GAAQL,EAAIgqB,kBAAmB,CAAK,KAAKhqB,EAAIurB,GAAG,GAAGvrB,EAAIQ,GAAG,KAAMR,EAAIkqB,WAAYjqB,EAAG,OAAO,CAACG,YAAY,iCAAiC,CAACJ,EAAIurB,GAAG,IAAI,GAAGvrB,EAAIU,KAAKV,EAAIQ,GAAG,KAAMR,EAAIwqB,YAAavqB,EAAGD,EAAIwqB,YAAY,CAACt+B,IAAI,cAAckU,YAAY,oEAAoEJ,EAAIU,MAAM,EACl8B,GACsB,CAAC,WAAY,IAAaT,EAALrpB,KAAYspB,MAAMD,GAAgC,OAAlDrpB,KAAgCspB,MAAM4d,YAAmB7d,EAAG,iBACvG,EAAE,WAAY,IAAaA,EAALrpB,KAAYspB,MAAMD,GAAgC,OAAlDrpB,KAAgCspB,MAAM4d,YAAmB7d,EAAG,aAClF,EAAE,WAAY,IAAaA,EAALrpB,KAAYspB,MAAMD,GAAgC,OAAlDrpB,KAAgCspB,MAAM4d,YAAmB7d,EAAG,WAClF,EAAE,WAAY,IAAaA,EAALrpB,KAAYspB,MAAMD,GAAgC,OAAlDrpB,KAAgCspB,MAAM4d,YAAmB7d,EAAG,eAClF,ImCKE,EACA,KACA,KACA,MAI8B,QClByN,ICe1Oqb,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,YACNwC,WAAY,CACRipC,oBAAmB,GACnBmI,iBAAgB,GAChBC,kBAAiB,GACjBC,cAAa,GACbC,iBAAgB,GAChBC,WAAUA,GAAAA,GAEdnQ,OAAQ,CACJoQ,IAEJnnC,MAAO,CACHonC,iBAAkB,CACdnnC,KAAMlF,QACNmF,SAAS,GAEbmnC,gBAAiB,CACbpnC,KAAMlF,QACNmF,SAAS,GAEbonC,QAAS,CACLrnC,KAAMlF,QACNmF,SAAS,IAGjB+iB,MAAKA,KAMM,CACHoZ,iBANqB9C,KAOrBtC,cANkBjB,KAOlBkB,WANe7O,KAOfqR,cANkBD,KAOlBtC,eANmB9M,OAS3BhL,SAAU,CAKNkoB,YAAAA,GAOI,MAAO,IANc,KAAK1L,WACpB,CAAC,EACD,CACE2L,UAAW,KAAK/J,YAChBxC,SAAU,KAAK1C,YAInBkP,YAAa,KAAK7K,aAClB8K,UAAW,KAAKpK,YAChBqK,QAAS,KAAKvJ,UACdwJ,KAAM,KAAKlP,OAEnB,EACAmP,OAAAA,GAAU,IAAA/P,EAEN,OAAI,KAAK5B,eAAiB,KAAO,KAAKoR,QAC3B,IAEY,QAAhBxP,EAAA,KAAKvS,mBAAW,IAAAuS,OAAA,EAAhBA,EAAkB+P,UAAW,EACxC,EACAxsB,IAAAA,GACI,MAAMA,EAAO8e,SAAS,KAAK32B,OAAO6X,KAAM,KAAO,EAC/C,MAAoB,iBAATA,GAAqBA,EAAO,EAC5B,KAAK0E,EAAE,QAAS,YAEpBJ,EAAAA,EAAAA,IAAetE,GAAM,EAChC,EACAysB,WAAAA,GACI,MACMzsB,EAAO8e,SAAS,KAAK32B,OAAO6X,KAAM,KAAO,EAC/C,IAAKA,GAAQA,EAAO,EAChB,MAAO,CAAC,EAEZ,MAAM0sB,EAAQpzB,KAAKqzB,MAAMrzB,KAAKmN,IAAI,IAAK,IAAMnN,KAAKszB,IAAK,KAAKzkC,OAAO6X,KAL5C,SAKoE,KAC3F,MAAO,CACH6sB,MAAK,6CAAA30C,OAA+Cw0C,EAAK,qCAEjE,EACAI,YAAAA,GAAe,IAAAC,EAAAC,EACX,MAAMC,EAAiB,QACjBvY,EAAyB,QAApBqY,EAAG,KAAK5kC,OAAOusB,aAAK,IAAAqY,GAAS,QAATC,EAAjBD,EAAmBG,eAAO,IAAAF,OAAA,EAA1BA,EAAAj1C,KAAAg1C,GACd,IAAKrY,EACD,MAAO,CAAC,EAGZ,MAAMgY,EAAQpzB,KAAKqzB,MAAMrzB,KAAKmN,IAAI,IAAK,KAAOwmB,GAAkBl7B,KAAKD,MAAQ4iB,IAAUuY,IACvF,OAAIP,EAAQ,EACD,CAAC,EAEL,CACHG,MAAK,6CAAA30C,OAA+Cw0C,EAAK,qCAEjE,EACAS,UAAAA,GACI,OAAI,KAAKhlC,OAAOusB,OACL0Y,EAAAA,GAAAA,GAAO,KAAKjlC,OAAOusB,OAAO2Y,OAAO,OAErC,EACX,EAIAp/B,QAAAA,GAAW,IAAA2yB,EAAAC,EACP,OAAO,KAAK9T,UAA6B,QAAvB6T,EAAK,KAAKb,qBAAa,IAAAa,GAAU,QAAVC,EAAlBD,EAAoBrkC,gBAAQ,IAAAskC,OAAA,EAA5BA,EAAA9oC,KAAA6oC,GAC3B,GAEJxb,QAAS,CACLd,eAAcA,EAAAA,MChHtB,IAXgB,QACd,IDRW,WAAkB,IAAIrE,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,KAAKD,EAAIqtB,GAAG,CAACjtB,YAAY,kBAAkBzS,MAAM,CAClJ,4BAA6BqS,EAAI2f,SACjC,2BAA4B3f,EAAImgB,UAChC,0BAA2BngB,EAAIhS,UAC9B/G,MAAM,CAAC,yBAAyB,GAAG,gCAAgC+Y,EAAI8M,OAAO,8BAA8B9M,EAAI9X,OAAO4pB,SAAS,UAAY9R,EAAI6gB,UAAU7gB,EAAIisB,cAAc,CAAEjsB,EAAI9X,OAAO4qB,WAAW+B,OAAQ5U,EAAG,OAAO,CAACG,YAAY,4BAA4BJ,EAAIU,KAAKV,EAAIQ,GAAG,KAAKP,EAAG,oBAAoB,CAAChZ,MAAM,CAAC,OAAS+Y,EAAI8M,OAAO,aAAa9M,EAAImgB,UAAU,MAAQngB,EAAIoM,MAAM,OAASpM,EAAI9X,UAAU8X,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,uBAAuBnZ,MAAM,CAAC,8BAA8B,KAAK,CAACgZ,EAAG,mBAAmB,CAAC1c,IAAI,UAAU0D,MAAM,CAAC,OAAS+Y,EAAI9X,OAAO,SAAW8X,EAAI2f,UAAU3B,SAAS,CAAC,MAAQ,SAAS3d,GAAQ,OAAOL,EAAI4hB,kBAAkBvoC,MAAM,KAAMH,UAAU,KAAK8mB,EAAIQ,GAAG,KAAKP,EAAG,gBAAgB,CAAC1c,IAAI,OAAO0D,MAAM,CAAC,eAAe+Y,EAAIgM,YAAY,UAAYhM,EAAIogB,UAAU,mBAAmBpgB,EAAI4a,eAAe,MAAQ5a,EAAIoM,MAAM,OAASpM,EAAI9X,QAAQ3O,GAAG,CAAC,MAAQymB,EAAI4hB,sBAAsB,GAAG5hB,EAAIQ,GAAG,KAAKP,EAAG,mBAAmB,CAAC8oB,WAAW,CAAC,CAACnxC,KAAK,OAAOoxC,QAAQ,SAAShtC,OAAQgkB,EAAIwgB,sBAAuByI,WAAW,2BAA2B1lC,IAAI,UAAUoK,MAAK,2BAAA1V,OAA4B+nB,EAAIkgB,UAAWj5B,MAAM,CAAC,mBAAmB+Y,EAAI4a,eAAe,QAAU5a,EAAI0f,QAAQ,OAAS1f,EAAI8gB,WAAW,OAAS9gB,EAAI9X,QAAQ3O,GAAG,CAAC,iBAAiB,SAAS8mB,GAAQL,EAAI0f,QAAQrf,CAAM,EAAE,gBAAgB,SAASA,GAAQL,EAAI8gB,WAAWzgB,CAAM,KAAKL,EAAIQ,GAAG,MAAOR,EAAIgsB,SAAWhsB,EAAI+rB,gBAAiB9rB,EAAG,KAAK,CAACG,YAAY,uBAAuBhL,MAAO4K,EAAIwsB,YAAavlC,MAAM,CAAC,8BAA8B,IAAI1N,GAAG,CAAC,MAAQymB,EAAI6hB,yBAAyB,CAAC5hB,EAAG,OAAO,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAID,WAAWC,EAAIU,KAAKV,EAAIQ,GAAG,MAAOR,EAAIgsB,SAAWhsB,EAAI8rB,iBAAkB7rB,EAAG,KAAK,CAACG,YAAY,wBAAwBhL,MAAO4K,EAAI6sB,aAAc5lC,MAAM,CAAC,+BAA+B,IAAI1N,GAAG,CAAC,MAAQymB,EAAI6hB,yBAAyB,CAAC5hB,EAAG,aAAa,CAAChZ,MAAM,CAAC,UAAY+Y,EAAI9X,OAAOusB,MAAM,kBAAiB,MAAS,GAAGzU,EAAIU,KAAKV,EAAIQ,GAAG,KAAKR,EAAIqJ,GAAIrJ,EAAIusB,SAAS,SAASe,GAAO,IAAAC,EAAC,OAAOttB,EAAG,KAAK,CAACzkB,IAAI8xC,EAAOljB,GAAGhK,YAAY,gCAAgCzS,MAAK,mBAAA1V,OAAmC,QAAnCs1C,EAAoBvtB,EAAIiK,mBAAW,IAAAsjB,OAAA,EAAfA,EAAiBnjB,GAAE,KAAAnyB,OAAIq1C,EAAOljB,IAAKnjB,MAAM,CAAC,uCAAuCqmC,EAAOljB,IAAI7wB,GAAG,CAAC,MAAQymB,EAAI6hB,yBAAyB,CAAC5hB,EAAG,sBAAsB,CAAChZ,MAAM,CAAC,eAAe+Y,EAAIiK,YAAY,OAASqjB,EAAOzoC,OAAO,OAASmb,EAAI9X,WAAW,EAAE,KAAI,EACjvE,GACsB,ICKpB,EACA,KACA,KACA,MAI8B,QClB6N,ICW9OozB,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,gBACNwC,WAAY,CACRoxC,iBAAgB,GAChBC,kBAAiB,GACjBC,cAAa,GACbC,iBAAgBA,IAEpBlQ,OAAQ,CACJoQ,IAEJ2B,cAAc,EACd7lB,MAAKA,KAMM,CACHoZ,iBANqB9C,KAOrBtC,cANkBjB,KAOlBkB,WANe7O,KAOfqR,cANkBD,KAOlBtC,eANmB9M,OAS3B/pB,KAAIA,KACO,CACH46B,UAAU,MCrBtB,IAXgB,QACd,IDRW,WAAkB,IAAI5f,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,KAAK,CAACG,YAAY,kBAAkBzS,MAAM,CAAC,0BAA2BqS,EAAIhS,SAAU,4BAA6BgS,EAAI2f,SAAU,2BAA4B3f,EAAImgB,WAAWl5B,MAAM,CAAC,yBAAyB,GAAG,gCAAgC+Y,EAAI8M,OAAO,8BAA8B9M,EAAI9X,OAAO4pB,SAAS,UAAY9R,EAAI6gB,SAAStnC,GAAG,CAAC,YAAcymB,EAAIshB,aAAa,SAAWthB,EAAIid,WAAW,UAAYjd,EAAIgiB,YAAY,UAAYhiB,EAAImiB,YAAY,QAAUniB,EAAI8iB,UAAU,KAAO9iB,EAAIod,SAAS,CAAEpd,EAAI9X,OAAO4qB,WAAW+B,OAAQ5U,EAAG,OAAO,CAACG,YAAY,4BAA4BJ,EAAIU,KAAKV,EAAIQ,GAAG,KAAKP,EAAG,oBAAoB,CAAChZ,MAAM,CAAC,OAAS+Y,EAAI8M,OAAO,aAAa9M,EAAImgB,UAAU,MAAQngB,EAAIoM,MAAM,OAASpM,EAAI9X,UAAU8X,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,uBAAuBnZ,MAAM,CAAC,8BAA8B,KAAK,CAACgZ,EAAG,mBAAmB,CAAC1c,IAAI,UAAU0D,MAAM,CAAC,SAAW+Y,EAAI2f,SAAS,aAAY,EAAK,OAAS3f,EAAI9X,QAAQ81B,SAAS,CAAC,MAAQ,SAAS3d,GAAQ,OAAOL,EAAI4hB,kBAAkBvoC,MAAM,KAAMH,UAAU,KAAK8mB,EAAIQ,GAAG,KAAKP,EAAG,gBAAgB,CAAC1c,IAAI,OAAO0D,MAAM,CAAC,eAAe+Y,EAAIgM,YAAY,UAAYhM,EAAIogB,UAAU,mBAAmBpgB,EAAI4a,eAAe,aAAY,EAAK,MAAQ5a,EAAIoM,MAAM,OAASpM,EAAI9X,QAAQ3O,GAAG,CAAC,MAAQymB,EAAI4hB,sBAAsB,GAAG5hB,EAAIQ,GAAG,KAAKP,EAAG,mBAAmB,CAAC1c,IAAI,UAAUoK,MAAK,2BAAA1V,OAA4B+nB,EAAIkgB,UAAWj5B,MAAM,CAAC,mBAAmB+Y,EAAI4a,eAAe,aAAY,EAAK,QAAU5a,EAAI0f,QAAQ,OAAS1f,EAAI8gB,WAAW,OAAS9gB,EAAI9X,QAAQ3O,GAAG,CAAC,iBAAiB,SAAS8mB,GAAQL,EAAI0f,QAAQrf,CAAM,EAAE,gBAAgB,SAASA,GAAQL,EAAI8gB,WAAWzgB,CAAM,MAAM,EACxpD,GACsB,ICSpB,EACA,KACA,KACA,MAI8B,QClBhC,gBAMA,MCN+P,GDM/P,CACIzoB,KAAM,kBACN8M,MAAO,CACH+oC,OAAQ,CACJ9oC,KAAMxO,OACN8V,UAAU,GAEdyhC,cAAe,CACX/oC,KAAMxO,OACN8V,UAAU,GAEdge,YAAa,CACTtlB,KAAMxO,OACN8V,UAAU,IAGlB8X,SAAU,CACNoI,OAAAA,GACI,OAAO,KAAKshB,OAAOthB,QAAQ,KAAKuhB,cAAe,KAAKzjB,YACxD,GAEJQ,MAAO,CACH0B,OAAAA,CAAQA,GACCA,GAGL,KAAKshB,OAAOn0B,QAAQ,KAAKo0B,cAAe,KAAKzjB,YACjD,EACAyjB,aAAAA,GACI,KAAKD,OAAOn0B,QAAQ,KAAKo0B,cAAe,KAAKzjB,YACjD,GAEJnF,OAAAA,GACI7L,GAAQ2R,MAAM,UAAW,KAAK6iB,OAAOrjB,IACrC,KAAKqjB,OAAO5oC,OAAO,KAAKi6B,MAAM6O,MAAO,KAAKD,cAAe,KAAKzjB,YAClE,GEvBJ,IAXgB,QACd,IFRW,WAAkB,IAAIjK,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,MAAM,CAAC8oB,WAAW,CAAC,CAACnxC,KAAK,OAAOoxC,QAAQ,SAAShtC,MAAOgkB,EAAImM,QAAS8c,WAAW,YAAYt7B,MAAK,sBAAA1V,OAAuB+nB,EAAIytB,OAAOrjB,KAAM,CAACnK,EAAG,OAAO,CAAC1c,IAAI,WAC/N,GACsB,IESpB,EACA,KACA,KACA,MAI8B,QClBoO,GCKrP2a,EAAAA,GAAIld,OAAO,CACtBpJ,KAAM,uBACNwC,WAAY,CAAC,EACbsK,MAAO,CACHonC,iBAAkB,CACdnnC,KAAMlF,QACNmF,SAAS,GAEbmnC,gBAAiB,CACbpnC,KAAMlF,QACNmF,SAAS,GAEbwnB,MAAO,CACHznB,KAAMnM,MACNyT,UAAU,GAEdyyB,QAAS,CACL/5B,KAAMnD,OACNoD,QAAS,IAEbg2B,eAAgB,CACZj2B,KAAMlH,OACNmH,QAAS,IAGjB+iB,KAAAA,GACI,MAAMsG,EAAaD,KAEnB,MAAO,CACH4N,WAFe7O,KAGfkB,aAER,EACAlK,SAAU,CACNkG,WAAAA,GACI,OAAO,KAAKI,YAAYmE,MAC5B,EACAhD,GAAAA,GAAM,IAAAxB,EAEF,QAAmB,QAAXA,EAAA,KAAK5kB,cAAM,IAAA4kB,GAAO,QAAPA,EAAXA,EAAa1rB,aAAK,IAAA0rB,OAAA,EAAlBA,EAAoBwB,MAAO,KAAKruB,QAAQ,WAAY,KAChE,EACAuwC,aAAAA,GAAgB,IAAAlR,EACZ,GAAqB,QAAjBA,EAAC,KAAKvS,mBAAW,IAAAuS,IAAhBA,EAAkBpS,GACnB,OAEJ,GAAiB,MAAb,KAAKoB,IACL,OAAO,KAAKoQ,WAAWtO,QAAQ,KAAKrD,YAAYG,IAEpD,MAAM0S,EAAS,KAAK7O,WAAWE,QAAQ,KAAKlE,YAAYG,GAAI,KAAKoB,KACjE,OAAO,KAAKoQ,WAAWzO,QAAQ2P,EACnC,EACAyP,OAAAA,GAAU,IAAA3P,EAEN,OAAI,KAAKhC,eAAiB,IACf,IAEY,QAAhBgC,EAAA,KAAK3S,mBAAW,IAAA2S,OAAA,EAAhBA,EAAkB2P,UAAW,EACxC,EACA5N,SAAAA,GAAY,IAAAiP,EAER,OAAsB,QAAtBA,EAAI,KAAKF,qBAAa,IAAAE,GAAlBA,EAAoB7tB,MACbsE,EAAAA,EAAAA,IAAe,KAAKqpB,cAAc3tB,MAAM,IAG5CsE,EAAAA,EAAAA,IAAe,KAAK+H,MAAM5sB,QAAO,CAACo/B,EAAOjS,IAASiS,EAAQjS,EAAK5M,MAAQ,GAAG,IAAI,EACzF,GAEJoF,QAAS,CACL0oB,cAAAA,CAAeP,GACX,MAAO,CACH,iCAAiC,EACjC,oBAAAr1C,OAAoB,KAAKgyB,YAAYG,GAAE,KAAAnyB,OAAIq1C,EAAOljB,MAAO,EAEjE,EACA3F,EAAGsB,GAAAA,sBCpEP,GAAU,CAAC,EAEf,GAAQC,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,KAAK,CAACA,EAAG,KAAK,CAACG,YAAY,4BAA4B,CAACH,EAAG,OAAO,CAACG,YAAY,mBAAmB,CAACJ,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,4BAA4BzE,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,wBAAwB,CAACH,EAAG,OAAO,CAACG,YAAY,yBAAyBJ,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAI0e,cAAc1e,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,4BAA4BJ,EAAIQ,GAAG,KAAMR,EAAI+rB,gBAAiB9rB,EAAG,KAAK,CAACG,YAAY,2CAA2C,CAACH,EAAG,OAAO,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAI2e,gBAAgB3e,EAAIU,KAAKV,EAAIQ,GAAG,KAAMR,EAAI8rB,iBAAkB7rB,EAAG,KAAK,CAACG,YAAY,6CAA6CJ,EAAIU,KAAKV,EAAIQ,GAAG,KAAKR,EAAIqJ,GAAIrJ,EAAIusB,SAAS,SAASe,GAAO,IAAAQ,EAAC,OAAO7tB,EAAG,KAAK,CAACzkB,IAAI8xC,EAAOljB,GAAGzc,MAAMqS,EAAI6tB,eAAeP,IAAS,CAACrtB,EAAG,OAAO,CAACD,EAAIQ,GAAGR,EAAIS,GAAiB,QAAfqtB,EAACR,EAAO5O,eAAO,IAAAoP,OAAA,EAAdA,EAAAh2C,KAAAw1C,EAAiBttB,EAAIoM,MAAOpM,EAAIiK,kBAAkB,KAAI,EACt6B,GACsB,IEUpB,EACA,KACA,WACA,MAI8B,QCnBhC,2BCyBA,SAAe/L,EAAAA,GAAIld,OAAO,CACtB+iB,SAAU,KACHgqB,EAAAA,EAAAA,IAASltB,GAAoB,CAAC,YAAa,eAAgB,2BAC9DoJ,WAAAA,GACI,OAAOrzB,KAAKyzB,YAAYmE,MAC5B,EAIAwf,WAAAA,GAAc,IAAAC,EAAAzR,EACV,OAA0C,QAAnCyR,EAAAr3C,KAAKqqB,UAAUrqB,KAAKqzB,YAAYG,WAAG,IAAA6jB,OAAA,EAAnCA,EAAqCC,gBACrB,QADiC1R,EACjD5lC,KAAKqzB,mBAAW,IAAAuS,OAAA,EAAhBA,EAAkB2R,iBAClB,UACX,EAIAC,YAAAA,GAAe,IAAAC,EAEX,MAA4B,UADgC,QAAtCA,EAAGz3C,KAAKqqB,UAAUrqB,KAAKqzB,YAAYG,WAAG,IAAAikB,OAAA,EAAnCA,EAAqC3sB,kBAElE,GAEJyD,QAAS,CACLmpB,YAAAA,CAAa9yC,GAEL5E,KAAKo3C,cAAgBxyC,EAKzB5E,KAAK2qB,aAAa/lB,EAAK5E,KAAKqzB,YAAYG,IAJpCxzB,KAAK4qB,uBAAuB5qB,KAAKqzB,YAAYG,GAKrD,KCxDkQ,ICM3PkR,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,6BACNwC,WAAY,CACRm0C,SAAQ,KACRC,OAAM,KACNC,SAAQA,GAAAA,GAEZhT,OAAQ,CACJiT,IAEJhqC,MAAO,CACH9M,KAAM,CACF+M,KAAMnD,OACNyK,UAAU,GAEd2Q,KAAM,CACFjY,KAAMnD,OACNyK,UAAU,IAGlBkZ,QAAS,CACLV,EAAGsB,GAAAA,sBChBP,GAAU,CAAC,EAEf,GAAQC,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,WAAW,CAACtS,MAAM,CAAC,iCAAkC,CACtJ,yCAA0CqS,EAAIguB,cAAgBhuB,EAAIpD,KAClE,uCAA4D,SAApBoD,EAAIguB,cAC1C/mC,MAAM,CAAC,UAAyB,SAAb+Y,EAAIpD,KAAkB,MAAQ,gBAAgB,KAAO,YAAYrjB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIsuB,aAAatuB,EAAIpD,KAAK,GAAG0M,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,OAAO/E,GAAG,WAAW,MAAO,CAAEupB,EAAIguB,cAAgBhuB,EAAIpD,MAAQoD,EAAIouB,aAAcnuB,EAAG,SAAS,CAACG,YAAY,wCAAwCH,EAAG,WAAW,CAACG,YAAY,wCAAwC,EAAEoJ,OAAM,MAAS,CAACxJ,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAACG,YAAY,uCAAuC,CAACJ,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIpoB,UACrf,GACsB,IEOpB,EACA,KACA,WACA,MAI8B,QCnBoO,INQrP0jC,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,uBACNwC,WAAY,CACRu0C,2BAA0B,GAC1BpnB,sBAAqBA,GAAAA,GAEzBkU,OAAQ,CACJiT,IAEJhqC,MAAO,CACHonC,iBAAkB,CACdnnC,KAAMlF,QACNmF,SAAS,GAEbmnC,gBAAiB,CACbpnC,KAAMlF,QACNmF,SAAS,GAEbwnB,MAAO,CACHznB,KAAMnM,MACNyT,UAAU,GAEd2uB,eAAgB,CACZj2B,KAAMlH,OACNmH,QAAS,IAGjB+iB,MAAKA,KAGM,CACHiU,WAHe7O,KAIf8O,eAHmB9M,OAM3BhL,SAAU,CACNkG,WAAAA,GACI,OAAO,KAAKI,YAAYmE,MAC5B,EACA+d,OAAAA,GAAU,IAAA/P,EAEN,OAAI,KAAK5B,eAAiB,IACf,IAEY,QAAhB4B,EAAA,KAAKvS,mBAAW,IAAAuS,OAAA,EAAhBA,EAAkB+P,UAAW,EACxC,EACA/gB,GAAAA,GAAM,IAAAxB,EAEF,QAAmB,QAAXA,EAAA,KAAK5kB,cAAM,IAAA4kB,GAAO,QAAPA,EAAXA,EAAa1rB,aAAK,IAAA0rB,OAAA,EAAlBA,EAAoBwB,MAAO,KAAKruB,QAAQ,WAAY,KAChE,EACAyxC,aAAAA,GACI,MAAMpW,GAAQ/T,EAAAA,GAAAA,IAAE,QAAS,8CACzB,MAAO,CACH,aAAc+T,EACdqW,QAAS,KAAKC,cACdC,cAAe,KAAKC,eACpBnvB,MAAO2Y,EAEf,EACAyW,aAAAA,GACI,OAAO,KAAKpT,eAAe7M,QAC/B,EACA8f,aAAAA,GACI,OAAO,KAAKG,cAAc32C,SAAW,KAAK8zB,MAAM9zB,MACpD,EACA42C,cAAAA,GACI,OAAqC,IAA9B,KAAKD,cAAc32C,MAC9B,EACA02C,cAAAA,GACI,OAAQ,KAAKF,gBAAkB,KAAKI,cACxC,GAEJ/pB,QAAS,CACLgqB,eAAAA,CAAgBvyB,GACZ,OAAI,KAAKoxB,cAAgBpxB,EACd,KAAKwxB,aAAe,YAAc,aAEtC,IACX,EACAP,cAAAA,CAAeP,GAAQ,IAAA1Q,EACnB,MAAO,CACH,sBAAsB,EACtB,iCAAkC0Q,EAAOhwC,KACzC,iCAAiC,EACjC,oBAAArF,OAAoC,QAApC2kC,EAAoB,KAAK3S,mBAAW,IAAA2S,OAAA,EAAhBA,EAAkBxS,GAAE,KAAAnyB,OAAIq1C,EAAOljB,MAAO,EAElE,EACAglB,WAAAA,CAAYpgB,GACR,GAAIA,EAAU,CACV,MAAMI,EAAY,KAAKhD,MAAM1uB,KAAIivB,GAAQA,EAAKG,SAAQ5sB,OAAOT,SAC7DomB,GAAO+E,MAAM,+BAAgC,CAAEwE,cAC/C,KAAKyM,eAAevM,aAAa,MACjC,KAAKuM,eAAe1M,IAAIC,EAC5B,MAEIvJ,GAAO+E,MAAM,qBACb,KAAKiR,eAAetM,OAE5B,EACA4W,cAAAA,GACI,KAAKtK,eAAetM,OACxB,EACA9K,EAACA,GAAAA,sBOnGL,GAAU,CAAC,EAEf,GAAQuB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IRTW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,KAAK,CAACG,YAAY,wBAAwB,CAACH,EAAG,KAAK,CAACG,YAAY,8CAA8C7mB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAIA,EAAO1b,KAAKzJ,QAAQ,QAAQ8kB,EAAIomB,GAAG/lB,EAAOgmB,QAAQ,MAAM,GAAGhmB,EAAO7kB,IAAI,CAAC,MAAM,YAA0B6kB,EAAO1R,SAAS0R,EAAOzR,UAAUyR,EAAO3R,QAAQ2R,EAAO5R,QAA/D,KAA0FuR,EAAImmB,eAAe9sC,MAAM,KAAMH,UAAU,IAAI,CAAC+mB,EAAG,wBAAwBD,EAAIG,GAAG,CAAC5mB,GAAG,CAAC,iBAAiBymB,EAAIovB,cAAc,wBAAwBpvB,EAAI4uB,eAAc,KAAS,GAAG5uB,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,uEAAuEnZ,MAAM,CAAC,YAAY+Y,EAAImvB,gBAAgB,cAAc,CAAClvB,EAAG,OAAO,CAACG,YAAY,yBAAyBJ,EAAIQ,GAAG,KAAKP,EAAG,6BAA6B,CAAChZ,MAAM,CAAC,KAAO+Y,EAAIyE,EAAE,QAAS,QAAQ,KAAO,eAAe,GAAGzE,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,4BAA4BJ,EAAIQ,GAAG,KAAMR,EAAI+rB,gBAAiB9rB,EAAG,KAAK,CAACG,YAAY,0CAA0CzS,MAAM,CAAE,+BAAgCqS,EAAI+rB,iBAAkB9kC,MAAM,CAAC,YAAY+Y,EAAImvB,gBAAgB,UAAU,CAAClvB,EAAG,6BAA6B,CAAChZ,MAAM,CAAC,KAAO+Y,EAAIyE,EAAE,QAAS,QAAQ,KAAO,WAAW,GAAGzE,EAAIU,KAAKV,EAAIQ,GAAG,KAAMR,EAAI8rB,iBAAkB7rB,EAAG,KAAK,CAACG,YAAY,2CAA2CzS,MAAM,CAAE,+BAAgCqS,EAAI8rB,kBAAmB7kC,MAAM,CAAC,YAAY+Y,EAAImvB,gBAAgB,WAAW,CAAClvB,EAAG,6BAA6B,CAAChZ,MAAM,CAAC,KAAO+Y,EAAIyE,EAAE,QAAS,YAAY,KAAO,YAAY,GAAGzE,EAAIU,KAAKV,EAAIQ,GAAG,KAAKR,EAAIqJ,GAAIrJ,EAAIusB,SAAS,SAASe,GAAQ,OAAOrtB,EAAG,KAAK,CAACzkB,IAAI8xC,EAAOljB,GAAGzc,MAAMqS,EAAI6tB,eAAeP,GAAQrmC,MAAM,CAAC,YAAY+Y,EAAImvB,gBAAgB7B,EAAOljB,MAAM,CAAIkjB,EAAOhwC,KAAM2iB,EAAG,6BAA6B,CAAChZ,MAAM,CAAC,KAAOqmC,EAAOztB,MAAM,KAAOytB,EAAOljB,MAAMnK,EAAG,OAAO,CAACD,EAAIQ,GAAG,WAAWR,EAAIS,GAAG6sB,EAAOztB,OAAO,aAAa,EAAE,KAAI,EAC74D,GACsB,IQUpB,EACA,KACA,WACA,MAI8B,QCnBhC,uCAIA,MCJ2P,GDI5O3B,EAAAA,GAAIld,OAAO,CACtBpJ,KAAM,cACN6jC,OAAQ,CAACC,IACTh3B,MAAO,CACH2qC,cAAe,CACX1qC,KAAM,CAACxO,OAAQswB,UACfxa,UAAU,GAEdqjC,QAAS,CACL3qC,KAAMnD,OACNyK,UAAU,GAEdsjC,YAAa,CACT5qC,KAAMnM,MACNyT,UAAU,GAEdujC,WAAY,CACR7qC,KAAMxO,OACNyO,QAASA,KAAA,CAAS,IAEtB6qC,cAAe,CACX9qC,KAAMlH,OACNmH,QAAS,GAEbg7B,SAAU,CACNj7B,KAAMlF,QACNmF,SAAS,GAKb8qC,QAAS,CACL/qC,KAAMnD,OACNoD,QAAS,KAGjBI,IAAAA,GACI,MAAO,CACHlF,MAAO,KAAK2vC,cACZE,aAAc,EACdC,aAAc,EACdC,YAAa,EACbC,eAAgB,KAExB,EACA/rB,SAAU,CAENgsB,OAAAA,GACI,OAAO,KAAKF,YAAc,CAC9B,EAEAG,WAAAA,GACI,OAAI,KAAKpQ,SACE,KAAKqQ,YAET,CACX,EACAC,UAAAA,GAGI,OAAO,KAAKtQ,SAAY,IAAiB,EAC7C,EAEAuQ,UAASA,IAEE,IAEXC,QAAAA,GACI,OAAO/2B,KAAKg3B,MAAM,KAAKR,YAAc,KAAKD,cAAgB,KAAKM,YAAe,KAAKF,YAAc,KAAKC,YAAe,EAAI,CAC7H,EACAA,WAAAA,GACI,OAAK,KAAKrQ,SAGHvmB,KAAKi3B,MAAM,KAAK1V,eAAiB,KAAKuV,WAFlC,CAGf,EACAI,UAAAA,GACI,OAAOl3B,KAAKD,IAAI,EAAG,KAAKtZ,MAAQ,KAAKkwC,YACzC,EACAQ,UAAAA,GAEI,OAAI,KAAK5Q,SACE,KAAKwQ,SAAW,KAAKH,YAEzB,KAAKG,QAChB,EACAK,aAAAA,GACI,IAAK,KAAKV,QACN,MAAO,GAEX,MAAM7W,EAAQ,KAAKqW,YAAYx3C,MAAM,KAAKw4C,WAAY,KAAKA,WAAa,KAAKC,YAEvEE,EADWxX,EAAMh5B,QAAOpB,GAAQ3I,OAAO60C,OAAO,KAAK2F,gBAAgBhyC,SAASG,EAAK,KAAKwwC,YAC9D5xC,KAAIoB,GAAQA,EAAK,KAAKwwC,WAC9CsB,EAAaz6C,OAAO+G,KAAK,KAAKyzC,gBAAgBzwC,QAAO1E,IAAQk1C,EAAa/xC,SAAS,KAAKgyC,eAAen1C,MAC7G,OAAO09B,EAAMx7B,KAAIoB,IACb,MAAMgB,EAAQ3J,OAAO60C,OAAO,KAAK2F,gBAAgBz1C,QAAQ4D,EAAK,KAAKwwC,UAEnE,IAAe,IAAXxvC,EACA,MAAO,CACHtE,IAAKrF,OAAO+G,KAAK,KAAKyzC,gBAAgB7wC,GACtChB,QAIR,MAAMtD,EAAMo1C,EAAWnpC,OAAS4R,KAAKw3B,SAASv0C,SAAS,IAAIwN,OAAO,GAElE,OADA,KAAK6mC,eAAen1C,GAAOsD,EAAK,KAAKwwC,SAC9B,CAAE9zC,MAAKsD,OAAM,GAE5B,EACAgyC,UAAAA,GACI,MAAMC,EAAiB,KAAKR,WAAa,KAAKH,SAAW,KAAKb,YAAYj3C,OACpE04C,EAAY,KAAKzB,YAAYj3C,OAAS,KAAKi4C,WAAa,KAAKC,WAC7DS,EAAmB53B,KAAKi3B,MAAMj3B,KAAKmN,IAAI,KAAK+oB,YAAYj3C,OAAS,KAAKi4C,WAAYS,GAAa,KAAKf,aAC1G,MAAO,CACHiB,WAAU,GAAAj5C,OAAKohB,KAAKi3B,MAAM,KAAKC,WAAa,KAAKN,aAAe,KAAKC,WAAU,MAC/EiB,cAAeJ,EAAiB,EAAC,GAAA94C,OAAMg5C,EAAmB,KAAKf,WAAU,MAEjF,GAEJzlB,MAAO,CACHglB,aAAAA,CAAc3vC,GACV,KAAKuV,SAASvV,EAClB,EACAmwC,WAAAA,CAAYA,EAAamB,GACE,IAAnBA,EAQJ,KAAK/7B,SAAS,KAAKvV,OALfmZ,GAAQ2R,MAAM,iDAMtB,GAEJ9F,OAAAA,GAAU,IAAAsc,EAAAiQ,EACN,MAAMC,EAAmB,QAAblQ,EAAG,KAAKtC,aAAK,IAAAsC,OAAA,EAAVA,EAAYkQ,OACrBhlB,EAAO,KAAK5F,IACZ6qB,EAAkB,QAAbF,EAAG,KAAKvS,aAAK,IAAAuS,OAAA,EAAVA,EAAYE,MAC1B,KAAKzB,eAAiB,IAAI7U,gBAAeuW,EAAAA,GAAAA,WAAS,KAAM,IAAAC,EAAAC,EAAAC,EACpD,KAAKhC,aAAmC,QAAvB8B,EAAGH,aAAM,EAANA,EAAQM,oBAAY,IAAAH,EAAAA,EAAI,EAC5C,KAAK7B,aAAkC,QAAtB8B,EAAGH,aAAK,EAALA,EAAOK,oBAAY,IAAAF,EAAAA,EAAI,EAC3C,KAAK7B,YAAgC,QAArB8B,EAAGrlB,aAAI,EAAJA,EAAMslB,oBAAY,IAAAD,EAAAA,EAAI,EACzC9rB,GAAO+E,MAAM,uCACb,KAAKinB,UAAU,GAChB,KAAK,IACR,KAAK/B,eAAe1U,QAAQkW,GAC5B,KAAKxB,eAAe1U,QAAQ9O,GAC5B,KAAKwjB,eAAe1U,QAAQmW,GACxB,KAAK9B,eACL,KAAKp6B,SAAS,KAAKo6B,eAGvB,KAAK/oB,IAAI3T,iBAAiB,SAAU,KAAK8+B,SAAU,CAAEC,SAAS,IAC9D,KAAKnB,eAAiB,CAAC,CAC3B,EACA/nB,aAAAA,GACQ,KAAKknB,gBACL,KAAKA,eAAezU,YAE5B,EACAlW,QAAS,CACL9P,QAAAA,CAASvV,GACL,MAAMiyC,EAAY14B,KAAKg3B,KAAK,KAAKd,YAAYj3C,OAAS,KAAK23C,aAC3D,GAAI8B,EAAY,KAAK3B,SAEjB,YADAvqB,GAAO+E,MAAM,iDAAkD,CAAE9qB,QAAOiyC,YAAW3B,SAAU,KAAKA,WAGtG,KAAKtwC,MAAQA,EAEb,MAAMkyC,GAAa34B,KAAKi3B,MAAMxwC,EAAQ,KAAKmwC,aAAe,IAAO,KAAKC,WAAa,KAAKP,aACxF9pB,GAAO+E,MAAM,mCAAqC9qB,EAAO,CAAEkyC,YAAW/B,YAAa,KAAKA,cACxF,KAAKvpB,IAAIsrB,UAAYA,CACzB,EACAH,QAAAA,GAAW,IAAAI,EACa,QAApBA,EAAA,KAAKC,uBAAe,IAAAD,IAApB,KAAKC,gBAAoBC,uBAAsB,KAC3C,KAAKD,gBAAkB,KACvB,MAAME,EAAY,KAAK1rB,IAAIsrB,UAAY,KAAKrC,aACtC7vC,EAAQuZ,KAAKi3B,MAAM8B,EAAY,KAAKlC,YAAc,KAAKD,YAE7D,KAAKnwC,MAAQuZ,KAAKD,IAAI,EAAGtZ,GACzB,KAAKwgB,MAAM,SAAS,IAE5B,KEzKR,IAXgB,QACd,IFRW,WAAkB,IAAIN,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,MAAM,CAACG,YAAY,aAAanZ,MAAM,CAAC,qBAAqB,KAAK,CAACgZ,EAAG,MAAM,CAAC1c,IAAI,SAAS6c,YAAY,sBAAsB,CAACJ,EAAI+d,GAAG,WAAW,GAAG/d,EAAIQ,GAAG,KAAQR,EAAInS,aAAa,kBAAmBoS,EAAG,MAAM,CAACG,YAAY,6BAA6B,CAACJ,EAAI+d,GAAG,mBAAmB,GAAG/d,EAAIU,KAAKV,EAAIQ,GAAG,KAAKP,EAAG,QAAQ,CAACG,YAAY,oBAAoBzS,MAAM,CAAE,0CAA2CqS,EAAInS,aAAa,oBAAqB,CAAEmS,EAAI0vB,QAASzvB,EAAG,UAAU,CAACG,YAAY,mBAAmB,CAACJ,EAAIQ,GAAG,WAAWR,EAAIS,GAAGT,EAAI0vB,SAAS,YAAY1vB,EAAIU,KAAKV,EAAIQ,GAAG,KAAKP,EAAG,QAAQ,CAAC1c,IAAI,QAAQ6c,YAAY,oBAAoBnZ,MAAM,CAAC,2BAA2B,KAAK,CAAC+Y,EAAI+d,GAAG,WAAW,GAAG/d,EAAIQ,GAAG,KAAKP,EAAG,QAAQ,CAACG,YAAY,oBAAoBzS,MAAMqS,EAAI4f,SAAW,0BAA4B,0BAA0BxqB,MAAO4K,EAAI8wB,WAAY7pC,MAAM,CAAC,2BAA2B,KAAK+Y,EAAIqJ,GAAIrJ,EAAIywB,eAAe,SAAA3uB,EAAqB1pB,GAAE,IAAd,IAACoD,EAAG,KAAEsD,GAAKgjB,EAAI,OAAO7B,EAAGD,EAAIqvB,cAAcrvB,EAAIG,GAAG,CAAC3kB,IAAIA,EAAI0Q,IAAI,YAAYjF,MAAM,CAAC,OAASnI,EAAK,MAAQ1G,IAAI,YAAY4nB,EAAIwvB,YAAW,GAAO,IAAG,GAAGxvB,EAAIQ,GAAG,KAAKP,EAAG,QAAQ,CAAC8oB,WAAW,CAAC,CAACnxC,KAAK,OAAOoxC,QAAQ,SAAShtC,MAAOgkB,EAAI+vB,QAAS9G,WAAW,YAAY7oB,YAAY,oBAAoBnZ,MAAM,CAAC,2BAA2B,KAAK,CAAC+Y,EAAI+d,GAAG,WAAW,MAC30C,GACsB,IESpB,EACA,KACA,KACA,MAI8B,QCJ1B7c,IAAUiiB,EAAAA,EAAAA,MAChB,IAAe7H,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,8BACNwC,WAAY,CACRmpC,UAAS,KACTD,eAAc,KACd1Z,iBAAgB,KAChB6Z,cAAaA,GAAAA,GAEjBhI,OAAQ,CACJC,IAEJh3B,MAAO,CACHulB,YAAa,CACTtlB,KAAMxO,OACN8V,UAAU,GAEdgjC,cAAe,CACXtqC,KAAMnM,MACNoM,QAASA,IAAO,KAGxB+iB,MAAKA,KAIM,CACHoZ,iBAJqB9C,KAKrBrC,WAJe7O,KAKf8O,eAJmB9M,OAO3B/pB,KAAIA,KACO,CACH06B,QAAS,OAGjB3b,SAAU,CACNyH,GAAAA,GAAM,IAAAxB,EAEF,QAAmB,QAAXA,EAAA,KAAK5kB,cAAM,IAAA4kB,GAAO,QAAPA,EAAXA,EAAa1rB,aAAK,IAAA0rB,OAAA,EAAlBA,EAAoBwB,MAAO,KAAKruB,QAAQ,WAAY,KAChE,EACAwmC,cAAAA,GACI,OAAOziB,GACFhhB,QAAO4rB,GAAUA,EAAOiN,YACxB74B,QAAO4rB,IAAWA,EAAOK,SAAWL,EAAOK,QAAQ,KAAKC,MAAO,KAAKnC,eACpE3sB,MAAK,CAACC,EAAGC,KAAOD,EAAEgtB,OAAS,IAAM/sB,EAAE+sB,OAAS,IACrD,EACA6B,KAAAA,GACI,OAAO,KAAK6iB,cACPvxC,KAAIovB,GAAU,KAAKK,QAAQL,KAC3B5sB,OAAOT,QAChB,EACA4yC,mBAAAA,GACI,OAAO,KAAKjmB,MAAM2G,MAAKpG,GAAQA,EAAK8K,SAAWvB,EAAAA,GAAWC,SAC9D,EACA2K,WAAY,CACR/jB,GAAAA,GACI,MAAwC,WAAjC,KAAKgkB,iBAAiB7C,MACjC,EACA/O,GAAAA,CAAI+O,GACA,KAAK6C,iBAAiB7C,OAASA,EAAS,SAAW,IACvD,GAEJoU,aAAAA,GACI,OAAI,KAAK1X,eAAiB,IACf,EAEP,KAAKA,eAAiB,IACf,EAEP,KAAKA,eAAiB,KACf,EAEJ,CACX,GAEJzV,QAAS,CAOLgI,OAAAA,CAAQ2P,GACJ,OAAO,KAAKlB,WAAWzO,QAAQ2P,EACnC,EACA,mBAAM8H,CAAc9Y,GAChB,MAAME,EAAcF,EAAOE,YAAY,KAAKI,MAAO,KAAKnC,aAClDsoB,EAAe,KAAKtD,cAC1B,IAEI,KAAKvP,QAAU5T,EAAO1B,GACtB,KAAKgC,MAAMzqB,SAAQgrB,IACfzO,EAAAA,GAAAA,IAAQyO,EAAM,SAAUuJ,EAAAA,GAAWC,QAAQ,IAG/C,MAAMnF,QAAgBlF,EAAOiN,UAAU,KAAK3M,MAAO,KAAKnC,YAAa,KAAKuB,KAE1E,IAAKwF,EAAQ+B,MAAKz3B,GAAqB,OAAXA,IAGxB,YADA,KAAKugC,eAAetM,QAIxB,GAAIyB,EAAQ+B,MAAKz3B,IAAqB,IAAXA,IAAmB,CAE1C,MAAMk3C,EAAYD,EACbryC,QAAO,CAAC4sB,EAAQhtB,KAA6B,IAAnBkxB,EAAQlxB,KAEvC,GADA,KAAK+7B,eAAe1M,IAAIqjB,GACpBxhB,EAAQ+B,MAAKz3B,GAAqB,OAAXA,IAGvB,OAGJ,YADAwqB,EAAAA,GAAAA,IAAU,KAAKrB,EAAE,QAAS,2CAA4C,CAAEuH,gBAE5E,EAEA5C,EAAAA,GAAAA,IAAY,KAAK3E,EAAE,QAAS,qDAAsD,CAAEuH,iBACpF,KAAK6P,eAAetM,OACxB,CACA,MAAO7sB,GACHmjB,GAAO1P,MAAM,+BAAgC,CAAE2V,SAAQppB,OACvDojB,EAAAA,GAAAA,IAAU,KAAKrB,EAAE,QAAS,gCAAiC,CAAEuH,gBACjE,CAAC,QAGG,KAAK0T,QAAU,KACf,KAAKtT,MAAMzqB,SAAQgrB,IACfzO,EAAAA,GAAAA,IAAQyO,EAAM,cAAUvzB,EAAU,GAE1C,CACJ,EACAqrB,EAAGsB,GAAAA,MCpJgQ,sBCWvQ,GAAU,CAAC,EAEf,GAAQC,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OClB1D,IAAI,IAAY,QACd,IHTW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,MAAM,CAACG,YAAY,oDAAoD,CAACH,EAAG,YAAY,CAAC1c,IAAI,cAAc0D,MAAM,CAAC,WAAa+Y,EAAI0f,SAAW1f,EAAIqyB,oBAAoB,cAAa,EAAK,OAASryB,EAAIsyB,cAAc,YAAYtyB,EAAIsyB,eAAiB,EAAItyB,EAAIyE,EAAE,QAAS,WAAa,KAAK,KAAOzE,EAAI8gB,YAAYvnC,GAAG,CAAC,cAAc,SAAS8mB,GAAQL,EAAI8gB,WAAWzgB,CAAM,IAAIL,EAAIqJ,GAAIrJ,EAAI2jB,gBAAgB,SAAS7X,GAAQ,OAAO7L,EAAG,iBAAiB,CAACzkB,IAAIswB,EAAO1B,GAAGzc,MAAM,iCAAmCme,EAAO1B,GAAG7wB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAI4kB,cAAc9Y,EAAO,GAAGxC,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,OAAO/E,GAAG,WAAW,MAAO,CAAEupB,EAAI0f,UAAY5T,EAAO1B,GAAInK,EAAG,gBAAgB,CAAChZ,MAAM,CAAC,KAAO,MAAMgZ,EAAG,mBAAmB,CAAChZ,MAAM,CAAC,IAAM6kB,EAAOG,cAAcjM,EAAIoM,MAAOpM,EAAIiK,gBAAgB,EAAET,OAAM,IAAO,MAAK,IAAO,CAACxJ,EAAIQ,GAAG,WAAWR,EAAIS,GAAGqL,EAAOE,YAAYhM,EAAIoM,MAAOpM,EAAIiK,cAAc,WAAW,IAAG,IAAI,EACj+B,GACsB,IGUpB,EACA,KACA,WACA,MAIF,SAAe,GAAiB,QCnBgO,IjGkBjPqR,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,mBACNwC,WAAY,CACRq4C,gBAAe,GACfC,qBAAoB,GACpBC,qBAAoB,GACpBC,YAAW,GACXC,4BAA2BA,IAE/BpX,OAAQ,CACJC,IAEJh3B,MAAO,CACHulB,YAAa,CACTtlB,KAAMH,EAAAA,GACNyH,UAAU,GAEdyhC,cAAe,CACX/oC,KAAM+pB,EAAAA,GACNziB,UAAU,GAEdmgB,MAAO,CACHznB,KAAMnM,MACNyT,UAAU,IAGlB0b,MAAKA,KAGM,CACHR,gBAHoBD,KAIpB2U,eAHmB9M,OAM3B/pB,KAAIA,KACO,CACH8tC,UAAS,GACTC,cAAa,GACbhf,SAASif,EAAAA,EAAAA,MACTvD,cAAe,EACfwD,WAAY,OAGpBlvB,SAAU,CACN6C,UAAAA,GACI,OAAO,KAAKO,gBAAgBP,UAChC,EACAkW,MAAAA,GACI,OAAO+B,SAAS,KAAKz5B,OAAOtC,OAAOgqB,SAAW,IAClD,EAKAomB,QAAAA,GACI,QAAS,KAAK9tC,OAAO9G,MAAM60C,QAC/B,EACAzU,OAAAA,GACI,OAAOjJ,GAAc,KAAKrJ,MAC9B,EACA0f,gBAAAA,GAEI,QAAI,KAAKlR,eAAiB,MAGnB,KAAKxO,MAAM2G,MAAKpG,QAAuBvzB,IAAfuzB,EAAK8H,OACxC,EACAsX,eAAAA,GAEI,QAAI,KAAKnR,eAAiB,MAGnB,KAAKxO,MAAM2G,MAAKpG,QAAsBvzB,IAAduzB,EAAK5M,MACxC,EACAqzB,aAAAA,GACI,OAAK,KAAK1F,eAAkB,KAAKzjB,YAG1B,IAAI,KAAK8J,SAASz2B,MAAK,CAACC,EAAGC,IAAMD,EAAEgtB,MAAQ/sB,EAAE+sB,QAFzC,EAGf,EACAmlB,OAAAA,GACI,MAAM2D,GAAiB5uB,EAAAA,GAAAA,IAAE,QAAS,8BAC5B6uB,EAAc,KAAKrpB,YAAYylB,SAAW2D,EAC1CE,GAAkB9uB,EAAAA,GAAAA,IAAE,QAAS,6CAC7B+uB,GAAkB/uB,EAAAA,GAAAA,IAAE,QAAS,yHACnC,SAAAxsB,OAAUq7C,EAAW,MAAAr7C,OAAKs7C,EAAe,MAAAt7C,OAAKu7C,EAClD,EACAvE,aAAAA,GACI,OAAO,KAAKpT,eAAe7M,QAC/B,EACAkgB,cAAAA,GACI,OAAqC,IAA9B,KAAKD,cAAc32C,MAC9B,GAEJmyB,MAAO,CACHqS,MAAAA,CAAOA,GACH,KAAK2W,aAAa3W,GAAQ,EAC9B,EACAoW,QAAAA,CAASxrB,GACDA,GACA,KAAKlU,WAAU,IAAM,KAAKkgC,eAAe,KAAK5W,SAEtD,GAEJhY,OAAAA,GAEwB1V,OAAOuF,SAASE,cAAc,oBACtC9B,iBAAiB,WAAY,KAAKkqB,YAE9C,MAAM,GAAE7S,IAAOxJ,EAAAA,GAAAA,GAAU,QAAS,eAAgB,CAAC,GACnD,KAAK6yB,aAAarpB,QAAAA,EAAM,KAAK0S,QAC7B,KAAK6W,mBAAmBvpB,QAAAA,EAAM,KAAK0S,QACnC,KAAK4W,eAAetpB,QAAAA,EAAM,KAC9B,EACAxB,aAAAA,GACwBxZ,OAAOuF,SAASE,cAAc,oBACtC5B,oBAAoB,WAAY,KAAKgqB,WACrD,EACA9X,QAAS,CAGLwuB,kBAAAA,CAAmB7W,GACf,GAAInoB,SAASI,gBAAgBgmB,YAAc,MAAQ,KAAK2S,cAAc5gB,SAAWgQ,EAAQ,KAAAgF,EAGrF,MAAMnV,EAAO,KAAKP,MAAMjC,MAAK3O,GAAKA,EAAEsR,SAAWgQ,IAC3CnQ,SAAQoV,IAAsB,QAATD,EAAbC,GAAe5V,eAAO,IAAA2V,GAAtBA,EAAAhqC,KAAAiqC,GAAyB,CAACpV,GAAO,KAAK1C,eAC9CpE,GAAO+E,MAAM,2BAA6B+B,EAAK9pB,KAAM,CAAE8pB,SACvDoV,GAAc/kC,KAAK2vB,EAAM,KAAK1C,YAAa,KAAKyjB,cAAc7qC,MAEtE,CACJ,EACA4wC,YAAAA,CAAa3W,GAAqB,IAAblD,IAAI1gC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,KAAAA,UAAA,GACrB,GAAI4jC,EAAQ,CACR,MAAMh9B,EAAQ,KAAKssB,MAAMiY,WAAU1X,GAAQA,EAAKG,SAAWgQ,IACvDlD,IAAmB,IAAX95B,GAAgBg9B,IAAW,KAAK4Q,cAAc5gB,SACtDhH,EAAAA,GAAAA,IAAU,KAAKrB,EAAE,QAAS,mBAE9B,KAAKgrB,cAAgBp2B,KAAKD,IAAI,EAAGtZ,EACrC,CACJ,EAKA4zC,cAAAA,CAAe5W,GACX,GAAe,OAAXA,GAAmB,KAAKmW,aAAenW,EACvC,OAEJ,MAAMnQ,EAAO,KAAKP,MAAMjC,MAAK3O,GAAKA,EAAEsR,SAAWgQ,SAClC1jC,IAATuzB,GAAsBA,EAAKhoB,OAAS8pB,EAAAA,GAASC,SAGjD7I,GAAO+E,MAAM,gBAAkB+B,EAAK9pB,KAAM,CAAE8pB,SAC5C,KAAKsmB,WAAanW,GAClBqG,EAAAA,EAAAA,MACKjjC,QAAO4rB,IAAWA,EAAOK,SAAWL,EAAOK,QAAQ,CAACQ,GAAO,KAAK1C,eAChE3sB,MAAK,CAACC,EAAGC,KAAOD,EAAEgtB,OAAS,IAAM/sB,EAAE+sB,OAAS,KAC5CrqB,QAAO4rB,KAAYA,UAAAA,EAAQlnB,WAAS,GAAG5H,KAAK2vB,EAAM,KAAK1C,YAAa,KAAKyjB,cAAc7qC,MAChG,EACA+wC,UAAUjnB,GACCA,EAAKG,OAEhBmQ,UAAAA,CAAWlmC,GAAO,IAAAsmC,EAGd,GADwC,QAArBA,EAAGtmC,EAAMmmC,oBAAY,IAAAG,OAAA,EAAlBA,EAAoBwW,MAAMl1C,SAAS,SAIrD,OAEJ5H,EAAMkY,iBACNlY,EAAMuvB,kBACN,MAAMwtB,EAAW,KAAKhV,MAAMiV,MAAMrtB,IAAI1R,wBAAwBE,IACxD8+B,EAAcF,EAAW,KAAKhV,MAAMiV,MAAMrtB,IAAI1R,wBAAwBi/B,OAExEl9C,EAAM2qC,QAAUoS,EAAW,IAC3B,KAAKhV,MAAMiV,MAAMrtB,IAAIsrB,UAAY,KAAKlT,MAAMiV,MAAMrtB,IAAIsrB,UAAY,GAIlEj7C,EAAM2qC,QAAUsS,EAAc,KAC9B,KAAKlV,MAAMiV,MAAMrtB,IAAIsrB,UAAY,KAAKlT,MAAMiV,MAAMrtB,IAAIsrB,UAAY,GAE1E,EACAvtB,EAACA,GAAAA,sBkGhML,GAAU,CAAC,EAEf,GAAQuB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,uBCftD,GAAU,CAAC,EAEf,GAAQL,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCN1D,UAXgB,QACd,IpGVW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,cAAc,CAAC1c,IAAI,QAAQ0D,MAAM,CAAC,iBAAiB+Y,EAAI4G,WAAWK,UAAYjH,EAAI+yB,cAAgB/yB,EAAI8yB,UAAU,WAAW,SAAS,eAAe9yB,EAAIoM,MAAM,YAAYpM,EAAI4G,WAAWK,UAAU,cAAc,CACjT6kB,iBAAkB9rB,EAAI8rB,iBACtBC,gBAAiB/rB,EAAI+rB,gBACrB3f,MAAOpM,EAAIoM,MACXwO,eAAgB5a,EAAI4a,gBACnB,kBAAkB5a,EAAIyvB,cAAc,QAAUzvB,EAAI0vB,SAASpmB,YAAYtJ,EAAIuJ,GAAG,CAAGvJ,EAAIkvB,eAA8U,KAA9T,CAAC1zC,IAAI,iBAAiB/E,GAAG,WAAW,MAAO,CAACwpB,EAAG,OAAO,CAACG,YAAY,wBAAwB,CAACJ,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,mBAAoB,CAAEyvB,MAAOl0B,EAAIivB,cAAc32C,aAAc0nB,EAAIQ,GAAG,KAAKP,EAAG,8BAA8B,CAAChZ,MAAM,CAAC,eAAe+Y,EAAIiK,YAAY,iBAAiBjK,EAAIivB,iBAAiB,EAAEzlB,OAAM,GAAW,CAAChuB,IAAI,SAAS/E,GAAG,WAAW,OAAOupB,EAAIqJ,GAAIrJ,EAAIozB,eAAe,SAAS3F,GAAQ,OAAOxtB,EAAG,kBAAkB,CAACzkB,IAAIiyC,EAAOrjB,GAAGnjB,MAAM,CAAC,iBAAiB+Y,EAAI0tB,cAAc,eAAe1tB,EAAIiK,YAAY,OAASwjB,IAAS,GAAE,EAAEjkB,OAAM,GAAM,CAAChuB,IAAI,SAAS/E,GAAG,WAAW,MAAO,CAACwpB,EAAG,uBAAuB,CAAC1c,IAAI,QAAQ0D,MAAM,CAAC,mBAAmB+Y,EAAI4a,eAAe,qBAAqB5a,EAAI8rB,iBAAiB,oBAAoB9rB,EAAI+rB,gBAAgB,MAAQ/rB,EAAIoM,SAAS,EAAE5C,OAAM,GAAM,CAAChuB,IAAI,SAAS/E,GAAG,WAAW,MAAO,CAACwpB,EAAG,uBAAuB,CAAChZ,MAAM,CAAC,mBAAmB+Y,EAAI4a,eAAe,qBAAqB5a,EAAI8rB,iBAAiB,oBAAoB9rB,EAAI+rB,gBAAgB,MAAQ/rB,EAAIoM,MAAM,QAAUpM,EAAI0e,WAAW,EAAElV,OAAM,IAAO,MAAK,IAC1nC,GACsB,IoGMpB,EACA,KACA,WACA,MAI8B,QCpBgF,GCoBhH,CACE5xB,KAAM,oBACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAIob,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,4CAA4CnZ,MAAM,CAAC,eAAc+Y,EAAIH,OAAQ,KAAY,aAAaG,EAAIH,MAAM,KAAO,OAAOtmB,GAAG,CAAC,MAAQ,SAAS8mB,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BnZ,MAAM,CAAC,KAAO+Y,EAAIF,UAAU,MAAQE,EAAID,KAAK,OAASC,EAAID,KAAK,QAAU,cAAc,CAACE,EAAG,OAAO,CAAChZ,MAAM,CAAC,EAAI,uJAAuJ,CAAE+Y,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIS,GAAGT,EAAIH,UAAUG,EAAIU,UAC3qB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElBiO,ICQlP4a,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,oBACNwC,WAAY,CACR+5C,kBAAiBA,IAErBzvC,MAAO,CACHgpC,cAAe,CACX/oC,KAAM+pB,EAAAA,GACNziB,UAAU,IAGlBjH,KAAIA,KACO,CACH26B,UAAU,IAGlB5b,SAAU,CACNkG,WAAAA,GACI,OAAO,KAAKI,YAAYmE,MAC5B,EAIA4lB,SAAAA,GACI,OAAO,KAAK1G,eAA0E,IAAxD,KAAKA,cAAclhB,YAAcC,EAAAA,GAAWuL,OAC9E,EACAqc,eAAAA,GAAkB,IAAAzG,EACd,OAAqE,KAA5C,QAAlBA,EAAA,KAAKF,qBAAa,IAAAE,GAAY,QAAZA,EAAlBA,EAAoB9a,kBAAU,IAAA8a,OAAA,EAA9BA,EAAiC,yBAC5C,EACA0G,eAAAA,GACI,OAAI,KAAKD,gBACE,KAAK5vB,EAAE,QAAS,mEAEjB,KAAK2vB,UAGR,KAFI,KAAK3vB,EAAE,QAAS,2DAG/B,GAEJK,OAAAA,GAEI,MAAMyvB,EAAcnlC,OAAOuF,SAASE,cAAc,oBAClD0/B,EAAYxhC,iBAAiB,WAAY,KAAKkqB,YAC9CsX,EAAYxhC,iBAAiB,YAAa,KAAKivB,aAC/CuS,EAAYxhC,iBAAiB,OAAQ,KAAKyhC,cAC9C,EACA5rB,aAAAA,GACI,MAAM2rB,EAAcnlC,OAAOuF,SAASE,cAAc,oBAClD0/B,EAAYthC,oBAAoB,WAAY,KAAKgqB,YACjDsX,EAAYthC,oBAAoB,YAAa,KAAK+uB,aAClDuS,EAAYthC,oBAAoB,OAAQ,KAAKuhC,cACjD,EACArvB,QAAS,CACL8X,UAAAA,CAAWlmC,GAAO,IAAAsmC,EAEdtmC,EAAMkY,kBACkC,QAArBouB,EAAGtmC,EAAMmmC,oBAAY,IAAAG,OAAA,EAAlBA,EAAoBwW,MAAMl1C,SAAS,YAGrD,KAAKghC,UAAW,EAExB,EACAqC,WAAAA,CAAYjrC,GAAO,IAAA09C,EAIf,MAAM1lC,EAAgBhY,EAAMgY,cACxBA,SAAAA,EAAekzB,SAA6B,QAArBwS,EAAE19C,EAAMmrC,qBAAa,IAAAuS,EAAAA,EAAI19C,EAAMsW,SAGtD,KAAKsyB,WACL,KAAKA,UAAW,EAExB,EACA6U,aAAAA,CAAcz9C,GACV8uB,GAAO+E,MAAM,kDAAmD,CAAE7zB,UAClEA,EAAMkY,iBACF,KAAK0wB,WACL,KAAKA,UAAW,EAExB,EACA,YAAMvC,CAAOrmC,GAAO,IAAA29C,EAAApX,EAAAd,EAEhB,GAAI,KAAK8X,gBAEL,YADAxuB,EAAAA,GAAAA,IAAU,KAAKwuB,iBAGnB,GAAmC,QAAnCI,EAAI,KAAKhuB,IAAI7R,cAAc,gBAAQ,IAAA6/B,GAA/BA,EAAiCzS,SAASlrC,EAAMsW,QAChD,OAEJtW,EAAMkY,iBACNlY,EAAMuvB,kBAEN,MAAM4S,EAAQ,KAAsB,QAAlBoE,EAAAvmC,EAAMmmC,oBAAY,IAAAI,OAAA,EAAlBA,EAAoBpE,QAAS,IAGzCQ,QAAiBT,GAAuBC,GAExCpJ,QAAiC,QAAtB0M,EAAM,KAAKvS,mBAAW,IAAAuS,OAAA,EAAhBA,EAAkB1H,YAAY,KAAK4Y,cAAc7qC,OAClE2yB,EAAS1F,aAAQ,EAARA,EAAU0F,OACzB,IAAKA,EAED,YADA1P,EAAAA,GAAAA,IAAU,KAAKrB,EAAE,QAAS,0CAK9B,GAAI1tB,EAAM+X,OACN,OAEJ+W,GAAO+E,MAAM,UAAW,CAAE7zB,QAAOy+B,SAAQkE,aAEzC,MAEMib,SAFgB5a,GAAoBL,EAAUlE,EAAQ1F,EAASA,WAE1C8kB,UAAUza,IAAM,IAAA0a,EAAA,OAAK1a,EAAO1C,SAAWqd,GAAAA,EAAaC,SACvE5a,EAAO9J,KAAK2kB,mBAAmBr2C,SAAS,OAC1B,QAD8Bk2C,EAC7C1a,EAAOvU,gBAAQ,IAAAivB,GAAS,QAATA,EAAfA,EAAiB9gB,eAAO,IAAA8gB,OAAA,EAAxBA,EAA2B,eAEoC,IAA/D1a,EAAOjyB,OAAO/K,QAAQq4B,EAAOttB,OAAQ,IAAI7N,MAAM,KAAK/B,MAAY,IACzC,IAAA28C,EAAAlV,OAAX3mC,IAAfu7C,IACA9uB,GAAO+E,MAAM,6CAA8C,CAAE+pB,eAC7D,KAAKjoC,QAAQtV,KAAK,IACX,KAAKgO,OACRtC,OAAQ,CACJ6c,KAA8B,QAA1Bs1B,EAAoB,QAApBlV,EAAE,KAAK36B,OAAOtC,cAAM,IAAAi9B,OAAA,EAAlBA,EAAoBpgB,YAAI,IAAAs1B,EAAAA,EAAI,QAClCnoB,OAAQ+R,SAAS8V,EAAW/uB,SAASmO,QAAQ,kBAIzD,KAAK4L,UAAW,CACpB,EACAlb,EAACA,GAAAA,sBC/HL,GAAU,CAAC,EAEf,GAAQuB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAIrG,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,MAAM,CAAC8oB,WAAW,CAAC,CAACnxC,KAAK,OAAOoxC,QAAQ,SAAShtC,MAAOgkB,EAAI2f,SAAUsJ,WAAW,aAAa7oB,YAAY,+BAA+BnZ,MAAM,CAAC,+BAA+B,IAAI1N,GAAG,CAAC,KAAOymB,EAAIod,SAAS,CAACnd,EAAG,MAAM,CAACG,YAAY,wCAAwC,CAAEJ,EAAIo0B,YAAcp0B,EAAIq0B,gBAAiB,CAACp0B,EAAG,oBAAoB,CAAChZ,MAAM,CAAC,KAAO,MAAM+Y,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,sCAAsC,CAACJ,EAAIQ,GAAG,aAAaR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,uCAAuC,eAAe,CAACxE,EAAG,KAAK,CAACG,YAAY,sCAAsC,CAACJ,EAAIQ,GAAG,aAAaR,EAAIS,GAAGT,EAAIs0B,iBAAiB,gBAAgB,IACxuB,GACsB,IEUpB,EACA,KACA,WACA,MAI8B,2B7IiBhC,MAAMY,QAAwD97C,KAApB,QAAjB+7C,IAAAC,EAAAA,GAAAA,YAAiB,IAAAD,QAAA,EAAjBA,GAAmBE,e8IpC6M,I9IqC1O/Z,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,YACNwC,WAAY,CACRk7C,YAAW,GACXC,kBAAiB,GACjBC,iBAAgB,GAChB3L,SAAQ,KACR4L,aAAY,GACZC,aAAY,KACZjH,SAAQ,KACRkH,eAAc,KACd/rB,iBAAgB,KAChB6Z,cAAa,KACbmS,SAAQ,KACRrM,gBAAe,GACfsM,aAAY,KACZC,aAAYA,IAEhBra,OAAQ,CACJC,GACAgT,IAEJ/mB,KAAAA,GAAQ,IAAAG,EAQJ,MAAO,CACH8T,WARe7O,KASfkB,WAReD,KASf6N,eARmB9M,KASnB+M,cARkBrM,KASlBtI,gBARoBD,KASpBvF,gBARoBd,KASpB6H,eARqF,QAArEZ,GAAIlH,EAAAA,GAAAA,GAAU,OAAQ,SAAU,IAAI,yCAAiC,IAAAkH,GAAAA,EAU7F,EACA9iB,KAAIA,KACO,CACH+wC,WAAY,GACZrW,SAAS,EACTsW,QAAS,KACTC,KAAI,KACJC,kBAAmBA,SAG3BnyB,SAAU,CACN6C,UAAAA,GACI,OAAO,KAAKO,gBAAgBP,UAChC,EACAqD,WAAAA,GACI,OAAO,KAAKI,YAAYmE,QAAU,KAAKnE,YAAYH,MAAMC,MAAMxK,IAAI,IAAAs1B,EAAAlV,EAAA,OAAKpgB,EAAKyK,MAAgC,QAA9B6qB,EAAwB,QAAxBlV,EAAM,KAAK36B,OAAOtC,cAAM,IAAAi9B,OAAA,EAAlBA,EAAoBpgB,YAAI,IAAAs1B,EAAAA,EAAI,QAAQ,GAC7H,EACAkB,WAAAA,GAAc,IAAAC,EAAA5Z,EACV,OAA6B,QAA7B4Z,EAAuB,QAAvB5Z,EAAO,KAAKvS,mBAAW,IAAAuS,OAAA,EAAhBA,EAAkB5kC,YAAI,IAAAw+C,EAAAA,EAAI,KAAK3xB,EAAE,QAAS,QACrD,EAIA+G,GAAAA,GAAM,IAAAxB,EAEF,QAAmB,QAAXA,EAAA,KAAK5kB,cAAM,IAAA4kB,GAAO,QAAPA,EAAXA,EAAa1rB,aAAK,IAAA0rB,GAAK,QAALA,EAAlBA,EAAoBwB,WAAG,IAAAxB,OAAA,EAAvBA,EAAyB1tB,aAAc,KAAKa,QAAQ,WAAY,KAC5E,EAIAuwC,aAAAA,GAAgB,IAAA9Q,EACZ,GAAqB,QAAjBA,EAAC,KAAK3S,mBAAW,IAAA2S,IAAhBA,EAAkBxS,GACnB,OAEJ,GAAiB,MAAb,KAAKoB,IACL,OAAO,KAAKoQ,WAAWtO,QAAQ,KAAKrD,YAAYG,IAEpD,MAAM0S,EAAS,KAAK7O,WAAWE,QAAQ,KAAKlE,YAAYG,GAAI,KAAKoB,KACjE,OAAO,KAAKoQ,WAAWzO,QAAQ2P,EACnC,EAKAuZ,iBAAAA,GA2BI,MAAO,CA1Ba,IAEZ,KAAKzvB,WAAWG,qBAAuB,CAACzS,IAAC,IAAAgiC,EAAA,OAA+B,KAAf,QAAZA,EAAAhiC,EAAEwe,kBAAU,IAAAwjB,OAAA,EAAZA,EAAcnM,SAAc,GAAI,MAE7E,KAAKvjB,WAAWI,mBAAqB,CAAC1S,GAAgB,WAAXA,EAAE3P,MAAqB,MAE7C,aAArB,KAAKqpC,YAA6B,CAAC15B,GAAKA,EAAE,KAAK05B,cAAgB,GAEnE15B,IAAC,IAAAiiC,EAAA,OAAgB,QAAZA,EAAAjiC,EAAEwe,kBAAU,IAAAyjB,OAAA,EAAZA,EAAcvqB,cAAe1X,EAAEwd,QAAQ,EAE5Cxd,GAAKA,EAAEwd,UAEI,IAEP,KAAKlL,WAAWG,qBAAuB,CAAC,OAAS,MAEjD,KAAKH,WAAWI,mBAAqB,CAAC,OAAS,MAE1B,UAArB,KAAKgnB,YAA0B,CAAC,KAAKI,aAAe,OAAS,OAAS,MAEjD,UAArB,KAAKJ,aAAgD,aAArB,KAAKA,YAA6B,CAAC,KAAKI,aAAe,MAAQ,QAAU,GAE7G,KAAKA,aAAe,MAAQ,OAE5B,KAAKA,aAAe,MAAQ,QAGpC,EAIAoI,iBAAAA,GAAoB,IAAAjZ,EAChB,IAAK,KAAKtT,YACN,MAAO,GAEX,IAAIwsB,EAAqB,IAAI,KAAKC,aAE9B,KAAKX,aACLU,EAAqBA,EAAmBv2C,QAAOysB,GACpCA,EAAKmF,SAAS5zB,cAAcS,SAAS,KAAKo3C,WAAW73C,iBAEhE+a,GAAQ2R,MAAM,sBAAuB6rB,IAEzC,MAAME,IAAgC,QAAhBpZ,EAAA,KAAKtT,mBAAW,IAAAsT,OAAA,EAAhBA,EAAkBgP,UAAW,IAC9CpiB,MAAKmjB,GAAUA,EAAOljB,KAAO,KAAK4jB,cAEvC,GAAI2I,SAAAA,EAAcr5C,MAAqC,mBAAtBq5C,EAAar5C,KAAqB,CAC/D,MAAM0zB,EAAU,IAAI,KAAK0lB,aAAap5C,KAAKq5C,EAAar5C,MACxD,OAAO,KAAK8wC,aAAepd,EAAUA,EAAQlZ,SACjD,CACA,OkBnJL,SAAiB8+B,EAAYC,EAAaC,GAAQ,IAAAC,EAAAC,EAErDH,EAAyB,QAAdE,EAAGF,SAAW,IAAAE,EAAAA,EAAI,CAAE/6C,GAAUA,GAEzC86C,EAAe,QAATE,EAAGF,SAAM,IAAAE,EAAAA,EAAI,GACnB,MAAMC,EAAUJ,EAAYn5C,KAAI,CAACoH,EAAGhF,KAAK,IAAAo3C,EAAA,MAAkC,SAAf,QAAdA,EAACJ,EAAOh3C,UAAM,IAAAo3C,EAAAA,EAAI,OAAmB,GAAK,CAAC,IACnFC,EAAWC,KAAKC,SAAS,EAACC,EAAAA,GAAAA,OAAeC,EAAAA,GAAAA,OAAuB,CAElEC,SAAS,EACTC,MAAO,SAEX,MAAO,IAAIb,GAAYt5C,MAAK,CAACC,EAAGC,KAC5B,IAAK,MAAOsC,EAAO43C,KAAeb,EAAY55C,UAAW,CAErD,MAAMjB,EAAQm7C,EAASQ,QAAQj4C,GAAUg4C,EAAWn6C,IAAKmC,GAAUg4C,EAAWl6C,KAE9E,GAAc,IAAVxB,EACA,OAAOA,EAAQi7C,EAAQn3C,EAG/B,CAEA,OAAO,CAAC,GAEhB,ClB2HmB83C,CAAQnB,KAAuB,KAAKJ,kBAC/C,EACAK,WAAAA,GAAc,IAAAmB,EAAAjK,EACV,MAAMkK,EAAiC,QAAvBD,EAAG,KAAK1wB,uBAAe,IAAA0wB,OAAA,EAApBA,EAAsBjxB,WAAWC,YACpD,QAA0B,QAAlB+mB,EAAA,KAAKF,qBAAa,IAAAE,OAAA,EAAlBA,EAAoBhf,YAAa,IACpClxB,IAAI,KAAKyvB,SACTjtB,QAAOmwB,IACS,IAAA0nB,EAAjB,OAAKD,IAGIznB,EAFEA,IAAqC,KAA7BA,SAAgB,QAAZ0nB,EAAJ1nB,EAAMyC,kBAAU,IAAAilB,OAAA,EAAhBA,EAAkBC,WAAoB3nB,SAAAA,EAAMyB,SAASvF,WAAW,KAEtE,GAErB,EAIA0rB,UAAAA,GACI,OAAmC,IAA5B,KAAKvB,YAAYp+C,MAC5B,EAMA4/C,YAAAA,GACI,YAA8B9+C,IAAvB,KAAKs0C,gBACJ,KAAKuK,YACN,KAAKvY,OAChB,EAIAyY,aAAAA,GACI,MAAM3sB,EAAM,KAAKA,IAAInxB,MAAM,KAAKtC,MAAM,GAAI,GAAGwC,KAAK,MAAQ,IAC1D,MAAO,IAAK,KAAK6K,OAAQ9G,MAAO,CAAEktB,OACtC,EACA4sB,eAAAA,GAAkB,IAAAC,EAAAC,EACd,GAAuB,QAAnBD,EAAC,KAAK3K,qBAAa,IAAA2K,GAAY,QAAZA,EAAlBA,EAAoBvlB,kBAAU,IAAAulB,GAA9BA,EAAiC,eAGtC,OAAOliD,OAAO60C,QAAyB,QAAlBsN,EAAA,KAAK5K,qBAAa,IAAA4K,GAAY,QAAZA,EAAlBA,EAAoBxlB,kBAAU,IAAAwlB,OAAA,EAA9BA,EAAiC,iBAAkB,CAAC,GAAGr5C,MAChF,EACAs5C,gBAAAA,GACI,OAAK,KAAKH,gBAGN,KAAKI,kBAAoBvC,GAAAA,EAAK/K,gBACvB,KAAKzmB,EAAE,QAAS,kBAEpB,KAAKA,EAAE,QAAS,UALZ,KAAKA,EAAE,QAAS,QAM/B,EACA+zB,eAAAA,GACI,OAAK,KAAKJ,gBAIN,KAAKA,gBAAgBrlB,MAAKpuB,GAAQA,IAASsxC,GAAAA,EAAK/K,kBACzC+K,GAAAA,EAAK/K,gBAET+K,GAAAA,EAAKwC,gBAND,IAOf,EACAC,mBAAAA,GACI,OAAO,KAAK9xB,WAAWK,UACjB,KAAKxC,EAAE,QAAS,uBAChB,KAAKA,EAAE,QAAS,sBAC1B,EAIA2vB,SAAAA,GACI,OAAO,KAAK1G,eAA0E,IAAxD,KAAKA,cAAclhB,YAAcC,EAAAA,GAAWuL,OAC9E,EACAqc,eAAAA,GAAkB,IAAAsE,EACd,OAAqE,KAA5C,QAAlBA,EAAA,KAAKjL,qBAAa,IAAAiL,GAAY,QAAZA,EAAlBA,EAAoB7lB,kBAAU,IAAA6lB,OAAA,EAA9BA,EAAiC,yBAC5C,EACArE,eAAAA,GACI,OAAI,KAAKD,gBACE,KAAK5vB,EAAE,QAAS,mEAEpB,KAAKA,EAAE,QAAS,2DAC3B,EAIAm0B,QAAAA,GACI,OAAO1D,IACA,KAAKxH,eAAyE,IAAvD,KAAKA,cAAclhB,YAAcC,EAAAA,GAAWosB,MAC9E,GAEJpuB,MAAO,CACHR,WAAAA,CAAY6uB,EAASpuB,IACbouB,aAAO,EAAPA,EAAS1uB,OAAOM,aAAO,EAAPA,EAASN,MAG7BvE,GAAO+E,MAAM,eAAgB,CAAEkuB,UAASpuB,YACxC,KAAKmR,eAAetM,QACpB,KAAKwpB,cACL,KAAKC,eACT,EACAxtB,GAAAA,CAAIytB,EAAQC,GAAQ,IAAA9X,EAChBvb,GAAO+E,MAAM,oBAAqB,CAAEquB,SAAQC,WAE5C,KAAKrd,eAAetM,QACpB,KAAKwpB,cACL,KAAKC,eAES,QAAd5X,EAAI,KAAKtC,aAAK,IAAAsC,GAAkB,QAAlBA,EAAVA,EAAY+X,wBAAgB,IAAA/X,GAA5BA,EAA8B1a,MAC9B,KAAKoY,MAAMqa,iBAAiBzyB,IAAIsrB,UAAY,EAEpD,EACA0E,WAAAA,CAAY5mB,GACRjK,GAAO+E,MAAM,6BAA8B,CAAEjL,KAAM,KAAKsK,YAAauL,OAAQ,KAAKkY,cAAe5d,cACjGp3B,EAAAA,GAAAA,IAAK,qBAAsB,CAAEinB,KAAM,KAAKsK,YAAauL,OAAQ,KAAKkY,cAAe5d,YACrF,GAEJhL,OAAAA,GACI,KAAKk0B,gBACLn3B,EAAAA,GAAAA,IAAU,qBAAsB,KAAKkM,gBACrClM,EAAAA,GAAAA,IAAU,kCAAmC,KAAKu3B,WAClDv3B,EAAAA,GAAAA,IAAU,iCAAkC,KAAKu3B,UAEjD,KAAKlD,kBAAoB,KAAK/uB,gBAAgBkyB,YAAW,IAAM,KAAKL,gBAAgB,CAAEM,MAAM,GAChG,EACAC,SAAAA,IACIC,EAAAA,GAAAA,IAAY,qBAAsB,KAAKzrB,gBACvCyrB,EAAAA,GAAAA,IAAY,kCAAmC,KAAKJ,WACpDI,EAAAA,GAAAA,IAAY,iCAAkC,KAAKJ,UACnD,KAAKlD,mBACT,EACA/wB,QAAS,CACL,kBAAM6zB,GAAe,IAAAS,EACjB,KAAK/Z,SAAU,EACf,MAAMlU,EAAM,KAAKA,IACXvB,EAAc,KAAKA,YACzB,GAAKA,EAAL,CAKoC,mBAAb,QAAnBwvB,EAAO,KAAKzD,eAAO,IAAAyD,OAAA,EAAZA,EAAcl2B,UACrB,KAAKyyB,QAAQzyB,SACbsC,GAAO+E,MAAM,qCAGjB,KAAKorB,QAAU/rB,EAAY6K,YAAYtJ,GACvC,IACI,MAAM,OAAEgK,EAAM,SAAE1F,SAAmB,KAAKkmB,QACxCnwB,GAAO+E,MAAM,mBAAoB,CAAEY,MAAKgK,SAAQ1F,aAEhD,KAAK8L,WAAWpO,YAAYsC,GAG5B,KAAK4pB,KAAKlkB,EAAQ,YAAa1F,EAASpyB,KAAIivB,GAAQA,EAAKG,UAE7C,MAARtB,EACA,KAAKoQ,WAAWhO,QAAQ,CAAEL,QAAStD,EAAYG,GAAIkC,KAAMkJ,IAIrDA,EAAO1I,QACP,KAAK8O,WAAWpO,YAAY,CAACgI,IAC7B,KAAKvH,WAAWG,QAAQ,CAAEb,QAAStD,EAAYG,GAAI0C,OAAQ0I,EAAO1I,OAAQjqB,KAAM2oB,KAIhF3F,GAAO1P,MAAM,+BAAgC,CAAEqV,MAAKgK,SAAQvL,gBAIpD6F,EAAS5vB,QAAOysB,GAAsB,WAAdA,EAAKhoB,OACrChD,SAAQgrB,IACZ,KAAKsB,WAAWG,QAAQ,CAAEb,QAAStD,EAAYG,GAAI0C,OAAQH,EAAKG,OAAQjqB,MAAMtI,EAAAA,GAAAA,MAAKixB,EAAKmB,EAAKmF,WAAY,GAEjH,CACA,MAAO3b,GACH0P,GAAO1P,MAAM,+BAAgC,CAAEA,SACnD,CAAC,QAEG,KAAKupB,SAAU,CACnB,CA1CA,MAFI7Z,GAAO+E,MAAM,mDAAqD,CAAEX,eA6C5E,EAOAkD,OAAAA,CAAQ2P,GACJ,OAAO,KAAKlB,WAAWzO,QAAQ2P,EACnC,EAKA6c,QAAAA,CAASxf,GAAQ,IAAAyf,GAGajrB,EAAAA,GAAAA,SAAQwL,EAAOjyB,WACoB,QAAvB0xC,EAAK,KAAKlM,qBAAa,IAAAkM,OAAA,EAAlBA,EAAoB1xC,SAK3D,KAAK8wC,cAEb,EACA,kBAAMa,CAAa1f,GAAQ,IAAA0a,EACvB,MAAMpd,GAAwB,QAAfod,EAAA1a,EAAOvU,gBAAQ,IAAAivB,OAAA,EAAfA,EAAiBpd,SAAU,EAE1C,GAAe,MAAXA,EAIC,GAAe,MAAXA,GAA6B,MAAXA,EAItB,GAAe,MAAXA,EAAJ,CAKL,IAAI,IAAAqiB,EACA,MAAMC,EAAS,IAAIC,GAAAA,OAAO,CAAEh8C,MAAM,EAAMi8C,cAAc,IAEhD/jC,SADiB6jC,EAAOG,mBAAkC,QAAhBJ,EAAC3f,EAAOvU,gBAAQ,IAAAk0B,OAAA,EAAfA,EAAiB90C,OACzC,aAAa,GACtC,GAAuB,iBAAZkR,GAA2C,KAAnBA,EAAQlY,OAGvC,YADA8nB,EAAAA,GAAAA,IAAU,KAAKrB,EAAE,QAAS,iCAAkC,CAAEvO,YAGtE,CACA,MAAOC,GACH0P,GAAO1P,MAAM,sBAAuB,CAAEA,SAC1C,CAEe,IAAXshB,GAIJ3R,EAAAA,GAAAA,IAAU,KAAKrB,EAAE,QAAS,iCAHtBqB,EAAAA,GAAAA,IAAU,KAAKrB,EAAE,QAAS,4CAA6C,CAAEgT,WAjB7E,MAFI3R,EAAAA,GAAAA,IAAU,KAAKrB,EAAE,QAAS,gDAJ1BqB,EAAAA,GAAAA,IAAU,KAAKrB,EAAE,QAAS,+CAJ1BqB,EAAAA,GAAAA,IAAU,KAAKrB,EAAE,QAAS,yBA+BlC,EAMAsJ,aAAAA,CAAcpB,GAAM,IAAAwtB,GACZxtB,aAAI,EAAJA,EAAMG,WAA6B,QAAvBqtB,EAAK,KAAKzM,qBAAa,IAAAyM,OAAA,EAAlBA,EAAoBrtB,SACrC,KAAKksB,cAEb,EAMAI,SAAU5H,MAAS,SAAU4I,GACzBnhC,GAAQ2R,MAAM,yDAA0DwvB,GACxE,KAAKrE,WAAaqE,EAAY97C,KAClC,GAAG,KAIHy6C,WAAAA,GACI,KAAKhD,WAAa,EACtB,EACAsE,kBAAAA,GAAqB,IAAArvB,EACZ,KAAK0iB,eAIA,QAAV1iB,EAAI5b,cAAM,IAAA4b,GAAK,QAALA,EAANA,EAAQhD,WAAG,IAAAgD,GAAO,QAAPA,EAAXA,EAAa/C,aAAK,IAAA+C,GAAS,QAATA,EAAlBA,EAAoBE,eAAO,IAAAF,GAA3BA,EAA6BsvB,cAC7BlrC,OAAO4Y,IAAIC,MAAMiD,QAAQovB,aAAa,WAE1CvY,GAAc/kC,KAAK,KAAK0wC,cAAe,KAAKzjB,YAAa,KAAKyjB,cAAc7qC,OANxEgjB,GAAO+E,MAAM,sDAOrB,EACA2vB,cAAAA,GACI,KAAKpzB,gBAAgB/F,OAAO,aAAc,KAAKwF,WAAWK,UAC9D,EACAxC,EAAGsB,GAAAA,GACHvK,EAAGg/B,GAAAA,sB+IzbP,GAAU,CAAC,EAEf,GAAQx0B,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IhJTW,WAAiB,IAAAknB,EAAAkN,EAAKz6B,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,eAAe,CAAChZ,MAAM,CAAC,eAAe+Y,EAAIm2B,YAAY,wBAAwB,KAAK,CAACl2B,EAAG,MAAM,CAACG,YAAY,sBAAsB,CAACH,EAAG,cAAc,CAAChZ,MAAM,CAAC,KAAO+Y,EAAIwL,KAAKjyB,GAAG,CAAC,OAASymB,EAAIg5B,cAAc1vB,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,UAAU/E,GAAG,WAAW,MAAO,CAAEupB,EAAI44B,UAAY54B,EAAI4a,gBAAkB,IAAK3a,EAAG,WAAW,CAACG,YAAY,kCAAkCzS,MAAM,CAAE,0CAA2CqS,EAAIw4B,iBAAkBvxC,MAAM,CAAC,aAAa+Y,EAAIu4B,iBAAiB,MAAQv4B,EAAIu4B,iBAAiB,KAAO,YAAYh/C,GAAG,CAAC,MAAQymB,EAAIq6B,oBAAoB/wB,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,OAAO/E,GAAG,WAAW,MAAO,CAAEupB,EAAIw4B,kBAAoBx4B,EAAIi2B,KAAK/K,gBAAiBjrB,EAAG,YAAYA,EAAG,kBAAkB,CAAChZ,MAAM,CAAC,KAAO,MAAM,EAAEuiB,OAAM,IAAO,MAAK,EAAM,cAAcxJ,EAAIU,KAAKV,EAAIQ,GAAG,MAAOR,EAAIo0B,WAAap0B,EAAIq0B,gBAAiBp0B,EAAG,WAAW,CAACG,YAAY,6CAA6CnZ,MAAM,CAAC,aAAa+Y,EAAIs0B,gBAAgB,MAAQt0B,EAAIs0B,gBAAgB,UAAW,EAAK,KAAO,aAAahrB,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,OAAO/E,GAAG,WAAW,MAAO,CAACwpB,EAAG,WAAW,CAAChZ,MAAM,CAAC,KAAO,MAAM,EAAEuiB,OAAM,IAAO,MAAK,EAAM,aAAa,CAACxJ,EAAIQ,GAAG,eAAeR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,QAAQ,gBAAiBzE,EAAI0tB,cAAeztB,EAAG,eAAe,CAACG,YAAY,mCAAmCnZ,MAAM,CAAC,QAAU+Y,EAAI02B,YAAY,YAAc12B,EAAI0tB,cAAc,UAAW,GAAMn0C,GAAG,CAAC,OAASymB,EAAI65B,aAAa,SAAW75B,EAAI25B,YAAY35B,EAAIU,KAAK,EAAE8I,OAAM,OAAUxJ,EAAIQ,GAAG,KAAMR,EAAI4a,gBAAkB,KAAO5a,EAAI0I,eAAgBzI,EAAG,WAAW,CAACG,YAAY,iCAAiCnZ,MAAM,CAAC,aAAa+Y,EAAI04B,oBAAoB,MAAQ14B,EAAI04B,oBAAoB,KAAO,YAAYn/C,GAAG,CAAC,MAAQymB,EAAIu6B,gBAAgBjxB,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,OAAO/E,GAAG,WAAW,MAAO,CAAEupB,EAAI4G,WAAWK,UAAWhH,EAAG,gBAAgBA,EAAG,gBAAgB,EAAEuJ,OAAM,IAAO,MAAK,EAAM,cAAcxJ,EAAIU,KAAKV,EAAIQ,GAAG,KAAMR,EAAIk4B,aAAcj4B,EAAG,gBAAgB,CAACG,YAAY,6BAA6BJ,EAAIU,MAAM,GAAGV,EAAIQ,GAAG,MAAOR,EAAI0f,SAAW1f,EAAIo0B,UAAWn0B,EAAG,oBAAoB,CAAChZ,MAAM,CAAC,iBAAiB+Y,EAAI0tB,iBAAiB1tB,EAAIU,KAAKV,EAAIQ,GAAG,KAAMR,EAAI0f,UAAY1f,EAAIk4B,aAAcj4B,EAAG,gBAAgB,CAACG,YAAY,2BAA2BnZ,MAAM,CAAC,KAAO,GAAG,KAAO+Y,EAAIyE,EAAE,QAAS,8BAA+BzE,EAAI0f,SAAW1f,EAAIi4B,WAAYh4B,EAAG,iBAAiB,CAAChZ,MAAM,CAAC,MAAsB,QAAfsmC,EAAAvtB,EAAIiK,mBAAW,IAAAsjB,OAAA,EAAfA,EAAiBmN,aAAc16B,EAAIyE,EAAE,QAAS,oBAAoB,aAA6B,QAAfg2B,EAAAz6B,EAAIiK,mBAAW,IAAAwwB,OAAA,EAAfA,EAAiBE,eAAgB36B,EAAIyE,EAAE,QAAS,kDAAkD,8BAA8B,IAAI6E,YAAYtJ,EAAIuJ,GAAG,CAAC,CAAC/tB,IAAI,SAAS/E,GAAG,WAAW,MAAO,CAAc,MAAZupB,EAAIwL,IAAavL,EAAG,WAAW,CAAChZ,MAAM,CAAC,aAAa+Y,EAAIyE,EAAE,QAAS,6BAA6B,KAAO,UAAU,GAAKzE,EAAIm4B,gBAAgB,CAACn4B,EAAIQ,GAAG,aAAaR,EAAIS,GAAGT,EAAIyE,EAAE,QAAS,YAAY,cAAczE,EAAIU,KAAK,EAAE8I,OAAM,GAAM,CAAChuB,IAAI,OAAO/E,GAAG,WAAW,MAAO,CAACwpB,EAAG,mBAAmB,CAAChZ,MAAM,CAAC,IAAM+Y,EAAIiK,YAAY4B,QAAQ,EAAErC,OAAM,OAAUvJ,EAAG,mBAAmB,CAAC1c,IAAI,mBAAmB0D,MAAM,CAAC,iBAAiB+Y,EAAI0tB,cAAc,eAAe1tB,EAAIiK,YAAY,MAAQjK,EAAIw2B,sBAAsB,EAC9nG,GACsB,IgJUpB,EACA,KACA,WACA,MAI8B,QCnB+M,IpLIhOlb,EAAAA,EAAAA,IAAgB,CAC3B1jC,KAAM,WACNwC,WAAY,CACRwgD,UAAS,KACTC,UAAS,GACTC,WAAUA,MqLSlB,IAXgB,QACd,IrLRW,WAAkB,IAAI96B,EAAIppB,KAAKqpB,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4d,YAAmB7d,EAAG,YAAY,CAAChZ,MAAM,CAAC,WAAW,UAAU,CAACgZ,EAAG,cAAcD,EAAIQ,GAAG,KAAKP,EAAG,cAAc,EAC3L,GACsB,IqLSpB,EACA,KACA,KACA,MAI8B,kBCPhC86B,EAAAA,GAAoBC,MAAKpnB,EAAAA,EAAAA,OAEzBxkB,OAAO4Y,IAAIC,MAAwB,QAAnBgzB,GAAG7rC,OAAO4Y,IAAIC,aAAK,IAAAgzB,GAAAA,GAAI,CAAC,EACxC7rC,OAAOwd,IAAI3E,MAAwB,QAAnBizB,GAAG9rC,OAAOwd,IAAI3E,aAAK,IAAAizB,GAAAA,GAAI,CAAC,EAExC,MAAM17B,GAAS,IChBA,MAEXrE,WAAAA,CAAY3Y,eAAQ,8ZAChB5L,KAAK+nB,QAAUnc,CACnB,CACA,QAAI5K,GACA,OAAOhB,KAAK+nB,QAAQ7N,aAAalZ,IACrC,CACA,SAAI0G,GACA,OAAO1H,KAAK+nB,QAAQ7N,aAAaxS,OAAS,CAAC,CAC/C,CACA,UAAIwE,GACA,OAAOlM,KAAK+nB,QAAQ7N,aAAahO,QAAU,CAAC,CAChD,CAQAq4C,IAAAA,CAAKt4C,GAAuB,IAAjB1F,EAAOjE,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,IAAAA,UAAA,GACd,OAAOtC,KAAK+nB,QAAQvnB,KAAK,CACrByL,OACA1F,WAER,CAUA0vB,SAAAA,CAAUj1B,EAAMkL,EAAQxE,EAAOnB,GAC3B,OAAOvG,KAAK+nB,QAAQvnB,KAAK,CACrBQ,OACA0G,QACAwE,SACA3F,WAER,GD3B6BqF,IACjCrM,OAAOilD,OAAOhsC,OAAOwd,IAAI3E,MAAO,CAAEzI,YAElCtB,EAAAA,GAAIqB,IAAI87B,EAAAA,IAGR,MAAMP,GAAa58B,EAAAA,GAAIo9B,YAAW/sB,EAAAA,EAAAA,OAClCrQ,EAAAA,GAAI9nB,UAAUi0B,YAAcywB,GAE5B,MAAM5yB,GAAW,IEHF,MAId/M,WAAAA,eAAc,gaACbvkB,KAAK2kD,UAAY,GACjBtiC,GAAQ2R,MAAM,iCACf,CASA4wB,QAAAA,CAAS77B,GACR,OAAI/oB,KAAK2kD,UAAUr7C,QAAOwC,GAAKA,EAAE9K,OAAS+nB,EAAK/nB,OAAMU,OAAS,GAC7D2gB,GAAQ9C,MAAM,uDACP,IAERvf,KAAK2kD,UAAUnkD,KAAKuoB,IACb,EACR,CAOA,YAAIoI,GACH,OAAOnxB,KAAK2kD,SACb,GF5BDplD,OAAOilD,OAAOhsC,OAAO4Y,IAAIC,MAAO,CAAEC,SAAQA,KAC1C/xB,OAAOilD,OAAOhsC,OAAO4Y,IAAIC,MAAMC,SAAU,CAAET,QGJ5B,MAiBdtM,WAAAA,CAAYvjB,EAAIkqB,GAAuB,IAArB,GAAEpN,EAAE,KAAEgT,EAAI,MAAEmB,GAAO/G,EAAA25B,GAAA,sBAAAA,GAAA,mBAAAA,GAAA,qBAAAA,GAAA,qBACpC7kD,KAAK8kD,MAAQ9jD,EACbhB,KAAK+kD,IAAMjnC,EACX9d,KAAKglD,MAAQl0B,EACb9wB,KAAKilD,OAAShzB,EAEY,mBAAfjyB,KAAKglD,QACfhlD,KAAKglD,MAAQ,QAGa,mBAAhBhlD,KAAKilD,SACfjlD,KAAKilD,OAAS,OAEhB,CAEA,QAAIjkD,GACH,OAAOhB,KAAK8kD,KACb,CAEA,MAAIhnC,GACH,OAAO9d,KAAK+kD,GACb,CAEA,QAAIj0B,GACH,OAAO9wB,KAAKglD,KACb,CAEA,SAAI/yB,GACH,OAAOjyB,KAAKilD,MACb,KHxCD,IADoB39B,EAAAA,GAAIld,OAAO86C,IAC/B,CAAgB,CACZt5C,OAAM,GACN3I,MAAKA,IACN2oC,OAAO,8FI7BNuZ,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,0zBAsCtC,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,6EAA6E,MAAQ,GAAG,SAAW,yTAAyT,eAAiB,CAAC,2zBAA2zB,WAAa,MAEpxC,4FC1CI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,kUAAmU,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,yDAAyD,MAAQ,GAAG,SAAW,yGAAyG,eAAiB,CAAC,0WAA0W,WAAa,MAEx8B,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,+jBAAgkB,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,+DAA+D,MAAQ,GAAG,SAAW,wOAAwO,eAAiB,CAAC,sqBAAsqB,WAAa,MAEtoD,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,omCAAqmC,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,gEAAgE,MAAQ,GAAG,SAAW,gYAAgY,eAAiB,CAAC,23CAA23C,WAAa,MAEzhG,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,4ZAA6Z,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,oEAAoE,MAAQ,GAAG,SAAW,6IAA6I,eAAiB,CAAC,2tBAA2tB,WAAa,MAEl8C,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,2ZAA4Z,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,wEAAwE,MAAQ,GAAG,SAAW,oDAAoD,eAAiB,CAAC,kkBAAskB,WAAa,MAEvtC,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,uMAAwM,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,wEAAwE,MAAQ,GAAG,SAAW,oCAAoC,eAAiB,CAAC,kOAAkO,WAAa,MAE/oB,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,mPAAoP,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,kEAAkE,MAAQ,GAAG,SAAW,gFAAgF,eAAiB,CAAC,8XAA8X,WAAa,MAE73B,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,sKAAuK,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,kEAAkE,MAAQ,GAAG,SAAW,8CAA8C,eAAiB,CAAC,wNAAwN,WAAa,MAExmB,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,2FAA4F,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,yEAAyE,MAAQ,GAAG,SAAW,6BAA6B,eAAiB,CAAC,6FAA6F,WAAa,MAExZ,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,q5BAAs5B,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,wEAAwE,MAAQ,GAAG,SAAW,4IAA4I,eAAiB,CAAC,ilBAAilB,WAAa,MAEpzD,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,m0PAAo0P,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,8DAA8D,MAAQ,GAAG,SAAW,w6DAAw6D,eAAiB,CAAC,mtSAAmtS,WAAa,MAEtnmB,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,y2DAA02D,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,8DAA8D,MAAQ,GAAG,SAAW,0kBAA0kB,eAAiB,CAAC,6nEAA6nE,WAAa,MAExuJ,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,mQAAoQ,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,6DAA6D,MAAQ,GAAG,SAAW,mEAAmE,eAAiB,CAAC,+UAA+U,WAAa,MAE50B,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,0wBAA2wB,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,kDAAkD,MAAQ,GAAG,SAAW,uOAAuO,eAAiB,CAAC,8gCAA8gC,WAAa,MAE3qE,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,sfAAuf,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,mDAAmD,MAAQ,GAAG,SAAW,iHAAiH,eAAiB,CAAC,mrBAAmrB,WAAa,MAEv8C,4FCJI2xB,QAA0B,GAA4B,KAE1DA,EAAwB3kD,KAAK,CAACuC,EAAOywB,GAAI,kEAAmE,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,iDAAiD,MAAQ,GAAG,SAAW,mBAAmB,eAAiB,CAAC,+DAA+D,WAAa,MAE/T,4CCuBI4xB,aAPAC,EAAuB,iBAAZpgD,QAAuBA,QAAU,KAC5CqgD,EAAeD,GAAwB,mBAAZA,EAAE5iD,MAC7B4iD,EAAE5iD,MACF,SAAsBgU,EAAQ8uC,EAAUnjD,GACxC,OAAOytB,SAASrwB,UAAUiD,MAAMvB,KAAKuV,EAAQ8uC,EAAUnjD,EACzD,EAIAgjD,EADEC,GAA0B,mBAAdA,EAAEngD,QACCmgD,EAAEngD,QACV3F,OAAO6B,sBACC,SAAwBqV,GACvC,OAAOlX,OAAOimD,oBAAoB/uC,GAC/BpV,OAAO9B,OAAO6B,sBAAsBqV,GACzC,EAEiB,SAAwBA,GACvC,OAAOlX,OAAOimD,oBAAoB/uC,EACpC,EAOF,IAAIgvC,EAAc5+C,OAAOM,OAAS,SAAqB/B,GACrD,OAAOA,GAAUA,CACnB,EAEA,SAASzE,IACPA,EAAasP,KAAK/O,KAAKlB,KACzB,CACA+C,EAAOC,QAAUrC,EACjBoC,EAAOC,QAAQjD,KAwYf,SAAcG,EAASc,GACrB,OAAO,IAAI4lB,SAAQ,SAAU7Q,EAASuN,GACpC,SAASoiC,EAAch7C,GACrBxK,EAAQqC,eAAevB,EAAM2kD,GAC7BriC,EAAO5Y,EACT,CAEA,SAASi7C,IAC+B,mBAA3BzlD,EAAQqC,gBACjBrC,EAAQqC,eAAe,QAASmjD,GAElC3vC,EAAQ,GAAG5U,MAAMD,KAAKoB,WACxB,CAEAsjD,EAA+B1lD,EAASc,EAAM2kD,EAAU,CAAE5lD,MAAM,IACnD,UAATiB,GAMR,SAAuCd,EAAS0W,EAAS7E,GAC7B,mBAAf7R,EAAQyC,IACjBijD,EAA+B1lD,EAAS,QAAS0W,EAPO,CAAE7W,MAAM,GASpE,CATM8lD,CAA8B3lD,EAASwlD,EAE3C,GACF,EAxZA/kD,EAAaA,aAAeA,EAE5BA,EAAanB,UAAUe,aAAUiC,EACjC7B,EAAanB,UAAUiB,aAAe,EACtCE,EAAanB,UAAUsmD,mBAAgBtjD,EAIvC,IAAIujD,EAAsB,GAE1B,SAASC,EAAc3lD,GACrB,GAAwB,mBAAbA,EACT,MAAM,IAAID,UAAU,0EAA4EC,EAEpG,CAoCA,SAAS4lD,EAAiBC,GACxB,YAA2B1jD,IAAvB0jD,EAAKJ,cACAnlD,EAAaolD,oBACfG,EAAKJ,aACd,CAkDA,SAASK,EAAa1vC,EAAQ1I,EAAM1N,EAAU+lD,GAC5C,IAAI3zC,EACA1R,EACAslD,EA1HsBC,EAgJ1B,GApBAN,EAAc3lD,QAGCmC,KADfzB,EAAS0V,EAAOlW,UAEdQ,EAAS0V,EAAOlW,QAAUhB,OAAOqB,OAAO,MACxC6V,EAAOhW,aAAe,SAIK+B,IAAvBzB,EAAOwlD,cACT9vC,EAAO3U,KAAK,cAAeiM,EACf1N,EAASA,SAAWA,EAASA,SAAWA,GAIpDU,EAAS0V,EAAOlW,SAElB8lD,EAAWtlD,EAAOgN,SAGHvL,IAAb6jD,EAEFA,EAAWtlD,EAAOgN,GAAQ1N,IACxBoW,EAAOhW,kBAeT,GAbwB,mBAAb4lD,EAETA,EAAWtlD,EAAOgN,GAChBq4C,EAAU,CAAC/lD,EAAUgmD,GAAY,CAACA,EAAUhmD,GAErC+lD,EACTC,EAAS55C,QAAQpM,GAEjBgmD,EAAS7lD,KAAKH,IAIhBoS,EAAIwzC,EAAiBxvC,IACb,GAAK4vC,EAAS3kD,OAAS+Q,IAAM4zC,EAASxjB,OAAQ,CACpDwjB,EAASxjB,QAAS,EAGlB,IAAI2jB,EAAI,IAAIhnC,MAAM,+CACE6mC,EAAS3kD,OAAS,IAAMkJ,OAAOmD,GADjC,qEAIlBy4C,EAAExlD,KAAO,8BACTwlD,EAAEtmD,QAAUuW,EACZ+vC,EAAEz4C,KAAOA,EACTy4C,EAAElJ,MAAQ+I,EAAS3kD,OA7KG4kD,EA8KHE,EA7KnBnkC,GAAWA,EAAQ2gB,MAAM3gB,EAAQ2gB,KAAKsjB,EA8KxC,CAGF,OAAO7vC,CACT,CAaA,SAASgwC,IACP,IAAKzmD,KAAK0mD,MAGR,OAFA1mD,KAAKyW,OAAOlU,eAAevC,KAAK+N,KAAM/N,KAAK2mD,QAC3C3mD,KAAK0mD,OAAQ,EACY,IAArBpkD,UAAUZ,OACL1B,KAAKK,SAASa,KAAKlB,KAAKyW,QAC1BzW,KAAKK,SAASoC,MAAMzC,KAAKyW,OAAQnU,UAE5C,CAEA,SAASskD,EAAUnwC,EAAQ1I,EAAM1N,GAC/B,IAAI4b,EAAQ,CAAEyqC,OAAO,EAAOC,YAAQnkD,EAAWiU,OAAQA,EAAQ1I,KAAMA,EAAM1N,SAAUA,GACjFwmD,EAAUJ,EAAYxlC,KAAKhF,GAG/B,OAFA4qC,EAAQxmD,SAAWA,EACnB4b,EAAM0qC,OAASE,EACRA,CACT,CAyHA,SAASC,EAAWrwC,EAAQ1I,EAAMg5C,GAChC,IAAIhmD,EAAS0V,EAAOlW,QAEpB,QAAeiC,IAAXzB,EACF,MAAO,GAET,IAAIimD,EAAajmD,EAAOgN,GACxB,YAAmBvL,IAAfwkD,EACK,GAEiB,mBAAfA,EACFD,EAAS,CAACC,EAAW3mD,UAAY2mD,GAAc,CAACA,GAElDD,EAsDT,SAAyB71C,GAEvB,IADA,IAAI+1C,EAAM,IAAIrlD,MAAMsP,EAAIxP,QACfF,EAAI,EAAGA,EAAIylD,EAAIvlD,SAAUF,EAChCylD,EAAIzlD,GAAK0P,EAAI1P,GAAGnB,UAAY6Q,EAAI1P,GAElC,OAAOylD,CACT,CA3DIC,CAAgBF,GAAcG,EAAWH,EAAYA,EAAWtlD,OACpE,CAmBA,SAASG,EAAckM,GACrB,IAAIhN,EAASf,KAAKO,QAElB,QAAeiC,IAAXzB,EAAsB,CACxB,IAAIimD,EAAajmD,EAAOgN,GAExB,GAA0B,mBAAfi5C,EACT,OAAO,EACF,QAAmBxkD,IAAfwkD,EACT,OAAOA,EAAWtlD,MAEtB,CAEA,OAAO,CACT,CAMA,SAASylD,EAAWj2C,EAAK0T,GAEvB,IADA,IAAIwiC,EAAO,IAAIxlD,MAAMgjB,GACZpjB,EAAI,EAAGA,EAAIojB,IAAKpjB,EACvB4lD,EAAK5lD,GAAK0P,EAAI1P,GAChB,OAAO4lD,CACT,CA2CA,SAASxB,EAA+B1lD,EAASc,EAAMX,EAAU0R,GAC/D,GAA0B,mBAAf7R,EAAQyC,GACboP,EAAMhS,KACRG,EAAQH,KAAKiB,EAAMX,GAEnBH,EAAQyC,GAAG3B,EAAMX,OAEd,IAAwC,mBAA7BH,EAAQic,iBAYxB,MAAM,IAAI/b,UAAU,6EAA+EF,GATnGA,EAAQic,iBAAiBnb,GAAM,SAASqmD,EAAaC,GAG/Cv1C,EAAMhS,MACRG,EAAQmc,oBAAoBrb,EAAMqmD,GAEpChnD,EAASinD,EACX,GAGF,CACF,CAraA/nD,OAAOyF,eAAerE,EAAc,sBAAuB,CACzDoE,YAAY,EACZohB,IAAK,WACH,OAAO4/B,CACT,EACAxtB,IAAK,SAAS+uB,GACZ,GAAmB,iBAARA,GAAoBA,EAAM,GAAK7B,EAAY6B,GACpD,MAAM,IAAIC,WAAW,kGAAoGD,EAAM,KAEjIvB,EAAsBuB,CACxB,IAGF3mD,EAAasP,KAAO,gBAEGzN,IAAjBxC,KAAKO,SACLP,KAAKO,UAAYhB,OAAOioD,eAAexnD,MAAMO,UAC/CP,KAAKO,QAAUhB,OAAOqB,OAAO,MAC7BZ,KAAKS,aAAe,GAGtBT,KAAK8lD,cAAgB9lD,KAAK8lD,oBAAiBtjD,CAC7C,EAIA7B,EAAanB,UAAUioD,gBAAkB,SAAyB7iC,GAChE,GAAiB,iBAANA,GAAkBA,EAAI,GAAK6gC,EAAY7gC,GAChD,MAAM,IAAI2iC,WAAW,gFAAkF3iC,EAAI,KAG7G,OADA5kB,KAAK8lD,cAAgBlhC,EACd5kB,IACT,EAQAW,EAAanB,UAAUkoD,gBAAkB,WACvC,OAAOzB,EAAiBjmD,KAC1B,EAEAW,EAAanB,UAAUsC,KAAO,SAAciM,GAE1C,IADA,IAAI3L,EAAO,GACFZ,EAAI,EAAGA,EAAIc,UAAUZ,OAAQF,IAAKY,EAAK5B,KAAK8B,UAAUd,IAC/D,IAAImmD,EAAoB,UAAT55C,EAEXhN,EAASf,KAAKO,QAClB,QAAeiC,IAAXzB,EACF4mD,EAAWA,QAA4BnlD,IAAjBzB,EAAOwe,WAC1B,IAAKooC,EACR,OAAO,EAGT,GAAIA,EAAS,CACX,IAAIC,EAGJ,GAFIxlD,EAAKV,OAAS,IAChBkmD,EAAKxlD,EAAK,IACRwlD,aAAcpoC,MAGhB,MAAMooC,EAGR,IAAIl9C,EAAM,IAAI8U,MAAM,oBAAsBooC,EAAK,KAAOA,EAAGtoC,QAAU,IAAM,KAEzE,MADA5U,EAAI5K,QAAU8nD,EACRl9C,CACR,CAEA,IAAIkM,EAAU7V,EAAOgN,GAErB,QAAgBvL,IAAZoU,EACF,OAAO,EAET,GAAuB,mBAAZA,EACT0uC,EAAa1uC,EAAS5W,KAAMoC,OAE5B,KAAIC,EAAMuU,EAAQlV,OACdJ,EAAY6lD,EAAWvwC,EAASvU,GACpC,IAASb,EAAI,EAAGA,EAAIa,IAAOb,EACzB8jD,EAAahkD,EAAUE,GAAIxB,KAAMoC,EAHX,CAM1B,OAAO,CACT,EAgEAzB,EAAanB,UAAUS,YAAc,SAAqB8N,EAAM1N,GAC9D,OAAO8lD,EAAanmD,KAAM+N,EAAM1N,GAAU,EAC5C,EAEAM,EAAanB,UAAUmD,GAAKhC,EAAanB,UAAUS,YAEnDU,EAAanB,UAAUqoD,gBACnB,SAAyB95C,EAAM1N,GAC7B,OAAO8lD,EAAanmD,KAAM+N,EAAM1N,GAAU,EAC5C,EAoBJM,EAAanB,UAAUO,KAAO,SAAcgO,EAAM1N,GAGhD,OAFA2lD,EAAc3lD,GACdL,KAAK2C,GAAGoL,EAAM64C,EAAU5mD,KAAM+N,EAAM1N,IAC7BL,IACT,EAEAW,EAAanB,UAAUsoD,oBACnB,SAA6B/5C,EAAM1N,GAGjC,OAFA2lD,EAAc3lD,GACdL,KAAK6nD,gBAAgB95C,EAAM64C,EAAU5mD,KAAM+N,EAAM1N,IAC1CL,IACT,EAGJW,EAAanB,UAAU+C,eACnB,SAAwBwL,EAAM1N,GAC5B,IAAI+mB,EAAMrmB,EAAQ8b,EAAUrb,EAAGumD,EAK/B,GAHA/B,EAAc3lD,QAGCmC,KADfzB,EAASf,KAAKO,SAEZ,OAAOP,KAGT,QAAawC,KADb4kB,EAAOrmB,EAAOgN,IAEZ,OAAO/N,KAET,GAAIonB,IAAS/mB,GAAY+mB,EAAK/mB,WAAaA,EACb,KAAtBL,KAAKS,aACTT,KAAKO,QAAUhB,OAAOqB,OAAO,cAEtBG,EAAOgN,GACVhN,EAAOwB,gBACTvC,KAAK8B,KAAK,iBAAkBiM,EAAMqZ,EAAK/mB,UAAYA,SAElD,GAAoB,mBAAT+mB,EAAqB,CAGrC,IAFAvK,GAAY,EAEPrb,EAAI4lB,EAAK1lB,OAAS,EAAGF,GAAK,EAAGA,IAChC,GAAI4lB,EAAK5lB,KAAOnB,GAAY+mB,EAAK5lB,GAAGnB,WAAaA,EAAU,CACzD0nD,EAAmB3gC,EAAK5lB,GAAGnB,SAC3Bwc,EAAWrb,EACX,KACF,CAGF,GAAIqb,EAAW,EACb,OAAO7c,KAEQ,IAAb6c,EACFuK,EAAKlc,QAiIf,SAAmBkc,EAAMle,GACvB,KAAOA,EAAQ,EAAIke,EAAK1lB,OAAQwH,IAC9Bke,EAAKle,GAASke,EAAKle,EAAQ,GAC7Bke,EAAKvW,KACP,CAnIUm3C,CAAU5gC,EAAMvK,GAGE,IAAhBuK,EAAK1lB,SACPX,EAAOgN,GAAQqZ,EAAK,SAEQ5kB,IAA1BzB,EAAOwB,gBACTvC,KAAK8B,KAAK,iBAAkBiM,EAAMg6C,GAAoB1nD,EAC1D,CAEA,OAAOL,IACT,EAEJW,EAAanB,UAAUqD,IAAMlC,EAAanB,UAAU+C,eAEpD5B,EAAanB,UAAUoD,mBACnB,SAA4BmL,GAC1B,IAAIzM,EAAWP,EAAQS,EAGvB,QAAegB,KADfzB,EAASf,KAAKO,SAEZ,OAAOP,KAGT,QAA8BwC,IAA1BzB,EAAOwB,eAUT,OATyB,IAArBD,UAAUZ,QACZ1B,KAAKO,QAAUhB,OAAOqB,OAAO,MAC7BZ,KAAKS,aAAe,QACM+B,IAAjBzB,EAAOgN,KACY,KAAtB/N,KAAKS,aACTT,KAAKO,QAAUhB,OAAOqB,OAAO,aAEtBG,EAAOgN,IAEX/N,KAIT,GAAyB,IAArBsC,UAAUZ,OAAc,CAC1B,IACIkD,EADA0B,EAAO/G,OAAO+G,KAAKvF,GAEvB,IAAKS,EAAI,EAAGA,EAAI8E,EAAK5E,SAAUF,EAEjB,oBADZoD,EAAM0B,EAAK9E,KAEXxB,KAAK4C,mBAAmBgC,GAK1B,OAHA5E,KAAK4C,mBAAmB,kBACxB5C,KAAKO,QAAUhB,OAAOqB,OAAO,MAC7BZ,KAAKS,aAAe,EACbT,IACT,CAIA,GAAyB,mBAFzBsB,EAAYP,EAAOgN,IAGjB/N,KAAKuC,eAAewL,EAAMzM,QACrB,QAAkBkB,IAAdlB,EAET,IAAKE,EAAIF,EAAUI,OAAS,EAAGF,GAAK,EAAGA,IACrCxB,KAAKuC,eAAewL,EAAMzM,EAAUE,IAIxC,OAAOxB,IACT,EAmBJW,EAAanB,UAAU8B,UAAY,SAAmByM,GACpD,OAAO+4C,EAAW9mD,KAAM+N,GAAM,EAChC,EAEApN,EAAanB,UAAUyoD,aAAe,SAAsBl6C,GAC1D,OAAO+4C,EAAW9mD,KAAM+N,GAAM,EAChC,EAEApN,EAAakB,cAAgB,SAAS3B,EAAS6N,GAC7C,MAAqC,mBAA1B7N,EAAQ2B,cACV3B,EAAQ2B,cAAckM,GAEtBlM,EAAcX,KAAKhB,EAAS6N,EAEvC,EAEApN,EAAanB,UAAUqC,cAAgBA,EAiBvClB,EAAanB,UAAUsB,WAAa,WAClC,OAAOd,KAAKS,aAAe,EAAI2kD,EAAeplD,KAAKO,SAAW,EAChE,0BCraA,IAAI2nD,EAAQ,CAAC,EAEb,SAASC,EAAgBC,EAAM9oC,EAAS+oC,GACjCA,IACHA,EAAO7oC,OAWT,IAAI8oC,EAEJ,SAAUC,GAnBZ,IAAwBC,EAAUC,EAsB9B,SAASH,EAAUI,EAAMC,EAAMC,GAC7B,OAAOL,EAAMrnD,KAAKlB,KAdtB,SAAoB0oD,EAAMC,EAAMC,GAC9B,MAAuB,iBAAZtpC,EACFA,EAEAA,EAAQopC,EAAMC,EAAMC,EAE/B,CAQ4BC,CAAWH,EAAMC,EAAMC,KAAU5oD,IAC3D,CAEA,OA1B8ByoD,EAoBJF,GApBNC,EAoBLF,GApBsC9oD,UAAYD,OAAOqB,OAAO6nD,EAAWjpD,WAAYgpD,EAAShpD,UAAU+kB,YAAcikC,EAAUA,EAAS3nD,UAAY4nD,EA0B/JH,CACT,CARA,CAQED,GAEFC,EAAU9oD,UAAUwB,KAAOqnD,EAAKrnD,KAChCsnD,EAAU9oD,UAAU4oD,KAAOA,EAC3BF,EAAME,GAAQE,CAChB,CAGA,SAASQ,EAAMC,EAAUC,GACvB,GAAIpnD,MAAM+C,QAAQokD,GAAW,CAC3B,IAAI1mD,EAAM0mD,EAASrnD,OAKnB,OAJAqnD,EAAWA,EAASjiD,KAAI,SAAUtF,GAChC,OAAOoJ,OAAOpJ,EAChB,IAEIa,EAAM,EACD,UAAUhB,OAAO2nD,EAAO,KAAK3nD,OAAO0nD,EAAS5nD,MAAM,EAAGkB,EAAM,GAAGsB,KAAK,MAAO,SAAWolD,EAAS1mD,EAAM,GAC3F,IAARA,EACF,UAAUhB,OAAO2nD,EAAO,KAAK3nD,OAAO0nD,EAAS,GAAI,QAAQ1nD,OAAO0nD,EAAS,IAEzE,MAAM1nD,OAAO2nD,EAAO,KAAK3nD,OAAO0nD,EAAS,GAEpD,CACE,MAAO,MAAM1nD,OAAO2nD,EAAO,KAAK3nD,OAAOuJ,OAAOm+C,GAElD,CA6BAZ,EAAgB,yBAAyB,SAAUnnD,EAAMoE,GACvD,MAAO,cAAgBA,EAAQ,4BAA8BpE,EAAO,GACtE,GAAGZ,WACH+nD,EAAgB,wBAAwB,SAAUnnD,EAAM+nD,EAAUE,GAEhE,IAAIC,EA/BmBhkC,EAwCnB1B,EA1BY/Y,EAAag5B,EA4B7B,GATwB,iBAAbslB,IAjCY7jC,EAiCkC,OAAV6jC,EAhCpC71C,OAAyB,EAAUgS,KAAmBA,IAiC/DgkC,EAAa,cACbH,EAAWA,EAASxiD,QAAQ,QAAS,KAErC2iD,EAAa,UAhCjB,SAAkBz+C,EAAKya,EAAQikC,GAK7B,YAJiB3mD,IAAb2mD,GAA0BA,EAAW1+C,EAAI/I,UAC3CynD,EAAW1+C,EAAI/I,QAGV+I,EAAI2+C,UAAUD,EAAWjkC,EAAeikC,KAAcjkC,CAC/D,CA+BMmkC,CAASroD,EAAM,aAEjBwiB,EAAM,OAAOniB,OAAOL,EAAM,KAAKK,OAAO6nD,EAAY,KAAK7nD,OAAOynD,EAAMC,EAAU,aACzE,CACL,IAAIh7C,GA/Be,iBAAV01B,IACTA,EAAQ,GAGNA,EAAQve,GALIza,EAgCMzJ,GA3BUU,SAGS,IAAhC+I,EAAInG,QAwBe,IAxBCm/B,GAwBmB,WAAb,YACjCjgB,EAAM,QAASniB,OAAOL,EAAM,MAAOK,OAAO0M,EAAM,KAAK1M,OAAO6nD,EAAY,KAAK7nD,OAAOynD,EAAMC,EAAU,QACtG,CAGA,OADAvlC,EAAO,mBAAmBniB,cAAc4nD,EAE1C,GAAG7oD,WACH+nD,EAAgB,4BAA6B,2BAC7CA,EAAgB,8BAA8B,SAAUnnD,GACtD,MAAO,OAASA,EAAO,4BACzB,IACAmnD,EAAgB,6BAA8B,mBAC9CA,EAAgB,wBAAwB,SAAUnnD,GAChD,MAAO,eAAiBA,EAAO,+BACjC,IACAmnD,EAAgB,wBAAyB,kCACzCA,EAAgB,yBAA0B,6BAC1CA,EAAgB,6BAA8B,mBAC9CA,EAAgB,yBAA0B,sCAAuC/nD,WACjF+nD,EAAgB,wBAAwB,SAAUb,GAChD,MAAO,qBAAuBA,CAChC,GAAGlnD,WACH+nD,EAAgB,qCAAsC,oCACtDplD,EAAOC,QAAQ,EAAQklD,+CCjGnBoB,EAAa/pD,OAAO+G,MAAQ,SAAU+E,GACxC,IAAI/E,EAAO,GACX,IAAK,IAAI1B,KAAOyG,EAAK/E,EAAK9F,KAAKoE,GAC/B,OAAO0B,CACT,EAGAvD,EAAOC,QAAUumD,EACjB,IAAIC,EAAW,EAAQ,OACnBC,EAAW,EAAQ,OACvB,EAAQ,MAAR,CAAoBF,EAAQC,GAI1B,IADA,IAAIljD,EAAOgjD,EAAWG,EAASjqD,WACtBke,EAAI,EAAGA,EAAIpX,EAAK5E,OAAQgc,IAAK,CACpC,IAAI0f,EAAS92B,EAAKoX,GACb6rC,EAAO/pD,UAAU49B,KAASmsB,EAAO/pD,UAAU49B,GAAUqsB,EAASjqD,UAAU49B,GAC/E,CAEF,SAASmsB,EAAOvjD,GACd,KAAMhG,gBAAgBupD,GAAS,OAAO,IAAIA,EAAOvjD,GACjDwjD,EAAStoD,KAAKlB,KAAMgG,GACpByjD,EAASvoD,KAAKlB,KAAMgG,GACpBhG,KAAK0pD,eAAgB,EACjB1jD,KACuB,IAArBA,EAAQ2jD,WAAoB3pD,KAAK2pD,UAAW,IACvB,IAArB3jD,EAAQ4jD,WAAoB5pD,KAAK4pD,UAAW,IAClB,IAA1B5jD,EAAQ0jD,gBACV1pD,KAAK0pD,eAAgB,EACrB1pD,KAAKD,KAAK,MAAO8pD,IAGvB,CA8BA,SAASA,IAEH7pD,KAAK8pD,eAAeC,OAIxBC,EAAQC,SAASC,EAASlqD,KAC5B,CACA,SAASkqD,EAAQ39B,GACfA,EAAK5Y,KACP,CAvCApU,OAAOyF,eAAeukD,EAAO/pD,UAAW,wBAAyB,CAI/DuF,YAAY,EACZohB,IAAK,WACH,OAAOnmB,KAAK8pD,eAAeK,aAC7B,IAEF5qD,OAAOyF,eAAeukD,EAAO/pD,UAAW,iBAAkB,CAIxDuF,YAAY,EACZohB,IAAK,WACH,OAAOnmB,KAAK8pD,gBAAkB9pD,KAAK8pD,eAAeM,WACpD,IAEF7qD,OAAOyF,eAAeukD,EAAO/pD,UAAW,iBAAkB,CAIxDuF,YAAY,EACZohB,IAAK,WACH,OAAOnmB,KAAK8pD,eAAepoD,MAC7B,IAeFnC,OAAOyF,eAAeukD,EAAO/pD,UAAW,YAAa,CAInDuF,YAAY,EACZohB,IAAK,WACH,YAA4B3jB,IAAxBxC,KAAKqqD,qBAAwD7nD,IAAxBxC,KAAK8pD,gBAGvC9pD,KAAKqqD,eAAeniC,WAAaloB,KAAK8pD,eAAe5hC,SAC9D,EACAqQ,IAAK,SAAanzB,QAGY5C,IAAxBxC,KAAKqqD,qBAAwD7nD,IAAxBxC,KAAK8pD,iBAM9C9pD,KAAKqqD,eAAeniC,UAAY9iB,EAChCpF,KAAK8pD,eAAe5hC,UAAY9iB,EAClC,kCCjGFrC,EAAOC,QAAUsnD,EACjB,IAAIC,EAAY,EAAQ,OAExB,SAASD,EAAYtkD,GACnB,KAAMhG,gBAAgBsqD,GAAc,OAAO,IAAIA,EAAYtkD,GAC3DukD,EAAUrpD,KAAKlB,KAAMgG,EACvB,CAJA,EAAQ,MAAR,CAAoBskD,EAAaC,GAKjCD,EAAY9qD,UAAUgrD,WAAa,SAAUC,EAAOC,EAAU1qC,GAC5DA,EAAG,KAAMyqC,EACX,oCCVIlB,aAHJxmD,EAAOC,QAAUwmD,EAMjBA,EAASmB,cAAgBA,EAGhB,sBAAT,IAqBI32B,EApBA42B,EAAkB,SAAyB1qD,EAAS6N,GACtD,OAAO7N,EAAQoB,UAAUyM,GAAMrM,MACjC,EAIImpD,EAAS,EAAQ,OAGjBC,EAAS,gBACTC,QAAmC,IAAX,EAAAC,EAAyB,EAAAA,EAA2B,oBAAXxyC,OAAyBA,OAAyB,oBAAT+T,KAAuBA,KAAO,CAAC,GAAG0+B,YAAc,WAAa,EASvKC,EAAY,EAAQ,OAGtBl3B,EADEk3B,GAAaA,EAAUC,SACjBD,EAAUC,SAAS,UAEnB,WAAkB,EAI5B,IAWIC,EACAC,EACA9uC,EAbA+uC,EAAa,EAAQ,OACrBC,EAAc,EAAQ,OAExBC,EADa,EAAQ,OACOA,iBAC1BC,EAAiB,WACnBC,EAAuBD,EAAeC,qBACtCC,EAA4BF,EAAeE,0BAC3CC,EAA6BH,EAAeG,2BAC5CC,EAAqCJ,EAAeI,mCAMtD,EAAQ,MAAR,CAAoBrC,EAAUqB,GAC9B,IAAIiB,EAAiBP,EAAYO,eAC7BC,EAAe,CAAC,QAAS,QAAS,UAAW,QAAS,UAY1D,SAASpB,EAAc3kD,EAASgmD,EAAQC,GACtC1C,EAASA,GAAU,EAAQ,OAC3BvjD,EAAUA,GAAW,CAAC,EAOE,kBAAbimD,IAAwBA,EAAWD,aAAkBzC,GAIhEvpD,KAAKksD,aAAelmD,EAAQkmD,WACxBD,IAAUjsD,KAAKksD,WAAalsD,KAAKksD,cAAgBlmD,EAAQmmD,oBAI7DnsD,KAAKmqD,cAAgBqB,EAAiBxrD,KAAMgG,EAAS,wBAAyBimD,GAK9EjsD,KAAKosD,OAAS,IAAId,EAClBtrD,KAAK0B,OAAS,EACd1B,KAAKqsD,MAAQ,KACbrsD,KAAKssD,WAAa,EAClBtsD,KAAKusD,QAAU,KACfvsD,KAAK+pD,OAAQ,EACb/pD,KAAKwsD,YAAa,EAClBxsD,KAAKysD,SAAU,EAMfzsD,KAAK0sD,MAAO,EAIZ1sD,KAAK2sD,cAAe,EACpB3sD,KAAK4sD,iBAAkB,EACvB5sD,KAAK6sD,mBAAoB,EACzB7sD,KAAK8sD,iBAAkB,EACvB9sD,KAAK+sD,QAAS,EAGd/sD,KAAKgtD,WAAkC,IAAtBhnD,EAAQgnD,UAGzBhtD,KAAKitD,cAAgBjnD,EAAQinD,YAG7BjtD,KAAKkoB,WAAY,EAKjBloB,KAAKktD,gBAAkBlnD,EAAQknD,iBAAmB,OAGlDltD,KAAKmtD,WAAa,EAGlBntD,KAAKotD,aAAc,EACnBptD,KAAKqtD,QAAU,KACfrtD,KAAK0qD,SAAW,KACZ1kD,EAAQ0kD,WACLU,IAAeA,EAAgB,YACpCprD,KAAKqtD,QAAU,IAAIjC,EAAcplD,EAAQ0kD,UACzC1qD,KAAK0qD,SAAW1kD,EAAQ0kD,SAE5B,CACA,SAASlB,EAASxjD,GAEhB,GADAujD,EAASA,GAAU,EAAQ,SACrBvpD,gBAAgBwpD,GAAW,OAAO,IAAIA,EAASxjD,GAIrD,IAAIimD,EAAWjsD,gBAAgBupD,EAC/BvpD,KAAKqqD,eAAiB,IAAIM,EAAc3kD,EAAShG,KAAMisD,GAGvDjsD,KAAK2pD,UAAW,EACZ3jD,IAC0B,mBAAjBA,EAAQsnD,OAAqBttD,KAAKutD,MAAQvnD,EAAQsnD,MAC9B,mBAApBtnD,EAAQwnD,UAAwBxtD,KAAKytD,SAAWznD,EAAQwnD,UAErE3C,EAAO3pD,KAAKlB,KACd,CAwDA,SAAS0tD,EAAiB1B,EAAQvB,EAAOC,EAAUiD,EAAYC,GAC7D55B,EAAM,mBAAoBy2B,GAC1B,IAKM7C,EALF3rC,EAAQ+vC,EAAO3B,eACnB,GAAc,OAAVI,EACFxuC,EAAMwwC,SAAU,EAuNpB,SAAoBT,EAAQ/vC,GAE1B,GADA+X,EAAM,eACF/X,EAAM8tC,MAAV,CACA,GAAI9tC,EAAMoxC,QAAS,CACjB,IAAI5C,EAAQxuC,EAAMoxC,QAAQ15C,MACtB82C,GAASA,EAAM/oD,SACjBua,EAAMmwC,OAAO5rD,KAAKiqD,GAClBxuC,EAAMva,QAAUua,EAAMiwC,WAAa,EAAIzB,EAAM/oD,OAEjD,CACAua,EAAM8tC,OAAQ,EACV9tC,EAAMywC,KAIRmB,EAAa7B,IAGb/vC,EAAM0wC,cAAe,EAChB1wC,EAAM2wC,kBACT3wC,EAAM2wC,iBAAkB,EACxBkB,EAAc9B,IAnBK,CAsBzB,CA9OI+B,CAAW/B,EAAQ/vC,QAInB,GADK2xC,IAAgBhG,EA6CzB,SAAsB3rC,EAAOwuC,GAC3B,IAAI7C,EAjPiBv8C,EAqPrB,OArPqBA,EAkPFo/C,EAjPZK,EAAOkD,SAAS3iD,IAAQA,aAAe0/C,GAiPA,iBAAVN,QAAgCjoD,IAAVioD,GAAwBxuC,EAAMiwC,aACtFtE,EAAK,IAAI8D,EAAqB,QAAS,CAAC,SAAU,SAAU,cAAejB,IAEtE7C,CACT,CAnD8BqG,CAAahyC,EAAOwuC,IAC1C7C,EACFkE,EAAeE,EAAQpE,QAClB,GAAI3rC,EAAMiwC,YAAczB,GAASA,EAAM/oD,OAAS,EAIrD,GAHqB,iBAAV+oD,GAAuBxuC,EAAMiwC,YAAc3sD,OAAOioD,eAAeiD,KAAWK,EAAOtrD,YAC5FirD,EA3MR,SAA6BA,GAC3B,OAAOK,EAAOvuC,KAAKkuC,EACrB,CAyMgByD,CAAoBzD,IAE1BkD,EACE1xC,EAAMuwC,WAAYV,EAAeE,EAAQ,IAAIH,GAA2CsC,EAASnC,EAAQ/vC,EAAOwuC,GAAO,QACtH,GAAIxuC,EAAM8tC,MACf+B,EAAeE,EAAQ,IAAIL,OACtB,IAAI1vC,EAAMiM,UACf,OAAO,EAEPjM,EAAMwwC,SAAU,EACZxwC,EAAMoxC,UAAY3C,GACpBD,EAAQxuC,EAAMoxC,QAAQe,MAAM3D,GACxBxuC,EAAMiwC,YAA+B,IAAjBzB,EAAM/oD,OAAcysD,EAASnC,EAAQ/vC,EAAOwuC,GAAO,GAAY4D,EAAcrC,EAAQ/vC,IAE7GkyC,EAASnC,EAAQ/vC,EAAOwuC,GAAO,EAEnC,MACUkD,IACV1xC,EAAMwwC,SAAU,EAChB4B,EAAcrC,EAAQ/vC,IAO1B,OAAQA,EAAM8tC,QAAU9tC,EAAMva,OAASua,EAAMkuC,eAAkC,IAAjBluC,EAAMva,OACtE,CACA,SAASysD,EAASnC,EAAQ/vC,EAAOwuC,EAAOkD,GAClC1xC,EAAMswC,SAA4B,IAAjBtwC,EAAMva,SAAiBua,EAAMywC,MAChDzwC,EAAMkxC,WAAa,EACnBnB,EAAOlqD,KAAK,OAAQ2oD,KAGpBxuC,EAAMva,QAAUua,EAAMiwC,WAAa,EAAIzB,EAAM/oD,OACzCisD,EAAY1xC,EAAMmwC,OAAO3/C,QAAQg+C,GAAYxuC,EAAMmwC,OAAO5rD,KAAKiqD,GAC/DxuC,EAAM0wC,cAAckB,EAAa7B,IAEvCqC,EAAcrC,EAAQ/vC,EACxB,CA3GA1c,OAAOyF,eAAewkD,EAAShqD,UAAW,YAAa,CAIrDuF,YAAY,EACZohB,IAAK,WACH,YAA4B3jB,IAAxBxC,KAAKqqD,gBAGFrqD,KAAKqqD,eAAeniC,SAC7B,EACAqQ,IAAK,SAAanzB,GAGXpF,KAAKqqD,iBAMVrqD,KAAKqqD,eAAeniC,UAAY9iB,EAClC,IAEFokD,EAAShqD,UAAUguD,QAAUjC,EAAYiC,QACzChE,EAAShqD,UAAU8uD,WAAa/C,EAAYgD,UAC5C/E,EAAShqD,UAAUiuD,SAAW,SAAU/iD,EAAKsV,GAC3CA,EAAGtV,EACL,EAMA8+C,EAAShqD,UAAUgB,KAAO,SAAUiqD,EAAOC,GACzC,IACIkD,EADA3xC,EAAQjc,KAAKqqD,eAcjB,OAZKpuC,EAAMiwC,WAUT0B,GAAiB,EATI,iBAAVnD,KACTC,EAAWA,GAAYzuC,EAAMixC,mBACZjxC,EAAMyuC,WACrBD,EAAQK,EAAOvuC,KAAKkuC,EAAOC,GAC3BA,EAAW,IAEbkD,GAAiB,GAKdF,EAAiB1tD,KAAMyqD,EAAOC,GAAU,EAAOkD,EACxD,EAGApE,EAAShqD,UAAUiN,QAAU,SAAUg+C,GACrC,OAAOiD,EAAiB1tD,KAAMyqD,EAAO,MAAM,GAAM,EACnD,EA6DAjB,EAAShqD,UAAUgvD,SAAW,WAC5B,OAAuC,IAAhCxuD,KAAKqqD,eAAekC,OAC7B,EAGA/C,EAAShqD,UAAUivD,YAAc,SAAUC,GACpCtD,IAAeA,EAAgB,YACpC,IAAIiC,EAAU,IAAIjC,EAAcsD,GAChC1uD,KAAKqqD,eAAegD,QAAUA,EAE9BrtD,KAAKqqD,eAAeK,SAAW1qD,KAAKqqD,eAAegD,QAAQ3C,SAK3D,IAFA,IAAIiE,EAAI3uD,KAAKqqD,eAAe+B,OAAOwC,KAC/BC,EAAU,GACD,OAANF,GACLE,GAAWxB,EAAQe,MAAMO,EAAEvgD,MAC3BugD,EAAIA,EAAE/7C,KAKR,OAHA5S,KAAKqqD,eAAe+B,OAAO3/B,QACX,KAAZoiC,GAAgB7uD,KAAKqqD,eAAe+B,OAAO5rD,KAAKquD,GACpD7uD,KAAKqqD,eAAe3oD,OAASmtD,EAAQntD,OAC9B1B,IACT,EAGA,IAAI8uD,EAAU,WAqBd,SAASC,EAAcnqC,EAAG3I,GACxB,OAAI2I,GAAK,GAAsB,IAAjB3I,EAAMva,QAAgBua,EAAM8tC,MAAc,EACpD9tC,EAAMiwC,WAAmB,EACzBtnC,GAAMA,EAEJ3I,EAAMswC,SAAWtwC,EAAMva,OAAeua,EAAMmwC,OAAOwC,KAAKxgD,KAAK1M,OAAmBua,EAAMva,QAGxFkjB,EAAI3I,EAAMkuC,gBAAeluC,EAAMkuC,cA5BrC,SAAiCvlC,GAe/B,OAdIA,GAAKkqC,EAEPlqC,EAAIkqC,GAIJlqC,IACAA,GAAKA,IAAM,EACXA,GAAKA,IAAM,EACXA,GAAKA,IAAM,EACXA,GAAKA,IAAM,EACXA,GAAKA,IAAM,GACXA,KAEKA,CACT,CAYqDoqC,CAAwBpqC,IACvEA,GAAK3I,EAAMva,OAAekjB,EAEzB3I,EAAM8tC,MAIJ9tC,EAAMva,QAHXua,EAAM0wC,cAAe,EACd,GAGX,CA6HA,SAASkB,EAAa7B,GACpB,IAAI/vC,EAAQ+vC,EAAO3B,eACnBr2B,EAAM,eAAgB/X,EAAM0wC,aAAc1wC,EAAM2wC,iBAChD3wC,EAAM0wC,cAAe,EAChB1wC,EAAM2wC,kBACT54B,EAAM,eAAgB/X,EAAMswC,SAC5BtwC,EAAM2wC,iBAAkB,EACxB5C,EAAQC,SAAS6D,EAAe9B,GAEpC,CACA,SAAS8B,EAAc9B,GACrB,IAAI/vC,EAAQ+vC,EAAO3B,eACnBr2B,EAAM,gBAAiB/X,EAAMiM,UAAWjM,EAAMva,OAAQua,EAAM8tC,OACvD9tC,EAAMiM,YAAcjM,EAAMva,SAAUua,EAAM8tC,QAC7CiC,EAAOlqD,KAAK,YACZma,EAAM2wC,iBAAkB,GAS1B3wC,EAAM0wC,cAAgB1wC,EAAMswC,UAAYtwC,EAAM8tC,OAAS9tC,EAAMva,QAAUua,EAAMkuC,cAC7E8E,EAAKjD,EACP,CAQA,SAASqC,EAAcrC,EAAQ/vC,GACxBA,EAAMmxC,cACTnxC,EAAMmxC,aAAc,EACpBpD,EAAQC,SAASiF,EAAgBlD,EAAQ/vC,GAE7C,CACA,SAASizC,EAAelD,EAAQ/vC,GAwB9B,MAAQA,EAAMwwC,UAAYxwC,EAAM8tC,QAAU9tC,EAAMva,OAASua,EAAMkuC,eAAiBluC,EAAMswC,SAA4B,IAAjBtwC,EAAMva,SAAe,CACpH,IAAIW,EAAM4Z,EAAMva,OAGhB,GAFAsyB,EAAM,wBACNg4B,EAAOsB,KAAK,GACRjrD,IAAQ4Z,EAAMva,OAEhB,KACJ,CACAua,EAAMmxC,aAAc,CACtB,CAgPA,SAAS+B,EAAwB5iC,GAC/B,IAAItQ,EAAQsQ,EAAK89B,eACjBpuC,EAAM4wC,kBAAoBtgC,EAAK1qB,cAAc,YAAc,EACvDoa,EAAM6wC,kBAAoB7wC,EAAM8wC,OAGlC9wC,EAAMswC,SAAU,EAGPhgC,EAAK1qB,cAAc,QAAU,GACtC0qB,EAAK6iC,QAET,CACA,SAASC,EAAiB9iC,GACxByH,EAAM,4BACNzH,EAAK+gC,KAAK,EACZ,CAuBA,SAASgC,EAAQtD,EAAQ/vC,GACvB+X,EAAM,SAAU/X,EAAMwwC,SACjBxwC,EAAMwwC,SACTT,EAAOsB,KAAK,GAEdrxC,EAAM6wC,iBAAkB,EACxBd,EAAOlqD,KAAK,UACZmtD,EAAKjD,GACD/vC,EAAMswC,UAAYtwC,EAAMwwC,SAAST,EAAOsB,KAAK,EACnD,CAWA,SAAS2B,EAAKjD,GACZ,IAAI/vC,EAAQ+vC,EAAO3B,eAEnB,IADAr2B,EAAM,OAAQ/X,EAAMswC,SACbtwC,EAAMswC,SAA6B,OAAlBP,EAAOsB,SACjC,CAmHA,SAASiC,EAAS3qC,EAAG3I,GAEnB,OAAqB,IAAjBA,EAAMva,OAAqB,MAE3Bua,EAAMiwC,WAAYjF,EAAMhrC,EAAMmwC,OAAOlhD,SAAkB0Z,GAAKA,GAAK3I,EAAMva,QAEtDulD,EAAfhrC,EAAMoxC,QAAepxC,EAAMmwC,OAAOzoD,KAAK,IAAqC,IAAxBsY,EAAMmwC,OAAO1qD,OAAoBua,EAAMmwC,OAAOoD,QAAmBvzC,EAAMmwC,OAAO/qD,OAAO4a,EAAMva,QACnJua,EAAMmwC,OAAO3/B,SAGbw6B,EAAMhrC,EAAMmwC,OAAOqD,QAAQ7qC,EAAG3I,EAAMoxC,SAE/BpG,GATP,IAAIA,CAUN,CACA,SAASyI,EAAY1D,GACnB,IAAI/vC,EAAQ+vC,EAAO3B,eACnBr2B,EAAM,cAAe/X,EAAMuwC,YACtBvwC,EAAMuwC,aACTvwC,EAAM8tC,OAAQ,EACdC,EAAQC,SAAS0F,EAAe1zC,EAAO+vC,GAE3C,CACA,SAAS2D,EAAc1zC,EAAO+vC,GAI5B,GAHAh4B,EAAM,gBAAiB/X,EAAMuwC,WAAYvwC,EAAMva,SAG1Cua,EAAMuwC,YAA+B,IAAjBvwC,EAAMva,SAC7Bua,EAAMuwC,YAAa,EACnBR,EAAOrC,UAAW,EAClBqC,EAAOlqD,KAAK,OACRma,EAAMgxC,aAAa,CAGrB,IAAI2C,EAAS5D,EAAOlC,iBACf8F,GAAUA,EAAO3C,aAAe2C,EAAOC,WAC1C7D,EAAOwB,SAEX,CAEJ,CASA,SAASlpD,EAAQwrD,EAAItqD,GACnB,IAAK,IAAIhE,EAAI,EAAGC,EAAIquD,EAAGpuD,OAAQF,EAAIC,EAAGD,IACpC,GAAIsuD,EAAGtuD,KAAOgE,EAAG,OAAOhE,EAE1B,OAAQ,CACV,CA1pBAgoD,EAAShqD,UAAU8tD,KAAO,SAAU1oC,GAClCoP,EAAM,OAAQpP,GACdA,EAAIqjB,SAASrjB,EAAG,IAChB,IAAI3I,EAAQjc,KAAKqqD,eACb0F,EAAQnrC,EAMZ,GALU,IAANA,IAAS3I,EAAM2wC,iBAAkB,GAK3B,IAANhoC,GAAW3I,EAAM0wC,gBAA0C,IAAxB1wC,EAAMkuC,cAAsBluC,EAAMva,QAAUua,EAAMkuC,cAAgBluC,EAAMva,OAAS,IAAMua,EAAM8tC,OAGlI,OAFA/1B,EAAM,qBAAsB/X,EAAMva,OAAQua,EAAM8tC,OAC3B,IAAjB9tC,EAAMva,QAAgBua,EAAM8tC,MAAO2F,EAAY1vD,MAAW6tD,EAAa7tD,MACpE,KAKT,GAAU,KAHV4kB,EAAImqC,EAAcnqC,EAAG3I,KAGNA,EAAM8tC,MAEnB,OADqB,IAAjB9tC,EAAMva,QAAcguD,EAAY1vD,MAC7B,KA0BT,IA2BIinD,EA3BA+I,EAAS/zC,EAAM0wC,aA6CnB,OA5CA34B,EAAM,gBAAiBg8B,IAGF,IAAjB/zC,EAAMva,QAAgBua,EAAMva,OAASkjB,EAAI3I,EAAMkuC,gBAEjDn2B,EAAM,6BADNg8B,GAAS,GAMP/zC,EAAM8tC,OAAS9tC,EAAMwwC,QAEvBz4B,EAAM,mBADNg8B,GAAS,GAEAA,IACTh8B,EAAM,WACN/X,EAAMwwC,SAAU,EAChBxwC,EAAMywC,MAAO,EAEQ,IAAjBzwC,EAAMva,SAAcua,EAAM0wC,cAAe,GAE7C3sD,KAAKutD,MAAMtxC,EAAMkuC,eACjBluC,EAAMywC,MAAO,EAGRzwC,EAAMwwC,UAAS7nC,EAAImqC,EAAcgB,EAAO9zC,KAInC,QADDgrC,EAAPriC,EAAI,EAAS2qC,EAAS3qC,EAAG3I,GAAkB,OAE7CA,EAAM0wC,aAAe1wC,EAAMva,QAAUua,EAAMkuC,cAC3CvlC,EAAI,IAEJ3I,EAAMva,QAAUkjB,EAChB3I,EAAMkxC,WAAa,GAEA,IAAjBlxC,EAAMva,SAGHua,EAAM8tC,QAAO9tC,EAAM0wC,cAAe,GAGnCoD,IAAUnrC,GAAK3I,EAAM8tC,OAAO2F,EAAY1vD,OAElC,OAARinD,GAAcjnD,KAAK8B,KAAK,OAAQmlD,GAC7BA,CACT,EA6GAuC,EAAShqD,UAAU+tD,MAAQ,SAAU3oC,GACnCknC,EAAe9rD,KAAM,IAAI4rD,EAA2B,WACtD,EACApC,EAAShqD,UAAUywD,KAAO,SAAUC,EAAMC,GACxC,IAAI3b,EAAMx0C,KACNic,EAAQjc,KAAKqqD,eACjB,OAAQpuC,EAAMqwC,YACZ,KAAK,EACHrwC,EAAMowC,MAAQ6D,EACd,MACF,KAAK,EACHj0C,EAAMowC,MAAQ,CAACpwC,EAAMowC,MAAO6D,GAC5B,MACF,QACEj0C,EAAMowC,MAAM7rD,KAAK0vD,GAGrBj0C,EAAMqwC,YAAc,EACpBt4B,EAAM,wBAAyB/X,EAAMqwC,WAAY6D,GACjD,IACIC,EADUD,IAA6B,IAAjBA,EAASx8C,KAAkBu8C,IAASlG,EAAQqG,QAAUH,IAASlG,EAAQsG,OACrEC,EAAR1G,EAYpB,SAASA,IACP71B,EAAM,SACNk8B,EAAKv8C,KACP,CAdIsI,EAAMuwC,WAAYxC,EAAQC,SAASmG,GAAY5b,EAAIz0C,KAAK,MAAOqwD,GACnEF,EAAKvtD,GAAG,UACR,SAAS6tD,EAAS7G,EAAU8G,GAC1Bz8B,EAAM,YACF21B,IAAanV,GACXic,IAAwC,IAA1BA,EAAWC,aAC3BD,EAAWC,YAAa,EAkB5B18B,EAAM,WAENk8B,EAAK3tD,eAAe,QAASouD,GAC7BT,EAAK3tD,eAAe,SAAUquD,GAC9BV,EAAK3tD,eAAe,QAASsuD,GAC7BX,EAAK3tD,eAAe,QAASuuD,GAC7BZ,EAAK3tD,eAAe,SAAUiuD,GAC9Bhc,EAAIjyC,eAAe,MAAOsnD,GAC1BrV,EAAIjyC,eAAe,MAAOguD,GAC1B/b,EAAIjyC,eAAe,OAAQwuD,GAC3BC,GAAY,GAOR/0C,EAAMkxC,YAAgB+C,EAAKpG,iBAAkBoG,EAAKpG,eAAemH,WAAYJ,IA/BnF,IAUA,IAAIA,EAgFN,SAAqBrc,GACnB,OAAO,WACL,IAAIv4B,EAAQu4B,EAAI6V,eAChBr2B,EAAM,cAAe/X,EAAMkxC,YACvBlxC,EAAMkxC,YAAYlxC,EAAMkxC,aACH,IAArBlxC,EAAMkxC,YAAoBvC,EAAgBpW,EAAK,UACjDv4B,EAAMswC,SAAU,EAChB0C,EAAKza,GAET,CACF,CA1FgB0c,CAAY1c,GAC1B0b,EAAKvtD,GAAG,QAASkuD,GACjB,IAAIG,GAAY,EAsBhB,SAASD,EAAOtG,GACdz2B,EAAM,UACN,IAAIizB,EAAMiJ,EAAK9B,MAAM3D,GACrBz2B,EAAM,aAAcizB,IACR,IAARA,KAKwB,IAArBhrC,EAAMqwC,YAAoBrwC,EAAMowC,QAAU6D,GAAQj0C,EAAMqwC,WAAa,IAAqC,IAAhChoD,EAAQ2X,EAAMowC,MAAO6D,MAAkBc,IACpHh9B,EAAM,8BAA+B/X,EAAMkxC,YAC3ClxC,EAAMkxC,cAER3Y,EAAIhR,QAER,CAIA,SAASstB,EAAQlJ,GACf5zB,EAAM,UAAW4zB,GACjB2I,IACAL,EAAK3tD,eAAe,QAASuuD,GACU,IAAnClG,EAAgBsF,EAAM,UAAgBpE,EAAeoE,EAAMtI,EACjE,CAMA,SAAS+I,IACPT,EAAK3tD,eAAe,SAAUquD,GAC9BL,GACF,CAEA,SAASK,IACP58B,EAAM,YACNk8B,EAAK3tD,eAAe,QAASouD,GAC7BJ,GACF,CAEA,SAASA,IACPv8B,EAAM,UACNwgB,EAAI+b,OAAOL,EACb,CAUA,OAvDA1b,EAAI7xC,GAAG,OAAQouD,GAniBjB,SAAyB7wD,EAASC,EAAON,GAGvC,GAAuC,mBAA5BK,EAAQ2nD,gBAAgC,OAAO3nD,EAAQ2nD,gBAAgB1nD,EAAON,GAMpFK,EAAQK,SAAYL,EAAQK,QAAQJ,GAAuCyB,MAAM+C,QAAQzE,EAAQK,QAAQJ,IAASD,EAAQK,QAAQJ,GAAOsM,QAAQ5M,GAASK,EAAQK,QAAQJ,GAAS,CAACN,EAAIK,EAAQK,QAAQJ,IAA5JD,EAAQyC,GAAGxC,EAAON,EACrE,CAqjBEgoD,CAAgBqI,EAAM,QAASY,GAO/BZ,EAAKnwD,KAAK,QAAS4wD,GAMnBT,EAAKnwD,KAAK,SAAU6wD,GAOpBV,EAAKpuD,KAAK,OAAQ0yC,GAGbv4B,EAAMswC,UACTv4B,EAAM,eACNwgB,EAAI4a,UAECc,CACT,EAYA1G,EAAShqD,UAAU+wD,OAAS,SAAUL,GACpC,IAAIj0C,EAAQjc,KAAKqqD,eACboG,EAAa,CACfC,YAAY,GAId,GAAyB,IAArBz0C,EAAMqwC,WAAkB,OAAOtsD,KAGnC,GAAyB,IAArBic,EAAMqwC,WAER,OAAI4D,GAAQA,IAASj0C,EAAMowC,QACtB6D,IAAMA,EAAOj0C,EAAMowC,OAGxBpwC,EAAMowC,MAAQ,KACdpwC,EAAMqwC,WAAa,EACnBrwC,EAAMswC,SAAU,EACZ2D,GAAMA,EAAKpuD,KAAK,SAAU9B,KAAMywD,IAPKzwD,KAa3C,IAAKkwD,EAAM,CAET,IAAIiB,EAAQl1C,EAAMowC,MACdhqD,EAAM4Z,EAAMqwC,WAChBrwC,EAAMowC,MAAQ,KACdpwC,EAAMqwC,WAAa,EACnBrwC,EAAMswC,SAAU,EAChB,IAAK,IAAI/qD,EAAI,EAAGA,EAAIa,EAAKb,IAAK2vD,EAAM3vD,GAAGM,KAAK,SAAU9B,KAAM,CAC1D0wD,YAAY,IAEd,OAAO1wD,IACT,CAGA,IAAIkJ,EAAQ5E,EAAQ2X,EAAMowC,MAAO6D,GACjC,OAAe,IAAXhnD,IACJ+S,EAAMowC,MAAMlzC,OAAOjQ,EAAO,GAC1B+S,EAAMqwC,YAAc,EACK,IAArBrwC,EAAMqwC,aAAkBrwC,EAAMowC,MAAQpwC,EAAMowC,MAAM,IACtD6D,EAAKpuD,KAAK,SAAU9B,KAAMywD,IAJDzwD,IAM3B,EAIAwpD,EAAShqD,UAAUmD,GAAK,SAAUyuD,EAAIvxD,GACpC,IAAIiL,EAAM+/C,EAAOrrD,UAAUmD,GAAGzB,KAAKlB,KAAMoxD,EAAIvxD,GACzCoc,EAAQjc,KAAKqqD,eAqBjB,MApBW,SAAP+G,GAGFn1C,EAAM4wC,kBAAoB7sD,KAAK6B,cAAc,YAAc,GAGrC,IAAlBoa,EAAMswC,SAAmBvsD,KAAKovD,UAClB,aAAPgC,IACJn1C,EAAMuwC,YAAevwC,EAAM4wC,oBAC9B5wC,EAAM4wC,kBAAoB5wC,EAAM0wC,cAAe,EAC/C1wC,EAAMswC,SAAU,EAChBtwC,EAAM2wC,iBAAkB,EACxB54B,EAAM,cAAe/X,EAAMva,OAAQua,EAAMwwC,SACrCxwC,EAAMva,OACRmsD,EAAa7tD,MACHic,EAAMwwC,SAChBzC,EAAQC,SAASoF,EAAkBrvD,QAIlC8K,CACT,EACA0+C,EAAShqD,UAAUS,YAAcupD,EAAShqD,UAAUmD,GACpD6mD,EAAShqD,UAAU+C,eAAiB,SAAU6uD,EAAIvxD,GAChD,IAAIiL,EAAM+/C,EAAOrrD,UAAU+C,eAAerB,KAAKlB,KAAMoxD,EAAIvxD,GAUzD,MATW,aAAPuxD,GAOFpH,EAAQC,SAASkF,EAAyBnvD,MAErC8K,CACT,EACA0+C,EAAShqD,UAAUoD,mBAAqB,SAAUwuD,GAChD,IAAItmD,EAAM+/C,EAAOrrD,UAAUoD,mBAAmBH,MAAMzC,KAAMsC,WAU1D,MATW,aAAP8uD,QAA4B5uD,IAAP4uD,GAOvBpH,EAAQC,SAASkF,EAAyBnvD,MAErC8K,CACT,EAqBA0+C,EAAShqD,UAAU4vD,OAAS,WAC1B,IAAInzC,EAAQjc,KAAKqqD,eAUjB,OATKpuC,EAAMswC,UACTv4B,EAAM,UAIN/X,EAAMswC,SAAWtwC,EAAM4wC,kBAM3B,SAAgBb,EAAQ/vC,GACjBA,EAAM6wC,kBACT7wC,EAAM6wC,iBAAkB,EACxB9C,EAAQC,SAASqF,EAAStD,EAAQ/vC,GAEtC,CAVImzC,CAAOpvD,KAAMic,IAEfA,EAAM8wC,QAAS,EACR/sD,IACT,EAiBAwpD,EAAShqD,UAAUgkC,MAAQ,WAQzB,OAPAxP,EAAM,wBAAyBh0B,KAAKqqD,eAAekC,UACf,IAAhCvsD,KAAKqqD,eAAekC,UACtBv4B,EAAM,SACNh0B,KAAKqqD,eAAekC,SAAU,EAC9BvsD,KAAK8B,KAAK,UAEZ9B,KAAKqqD,eAAe0C,QAAS,EACtB/sD,IACT,EAUAwpD,EAAShqD,UAAU6xD,KAAO,SAAUrF,GAClC,IAAIsF,EAAQtxD,KACRic,EAAQjc,KAAKqqD,eACb0C,GAAS,EAwBb,IAAK,IAAIvrD,KAvBTwqD,EAAOrpD,GAAG,OAAO,WAEf,GADAqxB,EAAM,eACF/X,EAAMoxC,UAAYpxC,EAAM8tC,MAAO,CACjC,IAAIU,EAAQxuC,EAAMoxC,QAAQ15C,MACtB82C,GAASA,EAAM/oD,QAAQ4vD,EAAM9wD,KAAKiqD,EACxC,CACA6G,EAAM9wD,KAAK,KACb,IACAwrD,EAAOrpD,GAAG,QAAQ,SAAU8nD,GAC1Bz2B,EAAM,gBACF/X,EAAMoxC,UAAS5C,EAAQxuC,EAAMoxC,QAAQe,MAAM3D,IAG3CxuC,EAAMiwC,YAAc,MAACzB,IAAyDxuC,EAAMiwC,YAAgBzB,GAAUA,EAAM/oD,UAC9G4vD,EAAM9wD,KAAKiqD,KAEnBsC,GAAS,EACTf,EAAOxoB,SAEX,IAIcwoB,OACIxpD,IAAZxC,KAAKwB,IAAyC,mBAAdwqD,EAAOxqD,KACzCxB,KAAKwB,GAAK,SAAoB47B,GAC5B,OAAO,WACL,OAAO4uB,EAAO5uB,GAAQ36B,MAAMupD,EAAQ1pD,UACtC,CACF,CAJU,CAIRd,IAKN,IAAK,IAAIojB,EAAI,EAAGA,EAAImnC,EAAarqD,OAAQkjB,IACvConC,EAAOrpD,GAAGopD,EAAannC,GAAI5kB,KAAK8B,KAAKmf,KAAKjhB,KAAM+rD,EAAannC,KAY/D,OAPA5kB,KAAKutD,MAAQ,SAAU3oC,GACrBoP,EAAM,gBAAiBpP,GACnBmoC,IACFA,GAAS,EACTf,EAAOoD,SAEX,EACOpvD,IACT,EACsB,mBAAX6F,SACT2jD,EAAShqD,UAAUqG,OAAO0rD,eAAiB,WAIzC,YAH0C/uD,IAAtC6oD,IACFA,EAAoC,EAAQ,OAEvCA,EAAkCrrD,KAC3C,GAEFT,OAAOyF,eAAewkD,EAAShqD,UAAW,wBAAyB,CAIjEuF,YAAY,EACZohB,IAAK,WACH,OAAOnmB,KAAKqqD,eAAeF,aAC7B,IAEF5qD,OAAOyF,eAAewkD,EAAShqD,UAAW,iBAAkB,CAI1DuF,YAAY,EACZohB,IAAK,WACH,OAAOnmB,KAAKqqD,gBAAkBrqD,KAAKqqD,eAAe+B,MACpD,IAEF7sD,OAAOyF,eAAewkD,EAAShqD,UAAW,kBAAmB,CAI3DuF,YAAY,EACZohB,IAAK,WACH,OAAOnmB,KAAKqqD,eAAekC,OAC7B,EACAh0B,IAAK,SAAatc,GACZjc,KAAKqqD,iBACPrqD,KAAKqqD,eAAekC,QAAUtwC,EAElC,IAIFutC,EAASgI,UAAYjC,EACrBhwD,OAAOyF,eAAewkD,EAAShqD,UAAW,iBAAkB,CAI1DuF,YAAY,EACZohB,IAAK,WACH,OAAOnmB,KAAKqqD,eAAe3oD,MAC7B,IA+CoB,mBAAXmE,SACT2jD,EAASjtC,KAAO,SAAUk1C,EAAUn+C,GAIlC,YAHa9Q,IAAT+Z,IACFA,EAAO,EAAQ,QAEVA,EAAKitC,EAAUiI,EAAUn+C,EAClC,iCC17BFvQ,EAAOC,QAAUunD,EACjB,IAAIkB,EAAiB,WACnBG,EAA6BH,EAAeG,2BAC5C8F,EAAwBjG,EAAeiG,sBACvCC,EAAqClG,EAAekG,mCACpDC,EAA8BnG,EAAemG,4BAC3CrI,EAAS,EAAQ,OAErB,SAASsI,EAAejK,EAAIx5C,GAC1B,IAAI0jD,EAAK9xD,KAAK+xD,gBACdD,EAAGE,cAAe,EAClB,IAAIhyC,EAAK8xC,EAAGG,QACZ,GAAW,OAAPjyC,EACF,OAAOhgB,KAAK8B,KAAK,QAAS,IAAI4vD,GAEhCI,EAAGI,WAAa,KAChBJ,EAAGG,QAAU,KACD,MAAR7jD,GAEFpO,KAAKQ,KAAK4N,GACZ4R,EAAG4nC,GACH,IAAIuK,EAAKnyD,KAAKqqD,eACd8H,EAAG1F,SAAU,GACT0F,EAAGxF,cAAgBwF,EAAGzwD,OAASywD,EAAGhI,gBACpCnqD,KAAKutD,MAAM4E,EAAGhI,cAElB,CACA,SAASI,EAAUvkD,GACjB,KAAMhG,gBAAgBuqD,GAAY,OAAO,IAAIA,EAAUvkD,GACvDujD,EAAOroD,KAAKlB,KAAMgG,GAClBhG,KAAK+xD,gBAAkB,CACrBF,eAAgBA,EAAe5wC,KAAKjhB,MACpCoyD,eAAe,EACfJ,cAAc,EACdC,QAAS,KACTC,WAAY,KACZG,cAAe,MAIjBryD,KAAKqqD,eAAesC,cAAe,EAKnC3sD,KAAKqqD,eAAeqC,MAAO,EACvB1mD,IAC+B,mBAAtBA,EAAQssD,YAA0BtyD,KAAKwqD,WAAaxkD,EAAQssD,WAC1C,mBAAlBtsD,EAAQusD,QAAsBvyD,KAAKwyD,OAASxsD,EAAQusD,QAIjEvyD,KAAK2C,GAAG,YAAa8vD,EACvB,CACA,SAASA,IACP,IAAInB,EAAQtxD,KACe,mBAAhBA,KAAKwyD,QAA0BxyD,KAAKqqD,eAAeniC,UAK5DwqC,EAAK1yD,KAAM,KAAM,MAJjBA,KAAKwyD,QAAO,SAAU5K,EAAIx5C,GACxBskD,EAAKpB,EAAO1J,EAAIx5C,EAClB,GAIJ,CAiDA,SAASskD,EAAK1G,EAAQpE,EAAIx5C,GACxB,GAAIw5C,EAAI,OAAOoE,EAAOlqD,KAAK,QAAS8lD,GAQpC,GAPY,MAARx5C,GAEF49C,EAAOxrD,KAAK4N,GAKV49C,EAAOlC,eAAepoD,OAAQ,MAAM,IAAIkwD,EAC5C,GAAI5F,EAAO+F,gBAAgBC,aAAc,MAAM,IAAIL,EACnD,OAAO3F,EAAOxrD,KAAK,KACrB,CArHA,EAAQ,MAAR,CAAoB+pD,EAAWhB,GAyD/BgB,EAAU/qD,UAAUgB,KAAO,SAAUiqD,EAAOC,GAE1C,OADA1qD,KAAK+xD,gBAAgBK,eAAgB,EAC9B7I,EAAO/pD,UAAUgB,KAAKU,KAAKlB,KAAMyqD,EAAOC,EACjD,EAYAH,EAAU/qD,UAAUgrD,WAAa,SAAUC,EAAOC,EAAU1qC,GAC1DA,EAAG,IAAI4rC,EAA2B,gBACpC,EACArB,EAAU/qD,UAAUmzD,OAAS,SAAUlI,EAAOC,EAAU1qC,GACtD,IAAI8xC,EAAK9xD,KAAK+xD,gBAId,GAHAD,EAAGG,QAAUjyC,EACb8xC,EAAGI,WAAazH,EAChBqH,EAAGO,cAAgB3H,GACdoH,EAAGE,aAAc,CACpB,IAAIG,EAAKnyD,KAAKqqD,gBACVyH,EAAGM,eAAiBD,EAAGxF,cAAgBwF,EAAGzwD,OAASywD,EAAGhI,gBAAenqD,KAAKutD,MAAM4E,EAAGhI,cACzF,CACF,EAKAI,EAAU/qD,UAAU+tD,MAAQ,SAAU3oC,GACpC,IAAIktC,EAAK9xD,KAAK+xD,gBACQ,OAAlBD,EAAGI,YAAwBJ,EAAGE,aAMhCF,EAAGM,eAAgB,GALnBN,EAAGE,cAAe,EAClBhyD,KAAKwqD,WAAWsH,EAAGI,WAAYJ,EAAGO,cAAeP,EAAGD,gBAMxD,EACAtH,EAAU/qD,UAAUiuD,SAAW,SAAU/iD,EAAKsV,GAC5CupC,EAAO/pD,UAAUiuD,SAASvsD,KAAKlB,KAAM0K,GAAK,SAAUkoD,GAClD5yC,EAAG4yC,EACL,GACF,oCC9HIrJ,aAXJ,SAASsJ,EAAc52C,GACrB,IAAIq1C,EAAQtxD,KACZA,KAAK4S,KAAO,KACZ5S,KAAK05B,MAAQ,KACb15B,KAAK8yD,OAAS,YA6iBhB,SAAwBC,EAAS92C,EAAOvR,GACtC,IAAIgvB,EAAQq5B,EAAQr5B,MAEpB,IADAq5B,EAAQr5B,MAAQ,KACTA,GAAO,CACZ,IAAI1Z,EAAK0Z,EAAMjO,SACfxP,EAAM+2C,YACNhzC,EAljBAizC,WAmjBAv5B,EAAQA,EAAM9mB,IAChB,CAGAqJ,EAAMi3C,mBAAmBtgD,KAAOmgD,CAClC,CAxjBIE,CAAe3B,EAAOr1C,EACxB,CACF,CAnBAlZ,EAAOC,QAAUymD,EA0BjBA,EAAS0J,cAAgBA,EAGzB,IA+JIC,EA/JAC,EAAe,CACjBC,UAAW,EAAQ,QAKjBzI,EAAS,EAAQ,OAGjBC,EAAS,gBACTC,QAAmC,IAAX,EAAAC,EAAyB,EAAAA,EAA2B,oBAAXxyC,OAAyBA,OAAyB,oBAAT+T,KAAuBA,KAAO,CAAC,GAAG0+B,YAAc,WAAa,EAOvKM,EAAc,EAAQ,OAExBC,EADa,EAAQ,OACOA,iBAC1BC,EAAiB,WACnBC,EAAuBD,EAAeC,qBACtCE,EAA6BH,EAAeG,2BAC5C8F,EAAwBjG,EAAeiG,sBACvC6B,EAAyB9H,EAAe8H,uBACxCC,EAAuB/H,EAAe+H,qBACtCC,EAAyBhI,EAAegI,uBACxCC,EAA6BjI,EAAeiI,2BAC5CC,EAAuBlI,EAAekI,qBACpC7H,EAAiBP,EAAYO,eAEjC,SAAS8H,IAAO,CAChB,SAAST,EAAcntD,EAASgmD,EAAQC,GACtC1C,EAASA,GAAU,EAAQ,OAC3BvjD,EAAUA,GAAW,CAAC,EAOE,kBAAbimD,IAAwBA,EAAWD,aAAkBzC,GAIhEvpD,KAAKksD,aAAelmD,EAAQkmD,WACxBD,IAAUjsD,KAAKksD,WAAalsD,KAAKksD,cAAgBlmD,EAAQ6tD,oBAK7D7zD,KAAKmqD,cAAgBqB,EAAiBxrD,KAAMgG,EAAS,wBAAyBimD,GAG9EjsD,KAAK8zD,aAAc,EAGnB9zD,KAAKixD,WAAY,EAEjBjxD,KAAK+zD,QAAS,EAEd/zD,KAAK+pD,OAAQ,EAEb/pD,KAAK6vD,UAAW,EAGhB7vD,KAAKkoB,WAAY,EAKjB,IAAI8rC,GAAqC,IAA1BhuD,EAAQiuD,cACvBj0D,KAAKi0D,eAAiBD,EAKtBh0D,KAAKktD,gBAAkBlnD,EAAQknD,iBAAmB,OAKlDltD,KAAK0B,OAAS,EAGd1B,KAAKk0D,SAAU,EAGfl0D,KAAKm0D,OAAS,EAMdn0D,KAAK0sD,MAAO,EAKZ1sD,KAAKo0D,kBAAmB,EAGxBp0D,KAAKq0D,QAAU,SAAUzM,IAsQ3B,SAAiBoE,EAAQpE,GACvB,IAAI3rC,EAAQ+vC,EAAOlC,eACf4C,EAAOzwC,EAAMywC,KACb1sC,EAAK/D,EAAMg2C,QACf,GAAkB,mBAAPjyC,EAAmB,MAAM,IAAI0xC,EAExC,GAZF,SAA4Bz1C,GAC1BA,EAAMi4C,SAAU,EAChBj4C,EAAMg2C,QAAU,KAChBh2C,EAAMva,QAAUua,EAAMq4C,SACtBr4C,EAAMq4C,SAAW,CACnB,CAMEC,CAAmBt4C,GACf2rC,GAlCN,SAAsBoE,EAAQ/vC,EAAOywC,EAAM9E,EAAI5nC,KAC3C/D,EAAM+2C,UACJtG,GAGF1C,EAAQC,SAASjqC,EAAI4nC,GAGrBoC,EAAQC,SAASuK,EAAaxI,EAAQ/vC,GACtC+vC,EAAOlC,eAAe2K,cAAe,EACrC3I,EAAeE,EAAQpE,KAIvB5nC,EAAG4nC,GACHoE,EAAOlC,eAAe2K,cAAe,EACrC3I,EAAeE,EAAQpE,GAGvB4M,EAAYxI,EAAQ/vC,GAExB,CAaUy4C,CAAa1I,EAAQ/vC,EAAOywC,EAAM9E,EAAI5nC,OAAS,CAErD,IAAI6vC,EAAW8E,EAAW14C,IAAU+vC,EAAO9jC,UACtC2nC,GAAa5zC,EAAMk4C,QAAWl4C,EAAMm4C,mBAAoBn4C,EAAM24C,iBACjEC,EAAY7I,EAAQ/vC,GAElBywC,EACF1C,EAAQC,SAAS6K,EAAY9I,EAAQ/vC,EAAO4zC,EAAU7vC,GAEtD80C,EAAW9I,EAAQ/vC,EAAO4zC,EAAU7vC,EAExC,CACF,CAvRIq0C,CAAQrI,EAAQpE,EAClB,EAGA5nD,KAAKiyD,QAAU,KAGfjyD,KAAKs0D,SAAW,EAChBt0D,KAAK40D,gBAAkB,KACvB50D,KAAK+0D,oBAAsB,KAI3B/0D,KAAKgzD,UAAY,EAIjBhzD,KAAKg1D,aAAc,EAGnBh1D,KAAKy0D,cAAe,EAGpBz0D,KAAKgtD,WAAkC,IAAtBhnD,EAAQgnD,UAGzBhtD,KAAKitD,cAAgBjnD,EAAQinD,YAG7BjtD,KAAKi1D,qBAAuB,EAI5Bj1D,KAAKkzD,mBAAqB,IAAIL,EAAc7yD,KAC9C,CAqCA,SAASypD,EAASzjD,GAahB,IAAIimD,EAAWjsD,gBAZfupD,EAASA,GAAU,EAAQ,QAa3B,IAAK0C,IAAamH,EAAgBlyD,KAAKuoD,EAAUzpD,MAAO,OAAO,IAAIypD,EAASzjD,GAC5EhG,KAAK8pD,eAAiB,IAAIqJ,EAAcntD,EAAShG,KAAMisD,GAGvDjsD,KAAK4pD,UAAW,EACZ5jD,IAC2B,mBAAlBA,EAAQooD,QAAsBpuD,KAAK2yD,OAAS3sD,EAAQooD,OACjC,mBAAnBpoD,EAAQkvD,SAAuBl1D,KAAKm1D,QAAUnvD,EAAQkvD,QAClC,mBAApBlvD,EAAQwnD,UAAwBxtD,KAAKytD,SAAWznD,EAAQwnD,SACtC,mBAAlBxnD,EAAQovD,QAAsBp1D,KAAKq1D,OAASrvD,EAAQovD,QAEjEvK,EAAO3pD,KAAKlB,KACd,CAgIA,SAASs1D,EAAQtJ,EAAQ/vC,EAAOi5C,EAAQ7yD,EAAKooD,EAAOC,EAAU1qC,GAC5D/D,EAAMq4C,SAAWjyD,EACjB4Z,EAAMg2C,QAAUjyC,EAChB/D,EAAMi4C,SAAU,EAChBj4C,EAAMywC,MAAO,EACTzwC,EAAMiM,UAAWjM,EAAMo4C,QAAQ,IAAIb,EAAqB,UAAmB0B,EAAQlJ,EAAOmJ,QAAQ1K,EAAOxuC,EAAMo4C,SAAcrI,EAAO2G,OAAOlI,EAAOC,EAAUzuC,EAAMo4C,SACtKp4C,EAAMywC,MAAO,CACf,CAgDA,SAASoI,EAAW9I,EAAQ/vC,EAAO4zC,EAAU7vC,GACtC6vC,GASP,SAAsB7D,EAAQ/vC,GACP,IAAjBA,EAAMva,QAAgBua,EAAMg1C,YAC9Bh1C,EAAMg1C,WAAY,EAClBjF,EAAOlqD,KAAK,SAEhB,CAdiByzD,CAAavJ,EAAQ/vC,GACpCA,EAAM+2C,YACNhzC,IACAw0C,EAAYxI,EAAQ/vC,EACtB,CAaA,SAAS44C,EAAY7I,EAAQ/vC,GAC3BA,EAAMm4C,kBAAmB,EACzB,IAAI16B,EAAQzd,EAAM24C,gBAClB,GAAI5I,EAAOmJ,SAAWz7B,GAASA,EAAM9mB,KAAM,CAEzC,IAAInR,EAAIwa,EAAMg5C,qBACV7I,EAAS,IAAIxqD,MAAMH,GACnB+zD,EAASv5C,EAAMi3C,mBACnBsC,EAAO97B,MAAQA,EAGf,IAFA,IAAI4jB,EAAQ,EACRmY,GAAa,EACV/7B,GACL0yB,EAAO9O,GAAS5jB,EACXA,EAAMg8B,QAAOD,GAAa,GAC/B/7B,EAAQA,EAAM9mB,KACd0qC,GAAS,EAEX8O,EAAOqJ,WAAaA,EACpBH,EAAQtJ,EAAQ/vC,GAAO,EAAMA,EAAMva,OAAQ0qD,EAAQ,GAAIoJ,EAAO1C,QAI9D72C,EAAM+2C,YACN/2C,EAAM84C,oBAAsB,KACxBS,EAAO5iD,MACTqJ,EAAMi3C,mBAAqBsC,EAAO5iD,KAClC4iD,EAAO5iD,KAAO,MAEdqJ,EAAMi3C,mBAAqB,IAAIL,EAAc52C,GAE/CA,EAAMg5C,qBAAuB,CAC/B,KAAO,CAEL,KAAOv7B,GAAO,CACZ,IAAI+wB,EAAQ/wB,EAAM+wB,MACdC,EAAWhxB,EAAMgxB,SACjB1qC,EAAK0Z,EAAMjO,SASf,GAPA6pC,EAAQtJ,EAAQ/vC,GAAO,EADbA,EAAMiwC,WAAa,EAAIzB,EAAM/oD,OACJ+oD,EAAOC,EAAU1qC,GACpD0Z,EAAQA,EAAM9mB,KACdqJ,EAAMg5C,uBAKFh5C,EAAMi4C,QACR,KAEJ,CACc,OAAVx6B,IAAgBzd,EAAM84C,oBAAsB,KAClD,CACA94C,EAAM24C,gBAAkBl7B,EACxBzd,EAAMm4C,kBAAmB,CAC3B,CAoCA,SAASO,EAAW14C,GAClB,OAAOA,EAAM83C,QAA2B,IAAjB93C,EAAMva,QAA0C,OAA1Bua,EAAM24C,kBAA6B34C,EAAM4zC,WAAa5zC,EAAMi4C,OAC3G,CACA,SAASyB,EAAU3J,EAAQ/vC,GACzB+vC,EAAOqJ,QAAO,SAAU3qD,GACtBuR,EAAM+2C,YACFtoD,GACFohD,EAAeE,EAAQthD,GAEzBuR,EAAM+4C,aAAc,EACpBhJ,EAAOlqD,KAAK,aACZ0yD,EAAYxI,EAAQ/vC,EACtB,GACF,CAaA,SAASu4C,EAAYxI,EAAQ/vC,GAC3B,IAAI25C,EAAOjB,EAAW14C,GACtB,GAAI25C,IAdN,SAAmB5J,EAAQ/vC,GACpBA,EAAM+4C,aAAgB/4C,EAAM63C,cACF,mBAAlB9H,EAAOqJ,QAA0Bp5C,EAAMiM,WAKhDjM,EAAM+4C,aAAc,EACpBhJ,EAAOlqD,KAAK,eALZma,EAAM+2C,YACN/2C,EAAM63C,aAAc,EACpB9J,EAAQC,SAAS0L,EAAW3J,EAAQ/vC,IAM1C,CAIIw2C,CAAUzG,EAAQ/vC,GACM,IAApBA,EAAM+2C,YACR/2C,EAAM4zC,UAAW,EACjB7D,EAAOlqD,KAAK,UACRma,EAAMgxC,cAAa,CAGrB,IAAI4I,EAAS7J,EAAO3B,iBACfwL,GAAUA,EAAO5I,aAAe4I,EAAOrJ,aAC1CR,EAAOwB,SAEX,CAGJ,OAAOoI,CACT,CAxfA,EAAQ,MAAR,CAAoBnM,EAAUoB,GA4G9BsI,EAAc3zD,UAAU4qD,UAAY,WAGlC,IAFA,IAAIx6C,EAAU5P,KAAK40D,gBACfkB,EAAM,GACHlmD,GACLkmD,EAAIt1D,KAAKoP,GACTA,EAAUA,EAAQgD,KAEpB,OAAOkjD,CACT,EACA,WACE,IACEv2D,OAAOyF,eAAemuD,EAAc3zD,UAAW,SAAU,CACvD2mB,IAAKktC,EAAaC,WAAU,WAC1B,OAAOtzD,KAAKoqD,WACd,GAAG,6EAAmF,YAE1F,CAAE,MAAOl8C,GAAI,CACd,CARD,GAasB,mBAAXrI,QAAyBA,OAAOkwD,aAAiE,mBAA3ClmC,SAASrwB,UAAUqG,OAAOkwD,cACzF3C,EAAkBvjC,SAASrwB,UAAUqG,OAAOkwD,aAC5Cx2D,OAAOyF,eAAeykD,EAAU5jD,OAAOkwD,YAAa,CAClD3wD,MAAO,SAAeZ,GACpB,QAAI4uD,EAAgBlyD,KAAKlB,KAAMwE,IAC3BxE,OAASypD,GACNjlD,GAAUA,EAAOslD,0BAA0BqJ,CACpD,KAGFC,EAAkB,SAAyB5uD,GACzC,OAAOA,aAAkBxE,IAC3B,EA+BFypD,EAASjqD,UAAUywD,KAAO,WACxBnE,EAAe9rD,KAAM,IAAIuzD,EAC3B,EAyBA9J,EAASjqD,UAAU4uD,MAAQ,SAAU3D,EAAOC,EAAU1qC,GACpD,IAzNqB3U,EAyNjB4Q,EAAQjc,KAAK8pD,eACb7C,GAAM,EACNyO,GAASz5C,EAAMiwC,aA3NE7gD,EA2N0Bo/C,EA1NxCK,EAAOkD,SAAS3iD,IAAQA,aAAe0/C,GAwO9C,OAbI2K,IAAU5K,EAAOkD,SAASvD,KAC5BA,EAhOJ,SAA6BA,GAC3B,OAAOK,EAAOvuC,KAAKkuC,EACrB,CA8NYyD,CAAoBzD,IAEN,mBAAbC,IACT1qC,EAAK0qC,EACLA,EAAW,MAETgL,EAAOhL,EAAW,SAAmBA,IAAUA,EAAWzuC,EAAMixC,iBAClD,mBAAPltC,IAAmBA,EAAK4zC,GAC/B33C,EAAM83C,OArCZ,SAAuB/H,EAAQhsC,GAC7B,IAAI4nC,EAAK,IAAI8L,EAEb5H,EAAeE,EAAQpE,GACvBoC,EAAQC,SAASjqC,EAAI4nC,EACvB,CAgCoBoO,CAAch2D,KAAMggB,IAAa01C,GA3BrD,SAAoB1J,EAAQ/vC,EAAOwuC,EAAOzqC,GACxC,IAAI4nC,EAMJ,OALc,OAAV6C,EACF7C,EAAK,IAAI6L,EACiB,iBAAVhJ,GAAuBxuC,EAAMiwC,aAC7CtE,EAAK,IAAI8D,EAAqB,QAAS,CAAC,SAAU,UAAWjB,KAE3D7C,IACFkE,EAAeE,EAAQpE,GACvBoC,EAAQC,SAASjqC,EAAI4nC,IACd,EAGX,CAc8DqO,CAAWj2D,KAAMic,EAAOwuC,EAAOzqC,MACzF/D,EAAM+2C,YACN/L,EAiDJ,SAAuB+E,EAAQ/vC,EAAOy5C,EAAOjL,EAAOC,EAAU1qC,GAC5D,IAAK01C,EAAO,CACV,IAAIQ,EArBR,SAAqBj6C,EAAOwuC,EAAOC,GAIjC,OAHKzuC,EAAMiwC,aAAsC,IAAxBjwC,EAAMg4C,eAA4C,iBAAVxJ,IAC/DA,EAAQK,EAAOvuC,KAAKkuC,EAAOC,IAEtBD,CACT,CAgBmB0L,CAAYl6C,EAAOwuC,EAAOC,GACrCD,IAAUyL,IACZR,GAAQ,EACRhL,EAAW,SACXD,EAAQyL,EAEZ,CACA,IAAI7zD,EAAM4Z,EAAMiwC,WAAa,EAAIzB,EAAM/oD,OACvCua,EAAMva,QAAUW,EAChB,IAAI4kD,EAAMhrC,EAAMva,OAASua,EAAMkuC,cAG/B,GADKlD,IAAKhrC,EAAMg1C,WAAY,GACxBh1C,EAAMi4C,SAAWj4C,EAAMk4C,OAAQ,CACjC,IAAIiC,EAAOn6C,EAAM84C,oBACjB94C,EAAM84C,oBAAsB,CAC1BtK,MAAOA,EACPC,SAAUA,EACVgL,MAAOA,EACPjqC,SAAUzL,EACVpN,KAAM,MAEJwjD,EACFA,EAAKxjD,KAAOqJ,EAAM84C,oBAElB94C,EAAM24C,gBAAkB34C,EAAM84C,oBAEhC94C,EAAMg5C,sBAAwB,CAChC,MACEK,EAAQtJ,EAAQ/vC,GAAO,EAAO5Z,EAAKooD,EAAOC,EAAU1qC,GAEtD,OAAOinC,CACT,CAlFUoP,CAAcr2D,KAAMic,EAAOy5C,EAAOjL,EAAOC,EAAU1qC,IAEpDinC,CACT,EACAwC,EAASjqD,UAAU82D,KAAO,WACxBt2D,KAAK8pD,eAAeqK,QACtB,EACA1K,EAASjqD,UAAU+2D,OAAS,WAC1B,IAAIt6C,EAAQjc,KAAK8pD,eACb7tC,EAAMk4C,SACRl4C,EAAMk4C,SACDl4C,EAAMi4C,SAAYj4C,EAAMk4C,QAAWl4C,EAAMm4C,mBAAoBn4C,EAAM24C,iBAAiBC,EAAY70D,KAAMic,GAE/G,EACAwtC,EAASjqD,UAAUg3D,mBAAqB,SAA4B9L,GAGlE,GADwB,iBAAbA,IAAuBA,EAAWA,EAASpjD,iBAChD,CAAC,MAAO,OAAQ,QAAS,QAAS,SAAU,SAAU,OAAQ,QAAS,UAAW,WAAY,OAAOhD,SAASomD,EAAW,IAAIpjD,gBAAkB,GAAI,MAAM,IAAIqsD,EAAqBjJ,GAExL,OADA1qD,KAAK8pD,eAAeoD,gBAAkBxC,EAC/B1qD,IACT,EACAT,OAAOyF,eAAeykD,EAASjqD,UAAW,iBAAkB,CAI1DuF,YAAY,EACZohB,IAAK,WACH,OAAOnmB,KAAK8pD,gBAAkB9pD,KAAK8pD,eAAeM,WACpD,IAQF7qD,OAAOyF,eAAeykD,EAASjqD,UAAW,wBAAyB,CAIjEuF,YAAY,EACZohB,IAAK,WACH,OAAOnmB,KAAK8pD,eAAeK,aAC7B,IAuKFV,EAASjqD,UAAUmzD,OAAS,SAAUlI,EAAOC,EAAU1qC,GACrDA,EAAG,IAAI4rC,EAA2B,YACpC,EACAnC,EAASjqD,UAAU21D,QAAU,KAC7B1L,EAASjqD,UAAUmU,IAAM,SAAU82C,EAAOC,EAAU1qC,GAClD,IAAI/D,EAAQjc,KAAK8pD,eAmBjB,MAlBqB,mBAAVW,GACTzqC,EAAKyqC,EACLA,EAAQ,KACRC,EAAW,MACkB,mBAAbA,IAChB1qC,EAAK0qC,EACLA,EAAW,MAETD,SAAuCzqD,KAAKouD,MAAM3D,EAAOC,GAGzDzuC,EAAMk4C,SACRl4C,EAAMk4C,OAAS,EACfn0D,KAAKu2D,UAIFt6C,EAAM83C,QAyDb,SAAqB/H,EAAQ/vC,EAAO+D,GAClC/D,EAAM83C,QAAS,EACfS,EAAYxI,EAAQ/vC,GAChB+D,IACE/D,EAAM4zC,SAAU7F,EAAQC,SAASjqC,GAASgsC,EAAOjsD,KAAK,SAAUigB,IAEtE/D,EAAM8tC,OAAQ,EACdiC,EAAOpC,UAAW,CACpB,CAjEqB6M,CAAYz2D,KAAMic,EAAO+D,GACrChgB,IACT,EACAT,OAAOyF,eAAeykD,EAASjqD,UAAW,iBAAkB,CAI1DuF,YAAY,EACZohB,IAAK,WACH,OAAOnmB,KAAK8pD,eAAepoD,MAC7B,IAqEFnC,OAAOyF,eAAeykD,EAASjqD,UAAW,YAAa,CAIrDuF,YAAY,EACZohB,IAAK,WACH,YAA4B3jB,IAAxBxC,KAAK8pD,gBAGF9pD,KAAK8pD,eAAe5hC,SAC7B,EACAqQ,IAAK,SAAanzB,GAGXpF,KAAK8pD,iBAMV9pD,KAAK8pD,eAAe5hC,UAAY9iB,EAClC,IAEFqkD,EAASjqD,UAAUguD,QAAUjC,EAAYiC,QACzC/D,EAASjqD,UAAU8uD,WAAa/C,EAAYgD,UAC5C9E,EAASjqD,UAAUiuD,SAAW,SAAU/iD,EAAKsV,GAC3CA,EAAGtV,EACL,mCC9nBIgsD,aACJ,SAAS7R,EAAgBx5C,EAAKzG,EAAKQ,GAA4L,OAAnLR,EAC5C,SAAwB0iD,GAAO,IAAI1iD,EACnC,SAAsBb,EAAO4yD,GAAQ,GAAqB,iBAAV5yD,GAAgC,OAAVA,EAAgB,OAAOA,EAAO,IAAI6yD,EAAO7yD,EAAM8B,OAAOgxD,aAAc,QAAar0D,IAATo0D,EAAoB,CAAE,IAAI9rD,EAAM8rD,EAAK11D,KAAK6C,EAAO4yD,UAAoB,GAAmB,iBAAR7rD,EAAkB,OAAOA,EAAK,MAAM,IAAI1K,UAAU,+CAAiD,CAAE,OAA4BwK,OAAiB7G,EAAQ,CAD/U+yD,CAAaxP,GAAgB,MAAsB,iBAAR1iD,EAAmBA,EAAMgG,OAAOhG,EAAM,CADxEmyD,CAAenyD,MAAiByG,EAAO9L,OAAOyF,eAAeqG,EAAKzG,EAAK,CAAEQ,MAAOA,EAAOL,YAAY,EAAMmhB,cAAc,EAAM0jC,UAAU,IAAkBv+C,EAAIzG,GAAOQ,EAAgBiG,CAAK,CAG3O,IAAIwkD,EAAW,EAAQ,OACnBmH,EAAenxD,OAAO,eACtBoxD,EAAcpxD,OAAO,cACrBqxD,EAASrxD,OAAO,SAChBsxD,EAAStxD,OAAO,SAChBuxD,EAAevxD,OAAO,eACtBwxD,EAAiBxxD,OAAO,iBACxByxD,EAAUzxD,OAAO,UACrB,SAAS0xD,EAAiBnyD,EAAOstD,GAC/B,MAAO,CACLttD,MAAOA,EACPstD,KAAMA,EAEV,CACA,SAAS8E,EAAeC,GACtB,IAAI1hD,EAAU0hD,EAAKT,GACnB,GAAgB,OAAZjhD,EAAkB,CACpB,IAAI3H,EAAOqpD,EAAKH,GAAShK,OAIZ,OAATl/C,IACFqpD,EAAKL,GAAgB,KACrBK,EAAKT,GAAgB,KACrBS,EAAKR,GAAe,KACpBlhD,EAAQwhD,EAAiBnpD,GAAM,IAEnC,CACF,CACA,SAASspD,EAAWD,GAGlBzN,EAAQC,SAASuN,EAAgBC,EACnC,CAYA,IAAIE,EAAyBp4D,OAAOioD,gBAAe,WAAa,IAC5DoQ,EAAuCr4D,OAAOs4D,gBAmD/ChT,EAnD+D6R,EAAwB,CACxF,UAAI1K,GACF,OAAOhsD,KAAKs3D,EACd,EACA1kD,KAAM,WACJ,IAAI0+C,EAAQtxD,KAGRuf,EAAQvf,KAAKk3D,GACjB,GAAc,OAAV33C,EACF,OAAOqH,QAAQtD,OAAO/D,GAExB,GAAIvf,KAAKm3D,GACP,OAAOvwC,QAAQ7Q,QAAQwhD,OAAiB/0D,GAAW,IAErD,GAAIxC,KAAKs3D,GAASpvC,UAKhB,OAAO,IAAItB,SAAQ,SAAU7Q,EAASuN,GACpC0mC,EAAQC,UAAS,WACXqH,EAAM4F,GACR5zC,EAAOguC,EAAM4F,IAEbnhD,EAAQwhD,OAAiB/0D,GAAW,GAExC,GACF,IAOF,IACI48C,EADA0Y,EAAc93D,KAAKo3D,GAEvB,GAAIU,EACF1Y,EAAU,IAAIx4B,QAlDpB,SAAqBkxC,EAAaL,GAChC,OAAO,SAAU1hD,EAASuN,GACxBw0C,EAAY96C,MAAK,WACXy6C,EAAKN,GACPphD,EAAQwhD,OAAiB/0D,GAAW,IAGtCi1D,EAAKJ,GAAgBthD,EAASuN,EAChC,GAAGA,EACL,CACF,CAwC4By0C,CAAYD,EAAa93D,WAC1C,CAGL,IAAIoO,EAAOpO,KAAKs3D,GAAShK,OACzB,GAAa,OAATl/C,EACF,OAAOwY,QAAQ7Q,QAAQwhD,EAAiBnpD,GAAM,IAEhDgxC,EAAU,IAAIx4B,QAAQ5mB,KAAKq3D,GAC7B,CAEA,OADAr3D,KAAKo3D,GAAgBhY,EACdA,CACT,GACwCv5C,OAAO0rD,eAAe,WAC9D,OAAOvxD,IACT,IAAI6kD,EAAgB6R,EAAuB,UAAU,WACnD,IAAIsB,EAASh4D,KAIb,OAAO,IAAI4mB,SAAQ,SAAU7Q,EAASuN,GACpC00C,EAAOV,GAAS9J,QAAQ,MAAM,SAAU9iD,GAClCA,EACF4Y,EAAO5Y,GAGTqL,EAAQwhD,OAAiB/0D,GAAW,GACtC,GACF,GACF,IAAIk0D,GAAwBiB,GA4D5B50D,EAAOC,QA3DiC,SAA2CgpD,GACjF,IAAIiM,EACAv0C,EAAWnkB,OAAOqB,OAAOg3D,GAA4D/S,EAArBoT,EAAiB,CAAC,EAAmCX,EAAS,CAChIlyD,MAAO4mD,EACPpC,UAAU,IACR/E,EAAgBoT,EAAgBjB,EAAc,CAChD5xD,MAAO,KACPwkD,UAAU,IACR/E,EAAgBoT,EAAgBhB,EAAa,CAC/C7xD,MAAO,KACPwkD,UAAU,IACR/E,EAAgBoT,EAAgBf,EAAQ,CAC1C9xD,MAAO,KACPwkD,UAAU,IACR/E,EAAgBoT,EAAgBd,EAAQ,CAC1C/xD,MAAO4mD,EAAO3B,eAAemC,WAC7B5C,UAAU,IACR/E,EAAgBoT,EAAgBZ,EAAgB,CAClDjyD,MAAO,SAAe2Q,EAASuN,GAC7B,IAAIlV,EAAOsV,EAAS4zC,GAAShK,OACzBl/C,GACFsV,EAAS0zC,GAAgB,KACzB1zC,EAASszC,GAAgB,KACzBtzC,EAASuzC,GAAe,KACxBlhD,EAAQwhD,EAAiBnpD,GAAM,MAE/BsV,EAASszC,GAAgBjhD,EACzB2N,EAASuzC,GAAe3zC,EAE5B,EACAsmC,UAAU,IACRqO,IA0BJ,OAzBAv0C,EAAS0zC,GAAgB,KACzBvH,EAAS7D,GAAQ,SAAUthD,GACzB,GAAIA,GAAoB,+BAAbA,EAAI09C,KAAuC,CACpD,IAAI9kC,EAASI,EAASuzC,GAUtB,OAPe,OAAX3zC,IACFI,EAAS0zC,GAAgB,KACzB1zC,EAASszC,GAAgB,KACzBtzC,EAASuzC,GAAe,KACxB3zC,EAAO5Y,SAETgZ,EAASwzC,GAAUxsD,EAErB,CACA,IAAIqL,EAAU2N,EAASszC,GACP,OAAZjhD,IACF2N,EAAS0zC,GAAgB,KACzB1zC,EAASszC,GAAgB,KACzBtzC,EAASuzC,GAAe,KACxBlhD,EAAQwhD,OAAiB/0D,GAAW,KAEtCkhB,EAASyzC,IAAU,CACrB,IACAnL,EAAOrpD,GAAG,WAAY+0D,EAAWz2C,KAAK,KAAMyC,IACrCA,CACT,gCChLA,SAASxe,EAAQV,EAAQ0zD,GAAkB,IAAI5xD,EAAO/G,OAAO+G,KAAK9B,GAAS,GAAIjF,OAAO6B,sBAAuB,CAAE,IAAI+2D,EAAU54D,OAAO6B,sBAAsBoD,GAAS0zD,IAAmBC,EAAUA,EAAQ7uD,QAAO,SAAU8uD,GAAO,OAAO74D,OAAOuF,yBAAyBN,EAAQ4zD,GAAKrzD,UAAY,KAAKuB,EAAK9F,KAAKiC,MAAM6D,EAAM6xD,EAAU,CAAE,OAAO7xD,CAAM,CACpV,SAAS+xD,EAAc5hD,GAAU,IAAK,IAAIjV,EAAI,EAAGA,EAAIc,UAAUZ,OAAQF,IAAK,CAAE,IAAI8P,EAAS,MAAQhP,UAAUd,GAAKc,UAAUd,GAAK,CAAC,EAAGA,EAAI,EAAI0D,EAAQ3F,OAAO+R,IAAS,GAAIvG,SAAQ,SAAUnG,GAAOigD,EAAgBpuC,EAAQ7R,EAAK0M,EAAO1M,GAAO,IAAKrF,OAAO+4D,0BAA4B/4D,OAAO2nB,iBAAiBzQ,EAAQlX,OAAO+4D,0BAA0BhnD,IAAWpM,EAAQ3F,OAAO+R,IAASvG,SAAQ,SAAUnG,GAAOrF,OAAOyF,eAAeyR,EAAQ7R,EAAKrF,OAAOuF,yBAAyBwM,EAAQ1M,GAAO,GAAI,CAAE,OAAO6R,CAAQ,CACzf,SAASouC,EAAgBx5C,EAAKzG,EAAKQ,GAA4L,OAAnLR,EAAMmyD,EAAenyD,MAAiByG,EAAO9L,OAAOyF,eAAeqG,EAAKzG,EAAK,CAAEQ,MAAOA,EAAOL,YAAY,EAAMmhB,cAAc,EAAM0jC,UAAU,IAAkBv+C,EAAIzG,GAAOQ,EAAgBiG,CAAK,CAE3O,SAASktD,EAAkB9hD,EAAQ3I,GAAS,IAAK,IAAItM,EAAI,EAAGA,EAAIsM,EAAMpM,OAAQF,IAAK,CAAE,IAAIqD,EAAaiJ,EAAMtM,GAAIqD,EAAWE,WAAaF,EAAWE,aAAc,EAAOF,EAAWqhB,cAAe,EAAU,UAAWrhB,IAAYA,EAAW+kD,UAAW,GAAMrqD,OAAOyF,eAAeyR,EAAQsgD,EAAelyD,EAAWD,KAAMC,EAAa,CAAE,CAE5U,SAASkyD,EAAezP,GAAO,IAAI1iD,EACnC,SAAsBb,EAAO4yD,GAAQ,GAAqB,iBAAV5yD,GAAgC,OAAVA,EAAgB,OAAOA,EAAO,IAAI6yD,EAAO7yD,EAAM8B,OAAOgxD,aAAc,QAAar0D,IAATo0D,EAAoB,CAAE,IAAI9rD,EAAM8rD,EAAK11D,KAAK6C,EAAO4yD,UAAoB,GAAmB,iBAAR7rD,EAAkB,OAAOA,EAAK,MAAM,IAAI1K,UAAU,+CAAiD,CAAE,OAA4BwK,OAAiB7G,EAAQ,CAD/U+yD,CAAaxP,GAAgB,MAAsB,iBAAR1iD,EAAmBA,EAAMgG,OAAOhG,EAAM,CAE1H,IACEkmD,EADa,EAAQ,OACHA,OAElB0N,EADc,EAAQ,OACFA,QAClBjjD,EAASijD,GAAWA,EAAQjjD,QAAU,UAI1CxS,EAAOC,QAAuB,WAC5B,SAASsoD,KAdX,SAAyB/9C,EAAUkrD,GAAe,KAAMlrD,aAAoBkrD,GAAgB,MAAM,IAAIr4D,UAAU,oCAAwC,CAepJs4D,CAAgB14D,KAAMsrD,GACtBtrD,KAAK4uD,KAAO,KACZ5uD,KAAK24D,KAAO,KACZ34D,KAAK0B,OAAS,CAChB,CAjBF,IAAsB+2D,EAAaG,EA8KjC,OA9KoBH,EAkBPnN,GAlBoBsN,EAkBR,CAAC,CACxBh0D,IAAK,OACLQ,MAAO,SAAcsY,GACnB,IAAIgc,EAAQ,CACVtrB,KAAMsP,EACN9K,KAAM,MAEJ5S,KAAK0B,OAAS,EAAG1B,KAAK24D,KAAK/lD,KAAO8mB,EAAW15B,KAAK4uD,KAAOl1B,EAC7D15B,KAAK24D,KAAOj/B,IACV15B,KAAK0B,MACT,GACC,CACDkD,IAAK,UACLQ,MAAO,SAAiBsY,GACtB,IAAIgc,EAAQ,CACVtrB,KAAMsP,EACN9K,KAAM5S,KAAK4uD,MAEO,IAAhB5uD,KAAK0B,SAAc1B,KAAK24D,KAAOj/B,GACnC15B,KAAK4uD,KAAOl1B,IACV15B,KAAK0B,MACT,GACC,CACDkD,IAAK,QACLQ,MAAO,WACL,GAAoB,IAAhBpF,KAAK0B,OAAT,CACA,IAAIulD,EAAMjnD,KAAK4uD,KAAKxgD,KAGpB,OAFoB,IAAhBpO,KAAK0B,OAAc1B,KAAK4uD,KAAO5uD,KAAK24D,KAAO,KAAU34D,KAAK4uD,KAAO5uD,KAAK4uD,KAAKh8C,OAC7E5S,KAAK0B,OACAulD,CAJsB,CAK/B,GACC,CACDriD,IAAK,QACLQ,MAAO,WACLpF,KAAK4uD,KAAO5uD,KAAK24D,KAAO,KACxB34D,KAAK0B,OAAS,CAChB,GACC,CACDkD,IAAK,OACLQ,MAAO,SAAcyzD,GACnB,GAAoB,IAAhB74D,KAAK0B,OAAc,MAAO,GAG9B,IAFA,IAAIitD,EAAI3uD,KAAK4uD,KACT3H,EAAM,GAAK0H,EAAEvgD,KACVugD,EAAIA,EAAE/7C,MAAMq0C,GAAO4R,EAAIlK,EAAEvgD,KAChC,OAAO64C,CACT,GACC,CACDriD,IAAK,SACLQ,MAAO,SAAgBwf,GACrB,GAAoB,IAAhB5kB,KAAK0B,OAAc,OAAOopD,EAAOgO,MAAM,GAI3C,IAHA,IA5DctkB,EAAK/9B,EAAQ9D,EA4DvBs0C,EAAM6D,EAAOiO,YAAYn0C,IAAM,GAC/B+pC,EAAI3uD,KAAK4uD,KACTptD,EAAI,EACDmtD,GA/DOna,EAgEDma,EAAEvgD,KAhEIqI,EAgEEwwC,EAhEMt0C,EAgEDnR,EA/D9BspD,EAAOtrD,UAAU4nD,KAAKlmD,KAAKszC,EAAK/9B,EAAQ9D,GAgElCnR,GAAKmtD,EAAEvgD,KAAK1M,OACZitD,EAAIA,EAAE/7C,KAER,OAAOq0C,CACT,GAGC,CACDriD,IAAK,UACLQ,MAAO,SAAiBwf,EAAGo0C,GACzB,IAAI/R,EAYJ,OAXIriC,EAAI5kB,KAAK4uD,KAAKxgD,KAAK1M,QAErBulD,EAAMjnD,KAAK4uD,KAAKxgD,KAAKjN,MAAM,EAAGyjB,GAC9B5kB,KAAK4uD,KAAKxgD,KAAOpO,KAAK4uD,KAAKxgD,KAAKjN,MAAMyjB,IAGtCqiC,EAFSriC,IAAM5kB,KAAK4uD,KAAKxgD,KAAK1M,OAExB1B,KAAKkL,QAGL8tD,EAAah5D,KAAKi5D,WAAWr0C,GAAK5kB,KAAKk5D,WAAWt0C,GAEnDqiC,CACT,GACC,CACDriD,IAAK,QACLQ,MAAO,WACL,OAAOpF,KAAK4uD,KAAKxgD,IACnB,GAGC,CACDxJ,IAAK,aACLQ,MAAO,SAAoBwf,GACzB,IAAI+pC,EAAI3uD,KAAK4uD,KACTrkD,EAAI,EACJ08C,EAAM0H,EAAEvgD,KAEZ,IADAwW,GAAKqiC,EAAIvlD,OACFitD,EAAIA,EAAE/7C,MAAM,CACjB,IAAInI,EAAMkkD,EAAEvgD,KACR+qD,EAAKv0C,EAAIna,EAAI/I,OAAS+I,EAAI/I,OAASkjB,EAGvC,GAFIu0C,IAAO1uD,EAAI/I,OAAQulD,GAAOx8C,EAASw8C,GAAOx8C,EAAItJ,MAAM,EAAGyjB,GAEjD,IADVA,GAAKu0C,GACQ,CACPA,IAAO1uD,EAAI/I,UACX6I,EACEokD,EAAE/7C,KAAM5S,KAAK4uD,KAAOD,EAAE/7C,KAAU5S,KAAK4uD,KAAO5uD,KAAK24D,KAAO,OAE5D34D,KAAK4uD,KAAOD,EACZA,EAAEvgD,KAAO3D,EAAItJ,MAAMg4D,IAErB,KACF,GACE5uD,CACJ,CAEA,OADAvK,KAAK0B,QAAU6I,EACR08C,CACT,GAGC,CACDriD,IAAK,aACLQ,MAAO,SAAoBwf,GACzB,IAAIqiC,EAAM6D,EAAOiO,YAAYn0C,GACzB+pC,EAAI3uD,KAAK4uD,KACTrkD,EAAI,EAGR,IAFAokD,EAAEvgD,KAAKg5C,KAAKH,GACZriC,GAAK+pC,EAAEvgD,KAAK1M,OACLitD,EAAIA,EAAE/7C,MAAM,CACjB,IAAIwmD,EAAMzK,EAAEvgD,KACR+qD,EAAKv0C,EAAIw0C,EAAI13D,OAAS03D,EAAI13D,OAASkjB,EAGvC,GAFAw0C,EAAIhS,KAAKH,EAAKA,EAAIvlD,OAASkjB,EAAG,EAAGu0C,GAEvB,IADVv0C,GAAKu0C,GACQ,CACPA,IAAOC,EAAI13D,UACX6I,EACEokD,EAAE/7C,KAAM5S,KAAK4uD,KAAOD,EAAE/7C,KAAU5S,KAAK4uD,KAAO5uD,KAAK24D,KAAO,OAE5D34D,KAAK4uD,KAAOD,EACZA,EAAEvgD,KAAOgrD,EAAIj4D,MAAMg4D,IAErB,KACF,GACE5uD,CACJ,CAEA,OADAvK,KAAK0B,QAAU6I,EACR08C,CACT,GAGC,CACDriD,IAAK2Q,EACLnQ,MAAO,SAAe8I,EAAGlI,GACvB,OAAOwyD,EAAQx4D,KAAMq4D,EAAcA,EAAc,CAAC,EAAGryD,GAAU,CAAC,EAAG,CAEjE2I,MAAO,EAEP0qD,eAAe,IAEnB,MA5K0Ed,EAAkBE,EAAYj5D,UAAWo5D,GAA2Er5D,OAAOyF,eAAeyzD,EAAa,YAAa,CAAE7O,UAAU,IA8KrP0B,CACT,CApK8B,gDCiC9B,SAASgO,EAAoB/sC,EAAM7hB,GACjC6uD,EAAYhtC,EAAM7hB,GAClB8uD,EAAYjtC,EACd,CACA,SAASitC,EAAYjtC,GACfA,EAAKu9B,iBAAmBv9B,EAAKu9B,eAAekD,WAC5CzgC,EAAK89B,iBAAmB99B,EAAK89B,eAAe2C,WAChDzgC,EAAKzqB,KAAK,QACZ,CAkBA,SAASy3D,EAAYhtC,EAAM7hB,GACzB6hB,EAAKzqB,KAAK,QAAS4I,EACrB,CAYA3H,EAAOC,QAAU,CACfwqD,QAzFF,SAAiB9iD,EAAKsV,GACpB,IAAIsxC,EAAQtxD,KACRy5D,EAAoBz5D,KAAKqqD,gBAAkBrqD,KAAKqqD,eAAeniC,UAC/DwxC,EAAoB15D,KAAK8pD,gBAAkB9pD,KAAK8pD,eAAe5hC,UACnE,OAAIuxC,GAAqBC,GACnB15C,EACFA,EAAGtV,GACMA,IACJ1K,KAAK8pD,eAEE9pD,KAAK8pD,eAAe2K,eAC9Bz0D,KAAK8pD,eAAe2K,cAAe,EACnCzK,EAAQC,SAASsP,EAAav5D,KAAM0K,IAHpCs/C,EAAQC,SAASsP,EAAav5D,KAAM0K,IAMjC1K,OAMLA,KAAKqqD,iBACPrqD,KAAKqqD,eAAeniC,WAAY,GAI9BloB,KAAK8pD,iBACP9pD,KAAK8pD,eAAe5hC,WAAY,GAElCloB,KAAKytD,SAAS/iD,GAAO,MAAM,SAAUA,IAC9BsV,GAAMtV,EACJ4mD,EAAMxH,eAECwH,EAAMxH,eAAe2K,aAI/BzK,EAAQC,SAASuP,EAAalI,IAH9BA,EAAMxH,eAAe2K,cAAe,EACpCzK,EAAQC,SAASqP,EAAqBhI,EAAO5mD,IAH7Cs/C,EAAQC,SAASqP,EAAqBhI,EAAO5mD,GAOtCsV,GACTgqC,EAAQC,SAASuP,EAAalI,GAC9BtxC,EAAGtV,IAEHs/C,EAAQC,SAASuP,EAAalI,EAElC,IACOtxD,KACT,EA2CEuuD,UAjCF,WACMvuD,KAAKqqD,iBACPrqD,KAAKqqD,eAAeniC,WAAY,EAChCloB,KAAKqqD,eAAeoC,SAAU,EAC9BzsD,KAAKqqD,eAAeN,OAAQ,EAC5B/pD,KAAKqqD,eAAemC,YAAa,GAE/BxsD,KAAK8pD,iBACP9pD,KAAK8pD,eAAe5hC,WAAY,EAChCloB,KAAK8pD,eAAeC,OAAQ,EAC5B/pD,KAAK8pD,eAAeiK,QAAS,EAC7B/zD,KAAK8pD,eAAegK,aAAc,EAClC9zD,KAAK8pD,eAAekL,aAAc,EAClCh1D,KAAK8pD,eAAe+F,UAAW,EAC/B7vD,KAAK8pD,eAAe2K,cAAe,EAEvC,EAkBE3I,eAdF,SAAwBE,EAAQthD,GAO9B,IAAImrD,EAAS7J,EAAO3B,eAChBuF,EAAS5D,EAAOlC,eAChB+L,GAAUA,EAAO5I,aAAe2C,GAAUA,EAAO3C,YAAajB,EAAOwB,QAAQ9iD,GAAUshD,EAAOlqD,KAAK,QAAS4I,EAClH,iCCrFA,IAAIivD,EAA6B,WAAiCA,2BAYlE,SAASzkD,IAAQ,CAoEjBnS,EAAOC,QAhEP,SAAS42D,EAAI5N,EAAQ14C,EAAMmY,GACzB,GAAoB,mBAATnY,EAAqB,OAAOsmD,EAAI5N,EAAQ,KAAM14C,GACpDA,IAAMA,EAAO,CAAC,GACnBmY,EAlBF,SAAcA,GACZ,IAAInL,GAAS,EACb,OAAO,WACL,IAAIA,EAAJ,CACAA,GAAS,EACT,IAAK,IAAI+L,EAAO/pB,UAAUZ,OAAQU,EAAO,IAAIR,MAAMyqB,GAAOhR,EAAO,EAAGA,EAAOgR,EAAMhR,IAC/EjZ,EAAKiZ,GAAQ/Y,UAAU+Y,GAEzBoQ,EAAShpB,MAAMzC,KAAMoC,EALH,CAMpB,CACF,CAQarC,CAAK0rB,GAAYvW,GAC5B,IAAIy0C,EAAWr2C,EAAKq2C,WAA8B,IAAlBr2C,EAAKq2C,UAAsBqC,EAAOrC,SAC9DC,EAAWt2C,EAAKs2C,WAA8B,IAAlBt2C,EAAKs2C,UAAsBoC,EAAOpC,SAC9DiQ,EAAiB,WACd7N,EAAOpC,UAAUgH,GACxB,EACIkJ,EAAgB9N,EAAOlC,gBAAkBkC,EAAOlC,eAAe+F,SAC/De,EAAW,WACbhH,GAAW,EACXkQ,GAAgB,EACXnQ,GAAUl+B,EAASvqB,KAAK8qD,EAC/B,EACI+N,EAAgB/N,EAAO3B,gBAAkB2B,EAAO3B,eAAemC,WAC/D3C,EAAQ,WACVF,GAAW,EACXoQ,GAAgB,EACXnQ,GAAUn+B,EAASvqB,KAAK8qD,EAC/B,EACI8E,EAAU,SAAiBpmD,GAC7B+gB,EAASvqB,KAAK8qD,EAAQthD,EACxB,EACIimD,EAAU,WACZ,IAAIjmD,EACJ,OAAIi/C,IAAaoQ,GACV/N,EAAO3B,gBAAmB2B,EAAO3B,eAAeN,QAAOr/C,EAAM,IAAIivD,GAC/DluC,EAASvqB,KAAK8qD,EAAQthD,IAE3Bk/C,IAAakQ,GACV9N,EAAOlC,gBAAmBkC,EAAOlC,eAAeC,QAAOr/C,EAAM,IAAIivD,GAC/DluC,EAASvqB,KAAK8qD,EAAQthD,SAF/B,CAIF,EACIsvD,EAAY,WACdhO,EAAOiO,IAAIt3D,GAAG,SAAUiuD,EAC1B,EAcA,OAtDF,SAAmB5E,GACjB,OAAOA,EAAOkO,WAAqC,mBAAjBlO,EAAO5pC,KAC3C,CAuCM+3C,CAAUnO,IACZA,EAAOrpD,GAAG,WAAYiuD,GACtB5E,EAAOrpD,GAAG,QAASguD,GACf3E,EAAOiO,IAAKD,IAAiBhO,EAAOrpD,GAAG,UAAWq3D,IAC7CpQ,IAAaoC,EAAOlC,iBAE7BkC,EAAOrpD,GAAG,MAAOk3D,GACjB7N,EAAOrpD,GAAG,QAASk3D,IAErB7N,EAAOrpD,GAAG,MAAOknD,GACjBmC,EAAOrpD,GAAG,SAAUiuD,IACD,IAAft9C,EAAKiM,OAAiBysC,EAAOrpD,GAAG,QAASmuD,GAC7C9E,EAAOrpD,GAAG,QAASguD,GACZ,WACL3E,EAAOzpD,eAAe,WAAYquD,GAClC5E,EAAOzpD,eAAe,QAASouD,GAC/B3E,EAAOzpD,eAAe,UAAWy3D,GAC7BhO,EAAOiO,KAAKjO,EAAOiO,IAAI13D,eAAe,SAAUquD,GACpD5E,EAAOzpD,eAAe,MAAOs3D,GAC7B7N,EAAOzpD,eAAe,QAASs3D,GAC/B7N,EAAOzpD,eAAe,SAAUquD,GAChC5E,EAAOzpD,eAAe,MAAOsnD,GAC7BmC,EAAOzpD,eAAe,QAASuuD,GAC/B9E,EAAOzpD,eAAe,QAASouD,EACjC,CACF,aCpFA5tD,EAAOC,QAAU,WACf,MAAM,IAAIwc,MAAM,gDAClB,gCCGA,IAAIo6C,EASAnO,EAAiB,WACnB2O,EAAmB3O,EAAe2O,iBAClC5G,EAAuB/H,EAAe+H,qBACxC,SAASt+C,EAAKxK,GAEZ,GAAIA,EAAK,MAAMA,CACjB,CA+BA,SAASxJ,EAAKrB,GACZA,GACF,CACA,SAASowD,EAAK1zC,EAAMnH,GAClB,OAAOmH,EAAK0zC,KAAK76C,EACnB,CA6BArS,EAAOC,QAvBP,WACE,IAAK,IAAIqpB,EAAO/pB,UAAUZ,OAAQ24D,EAAU,IAAIz4D,MAAMyqB,GAAOhR,EAAO,EAAGA,EAAOgR,EAAMhR,IAClFg/C,EAAQh/C,GAAQ/Y,UAAU+Y,GAE5B,IAKIkE,EALAkM,EATN,SAAqB4uC,GACnB,OAAKA,EAAQ34D,OAC8B,mBAAhC24D,EAAQA,EAAQ34D,OAAS,GAA0BwT,EACvDmlD,EAAQxpD,MAFaqE,CAG9B,CAKiBolD,CAAYD,GAE3B,GADIz4D,MAAM+C,QAAQ01D,EAAQ,MAAKA,EAAUA,EAAQ,IAC7CA,EAAQ34D,OAAS,EACnB,MAAM,IAAI04D,EAAiB,WAG7B,IAAIG,EAAWF,EAAQvzD,KAAI,SAAUklD,EAAQxqD,GAC3C,IAAIirD,EAAUjrD,EAAI64D,EAAQ34D,OAAS,EAEnC,OAnDJ,SAAmBsqD,EAAQS,EAASyH,EAASzoC,GAC3CA,EAnBF,SAAcA,GACZ,IAAInL,GAAS,EACb,OAAO,WACDA,IACJA,GAAS,EACTmL,EAAShpB,WAAM,EAAQH,WACzB,CACF,CAYavC,CAAK0rB,GAChB,IAAI+uC,GAAS,EACbxO,EAAOrpD,GAAG,SAAS,WACjB63D,GAAS,CACX,SACYh4D,IAARo3D,IAAmBA,EAAM,EAAQ,QACrCA,EAAI5N,EAAQ,CACVrC,SAAU8C,EACV7C,SAAUsK,IACT,SAAUxpD,GACX,GAAIA,EAAK,OAAO+gB,EAAS/gB,GACzB8vD,GAAS,EACT/uC,GACF,IACA,IAAIvD,GAAY,EAChB,OAAO,SAAUxd,GACf,IAAI8vD,IACAtyC,EAIJ,OAHAA,GAAY,EAtBhB,SAAmB8jC,GACjB,OAAOA,EAAOkO,WAAqC,mBAAjBlO,EAAO5pC,KAC3C,CAuBQ+3C,CAAUnO,GAAgBA,EAAO5pC,QACP,mBAAnB4pC,EAAOwB,QAA+BxB,EAAOwB,eACxD/hC,EAAS/gB,GAAO,IAAI8oD,EAAqB,QAC3C,CACF,CAyBWiH,CAAUzO,EAAQS,EADXjrD,EAAI,GACyB,SAAUkJ,GAC9C6U,IAAOA,EAAQ7U,GAChBA,GAAK6vD,EAASxvD,QAAQ7J,GACtBurD,IACJ8N,EAASxvD,QAAQ7J,GACjBuqB,EAASlM,GACX,GACF,IACA,OAAO86C,EAAQzxD,OAAOqnD,EACxB,gCClFA,IAAIyK,EAAwB,WAAiCA,sBAiB7D33D,EAAOC,QAAU,CACfwoD,iBAdF,SAA0BvvC,EAAOjW,EAAS20D,EAAW1O,GACnD,IAAI2O,EAJN,SAA2B50D,EAASimD,EAAU0O,GAC5C,OAAgC,MAAzB30D,EAAQmkD,cAAwBnkD,EAAQmkD,cAAgB8B,EAAWjmD,EAAQ20D,GAAa,IACjG,CAEYE,CAAkB70D,EAASimD,EAAU0O,GAC/C,GAAW,MAAPC,EAAa,CACf,IAAME,SAASF,IAAQn4C,KAAKi3B,MAAMkhB,KAASA,GAAQA,EAAM,EAEvD,MAAM,IAAIF,EADCzO,EAAW0O,EAAY,gBACIC,GAExC,OAAOn4C,KAAKi3B,MAAMkhB,EACpB,CAGA,OAAO3+C,EAAMiwC,WAAa,GAAK,KACjC,oBClBAnpD,EAAOC,QAAU,EAAjB,qCCEA,IAAIopD,EAAS,EAAQ,OACjBtB,EAASsB,EAAOtB,OAGpB,SAASiQ,EAAWvmB,EAAKwmB,GACvB,IAAK,IAAIp2D,KAAO4vC,EACdwmB,EAAIp2D,GAAO4vC,EAAI5vC,EAEnB,CASA,SAASq2D,EAAY3T,EAAK4T,EAAkBx5D,GAC1C,OAAOopD,EAAOxD,EAAK4T,EAAkBx5D,EACvC,CAVIopD,EAAOvuC,MAAQuuC,EAAOgO,OAAShO,EAAOiO,aAAejO,EAAOqQ,gBAC9Dp4D,EAAOC,QAAUopD,GAGjB2O,EAAU3O,EAAQppD,GAClBA,EAAQ8nD,OAASmQ,GAOnBA,EAAWz7D,UAAYD,OAAOqB,OAAOkqD,EAAOtrD,WAG5Cu7D,EAAUjQ,EAAQmQ,GAElBA,EAAW1+C,KAAO,SAAU+qC,EAAK4T,EAAkBx5D,GACjD,GAAmB,iBAAR4lD,EACT,MAAM,IAAIlnD,UAAU,iCAEtB,OAAO0qD,EAAOxD,EAAK4T,EAAkBx5D,EACvC,EAEAu5D,EAAWnC,MAAQ,SAAU3vC,EAAMiyC,EAAM1Q,GACvC,GAAoB,iBAATvhC,EACT,MAAM,IAAI/oB,UAAU,6BAEtB,IAAIg5D,EAAMtO,EAAO3hC,GAUjB,YATa3mB,IAAT44D,EACsB,iBAAb1Q,EACT0O,EAAIgC,KAAKA,EAAM1Q,GAEf0O,EAAIgC,KAAKA,GAGXhC,EAAIgC,KAAK,GAEJhC,CACT,EAEA6B,EAAWlC,YAAc,SAAU5vC,GACjC,GAAoB,iBAATA,EACT,MAAM,IAAI/oB,UAAU,6BAEtB,OAAO0qD,EAAO3hC,EAChB,EAEA8xC,EAAWE,gBAAkB,SAAUhyC,GACrC,GAAoB,iBAATA,EACT,MAAM,IAAI/oB,UAAU,6BAEtB,OAAOgsD,EAAOiP,WAAWlyC,EAC3B,0CChEC,SAAWmyC,GACVA,EAAInY,OAAS,SAAUl9C,EAAQs1D,GAAO,OAAO,IAAIC,EAAUv1D,EAAQs1D,EAAK,EACxED,EAAIE,UAAYA,EAChBF,EAAIG,UAAYA,EAChBH,EAAII,aAwKJ,SAAuBz1D,EAAQs1D,GAC7B,OAAO,IAAIE,EAAUx1D,EAAQs1D,EAC/B,EA/JAD,EAAIK,kBAAoB,MAExB,IA+II9Q,EA/IA+Q,EAAU,CACZ,UAAW,WAAY,WAAY,UAAW,UAC9C,eAAgB,eAAgB,SAAU,aAC1C,cAAe,QAAS,UAwB1B,SAASJ,EAAWv1D,EAAQs1D,GAC1B,KAAMv7D,gBAAgBw7D,GACpB,OAAO,IAAIA,EAAUv1D,EAAQs1D,GAG/B,IAAIpY,EAASnjD,MAqFf,SAAuBmjD,GACrB,IAAK,IAAI3hD,EAAI,EAAGC,EAAIm6D,EAAQl6D,OAAQF,EAAIC,EAAGD,IACzC2hD,EAAOyY,EAAQp6D,IAAM,EAEzB,CAxFEq6D,CAAa1Y,GACbA,EAAO2Y,EAAI3Y,EAAO54C,EAAI,GACtB44C,EAAO4Y,oBAAsBT,EAAIK,kBACjCxY,EAAOoY,IAAMA,GAAO,CAAC,EACrBpY,EAAOoY,IAAIS,UAAY7Y,EAAOoY,IAAIS,WAAa7Y,EAAOoY,IAAIU,cAC1D9Y,EAAO+Y,UAAY/Y,EAAOoY,IAAIS,UAAY,cAAgB,cAC1D7Y,EAAOgZ,KAAO,GACdhZ,EAAOqX,OAASrX,EAAOiZ,WAAajZ,EAAOkZ,SAAU,EACrDlZ,EAAO7tC,IAAM6tC,EAAO5jC,MAAQ,KAC5B4jC,EAAOl9C,SAAWA,EAClBk9C,EAAOmZ,YAAcr2D,IAAUk9C,EAAOoY,IAAIe,UAC1CnZ,EAAOlnC,MAAQsgD,EAAEC,MACjBrZ,EAAOsZ,eAAiBtZ,EAAOoY,IAAIkB,eACnCtZ,EAAOuZ,SAAWvZ,EAAOsZ,eAAiBl9D,OAAOqB,OAAO06D,EAAIqB,cAAgBp9D,OAAOqB,OAAO06D,EAAIoB,UAC9FvZ,EAAOyZ,WAAa,GAKhBzZ,EAAOoY,IAAIsB,QACb1Z,EAAO2Z,GAAKv9D,OAAOqB,OAAOm8D,IAI5B5Z,EAAO6Z,eAAwC,IAAxB7Z,EAAOoY,IAAI1+C,SAC9BsmC,EAAO6Z,gBACT7Z,EAAOtmC,SAAWsmC,EAAO8Z,KAAO9Z,EAAOzM,OAAS,GAElD50C,EAAKqhD,EAAQ,UACf,CAxDAmY,EAAI4B,OAAS,CACX,OACA,wBACA,kBACA,UACA,UACA,eACA,YACA,UACA,WACA,YACA,QACA,aACA,QACA,MACA,QACA,SACA,gBACA,kBAwCG39D,OAAOqB,SACVrB,OAAOqB,OAAS,SAAUu8D,GACxB,SAASC,IAAM,CAGf,OAFAA,EAAE59D,UAAY29D,EACH,IAAIC,CAEjB,GAGG79D,OAAO+G,OACV/G,OAAO+G,KAAO,SAAU62D,GACtB,IAAIx2D,EAAI,GACR,IAAK,IAAInF,KAAK27D,EAAOA,EAAE19D,eAAe+B,IAAImF,EAAEnG,KAAKgB,GACjD,OAAOmF,CACT,GAyDF60D,EAAUh8D,UAAY,CACpBmU,IAAK,WAAcA,EAAI3T,KAAM,EAC7BouD,MA2yBF,SAAgB3D,GACd,IAAItH,EAASnjD,KACb,GAAIA,KAAKuf,MACP,MAAMvf,KAAKuf,MAEb,GAAI4jC,EAAOqX,OACT,OAAOj7C,EAAM4jC,EACX,wDAEJ,GAAc,OAAVsH,EACF,OAAO92C,EAAIwvC,GAEQ,iBAAVsH,IACTA,EAAQA,EAAM/kD,YAIhB,IAFA,IAAIlE,EAAI,EACJ+I,EAAI,GAENA,EAAIoG,EAAO85C,EAAOjpD,KAClB2hD,EAAO54C,EAAIA,EAENA,GAcL,OAVI44C,EAAO6Z,gBACT7Z,EAAOtmC,WACG,OAANtS,GACF44C,EAAO8Z,OACP9Z,EAAOzM,OAAS,GAEhByM,EAAOzM,UAIHyM,EAAOlnC,OACb,KAAKsgD,EAAEC,MAEL,GADArZ,EAAOlnC,MAAQsgD,EAAEc,iBACP,WAAN9yD,EACF,SAEF+yD,EAAgBna,EAAQ54C,GACxB,SAEF,KAAKgyD,EAAEc,iBACLC,EAAgBna,EAAQ54C,GACxB,SAEF,KAAKgyD,EAAEgB,KACL,GAAIpa,EAAOkZ,UAAYlZ,EAAOiZ,WAAY,CAExC,IADA,IAAIoB,EAASh8D,EAAI,EACV+I,GAAW,MAANA,GAAmB,MAANA,IACvBA,EAAIoG,EAAO85C,EAAOjpD,OACT2hD,EAAO6Z,gBACd7Z,EAAOtmC,WACG,OAANtS,GACF44C,EAAO8Z,OACP9Z,EAAOzM,OAAS,GAEhByM,EAAOzM,UAIbyM,EAAOsa,UAAYhT,EAAMrB,UAAUoU,EAAQh8D,EAAI,EACjD,CACU,MAAN+I,GAAe44C,EAAOkZ,SAAWlZ,EAAOiZ,aAAejZ,EAAOl9C,QAI3Dy3D,EAAanzD,IAAQ44C,EAAOkZ,UAAWlZ,EAAOiZ,YACjDuB,EAAWxa,EAAQ,mCAEX,MAAN54C,EACF44C,EAAOlnC,MAAQsgD,EAAEqB,YAEjBza,EAAOsa,UAAYlzD,IATrB44C,EAAOlnC,MAAQsgD,EAAEsB,UACjB1a,EAAO2a,iBAAmB3a,EAAOtmC,UAWnC,SAEF,KAAK0/C,EAAEwB,OAEK,MAANxzD,EACF44C,EAAOlnC,MAAQsgD,EAAEyB,cAEjB7a,EAAO8a,QAAU1zD,EAEnB,SAEF,KAAKgyD,EAAEyB,cACK,MAANzzD,EACF44C,EAAOlnC,MAAQsgD,EAAE2B,WAEjB/a,EAAO8a,QAAU,IAAM1zD,EACvB44C,EAAOlnC,MAAQsgD,EAAEwB,QAEnB,SAEF,KAAKxB,EAAEsB,UAEL,GAAU,MAANtzD,EACF44C,EAAOlnC,MAAQsgD,EAAE4B,UACjBhb,EAAOib,SAAW,QACb,GAAIV,EAAanzD,SAEjB,GAAI8zD,EAAQC,EAAW/zD,GAC5B44C,EAAOlnC,MAAQsgD,EAAEgC,SACjBpb,EAAOqb,QAAUj0D,OACZ,GAAU,MAANA,EACT44C,EAAOlnC,MAAQsgD,EAAE2B,UACjB/a,EAAOqb,QAAU,QACZ,GAAU,MAANj0D,EACT44C,EAAOlnC,MAAQsgD,EAAEkC,UACjBtb,EAAOub,aAAevb,EAAOwb,aAAe,OACvC,CAGL,GAFAhB,EAAWxa,EAAQ,eAEfA,EAAO2a,iBAAmB,EAAI3a,EAAOtmC,SAAU,CACjD,IAAI+hD,EAAMzb,EAAOtmC,SAAWsmC,EAAO2a,iBACnCvzD,EAAI,IAAI3I,MAAMg9D,GAAKj7D,KAAK,KAAO4G,CACjC,CACA44C,EAAOsa,UAAY,IAAMlzD,EACzB44C,EAAOlnC,MAAQsgD,EAAEgB,IACnB,CACA,SAEF,KAAKhB,EAAE4B,WACAhb,EAAOib,SAAW7zD,GAAG5E,gBAAkBk5D,GAC1CC,EAAS3b,EAAQ,eACjBA,EAAOlnC,MAAQsgD,EAAEsC,MACjB1b,EAAOib,SAAW,GAClBjb,EAAO4b,MAAQ,IACN5b,EAAOib,SAAW7zD,IAAM,MACjC44C,EAAOlnC,MAAQsgD,EAAEyC,QACjB7b,EAAO8b,QAAU,GACjB9b,EAAOib,SAAW,KACRjb,EAAOib,SAAW7zD,GAAG5E,gBAAkBu5D,GACjD/b,EAAOlnC,MAAQsgD,EAAE2C,SACb/b,EAAOgc,SAAWhc,EAAOkZ,UAC3BsB,EAAWxa,EACT,+CAEJA,EAAOgc,QAAU,GACjBhc,EAAOib,SAAW,IACH,MAAN7zD,GACTu0D,EAAS3b,EAAQ,oBAAqBA,EAAOib,UAC7Cjb,EAAOib,SAAW,GAClBjb,EAAOlnC,MAAQsgD,EAAEgB,MACR6B,EAAQ70D,IACjB44C,EAAOlnC,MAAQsgD,EAAE8C,iBACjBlc,EAAOib,UAAY7zD,GAEnB44C,EAAOib,UAAY7zD,EAErB,SAEF,KAAKgyD,EAAE8C,iBACD90D,IAAM44C,EAAO2Y,IACf3Y,EAAOlnC,MAAQsgD,EAAE4B,UACjBhb,EAAO2Y,EAAI,IAEb3Y,EAAOib,UAAY7zD,EACnB,SAEF,KAAKgyD,EAAE2C,QACK,MAAN30D,GACF44C,EAAOlnC,MAAQsgD,EAAEgB,KACjBuB,EAAS3b,EAAQ,YAAaA,EAAOgc,SACrChc,EAAOgc,SAAU,IAEjBhc,EAAOgc,SAAW50D,EACR,MAANA,EACF44C,EAAOlnC,MAAQsgD,EAAE+C,YACRF,EAAQ70D,KACjB44C,EAAOlnC,MAAQsgD,EAAEgD,eACjBpc,EAAO2Y,EAAIvxD,IAGf,SAEF,KAAKgyD,EAAEgD,eACLpc,EAAOgc,SAAW50D,EACdA,IAAM44C,EAAO2Y,IACf3Y,EAAO2Y,EAAI,GACX3Y,EAAOlnC,MAAQsgD,EAAE2C,SAEnB,SAEF,KAAK3C,EAAE+C,YACLnc,EAAOgc,SAAW50D,EACR,MAANA,EACF44C,EAAOlnC,MAAQsgD,EAAE2C,QACRE,EAAQ70D,KACjB44C,EAAOlnC,MAAQsgD,EAAEiD,mBACjBrc,EAAO2Y,EAAIvxD,GAEb,SAEF,KAAKgyD,EAAEiD,mBACLrc,EAAOgc,SAAW50D,EACdA,IAAM44C,EAAO2Y,IACf3Y,EAAOlnC,MAAQsgD,EAAE+C,YACjBnc,EAAO2Y,EAAI,IAEb,SAEF,KAAKS,EAAEyC,QACK,MAANz0D,EACF44C,EAAOlnC,MAAQsgD,EAAEkD,eAEjBtc,EAAO8b,SAAW10D,EAEpB,SAEF,KAAKgyD,EAAEkD,eACK,MAANl1D,GACF44C,EAAOlnC,MAAQsgD,EAAEmD,cACjBvc,EAAO8b,QAAUU,EAASxc,EAAOoY,IAAKpY,EAAO8b,SACzC9b,EAAO8b,SACTH,EAAS3b,EAAQ,YAAaA,EAAO8b,SAEvC9b,EAAO8b,QAAU,KAEjB9b,EAAO8b,SAAW,IAAM10D,EACxB44C,EAAOlnC,MAAQsgD,EAAEyC,SAEnB,SAEF,KAAKzC,EAAEmD,cACK,MAANn1D,GACFozD,EAAWxa,EAAQ,qBAGnBA,EAAO8b,SAAW,KAAO10D,EACzB44C,EAAOlnC,MAAQsgD,EAAEyC,SAEjB7b,EAAOlnC,MAAQsgD,EAAEgB,KAEnB,SAEF,KAAKhB,EAAEsC,MACK,MAANt0D,EACF44C,EAAOlnC,MAAQsgD,EAAEqD,aAEjBzc,EAAO4b,OAASx0D,EAElB,SAEF,KAAKgyD,EAAEqD,aACK,MAANr1D,EACF44C,EAAOlnC,MAAQsgD,EAAEsD,gBAEjB1c,EAAO4b,OAAS,IAAMx0D,EACtB44C,EAAOlnC,MAAQsgD,EAAEsC,OAEnB,SAEF,KAAKtC,EAAEsD,eACK,MAANt1D,GACE44C,EAAO4b,OACTD,EAAS3b,EAAQ,UAAWA,EAAO4b,OAErCD,EAAS3b,EAAQ,gBACjBA,EAAO4b,MAAQ,GACf5b,EAAOlnC,MAAQsgD,EAAEgB,MACF,MAANhzD,EACT44C,EAAO4b,OAAS,KAEhB5b,EAAO4b,OAAS,KAAOx0D,EACvB44C,EAAOlnC,MAAQsgD,EAAEsC,OAEnB,SAEF,KAAKtC,EAAEkC,UACK,MAANl0D,EACF44C,EAAOlnC,MAAQsgD,EAAEuD,iBACRpC,EAAanzD,GACtB44C,EAAOlnC,MAAQsgD,EAAEwD,eAEjB5c,EAAOub,cAAgBn0D,EAEzB,SAEF,KAAKgyD,EAAEwD,eACL,IAAK5c,EAAOwb,cAAgBjB,EAAanzD,GACvC,SACe,MAANA,EACT44C,EAAOlnC,MAAQsgD,EAAEuD,iBAEjB3c,EAAOwb,cAAgBp0D,EAEzB,SAEF,KAAKgyD,EAAEuD,iBACK,MAANv1D,GACFu0D,EAAS3b,EAAQ,0BAA2B,CAC1CniD,KAAMmiD,EAAOub,aACb7yB,KAAMsX,EAAOwb,eAEfxb,EAAOub,aAAevb,EAAOwb,aAAe,GAC5Cxb,EAAOlnC,MAAQsgD,EAAEgB,OAEjBpa,EAAOwb,cAAgB,IAAMp0D,EAC7B44C,EAAOlnC,MAAQsgD,EAAEwD,gBAEnB,SAEF,KAAKxD,EAAEgC,SACDF,EAAQ2B,EAAUz1D,GACpB44C,EAAOqb,SAAWj0D,GAElB01D,EAAO9c,GACG,MAAN54C,EACF21D,EAAQ/c,GACO,MAAN54C,EACT44C,EAAOlnC,MAAQsgD,EAAE4D,gBAEZzC,EAAanzD,IAChBozD,EAAWxa,EAAQ,iCAErBA,EAAOlnC,MAAQsgD,EAAE6D,SAGrB,SAEF,KAAK7D,EAAE4D,eACK,MAAN51D,GACF21D,EAAQ/c,GAAQ,GAChBkd,EAASld,KAETwa,EAAWxa,EAAQ,kDACnBA,EAAOlnC,MAAQsgD,EAAE6D,QAEnB,SAEF,KAAK7D,EAAE6D,OAEL,GAAI1C,EAAanzD,GACf,SACe,MAANA,EACT21D,EAAQ/c,GACO,MAAN54C,EACT44C,EAAOlnC,MAAQsgD,EAAE4D,eACR9B,EAAQC,EAAW/zD,IAC5B44C,EAAOmd,WAAa/1D,EACpB44C,EAAOod,YAAc,GACrBpd,EAAOlnC,MAAQsgD,EAAEiE,aAEjB7C,EAAWxa,EAAQ,0BAErB,SAEF,KAAKoZ,EAAEiE,YACK,MAANj2D,EACF44C,EAAOlnC,MAAQsgD,EAAEkE,aACF,MAANl2D,GACTozD,EAAWxa,EAAQ,2BACnBA,EAAOod,YAAcpd,EAAOmd,WAC5BI,EAAOvd,GACP+c,EAAQ/c,IACCua,EAAanzD,GACtB44C,EAAOlnC,MAAQsgD,EAAEoE,sBACRtC,EAAQ2B,EAAUz1D,GAC3B44C,EAAOmd,YAAc/1D,EAErBozD,EAAWxa,EAAQ,0BAErB,SAEF,KAAKoZ,EAAEoE,sBACL,GAAU,MAANp2D,EACF44C,EAAOlnC,MAAQsgD,EAAEkE,iBACZ,IAAI/C,EAAanzD,GACtB,SAEAozD,EAAWxa,EAAQ,2BACnBA,EAAO7tC,IAAI4mB,WAAWinB,EAAOmd,YAAc,GAC3Cnd,EAAOod,YAAc,GACrBzB,EAAS3b,EAAQ,cAAe,CAC9BniD,KAAMmiD,EAAOmd,WACbl7D,MAAO,KAET+9C,EAAOmd,WAAa,GACV,MAAN/1D,EACF21D,EAAQ/c,GACCkb,EAAQC,EAAW/zD,IAC5B44C,EAAOmd,WAAa/1D,EACpB44C,EAAOlnC,MAAQsgD,EAAEiE,cAEjB7C,EAAWxa,EAAQ,0BACnBA,EAAOlnC,MAAQsgD,EAAE6D,OAErB,CACA,SAEF,KAAK7D,EAAEkE,aACL,GAAI/C,EAAanzD,GACf,SACS60D,EAAQ70D,IACjB44C,EAAO2Y,EAAIvxD,EACX44C,EAAOlnC,MAAQsgD,EAAEqE,sBAEjBjD,EAAWxa,EAAQ,4BACnBA,EAAOlnC,MAAQsgD,EAAEsE,sBACjB1d,EAAOod,YAAch2D,GAEvB,SAEF,KAAKgyD,EAAEqE,oBACL,GAAIr2D,IAAM44C,EAAO2Y,EAAG,CACR,MAANvxD,EACF44C,EAAOlnC,MAAQsgD,EAAEuE,sBAEjB3d,EAAOod,aAAeh2D,EAExB,QACF,CACAm2D,EAAOvd,GACPA,EAAO2Y,EAAI,GACX3Y,EAAOlnC,MAAQsgD,EAAEwE,oBACjB,SAEF,KAAKxE,EAAEwE,oBACDrD,EAAanzD,GACf44C,EAAOlnC,MAAQsgD,EAAE6D,OACF,MAAN71D,EACT21D,EAAQ/c,GACO,MAAN54C,EACT44C,EAAOlnC,MAAQsgD,EAAE4D,eACR9B,EAAQC,EAAW/zD,IAC5BozD,EAAWxa,EAAQ,oCACnBA,EAAOmd,WAAa/1D,EACpB44C,EAAOod,YAAc,GACrBpd,EAAOlnC,MAAQsgD,EAAEiE,aAEjB7C,EAAWxa,EAAQ,0BAErB,SAEF,KAAKoZ,EAAEsE,sBACL,IAAKG,EAAYz2D,GAAI,CACT,MAANA,EACF44C,EAAOlnC,MAAQsgD,EAAE0E,sBAEjB9d,EAAOod,aAAeh2D,EAExB,QACF,CACAm2D,EAAOvd,GACG,MAAN54C,EACF21D,EAAQ/c,GAERA,EAAOlnC,MAAQsgD,EAAE6D,OAEnB,SAEF,KAAK7D,EAAE2B,UACL,GAAK/a,EAAOqb,QAaK,MAANj0D,EACT81D,EAASld,GACAkb,EAAQ2B,EAAUz1D,GAC3B44C,EAAOqb,SAAWj0D,EACT44C,EAAO8a,QAChB9a,EAAO8a,QAAU,KAAO9a,EAAOqb,QAC/Brb,EAAOqb,QAAU,GACjBrb,EAAOlnC,MAAQsgD,EAAEwB,SAEZL,EAAanzD,IAChBozD,EAAWxa,EAAQ,kCAErBA,EAAOlnC,MAAQsgD,EAAE2E,yBAzBE,CACnB,GAAIxD,EAAanzD,GACf,SACS42D,EAAS7C,EAAW/zD,GACzB44C,EAAO8a,QACT9a,EAAO8a,QAAU,KAAO1zD,EACxB44C,EAAOlnC,MAAQsgD,EAAEwB,QAEjBJ,EAAWxa,EAAQ,mCAGrBA,EAAOqb,QAAUj0D,CAErB,CAcA,SAEF,KAAKgyD,EAAE2E,oBACL,GAAIxD,EAAanzD,GACf,SAEQ,MAANA,EACF81D,EAASld,GAETwa,EAAWxa,EAAQ,qCAErB,SAEF,KAAKoZ,EAAEqB,YACP,KAAKrB,EAAEuE,sBACP,KAAKvE,EAAE0E,sBACL,IAAIG,EACAhV,EACJ,OAAQjJ,EAAOlnC,OACb,KAAKsgD,EAAEqB,YACLwD,EAAc7E,EAAEgB,KAChBnR,EAAS,WACT,MAEF,KAAKmQ,EAAEuE,sBACLM,EAAc7E,EAAEqE,oBAChBxU,EAAS,cACT,MAEF,KAAKmQ,EAAE0E,sBACLG,EAAc7E,EAAEsE,sBAChBzU,EAAS,cAIb,GAAU,MAAN7hD,EACF,GAAI44C,EAAOoY,IAAI8F,iBAAkB,CAC/B,IAAIC,EAAeC,EAAYpe,GAC/BA,EAAOqe,OAAS,GAChBre,EAAOlnC,MAAQmlD,EACfje,EAAOiL,MAAMkT,EACf,MACEne,EAAOiJ,IAAWmV,EAAYpe,GAC9BA,EAAOqe,OAAS,GAChBre,EAAOlnC,MAAQmlD,OAER/C,EAAQlb,EAAOqe,OAAO9/D,OAAS+/D,EAAaC,EAAan3D,GAClE44C,EAAOqe,QAAUj3D,GAEjBozD,EAAWxa,EAAQ,oCACnBA,EAAOiJ,IAAW,IAAMjJ,EAAOqe,OAASj3D,EACxC44C,EAAOqe,OAAS,GAChBre,EAAOlnC,MAAQmlD,GAGjB,SAEF,QACE,MAAM,IAAI5hD,MAAM2jC,EAAQ,kBAAoBA,EAAOlnC,OAQzD,OAHIknC,EAAOtmC,UAAYsmC,EAAO4Y,qBAt4ChC,SAA4B5Y,GAG1B,IAFA,IAAIwe,EAAal/C,KAAKD,IAAI84C,EAAIK,kBAAmB,IAC7CiG,EAAY,EACPpgE,EAAI,EAAGC,EAAIm6D,EAAQl6D,OAAQF,EAAIC,EAAGD,IAAK,CAC9C,IAAIa,EAAM8gD,EAAOyY,EAAQp6D,IAAIE,OAC7B,GAAIW,EAAMs/D,EAKR,OAAQ/F,EAAQp6D,IACd,IAAK,WACHqgE,EAAU1e,GACV,MAEF,IAAK,QACH2b,EAAS3b,EAAQ,UAAWA,EAAO4b,OACnC5b,EAAO4b,MAAQ,GACf,MAEF,IAAK,SACHD,EAAS3b,EAAQ,WAAYA,EAAO8a,QACpC9a,EAAO8a,OAAS,GAChB,MAEF,QACE1+C,EAAM4jC,EAAQ,+BAAiCyY,EAAQp6D,IAG7DogE,EAAYn/C,KAAKD,IAAIo/C,EAAWv/D,EAClC,CAEA,IAAIoQ,EAAI6oD,EAAIK,kBAAoBiG,EAChCze,EAAO4Y,oBAAsBtpD,EAAI0wC,EAAOtmC,QAC1C,CAq2CIilD,CAAkB3e,GAEbA,CACT,EAj1CEiM,OAAQ,WAAiC,OAAnBpvD,KAAKuf,MAAQ,KAAavf,IAAK,EACrDiyB,MAAO,WAAc,OAAOjyB,KAAKouD,MAAM,KAAM,EAC7CmE,MAAO,WAjBT,IAAuBpP,EACrB0e,EADqB1e,EAiBanjD,MAfb,KAAjBmjD,EAAO4b,QACTD,EAAS3b,EAAQ,UAAWA,EAAO4b,OACnC5b,EAAO4b,MAAQ,IAEK,KAAlB5b,EAAO8a,SACTa,EAAS3b,EAAQ,WAAYA,EAAO8a,QACpC9a,EAAO8a,OAAS,GASsB,GAI1C,IACEpT,EAAS,eACX,CAAE,MAAOkX,GACPlX,EAAS,WAAa,CACxB,CACKA,IAAQA,EAAS,WAAa,GAEnC,IAAImX,EAAc1G,EAAI4B,OAAO5zD,QAAO,SAAU8nD,GAC5C,MAAc,UAAPA,GAAyB,QAAPA,CAC3B,IAMA,SAASqK,EAAWx1D,EAAQs1D,GAC1B,KAAMv7D,gBAAgBy7D,GACpB,OAAO,IAAIA,EAAUx1D,EAAQs1D,GAG/B1Q,EAAOpoD,MAAMzC,MAEbA,KAAKiiE,QAAU,IAAIzG,EAAUv1D,EAAQs1D,GACrCv7D,KAAK4pD,UAAW,EAChB5pD,KAAK2pD,UAAW,EAEhB,IAAIuY,EAAKliE,KAETA,KAAKiiE,QAAQpY,MAAQ,WACnBqY,EAAGpgE,KAAK,MACV,EAEA9B,KAAKiiE,QAAQnR,QAAU,SAAUlJ,GAC/Bsa,EAAGpgE,KAAK,QAAS8lD,GAIjBsa,EAAGD,QAAQ1iD,MAAQ,IACrB,EAEAvf,KAAKmiE,SAAW,KAEhBH,EAAYj3D,SAAQ,SAAUqmD,GAC5B7xD,OAAOyF,eAAek9D,EAAI,KAAO9Q,EAAI,CACnCjrC,IAAK,WACH,OAAO+7C,EAAGD,QAAQ,KAAO7Q,EAC3B,EACA74B,IAAK,SAAUjqB,GACb,IAAKA,EAGH,OAFA4zD,EAAGt/D,mBAAmBwuD,GACtB8Q,EAAGD,QAAQ,KAAO7Q,GAAM9iD,EACjBA,EAET4zD,EAAGv/D,GAAGyuD,EAAI9iD,EACZ,EACAvJ,YAAY,EACZmhB,cAAc,GAElB,GACF,CAEAu1C,EAAUj8D,UAAYD,OAAOqB,OAAOiqD,EAAOrrD,UAAW,CACpD+kB,YAAa,CACXnf,MAAOq2D,KAIXA,EAAUj8D,UAAU4uD,MAAQ,SAAUhgD,GACpC,GAAsB,mBAAX08C,GACkB,mBAApBA,EAAOkD,UACdlD,EAAOkD,SAAS5/C,GAAO,CACvB,IAAKpO,KAAKmiE,SAAU,CAClB,IAAIC,EAAK,WACTpiE,KAAKmiE,SAAW,IAAIC,EAAG,OACzB,CACAh0D,EAAOpO,KAAKmiE,SAAS/T,MAAMhgD,EAC7B,CAIA,OAFApO,KAAKiiE,QAAQ7T,MAAMhgD,EAAK1I,YACxB1F,KAAK8B,KAAK,OAAQsM,IACX,CACT,EAEAqtD,EAAUj8D,UAAUmU,IAAM,SAAU82C,GAKlC,OAJIA,GAASA,EAAM/oD,QACjB1B,KAAKouD,MAAM3D,GAEbzqD,KAAKiiE,QAAQtuD,OACN,CACT,EAEA8nD,EAAUj8D,UAAUmD,GAAK,SAAUyuD,EAAIx6C,GACrC,IAAIsrD,EAAKliE,KAST,OARKkiE,EAAGD,QAAQ,KAAO7Q,KAAoC,IAA7B4Q,EAAY19D,QAAQ8sD,KAChD8Q,EAAGD,QAAQ,KAAO7Q,GAAM,WACtB,IAAIhvD,EAA4B,IAArBE,UAAUZ,OAAe,CAACY,UAAU,IAAMV,MAAMa,MAAM,KAAMH,WACvEF,EAAK+W,OAAO,EAAG,EAAGi4C,GAClB8Q,EAAGpgE,KAAKW,MAAMy/D,EAAI9/D,EACpB,GAGKyoD,EAAOrrD,UAAUmD,GAAGzB,KAAKghE,EAAI9Q,EAAIx6C,EAC1C,EAIA,IAAIioD,EAAQ,UACRK,EAAU,UACVmD,EAAgB,uCAChBC,EAAkB,gCAClBvF,EAAS,CAAEwF,IAAKF,EAAexF,MAAOyF,GAQtChE,EAAY,4JAEZ0B,EAAW,gMAEX0B,EAAc,6JACdD,EAAa,iMAEjB,SAAS/D,EAAcnzD,GACrB,MAAa,MAANA,GAAmB,OAANA,GAAoB,OAANA,GAAoB,OAANA,CAClD,CAEA,SAAS60D,EAAS70D,GAChB,MAAa,MAANA,GAAmB,MAANA,CACtB,CAEA,SAASy2D,EAAaz2D,GACpB,MAAa,MAANA,GAAamzD,EAAanzD,EACnC,CAEA,SAAS8zD,EAAS5kD,EAAOlP,GACvB,OAAOkP,EAAMtR,KAAKoC,EACpB,CAEA,SAAS42D,EAAU1nD,EAAOlP,GACxB,OAAQ8zD,EAAQ5kD,EAAOlP,EACzB,CAEA,IAgsCQi4D,EACA9oB,EACA+oB,EAlsCJlG,EAAI,EAsTR,IAAK,IAAI1D,KArTTyC,EAAIoH,MAAQ,CACVlG,MAAOD,IACPc,iBAAkBd,IAClBgB,KAAMhB,IACNqB,YAAarB,IACbsB,UAAWtB,IACX4B,UAAW5B,IACX8C,iBAAkB9C,IAClB2C,QAAS3C,IACTgD,eAAgBhD,IAChB+C,YAAa/C,IACbiD,mBAAoBjD,IACpBoG,iBAAkBpG,IAClByC,QAASzC,IACTkD,eAAgBlD,IAChBmD,cAAenD,IACfsC,MAAOtC,IACPqD,aAAcrD,IACdsD,eAAgBtD,IAChBkC,UAAWlC,IACXwD,eAAgBxD,IAChBuD,iBAAkBvD,IAClBgC,SAAUhC,IACV4D,eAAgB5D,IAChB6D,OAAQ7D,IACRiE,YAAajE,IACboE,sBAAuBpE,IACvBkE,aAAclE,IACdqE,oBAAqBrE,IACrBwE,oBAAqBxE,IACrBsE,sBAAuBtE,IACvBuE,sBAAuBvE,IACvB0E,sBAAuB1E,IACvB2B,UAAW3B,IACX2E,oBAAqB3E,IACrBwB,OAAQxB,IACRyB,cAAezB,KAGjBjB,EAAIqB,aAAe,CACjB,IAAO,IACP,GAAM,IACN,GAAM,IACN,KAAQ,IACR,KAAQ,KAGVrB,EAAIoB,SAAW,CACb,IAAO,IACP,GAAM,IACN,GAAM,IACN,KAAQ,IACR,KAAQ,IACR,MAAS,IACT,OAAU,IACV,MAAS,IACT,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,IAAO,IACP,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,OAAU,IACV,MAAS,IACT,OAAU,IACV,OAAU,IACV,OAAU,IACV,KAAQ,IACR,MAAS,IACT,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,OAAU,IACV,MAAS,IACT,MAAS,IACT,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,OAAU,IACV,MAAS,IACT,OAAU,IACV,IAAO,IACP,KAAQ,IACR,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,OAAU,IACV,MAAS,IACT,OAAU,IACV,OAAU,IACV,OAAU,IACV,KAAQ,IACR,MAAS,IACT,MAAS,IACT,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,KAAQ,IACR,KAAQ,IACR,IAAO,IACP,KAAQ,IACR,MAAS,IACT,KAAQ,IACR,MAAS,IACT,OAAU,IACV,IAAO,IACP,OAAU,IACV,KAAQ,IACR,IAAO,IACP,KAAQ,IACR,MAAS,IACT,IAAO,IACP,IAAO,IACP,KAAQ,IACR,IAAO,IACP,OAAU,IACV,KAAQ,IACR,KAAQ,IACR,KAAQ,IACR,MAAS,IACT,MAAS,IACT,KAAQ,IACR,OAAU,IACV,MAAS,IACT,KAAQ,IACR,MAAS,IACT,OAAU,IACV,OAAU,IACV,OAAU,IACV,OAAU,IACV,MAAS,IACT,OAAU,IACV,MAAS,IACT,MAAS,IACT,OAAU,IACV,OAAU,IACV,KAAQ,IACR,KAAQ,IACR,KAAQ,IACR,MAAS,IACT,MAAS,IACT,KAAQ,IACR,MAAS,IACT,MAAS,IACT,QAAW,IACX,KAAQ,IACR,IAAO,IACP,MAAS,IACT,KAAQ,IACR,MAAS,IACT,OAAU,IACV,GAAM,IACN,GAAM,IACN,GAAM,IACN,QAAW,IACX,GAAM,IACN,IAAO,IACP,MAAS,IACT,IAAO,IACP,QAAW,IACX,IAAO,IACP,IAAO,IACP,IAAO,IACP,MAAS,IACT,MAAS,IACT,KAAQ,IACR,MAAS,IACT,MAAS,IACT,QAAW,IACX,KAAQ,IACR,IAAO,IACP,MAAS,IACT,KAAQ,IACR,MAAS,IACT,OAAU,IACV,GAAM,IACN,GAAM,IACN,GAAM,IACN,QAAW,IACX,GAAM,IACN,IAAO,IACP,OAAU,IACV,MAAS,IACT,IAAO,IACP,QAAW,IACX,IAAO,IACP,IAAO,IACP,IAAO,IACP,MAAS,IACT,SAAY,IACZ,MAAS,IACT,IAAO,IACP,KAAQ,KACR,KAAQ,KACR,OAAU,KACV,KAAQ,KACR,IAAO,KACP,IAAO,KACP,IAAO,KACP,MAAS,KACT,MAAS,KACT,MAAS,KACT,MAAS,KACT,MAAS,KACT,MAAS,KACT,MAAS,KACT,MAAS,KACT,OAAU,KACV,OAAU,KACV,KAAQ,KACR,OAAU,KACV,OAAU,KACV,MAAS,KACT,MAAS,KACT,OAAU,KACV,OAAU,KACV,MAAS,KACT,MAAS,KACT,KAAQ,KACR,MAAS,KACT,OAAU,KACV,KAAQ,KACR,MAAS,KACT,QAAW,KACX,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,MAAS,KACT,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,OAAU,KACV,KAAQ,KACR,MAAS,KACT,MAAS,KACT,MAAS,KACT,KAAQ,KACR,MAAS,KACT,GAAM,KACN,KAAQ,KACR,IAAO,KACP,MAAS,KACT,OAAU,KACV,MAAS,KACT,KAAQ,KACR,MAAS,KACT,IAAO,KACP,IAAO,KACP,GAAM,KACN,IAAO,KACP,IAAO,KACP,IAAO,KACP,OAAU,KACV,IAAO,KACP,KAAQ,KACR,MAAS,KACT,GAAM,KACN,MAAS,KACT,GAAM,KACN,GAAM,KACN,IAAO,KACP,IAAO,KACP,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,MAAS,KACT,OAAU,KACV,KAAQ,KACR,KAAQ,KACR,MAAS,KACT,MAAS,KACT,OAAU,KACV,OAAU,KACV,KAAQ,KACR,KAAQ,KACR,IAAO,KACP,OAAU,KACV,MAAS,KACT,OAAU,KACV,MAAS,MAGXn9D,OAAO+G,KAAKg1D,EAAIoB,UAAU3xD,SAAQ,SAAUnG,GAC1C,IAAIkH,EAAIwvD,EAAIoB,SAAS93D,GACjBi0D,EAAiB,iBAAN/sD,EAAiBlB,OAAOg4D,aAAa92D,GAAKA,EACzDwvD,EAAIoB,SAAS93D,GAAOi0D,CACtB,IAEcyC,EAAIoH,MAChBpH,EAAIoH,MAAMpH,EAAIoH,MAAM7J,IAAMA,EAM5B,SAAS/2D,EAAMqhD,EAAQhjD,EAAOiO,GAC5B+0C,EAAOhjD,IAAUgjD,EAAOhjD,GAAOiO,EACjC,CAEA,SAAS0wD,EAAU3b,EAAQ0f,EAAUz0D,GAC/B+0C,EAAOsa,UAAUoE,EAAU1e,GAC/BrhD,EAAKqhD,EAAQ0f,EAAUz0D,EACzB,CAEA,SAASyzD,EAAW1e,GAClBA,EAAOsa,SAAWkC,EAASxc,EAAOoY,IAAKpY,EAAOsa,UAC1Cta,EAAOsa,UAAU37D,EAAKqhD,EAAQ,SAAUA,EAAOsa,UACnDta,EAAOsa,SAAW,EACpB,CAEA,SAASkC,EAAUpE,EAAKuH,GAGtB,OAFIvH,EAAIn0D,OAAM07D,EAAOA,EAAK17D,QACtBm0D,EAAIwH,YAAWD,EAAOA,EAAKv8D,QAAQ,OAAQ,MACxCu8D,CACT,CAEA,SAASvjD,EAAO4jC,EAAQyE,GAUtB,OATAia,EAAU1e,GACNA,EAAO6Z,gBACTpV,GAAM,WAAazE,EAAO8Z,KACxB,aAAe9Z,EAAOzM,OACtB,WAAayM,EAAO54C,GAExBq9C,EAAK,IAAIpoC,MAAMooC,GACfzE,EAAO5jC,MAAQqoC,EACf9lD,EAAKqhD,EAAQ,UAAWyE,GACjBzE,CACT,CAEA,SAASxvC,EAAKwvC,GAYZ,OAXIA,EAAOkZ,UAAYlZ,EAAOiZ,YAAYuB,EAAWxa,EAAQ,qBACxDA,EAAOlnC,QAAUsgD,EAAEC,OACrBrZ,EAAOlnC,QAAUsgD,EAAEc,kBACnBla,EAAOlnC,QAAUsgD,EAAEgB,MACpBh+C,EAAM4jC,EAAQ,kBAEhB0e,EAAU1e,GACVA,EAAO54C,EAAI,GACX44C,EAAOqX,QAAS,EAChB14D,EAAKqhD,EAAQ,SACbqY,EAAUt6D,KAAKiiD,EAAQA,EAAOl9C,OAAQk9C,EAAOoY,KACtCpY,CACT,CAEA,SAASwa,EAAYxa,EAAQ7jC,GAC3B,GAAsB,iBAAX6jC,KAAyBA,aAAkBqY,GACpD,MAAM,IAAIh8C,MAAM,0BAEd2jC,EAAOl9C,QACTsZ,EAAM4jC,EAAQ7jC,EAElB,CAEA,SAAS2gD,EAAQ9c,GACVA,EAAOl9C,SAAQk9C,EAAOqb,QAAUrb,EAAOqb,QAAQrb,EAAO+Y,cAC3D,IAAIxvD,EAASy2C,EAAOgZ,KAAKhZ,EAAOgZ,KAAKz6D,OAAS,IAAMyhD,EAChD7tC,EAAM6tC,EAAO7tC,IAAM,CAAEtU,KAAMmiD,EAAOqb,QAAStiC,WAAY,CAAC,GAGxDinB,EAAOoY,IAAIsB,QACbvnD,EAAIwnD,GAAKpwD,EAAOowD,IAElB3Z,EAAOyZ,WAAWl7D,OAAS,EAC3Bo9D,EAAS3b,EAAQ,iBAAkB7tC,EACrC,CAEA,SAAS0tD,EAAOhiE,EAAMo7B,GACpB,IACI6mC,EADIjiE,EAAKsD,QAAQ,KACF,EAAI,CAAE,GAAItD,GAASA,EAAKyC,MAAM,KAC7C/D,EAASujE,EAAS,GAClBC,EAAQD,EAAS,GAQrB,OALI7mC,GAAsB,UAATp7B,IACftB,EAAS,QACTwjE,EAAQ,IAGH,CAAExjE,OAAQA,EAAQwjE,MAAOA,EAClC,CAEA,SAASxC,EAAQvd,GAKf,GAJKA,EAAOl9C,SACVk9C,EAAOmd,WAAand,EAAOmd,WAAWnd,EAAO+Y,eAGO,IAAlD/Y,EAAOyZ,WAAWt4D,QAAQ6+C,EAAOmd,aACnCnd,EAAO7tC,IAAI4mB,WAAWz8B,eAAe0jD,EAAOmd,YAC5Cnd,EAAOmd,WAAand,EAAOod,YAAc,OAF3C,CAMA,GAAIpd,EAAOoY,IAAIsB,MAAO,CACpB,IAAIsG,EAAKH,EAAM7f,EAAOmd,YAAY,GAC9B5gE,EAASyjE,EAAGzjE,OACZwjE,EAAQC,EAAGD,MAEf,GAAe,UAAXxjE,EAEF,GAAc,QAAVwjE,GAAmB/f,EAAOod,cAAgB8B,EAC5C1E,EAAWxa,EACT,gCAAkCkf,EAAlC,aACalf,EAAOod,kBACjB,GAAc,UAAV2C,GAAqB/f,EAAOod,cAAgB+B,EACrD3E,EAAWxa,EACT,kCAAoCmf,EAApC,aACanf,EAAOod,iBACjB,CACL,IAAIjrD,EAAM6tC,EAAO7tC,IACb5I,EAASy2C,EAAOgZ,KAAKhZ,EAAOgZ,KAAKz6D,OAAS,IAAMyhD,EAChD7tC,EAAIwnD,KAAOpwD,EAAOowD,KACpBxnD,EAAIwnD,GAAKv9D,OAAOqB,OAAO8L,EAAOowD,KAEhCxnD,EAAIwnD,GAAGoG,GAAS/f,EAAOod,WACzB,CAMFpd,EAAOyZ,WAAWp8D,KAAK,CAAC2iD,EAAOmd,WAAYnd,EAAOod,aACpD,MAEEpd,EAAO7tC,IAAI4mB,WAAWinB,EAAOmd,YAAcnd,EAAOod,YAClDzB,EAAS3b,EAAQ,cAAe,CAC9BniD,KAAMmiD,EAAOmd,WACbl7D,MAAO+9C,EAAOod,cAIlBpd,EAAOmd,WAAand,EAAOod,YAAc,EAxCzC,CAyCF,CAEA,SAASL,EAAS/c,EAAQigB,GACxB,GAAIjgB,EAAOoY,IAAIsB,MAAO,CAEpB,IAAIvnD,EAAM6tC,EAAO7tC,IAGb6tD,EAAKH,EAAM7f,EAAOqb,SACtBlpD,EAAI5V,OAASyjE,EAAGzjE,OAChB4V,EAAI4tD,MAAQC,EAAGD,MACf5tD,EAAI+tD,IAAM/tD,EAAIwnD,GAAGqG,EAAGzjE,SAAW,GAE3B4V,EAAI5V,SAAW4V,EAAI+tD,MACrB1F,EAAWxa,EAAQ,6BACjB3vC,KAAK1K,UAAUq6C,EAAOqb,UACxBlpD,EAAI+tD,IAAMF,EAAGzjE,QAGf,IAAIgN,EAASy2C,EAAOgZ,KAAKhZ,EAAOgZ,KAAKz6D,OAAS,IAAMyhD,EAChD7tC,EAAIwnD,IAAMpwD,EAAOowD,KAAOxnD,EAAIwnD,IAC9Bv9D,OAAO+G,KAAKgP,EAAIwnD,IAAI/xD,SAAQ,SAAU4jD,GACpCmQ,EAAS3b,EAAQ,kBAAmB,CAClCzjD,OAAQivD,EACR0U,IAAK/tD,EAAIwnD,GAAGnO,IAEhB,IAMF,IAAK,IAAIntD,EAAI,EAAGC,EAAI0hD,EAAOyZ,WAAWl7D,OAAQF,EAAIC,EAAGD,IAAK,CACxD,IAAI8hE,EAAKngB,EAAOyZ,WAAWp7D,GACvBR,EAAOsiE,EAAG,GACVl+D,EAAQk+D,EAAG,GACXL,EAAWD,EAAMhiE,GAAM,GACvBtB,EAASujE,EAASvjE,OAClBwjE,EAAQD,EAASC,MACjBG,EAAiB,KAAX3jE,EAAgB,GAAM4V,EAAIwnD,GAAGp9D,IAAW,GAC9CiH,EAAI,CACN3F,KAAMA,EACNoE,MAAOA,EACP1F,OAAQA,EACRwjE,MAAOA,EACPG,IAAKA,GAKH3jE,GAAqB,UAAXA,IAAuB2jE,IACnC1F,EAAWxa,EAAQ,6BACjB3vC,KAAK1K,UAAUpJ,IACjBiH,EAAE08D,IAAM3jE,GAEVyjD,EAAO7tC,IAAI4mB,WAAWl7B,GAAQ2F,EAC9Bm4D,EAAS3b,EAAQ,cAAex8C,EAClC,CACAw8C,EAAOyZ,WAAWl7D,OAAS,CAC7B,CAEAyhD,EAAO7tC,IAAIiuD,gBAAkBH,EAG7BjgB,EAAOkZ,SAAU,EACjBlZ,EAAOgZ,KAAK37D,KAAK2iD,EAAO7tC,KACxBwpD,EAAS3b,EAAQ,YAAaA,EAAO7tC,KAChC8tD,IAEEjgB,EAAOmZ,UAA6C,WAAjCnZ,EAAOqb,QAAQl3D,cAGrC67C,EAAOlnC,MAAQsgD,EAAEgB,KAFjBpa,EAAOlnC,MAAQsgD,EAAEwB,OAInB5a,EAAO7tC,IAAM,KACb6tC,EAAOqb,QAAU,IAEnBrb,EAAOmd,WAAand,EAAOod,YAAc,GACzCpd,EAAOyZ,WAAWl7D,OAAS,CAC7B,CAEA,SAAS2+D,EAAUld,GACjB,IAAKA,EAAOqb,QAIV,OAHAb,EAAWxa,EAAQ,0BACnBA,EAAOsa,UAAY,WACnBta,EAAOlnC,MAAQsgD,EAAEgB,MAInB,GAAIpa,EAAO8a,OAAQ,CACjB,GAAuB,WAAnB9a,EAAOqb,QAIT,OAHArb,EAAO8a,QAAU,KAAO9a,EAAOqb,QAAU,IACzCrb,EAAOqb,QAAU,QACjBrb,EAAOlnC,MAAQsgD,EAAEwB,QAGnBe,EAAS3b,EAAQ,WAAYA,EAAO8a,QACpC9a,EAAO8a,OAAS,EAClB,CAIA,IAAIpwC,EAAIs1B,EAAOgZ,KAAKz6D,OAChB88D,EAAUrb,EAAOqb,QAChBrb,EAAOl9C,SACVu4D,EAAUA,EAAQrb,EAAO+Y,cAG3B,IADA,IAAIsH,EAAUhF,EACP3wC,KACOs1B,EAAOgZ,KAAKtuC,GACd7sB,OAASwiE,GAEjB7F,EAAWxa,EAAQ,wBAOvB,GAAIt1B,EAAI,EAIN,OAHA8vC,EAAWxa,EAAQ,0BAA4BA,EAAOqb,SACtDrb,EAAOsa,UAAY,KAAOta,EAAOqb,QAAU,SAC3Crb,EAAOlnC,MAAQsgD,EAAEgB,MAGnBpa,EAAOqb,QAAUA,EAEjB,IADA,IAAI3F,EAAI1V,EAAOgZ,KAAKz6D,OACbm3D,KAAMhrC,GAAG,CACd,IAAIvY,EAAM6tC,EAAO7tC,IAAM6tC,EAAOgZ,KAAKtrD,MACnCsyC,EAAOqb,QAAUrb,EAAO7tC,IAAItU,KAC5B89D,EAAS3b,EAAQ,aAAcA,EAAOqb,SAEtC,IAAIh5D,EAAI,CAAC,EACT,IAAK,IAAIhE,KAAK8T,EAAIwnD,GAChBt3D,EAAEhE,GAAK8T,EAAIwnD,GAAGt7D,GAGhB,IAAIkL,EAASy2C,EAAOgZ,KAAKhZ,EAAOgZ,KAAKz6D,OAAS,IAAMyhD,EAChDA,EAAOoY,IAAIsB,OAASvnD,EAAIwnD,KAAOpwD,EAAOowD,IAExCv9D,OAAO+G,KAAKgP,EAAIwnD,IAAI/xD,SAAQ,SAAU4jD,GACpC,IAAI/pC,EAAItP,EAAIwnD,GAAGnO,GACfmQ,EAAS3b,EAAQ,mBAAoB,CAAEzjD,OAAQivD,EAAG0U,IAAKz+C,GACzD,GAEJ,CACU,IAANiJ,IAASs1B,EAAOiZ,YAAa,GACjCjZ,EAAOqb,QAAUrb,EAAOod,YAAcpd,EAAOmd,WAAa,GAC1Dnd,EAAOyZ,WAAWl7D,OAAS,EAC3ByhD,EAAOlnC,MAAQsgD,EAAEgB,IACnB,CAEA,SAASgE,EAAape,GACpB,IAEIsgB,EAFAjC,EAASre,EAAOqe,OAChBkC,EAAWlC,EAAOl6D,cAElBq8D,EAAS,GAEb,OAAIxgB,EAAOuZ,SAAS8E,GACXre,EAAOuZ,SAAS8E,GAErBre,EAAOuZ,SAASgH,GACXvgB,EAAOuZ,SAASgH,IAGA,OADzBlC,EAASkC,GACE/yD,OAAO,KACS,MAArB6wD,EAAO7wD,OAAO,IAChB6wD,EAASA,EAAOrgE,MAAM,GAEtBwiE,GADAF,EAAMx7B,SAASu5B,EAAQ,KACV97D,SAAS,MAEtB87D,EAASA,EAAOrgE,MAAM,GAEtBwiE,GADAF,EAAMx7B,SAASu5B,EAAQ,KACV97D,SAAS,MAG1B87D,EAASA,EAAOj7D,QAAQ,MAAO,IAC3BY,MAAMs8D,IAAQE,EAAOr8D,gBAAkBk6D,GACzC7D,EAAWxa,EAAQ,4BACZ,IAAMA,EAAOqe,OAAS,KAGxB52D,OAAO63D,cAAcgB,GAC9B,CAEA,SAASnG,EAAiBna,EAAQ54C,GACtB,MAANA,GACF44C,EAAOlnC,MAAQsgD,EAAEsB,UACjB1a,EAAO2a,iBAAmB3a,EAAOtmC,UACvB6gD,EAAanzD,KAGvBozD,EAAWxa,EAAQ,oCACnBA,EAAOsa,SAAWlzD,EAClB44C,EAAOlnC,MAAQsgD,EAAEgB,KAErB,CAEA,SAAS5sD,EAAQ85C,EAAOjpD,GACtB,IAAIkD,EAAS,GAIb,OAHIlD,EAAIipD,EAAM/oD,SACZgD,EAAS+lD,EAAM95C,OAAOnP,IAEjBkD,CACT,CAtVA63D,EAAIjB,EAAIoH,MAm4BH93D,OAAO63D,gBAEJD,EAAqB53D,OAAOg4D,aAC5BlpB,EAAQj3B,KAAKi3B,MACb+oB,EAAgB,WAClB,IAEImB,EACAC,EAFAC,EAAY,GAGZ56D,GAAS,EACTxH,EAASY,UAAUZ,OACvB,IAAKA,EACH,MAAO,GAGT,IADA,IAAIgD,EAAS,KACJwE,EAAQxH,GAAQ,CACvB,IAAIqiE,EAAYl9D,OAAOvE,UAAU4G,IACjC,IACG4xD,SAASiJ,IACVA,EAAY,GACZA,EAAY,SACZrqB,EAAMqqB,KAAeA,EAErB,MAAMxc,WAAW,uBAAyBwc,GAExCA,GAAa,MACfD,EAAUtjE,KAAKujE,IAIfH,EAAoC,QADpCG,GAAa,QACiB,IAC9BF,EAAgBE,EAAY,KAAS,MACrCD,EAAUtjE,KAAKojE,EAAeC,KAE5B36D,EAAQ,IAAMxH,GAAUoiE,EAAUpiE,OA7BzB,SA8BXgD,GAAU89D,EAAmB//D,MAAM,KAAMqhE,GACzCA,EAAUpiE,OAAS,EAEvB,CACA,OAAOgD,CACT,EAEInF,OAAOyF,eACTzF,OAAOyF,eAAe4F,OAAQ,gBAAiB,CAC7CxF,MAAOq9D,EACPv8C,cAAc,EACd0jC,UAAU,IAGZh/C,OAAO63D,cAAgBA,EAI9B,CAriDA,CAqiDmDz/D,0CCriDnD,SAAUghE,EAAQxhE,GACf,aAEA,IAAIwhE,EAAOC,aAAX,CAIA,IAIIC,EA6HIC,EAZAC,EArBAC,EACAC,EAjGJC,EAAa,EACbC,EAAgB,CAAC,EACjBC,GAAwB,EACxBC,EAAMV,EAAOjmD,SAoJb4mD,EAAWplE,OAAOioD,gBAAkBjoD,OAAOioD,eAAewc,GAC9DW,EAAWA,GAAYA,EAASj4C,WAAai4C,EAAWX,EAGf,qBAArC,CAAC,EAAEt+D,SAASxE,KAAK8iE,EAAOha,SApFxBka,EAAoB,SAASU,GACzB5a,EAAQC,UAAS,WAAc4a,EAAaD,EAAS,GACzD,EAGJ,WAGI,GAAIZ,EAAOc,cAAgBd,EAAOe,cAAe,CAC7C,IAAIC,GAA4B,EAC5BC,EAAejB,EAAOkB,UAM1B,OALAlB,EAAOkB,UAAY,WACfF,GAA4B,CAChC,EACAhB,EAAOc,YAAY,GAAI,KACvBd,EAAOkB,UAAYD,EACZD,CACX,CACJ,CAsEWG,IA/DHd,EAAgB,gBAAkB5hD,KAAKw3B,SAAW,IAClDqqB,EAAkB,SAASnkE,GACvBA,EAAMmR,SAAW0yD,GACK,iBAAf7jE,EAAMiO,MACyB,IAAtCjO,EAAMiO,KAAK9J,QAAQ+/D,IACnBQ,GAAc1kE,EAAMiO,KAAKjN,MAAMkjE,EAAc3iE,QAErD,EAEIsiE,EAAO7nD,iBACP6nD,EAAO7nD,iBAAiB,UAAWmoD,GAAiB,GAEpDN,EAAOoB,YAAY,YAAad,GAGpCJ,EAAoB,SAASU,GACzBZ,EAAOc,YAAYT,EAAgBO,EAAQ,IAC/C,GAkDOZ,EAAOqB,iBA9CVjB,EAAU,IAAIiB,gBACVC,MAAMJ,UAAY,SAAS/kE,GAE/B0kE,EADa1kE,EAAMiO,KAEvB,EAEA81D,EAAoB,SAASU,GACzBR,EAAQmB,MAAMT,YAAYF,EAC9B,GA0COF,GAAO,uBAAwBA,EAAIc,cAAc,WAtCpDrB,EAAOO,EAAIvmD,gBACf+lD,EAAoB,SAASU,GAGzB,IAAI3G,EAASyG,EAAIc,cAAc,UAC/BvH,EAAOwH,mBAAqB,WACxBZ,EAAaD,GACb3G,EAAOwH,mBAAqB,KAC5BtB,EAAKuB,YAAYzH,GACjBA,EAAS,IACb,EACAkG,EAAKp0C,YAAYkuC,EACrB,GAIAiG,EAAoB,SAASU,GACzBl4C,WAAWm4C,EAAc,EAAGD,EAChC,EA6BJD,EAASV,aA1KT,SAAsBx4C,GAEI,mBAAbA,IACTA,EAAW,IAAIoE,SAAS,GAAKpE,IAI/B,IADA,IAAIrpB,EAAO,IAAIR,MAAMU,UAAUZ,OAAS,GAC/BF,EAAI,EAAGA,EAAIY,EAAKV,OAAQF,IAC7BY,EAAKZ,GAAKc,UAAUd,EAAI,GAG5B,IAAImkE,EAAO,CAAEl6C,SAAUA,EAAUrpB,KAAMA,GAGvC,OAFAoiE,EAAcD,GAAcoB,EAC5BzB,EAAkBK,GACXA,GACT,EA4JAI,EAASiB,eAAiBA,CAnL1B,CAyBA,SAASA,EAAehB,UACbJ,EAAcI,EACzB,CAwBA,SAASC,EAAaD,GAGlB,GAAIH,EAGA/3C,WAAWm4C,EAAc,EAAGD,OACzB,CACH,IAAIe,EAAOnB,EAAcI,GACzB,GAAIe,EAAM,CACNlB,GAAwB,EACxB,KAjCZ,SAAakB,GACT,IAAIl6C,EAAWk6C,EAAKl6C,SAChBrpB,EAAOujE,EAAKvjE,KAChB,OAAQA,EAAKV,QACb,KAAK,EACD+pB,IACA,MACJ,KAAK,EACDA,EAASrpB,EAAK,IACd,MACJ,KAAK,EACDqpB,EAASrpB,EAAK,GAAIA,EAAK,IACvB,MACJ,KAAK,EACDqpB,EAASrpB,EAAK,GAAIA,EAAK,GAAIA,EAAK,IAChC,MACJ,QACIqpB,EAAShpB,MAnDrB,UAmDsCL,GAGlC,CAcgByjE,CAAIF,EACR,CAAE,QACEC,EAAehB,GACfH,GAAwB,CAC5B,CACJ,CACJ,CACJ,CA8GJ,CAzLA,CAyLkB,oBAATl4C,UAAyC,IAAX,EAAAy+B,EAAyBhrD,KAAO,EAAAgrD,EAASz+B,iBCtKhF,SAASnL,EAAc5b,EAAWsgE,GAChC,OAAO,MAACtgE,EAAiCsgE,EAAItgE,CAC/C,CA8EAzC,EAAOC,QA5EP,SAAiBgD,GAEf,IAbyB+/D,EAarBvjD,EAAMpB,GADVpb,EAAUA,GAAW,CAAC,GACAwc,IAAK,GACvBoN,EAAMxO,EAAIpb,EAAQ4pB,IAAK,GACvBo2C,EAAY5kD,EAAIpb,EAAQggE,WAAW,GACnCC,EAAqB7kD,EAAIpb,EAAQigE,oBAAoB,GAErDC,EAA2B,KAC3BC,EAAoC,KACpCC,EAAmC,KAEnC98D,GAtBqBy8D,EAsBM3kD,EAAIpb,EAAQqgE,oBAAqB,KArBzD,SAAUC,EAAgBviE,EAAOwiE,GAEtC,OAAOD,EADOC,GAAMA,EAAKR,IACQhiE,EAAQuiE,EAC3C,GAoBA,SAAS7iC,IACP+iC,EAAO52C,EACT,CAWA,SAAS42C,EAAOC,EAAwBC,GAKtC,GAJyB,iBAAdA,IACTA,EAAYxrD,KAAKD,OAGfkrD,IAAkBO,KAClBT,GAAsBG,IAAiBK,GAA3C,CAEA,GAAsB,OAAlBN,GAA2C,OAAjBC,EAG5B,OAFAA,EAAeK,OACfN,EAAgBO,GAIlB,IACIC,EAAiB,MAASD,EAAYP,GACtCS,GAFgBH,EAAWL,GAEGO,EAElCT,EAAgB,OAATA,EACHU,EACAt9D,EAAO48D,EAAMU,EAAaD,GAC9BP,EAAeK,EACfN,EAAgBO,CAhB+C,CAiBjE,CAkBA,MAAO,CACLjjC,MAAOA,EACP9K,MApDF,WACEutC,EAAO,KACPC,EAAgB,KAChBC,EAAe,KACXJ,GACFviC,GAEJ,EA8CE+iC,OAAQA,EACRK,SApBF,SAAkBH,GAChB,GAAqB,OAAjBN,EAAyB,OAAOU,IACpC,GAAIV,GAAgB5jD,EAAO,OAAO,EAClC,GAAa,OAAT0jD,EAAiB,OAAOY,IAE5B,IAAIC,GAAiBvkD,EAAM4jD,GAAgBF,EAI3C,MAHyB,iBAAdQ,GAAmD,iBAAlBP,IAC1CY,GAA+C,MAA7BL,EAAYP,IAEzB1jD,KAAKD,IAAI,EAAGukD,EACrB,EAWEb,KATF,WACE,OAAgB,OAATA,EAAgB,EAAIA,CAC7B,EASF,mBC5EAnjE,EAAOC,QAAU6nD,EAEjB,IAAIjrD,EAAK,sBAoBT,SAASirD,IACPjrD,EAAGsB,KAAKlB,KACV,CArBe,EAAQ,MAEvBgnE,CAASnc,EAAQjrD,GACjBirD,EAAOrB,SAAW,EAAQ,OAC1BqB,EAAOpB,SAAW,EAAQ,OAC1BoB,EAAOtB,OAAS,EAAQ,OACxBsB,EAAON,UAAY,EAAQ,OAC3BM,EAAOP,YAAc,EAAQ,OAC7BO,EAAOgF,SAAW,EAAQ,OAC1BhF,EAAOoc,SAAW,EAAQ,OAG1Bpc,EAAOA,OAASA,EAWhBA,EAAOrrD,UAAUywD,KAAO,SAASC,EAAMlqD,GACrC,IAAIsL,EAAStR,KAEb,SAAS+wD,EAAOtG,GACVyF,EAAKtG,WACH,IAAUsG,EAAK9B,MAAM3D,IAAUn5C,EAAOkyB,OACxClyB,EAAOkyB,OAGb,CAIA,SAASqtB,IACHv/C,EAAOq4C,UAAYr4C,EAAO89C,QAC5B99C,EAAO89C,QAEX,CANA99C,EAAO3O,GAAG,OAAQouD,GAQlBb,EAAKvtD,GAAG,QAASkuD,GAIZX,EAAKgX,UAAclhE,IAA2B,IAAhBA,EAAQ2N,MACzCrC,EAAO3O,GAAG,MAAOknD,GACjBv4C,EAAO3O,GAAG,QAASguD,IAGrB,IAAIwW,GAAW,EACf,SAAStd,IACHsd,IACJA,GAAW,EAEXjX,EAAKv8C,MACP,CAGA,SAASg9C,IACHwW,IACJA,GAAW,EAEiB,mBAAjBjX,EAAK1C,SAAwB0C,EAAK1C,UAC/C,CAGA,SAASsD,EAAQlJ,GAEf,GADAwf,IACwC,IAApCxnE,EAAGiC,cAAc7B,KAAM,SACzB,MAAM4nD,CAEV,CAMA,SAASwf,IACP91D,EAAO/O,eAAe,OAAQwuD,GAC9Bb,EAAK3tD,eAAe,QAASsuD,GAE7Bv/C,EAAO/O,eAAe,MAAOsnD,GAC7Bv4C,EAAO/O,eAAe,QAASouD,GAE/Br/C,EAAO/O,eAAe,QAASuuD,GAC/BZ,EAAK3tD,eAAe,QAASuuD,GAE7Bx/C,EAAO/O,eAAe,MAAO6kE,GAC7B91D,EAAO/O,eAAe,QAAS6kE,GAE/BlX,EAAK3tD,eAAe,QAAS6kE,EAC/B,CAUA,OA5BA91D,EAAO3O,GAAG,QAASmuD,GACnBZ,EAAKvtD,GAAG,QAASmuD,GAmBjBx/C,EAAO3O,GAAG,MAAOykE,GACjB91D,EAAO3O,GAAG,QAASykE,GAEnBlX,EAAKvtD,GAAG,QAASykE,GAEjBlX,EAAKpuD,KAAK,OAAQwP,GAGX4+C,CACT,gCCvGA,IAAIpF,EAAS,gBAGTuc,EAAavc,EAAOuc,YAAc,SAAU3c,GAE9C,QADAA,EAAW,GAAKA,IACIA,EAASpjD,eAC3B,IAAK,MAAM,IAAK,OAAO,IAAK,QAAQ,IAAK,QAAQ,IAAK,SAAS,IAAK,SAAS,IAAK,OAAO,IAAK,QAAQ,IAAK,UAAU,IAAK,WAAW,IAAK,MACxI,OAAO,EACT,QACE,OAAO,EAEb,EA0CA,SAAS8jD,EAAcV,GAErB,IAAIyO,EACJ,OAFAn5D,KAAK0qD,SAXP,SAA2BgE,GACzB,IAAI4Y,EA/BN,SAA4B5Y,GAC1B,IAAKA,EAAK,MAAO,OAEjB,IADA,IAAI6Y,IAEF,OAAQ7Y,GACN,IAAK,OACL,IAAK,QACH,MAAO,OACT,IAAK,OACL,IAAK,QACL,IAAK,UACL,IAAK,WACH,MAAO,UACT,IAAK,SACL,IAAK,SACH,MAAO,SACT,IAAK,SACL,IAAK,QACL,IAAK,MACH,OAAOA,EACT,QACE,GAAI6Y,EAAS,OACb7Y,GAAO,GAAKA,GAAKpnD,cACjBigE,GAAU,EAGlB,CAKaC,CAAmB9Y,GAC9B,GAAoB,iBAAT4Y,IAAsBxc,EAAOuc,aAAeA,IAAeA,EAAW3Y,IAAO,MAAM,IAAIlvC,MAAM,qBAAuBkvC,GAC/H,OAAO4Y,GAAQ5Y,CACjB,CAOkB+Y,CAAkB/c,GAE1B1qD,KAAK0qD,UACX,IAAK,UACH1qD,KAAK8iE,KAAO4E,EACZ1nE,KAAK2T,IAAMg0D,EACXxO,EAAK,EACL,MACF,IAAK,OACHn5D,KAAK4nE,SAAWC,EAChB1O,EAAK,EACL,MACF,IAAK,SACHn5D,KAAK8iE,KAAOgF,EACZ9nE,KAAK2T,IAAMo0D,EACX5O,EAAK,EACL,MACF,QAGE,OAFAn5D,KAAKouD,MAAQ4Z,OACbhoE,KAAK2T,IAAMs0D,GAGfjoE,KAAKkoE,SAAW,EAChBloE,KAAKmoE,UAAY,EACjBnoE,KAAKooE,SAAWtd,EAAOiO,YAAYI,EACrC,CAmCA,SAASkP,EAAcC,GACrB,OAAIA,GAAQ,IAAa,EAAWA,GAAQ,GAAM,EAAa,EAAWA,GAAQ,GAAM,GAAa,EAAWA,GAAQ,GAAM,GAAa,EACpIA,GAAQ,GAAM,GAAQ,GAAK,CACpC,CA0DA,SAAST,EAAazO,GACpB,IAAIzK,EAAI3uD,KAAKmoE,UAAYnoE,KAAKkoE,SAC1BK,EAtBN,SAA6Bh8C,EAAM6sC,EAAKzK,GACtC,GAAwB,MAAV,IAATyK,EAAI,IAEP,OADA7sC,EAAK27C,SAAW,EACT,IAET,GAAI37C,EAAK27C,SAAW,GAAK9O,EAAI13D,OAAS,EAAG,CACvC,GAAwB,MAAV,IAAT03D,EAAI,IAEP,OADA7sC,EAAK27C,SAAW,EACT,IAET,GAAI37C,EAAK27C,SAAW,GAAK9O,EAAI13D,OAAS,GACZ,MAAV,IAAT03D,EAAI,IAEP,OADA7sC,EAAK27C,SAAW,EACT,GAGb,CACF,CAKUM,CAAoBxoE,KAAMo5D,GAClC,YAAU52D,IAAN+lE,EAAwBA,EACxBvoE,KAAKkoE,UAAY9O,EAAI13D,QACvB03D,EAAIhS,KAAKpnD,KAAKooE,SAAUzZ,EAAG,EAAG3uD,KAAKkoE,UAC5BloE,KAAKooE,SAAS1iE,SAAS1F,KAAK0qD,SAAU,EAAG1qD,KAAKmoE,aAEvD/O,EAAIhS,KAAKpnD,KAAKooE,SAAUzZ,EAAG,EAAGyK,EAAI13D,aAClC1B,KAAKkoE,UAAY9O,EAAI13D,QACvB,CA0BA,SAASgmE,EAAUtO,EAAK53D,GACtB,IAAK43D,EAAI13D,OAASF,GAAK,GAAM,EAAG,CAC9B,IAAI+mE,EAAInP,EAAI1zD,SAAS,UAAWlE,GAChC,GAAI+mE,EAAG,CACL,IAAIh+D,EAAIg+D,EAAE9iE,WAAW8iE,EAAE7mE,OAAS,GAChC,GAAI6I,GAAK,OAAUA,GAAK,MAKtB,OAJAvK,KAAKkoE,SAAW,EAChBloE,KAAKmoE,UAAY,EACjBnoE,KAAKooE,SAAS,GAAKhP,EAAIA,EAAI13D,OAAS,GACpC1B,KAAKooE,SAAS,GAAKhP,EAAIA,EAAI13D,OAAS,GAC7B6mE,EAAEpnE,MAAM,GAAI,EAEvB,CACA,OAAOonE,CACT,CAIA,OAHAvoE,KAAKkoE,SAAW,EAChBloE,KAAKmoE,UAAY,EACjBnoE,KAAKooE,SAAS,GAAKhP,EAAIA,EAAI13D,OAAS,GAC7B03D,EAAI1zD,SAAS,UAAWlE,EAAG43D,EAAI13D,OAAS,EACjD,CAIA,SAASimE,EAASvO,GAChB,IAAImP,EAAInP,GAAOA,EAAI13D,OAAS1B,KAAKouD,MAAMgL,GAAO,GAC9C,GAAIp5D,KAAKkoE,SAAU,CACjB,IAAIv0D,EAAM3T,KAAKmoE,UAAYnoE,KAAKkoE,SAChC,OAAOK,EAAIvoE,KAAKooE,SAAS1iE,SAAS,UAAW,EAAGiO,EAClD,CACA,OAAO40D,CACT,CAEA,SAAST,EAAW1O,EAAK53D,GACvB,IAAIojB,GAAKw0C,EAAI13D,OAASF,GAAK,EAC3B,OAAU,IAANojB,EAAgBw0C,EAAI1zD,SAAS,SAAUlE,IAC3CxB,KAAKkoE,SAAW,EAAItjD,EACpB5kB,KAAKmoE,UAAY,EACP,IAANvjD,EACF5kB,KAAKooE,SAAS,GAAKhP,EAAIA,EAAI13D,OAAS,IAEpC1B,KAAKooE,SAAS,GAAKhP,EAAIA,EAAI13D,OAAS,GACpC1B,KAAKooE,SAAS,GAAKhP,EAAIA,EAAI13D,OAAS,IAE/B03D,EAAI1zD,SAAS,SAAUlE,EAAG43D,EAAI13D,OAASkjB,GAChD,CAEA,SAASmjD,EAAU3O,GACjB,IAAImP,EAAInP,GAAOA,EAAI13D,OAAS1B,KAAKouD,MAAMgL,GAAO,GAC9C,OAAIp5D,KAAKkoE,SAAiBK,EAAIvoE,KAAKooE,SAAS1iE,SAAS,SAAU,EAAG,EAAI1F,KAAKkoE,UACpEK,CACT,CAGA,SAASP,EAAY5O,GACnB,OAAOA,EAAI1zD,SAAS1F,KAAK0qD,SAC3B,CAEA,SAASud,EAAU7O,GACjB,OAAOA,GAAOA,EAAI13D,OAAS1B,KAAKouD,MAAMgL,GAAO,EAC/C,CA1NAp2D,EAAQ,EAAgBooD,EA6BxBA,EAAc5rD,UAAU4uD,MAAQ,SAAUgL,GACxC,GAAmB,IAAfA,EAAI13D,OAAc,MAAO,GAC7B,IAAI6mE,EACA/mE,EACJ,GAAIxB,KAAKkoE,SAAU,CAEjB,QAAU1lE,KADV+lE,EAAIvoE,KAAK4nE,SAASxO,IACG,MAAO,GAC5B53D,EAAIxB,KAAKkoE,SACTloE,KAAKkoE,SAAW,CAClB,MACE1mE,EAAI,EAEN,OAAIA,EAAI43D,EAAI13D,OAAe6mE,EAAIA,EAAIvoE,KAAK8iE,KAAK1J,EAAK53D,GAAKxB,KAAK8iE,KAAK1J,EAAK53D,GAC/D+mE,GAAK,EACd,EAEAnd,EAAc5rD,UAAUmU,IAwGxB,SAAiBylD,GACf,IAAImP,EAAInP,GAAOA,EAAI13D,OAAS1B,KAAKouD,MAAMgL,GAAO,GAC9C,OAAIp5D,KAAKkoE,SAAiBK,EAAI,IACvBA,CACT,EAzGAnd,EAAc5rD,UAAUsjE,KA0FxB,SAAkB1J,EAAK53D,GACrB,IAAIwmC,EArEN,SAA6Bzb,EAAM6sC,EAAK53D,GACtC,IAAIkB,EAAI02D,EAAI13D,OAAS,EACrB,GAAIgB,EAAIlB,EAAG,OAAO,EAClB,IAAI23D,EAAKkP,EAAcjP,EAAI12D,IAC3B,OAAIy2D,GAAM,GACJA,EAAK,IAAG5sC,EAAK27C,SAAW/O,EAAK,GAC1BA,KAEHz2D,EAAIlB,IAAa,IAAR23D,EAAkB,GACjCA,EAAKkP,EAAcjP,EAAI12D,MACb,GACJy2D,EAAK,IAAG5sC,EAAK27C,SAAW/O,EAAK,GAC1BA,KAEHz2D,EAAIlB,IAAa,IAAR23D,EAAkB,GACjCA,EAAKkP,EAAcjP,EAAI12D,MACb,GACJy2D,EAAK,IACI,IAAPA,EAAUA,EAAK,EAAO5sC,EAAK27C,SAAW/O,EAAK,GAE1CA,GAEF,CACT,CA8CcsP,CAAoBzoE,KAAMo5D,EAAK53D,GAC3C,IAAKxB,KAAKkoE,SAAU,OAAO9O,EAAI1zD,SAAS,OAAQlE,GAChDxB,KAAKmoE,UAAYngC,EACjB,IAAIr0B,EAAMylD,EAAI13D,QAAUsmC,EAAQhoC,KAAKkoE,UAErC,OADA9O,EAAIhS,KAAKpnD,KAAKooE,SAAU,EAAGz0D,GACpBylD,EAAI1zD,SAAS,OAAQlE,EAAGmS,EACjC,EA9FAy3C,EAAc5rD,UAAUooE,SAAW,SAAUxO,GAC3C,GAAIp5D,KAAKkoE,UAAY9O,EAAI13D,OAEvB,OADA03D,EAAIhS,KAAKpnD,KAAKooE,SAAUpoE,KAAKmoE,UAAYnoE,KAAKkoE,SAAU,EAAGloE,KAAKkoE,UACzDloE,KAAKooE,SAAS1iE,SAAS1F,KAAK0qD,SAAU,EAAG1qD,KAAKmoE,WAEvD/O,EAAIhS,KAAKpnD,KAAKooE,SAAUpoE,KAAKmoE,UAAYnoE,KAAKkoE,SAAU,EAAG9O,EAAI13D,QAC/D1B,KAAKkoE,UAAY9O,EAAI13D,MACvB,yBCvIA,IAAI26B,OAA2B,IAAX,EAAA2uB,GAA0B,EAAAA,GACjB,oBAATz+B,MAAwBA,MAChC/T,OACR/V,EAAQotB,SAASrwB,UAAUiD,MAiB/B,SAASimE,EAAQl1C,EAAIm1C,GACnB3oE,KAAK4oE,IAAMp1C,EACXxzB,KAAK6oE,SAAWF,CAClB,CAhBA3lE,EAAQ0pB,WAAa,WACnB,OAAO,IAAIg8C,EAAQjmE,EAAMvB,KAAKwrB,WAAY2P,EAAO/5B,WAAY6pB,aAC/D,EACAnpB,EAAQgrB,YAAc,WACpB,OAAO,IAAI06C,EAAQjmE,EAAMvB,KAAK8sB,YAAaqO,EAAO/5B,WAAYwmE,cAChE,EACA9lE,EAAQmpB,aACRnpB,EAAQ8lE,cAAgB,SAASC,GAC3BA,GACFA,EAAQ92C,OAEZ,EAMAy2C,EAAQlpE,UAAUwpE,MAAQN,EAAQlpE,UAAUmN,IAAM,WAAY,EAC9D+7D,EAAQlpE,UAAUyyB,MAAQ,WACxBjyB,KAAK6oE,SAAS3nE,KAAKm7B,EAAOr8B,KAAK4oE,IACjC,EAGA5lE,EAAQimE,OAAS,SAAS/gE,EAAMghE,GAC9B/8C,aAAajkB,EAAKihE,gBAClBjhE,EAAKkhE,aAAeF,CACtB,EAEAlmE,EAAQqmE,SAAW,SAASnhE,GAC1BikB,aAAajkB,EAAKihE,gBAClBjhE,EAAKkhE,cAAgB,CACvB,EAEApmE,EAAQsmE,aAAetmE,EAAQ40B,OAAS,SAAS1vB,GAC/CikB,aAAajkB,EAAKihE,gBAElB,IAAID,EAAQhhE,EAAKkhE,aACbF,GAAS,IACXhhE,EAAKihE,eAAiBz8C,YAAW,WAC3BxkB,EAAKqhE,YACPrhE,EAAKqhE,YACT,GAAGL,GAEP,EAGA,EAAQ,OAIRlmE,EAAQihE,aAAgC,oBAAT13C,MAAwBA,KAAK03C,mBAClB,IAAX,EAAAjZ,GAA0B,EAAAA,EAAOiZ,cACxCjkE,MAAQA,KAAKikE,aACrCjhE,EAAQ4iE,eAAkC,oBAATr5C,MAAwBA,KAAKq5C,qBAClB,IAAX,EAAA5a,GAA0B,EAAAA,EAAO4a,gBACxC5lE,MAAQA,KAAK4lE,+CCNvC,SAASz1D,EAAQnP,GAEf,IACE,IAAK,EAAAgqD,EAAOwe,aAAc,OAAO,CACnC,CAAE,MAAOt7D,GACP,OAAO,CACT,CACA,IAAI/C,EAAM,EAAA6/C,EAAOwe,aAAaxoE,GAC9B,OAAI,MAAQmK,GACyB,SAA9BP,OAAOO,GAAK7D,aACrB,CA7DAvE,EAAOC,QAoBP,SAAoBnD,EAAI2jB,GACtB,GAAIrT,EAAO,iBACT,OAAOtQ,EAGT,IAAIgjC,GAAS,EAeb,OAdA,WACE,IAAKA,EAAQ,CACX,GAAI1yB,EAAO,oBACT,MAAM,IAAIqP,MAAMgE,GACPrT,EAAO,oBAChBkS,EAAQonD,MAAMjmD,GAEdnB,EAAQ2gB,KAAKxf,GAEfqf,GAAS,CACX,CACA,OAAOhjC,EAAG4C,MAAMzC,KAAMsC,UACxB,CAGF,wBC7CA,WACE,aACAU,EAAQ0mE,SAAW,SAASj/D,GAC1B,MAAe,WAAXA,EAAI,GACCA,EAAI2+C,UAAU,GAEd3+C,CAEX,CAED,GAAEvJ,KAAKlB,8BCVR,WACE,aACA,IAAI2pE,EAASC,EAAUC,EAAaC,EAAeC,EACjDC,EAAU,CAAC,EAAEvqE,eAEfkqE,EAAU,EAAQ,OAElBC,EAAW,kBAEXE,EAAgB,SAASpwC,GACvB,MAAwB,iBAAVA,IAAuBA,EAAMp1B,QAAQ,MAAQ,GAAKo1B,EAAMp1B,QAAQ,MAAQ,GAAKo1B,EAAMp1B,QAAQ,MAAQ,EACnH,EAEAylE,EAAY,SAASrwC,GACnB,MAAO,YAAemwC,EAAYnwC,GAAU,KAC9C,EAEAmwC,EAAc,SAASnwC,GACrB,OAAOA,EAAMnzB,QAAQ,MAAO,kBAC9B,EAEAvD,EAAQinE,QAAU,WAChB,SAASA,EAAQ32D,GACf,IAAI1O,EAAK+H,EAAKvH,EAGd,IAAKR,KAFL5E,KAAKgG,QAAU,CAAC,EAChB2G,EAAMi9D,EAAS,IAERI,EAAQ9oE,KAAKyL,EAAK/H,KACvBQ,EAAQuH,EAAI/H,GACZ5E,KAAKgG,QAAQpB,GAAOQ,GAEtB,IAAKR,KAAO0O,EACL02D,EAAQ9oE,KAAKoS,EAAM1O,KACxBQ,EAAQkO,EAAK1O,GACb5E,KAAKgG,QAAQpB,GAAOQ,EAExB,CAqFA,OAnFA6kE,EAAQzqE,UAAU0qE,YAAc,SAASC,GACvC,IAAIC,EAASC,EAASp8D,EAAQq8D,EAAaC,EASxBjZ,EAsEnB,OA9EA8Y,EAAUpqE,KAAKgG,QAAQokE,QACvBC,EAAUrqE,KAAKgG,QAAQqkE,QACc,IAAhC9qE,OAAO+G,KAAK6jE,GAASzoE,QAAkB1B,KAAKgG,QAAQukE,WAAaX,EAAS,IAAOW,SAEpFJ,EAAUA,EADVI,EAAWhrE,OAAO+G,KAAK6jE,GAAS,IAGhCI,EAAWvqE,KAAKgG,QAAQukE,SAEPjZ,EAiEhBtxD,KAjEHiO,EACS,SAASq+B,EAASjhC,GACvB,IAAIm/D,EAAMlyD,EAAOohB,EAAOxwB,EAAOtE,EAAKQ,EACpC,GAAmB,iBAARiG,EACLimD,EAAMtrD,QAAQ+4D,OAAS+K,EAAcz+D,GACvCihC,EAAQl4B,IAAI21D,EAAU1+D,IAEtBihC,EAAQm+B,IAAIp/D,QAET,GAAIzJ,MAAM+C,QAAQ0G,IACvB,IAAKnC,KAASmC,EACZ,GAAK2+D,EAAQ9oE,KAAKmK,EAAKnC,GAEvB,IAAKtE,KADL0T,EAAQjN,EAAInC,GAEVwwB,EAAQphB,EAAM1T,GACd0nC,EAAUr+B,EAAOq+B,EAAQo+B,IAAI9lE,GAAM80B,GAAOixC,UAI9C,IAAK/lE,KAAOyG,EACV,GAAK2+D,EAAQ9oE,KAAKmK,EAAKzG,GAEvB,GADA0T,EAAQjN,EAAIzG,GACRA,IAAQwlE,GACV,GAAqB,iBAAV9xD,EACT,IAAKkyD,KAAQlyD,EACXlT,EAAQkT,EAAMkyD,GACdl+B,EAAUA,EAAQs+B,IAAIJ,EAAMplE,QAG3B,GAAIR,IAAQylE,EAEf/9B,EADEglB,EAAMtrD,QAAQ+4D,OAAS+K,EAAcxxD,GAC7Bg0B,EAAQl4B,IAAI21D,EAAUzxD,IAEtBg0B,EAAQm+B,IAAInyD,QAEnB,GAAI1W,MAAM+C,QAAQ2T,GACvB,IAAKpP,KAASoP,EACP0xD,EAAQ9oE,KAAKoX,EAAOpP,KAIrBojC,EAFiB,iBADrB5S,EAAQphB,EAAMpP,IAERooD,EAAMtrD,QAAQ+4D,OAAS+K,EAAcpwC,GAC7B4S,EAAQo+B,IAAI9lE,GAAKwP,IAAI21D,EAAUrwC,IAAQixC,KAEvCr+B,EAAQo+B,IAAI9lE,EAAK80B,GAAOixC,KAG1B18D,EAAOq+B,EAAQo+B,IAAI9lE,GAAM80B,GAAOixC,UAGpB,iBAAVryD,EAChBg0B,EAAUr+B,EAAOq+B,EAAQo+B,IAAI9lE,GAAM0T,GAAOqyD,KAErB,iBAAVryD,GAAsBg5C,EAAMtrD,QAAQ+4D,OAAS+K,EAAcxxD,GACpEg0B,EAAUA,EAAQo+B,IAAI9lE,GAAKwP,IAAI21D,EAAUzxD,IAAQqyD,MAEpC,MAATryD,IACFA,EAAQ,IAEVg0B,EAAUA,EAAQo+B,IAAI9lE,EAAK0T,EAAM5S,YAAYilE,MAKrD,OAAOr+B,CACT,EAEFg+B,EAAcX,EAAQ/oE,OAAO2pE,EAAUvqE,KAAKgG,QAAQ6kE,OAAQ7qE,KAAKgG,QAAQm5D,QAAS,CAChF2L,SAAU9qE,KAAKgG,QAAQ8kE,SACvBC,oBAAqB/qE,KAAKgG,QAAQ+kE,sBAE7B98D,EAAOq8D,EAAaH,GAASx2D,IAAI3T,KAAKgG,QAAQglE,WACvD,EAEOf,CAER,CAtGiB,EAwGnB,GAAE/oE,KAAKlB,4BC7HR,WACEgD,EAAQ4mE,SAAW,CACjB,GAAO,CACLqB,iBAAiB,EACjB7jE,MAAM,EACN27D,WAAW,EACXmI,eAAe,EACfd,QAAS,IACTC,QAAS,IACTc,eAAe,EACfC,aAAa,EACbC,YAAY,EACZhoB,cAAc,EACdioB,UAAW,KACXzO,OAAO,EACP0O,kBAAkB,EAClBC,SAAU,KACVC,iBAAiB,EACjBC,mBAAmB,EACnB9xC,OAAO,EACP3zB,QAAQ,EACR0lE,mBAAoB,KACpBC,oBAAqB,KACrBC,kBAAmB,KACnBC,gBAAiB,KACjBC,SAAU,IAEZ,GAAO,CACLd,iBAAiB,EACjB7jE,MAAM,EACN27D,WAAW,EACXmI,eAAe,EACfd,QAAS,IACTC,QAAS,IACTc,eAAe,EACfC,aAAa,EACbC,YAAY,EACZhoB,cAAc,EACdioB,UAAW,KACXzO,OAAO,EACP0O,kBAAkB,EAClBS,uBAAuB,EACvBR,SAAU,KACVC,iBAAiB,EACjBC,mBAAmB,EACnB9xC,OAAO,EACP3zB,QAAQ,EACR0lE,mBAAoB,KACpBC,oBAAqB,KACrBC,kBAAmB,KACnBC,gBAAiB,KACjBvB,SAAU,OACVM,OAAQ,CACN,QAAW,MACX,SAAY,QACZ,YAAc,GAEhB1L,QAAS,KACT6L,WAAY,CACV,QAAU,EACV,OAAU,KACV,QAAW,MAEbF,UAAU,EACVmB,UAAW,IACXF,SAAU,GACVhN,OAAO,GAIZ,GAAE79D,KAAKlB,8BCtER,WACE,aACA,IAAIksE,EAAKtC,EAAU5kE,EAAgBjE,EAAQorE,EAASC,EAAaC,EAAY/Q,EAAK2I,EAChFhjD,EAAO,SAASphB,EAAIqiE,GAAK,OAAO,WAAY,OAAOriE,EAAG4C,MAAMy/D,EAAI5/D,UAAY,CAAG,EAE/E0nE,EAAU,CAAC,EAAEvqE,eAEf67D,EAAM,EAAQ,OAEdv6D,EAAS,EAAQ,OAEjBmrE,EAAM,EAAQ,OAEdG,EAAa,EAAQ,OAErBpI,EAAe,sBAEf2F,EAAW,kBAEXuC,EAAU,SAASnjB,GACjB,MAAwB,iBAAVA,GAAgC,MAATA,GAAgD,IAA9BzpD,OAAO+G,KAAK0iD,GAAOtnD,MAC5E,EAEA0qE,EAAc,SAASC,EAAYnkE,EAAMtD,GACvC,IAAIpD,EAAGa,EACP,IAAKb,EAAI,EAAGa,EAAMgqE,EAAW3qE,OAAQF,EAAIa,EAAKb,IAE5C0G,GADA8hD,EAAUqiB,EAAW7qE,IACN0G,EAAMtD,GAEvB,OAAOsD,CACT,EAEAlD,EAAiB,SAASqG,EAAKzG,EAAKQ,GAClC,IAAIP,EAMJ,OALAA,EAAatF,OAAOqB,OAAO,OAChBwE,MAAQA,EACnBP,EAAW+kD,UAAW,EACtB/kD,EAAWE,YAAa,EACxBF,EAAWqhB,cAAe,EACnB3mB,OAAOyF,eAAeqG,EAAKzG,EAAKC,EACzC,EAEA7B,EAAQogD,OAAS,SAAUqF,GAGzB,SAASrF,EAAO9vC,GAMd,IAAI1O,EAAK+H,EAAKvH,EACd,GANApF,KAAKsjD,mBAAqBriC,EAAKjhB,KAAKsjD,mBAAoBtjD,MACxDA,KAAKssE,YAAcrrD,EAAKjhB,KAAKssE,YAAatsE,MAC1CA,KAAK24B,MAAQ1X,EAAKjhB,KAAK24B,MAAO34B,MAC9BA,KAAKusE,aAAetrD,EAAKjhB,KAAKusE,aAAcvsE,MAC5CA,KAAKwsE,aAAevrD,EAAKjhB,KAAKwsE,aAAcxsE,QAEtCA,gBAAgBgD,EAAQogD,QAC5B,OAAO,IAAIpgD,EAAQogD,OAAO9vC,GAI5B,IAAK1O,KAFL5E,KAAKgG,QAAU,CAAC,EAChB2G,EAAMi9D,EAAS,IAERI,EAAQ9oE,KAAKyL,EAAK/H,KACvBQ,EAAQuH,EAAI/H,GACZ5E,KAAKgG,QAAQpB,GAAOQ,GAEtB,IAAKR,KAAO0O,EACL02D,EAAQ9oE,KAAKoS,EAAM1O,KACxBQ,EAAQkO,EAAK1O,GACb5E,KAAKgG,QAAQpB,GAAOQ,GAElBpF,KAAKgG,QAAQ62D,QACf78D,KAAKgG,QAAQymE,SAAWzsE,KAAKgG,QAAQokE,QAAU,MAE7CpqE,KAAKgG,QAAQklE,gBACVlrE,KAAKgG,QAAQ6lE,oBAChB7rE,KAAKgG,QAAQ6lE,kBAAoB,IAEnC7rE,KAAKgG,QAAQ6lE,kBAAkBp/D,QAAQ4/D,EAAWtJ,YAEpD/iE,KAAK24B,OACP,CA4RA,OArWS,SAASrgB,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAuCzR4K,CAAOg5C,EAAQqF,GAoCfrF,EAAO5jD,UAAUgtE,aAAe,WAC9B,IAAI/hB,EAAO//C,EACX,IACE,OAAI1K,KAAK4sE,UAAUlrE,QAAU1B,KAAKgG,QAAQimE,WACxCxhB,EAAQzqD,KAAK4sE,UACb5sE,KAAK4sE,UAAY,GACjB5sE,KAAK6sE,UAAY7sE,KAAK6sE,UAAUze,MAAM3D,GAC/BzqD,KAAK6sE,UAAU56C,UAEtBw4B,EAAQzqD,KAAK4sE,UAAU15D,OAAO,EAAGlT,KAAKgG,QAAQimE,WAC9CjsE,KAAK4sE,UAAY5sE,KAAK4sE,UAAU15D,OAAOlT,KAAKgG,QAAQimE,UAAWjsE,KAAK4sE,UAAUlrE,QAC9E1B,KAAK6sE,UAAY7sE,KAAK6sE,UAAUze,MAAM3D,GAC/BwZ,EAAajkE,KAAKwsE,cAE7B,CAAE,MAAOM,GAEP,GADApiE,EAAMoiE,GACD9sE,KAAK6sE,UAAUE,UAElB,OADA/sE,KAAK6sE,UAAUE,WAAY,EACpB/sE,KAAK8B,KAAK4I,EAErB,CACF,EAEA04C,EAAO5jD,UAAU+sE,aAAe,SAASlhE,EAAKzG,EAAKqD,GACjD,OAAMrD,KAAOyG,GAOLA,EAAIzG,aAAgBhD,OACxBoD,EAAeqG,EAAKzG,EAAK,CAACyG,EAAIzG,KAEzByG,EAAIzG,GAAKpE,KAAKyH,IAThBjI,KAAKgG,QAAQmlE,cAGTnmE,EAAeqG,EAAKzG,EAAK,CAACqD,IAF1BjD,EAAeqG,EAAKzG,EAAKqD,EAUtC,EAEAm7C,EAAO5jD,UAAUm5B,MAAQ,WACvB,IAAIyxC,EAASC,EAAS2C,EAAQp8D,EAQK0gD,EA8KnC,OArLAtxD,KAAK4C,qBACL5C,KAAK6sE,UAAYvR,EAAInY,OAAOnjD,KAAKgG,QAAQC,OAAQ,CAC/CmB,MAAM,EACN27D,WAAW,EACXlG,MAAO78D,KAAKgG,QAAQ62D,QAEtB78D,KAAK6sE,UAAUE,WAAY,EAC3B/sE,KAAK6sE,UAAU/b,SAAoBQ,EAQhCtxD,KAPM,SAASuf,GAEd,GADA+xC,EAAMub,UAAUzd,UACXkC,EAAMub,UAAUE,UAEnB,OADAzb,EAAMub,UAAUE,WAAY,EACrBzb,EAAMxvD,KAAK,QAASyd,EAE/B,GAEFvf,KAAK6sE,UAAUhjB,MAAQ,SAAUyH,GAC/B,OAAO,WACL,IAAKA,EAAMub,UAAU9iB,MAEnB,OADAuH,EAAMub,UAAU9iB,OAAQ,EACjBuH,EAAMxvD,KAAK,MAAOwvD,EAAM2b,aAEnC,CACD,CAPsB,CAOpBjtE,MACHA,KAAK6sE,UAAU9iB,OAAQ,EACvB/pD,KAAKktE,iBAAmBltE,KAAKgG,QAAQilE,gBACrCjrE,KAAKitE,aAAe,KACpBr8D,EAAQ,GACRw5D,EAAUpqE,KAAKgG,QAAQokE,QACvBC,EAAUrqE,KAAKgG,QAAQqkE,QACvBrqE,KAAK6sE,UAAUM,UAAY,SAAU7b,GACnC,OAAO,SAASv7B,GACd,IAAInxB,EAAKqD,EAAUoD,EAAK+hE,EAAczgE,EAGtC,IAFAtB,EAAM,CAAC,GACHg/D,GAAW,IACV/Y,EAAMtrD,QAAQolE,YAEjB,IAAKxmE,KADL+H,EAAMopB,EAAKmG,WAEJ8tC,EAAQ9oE,KAAKyL,EAAK/H,KACjBwlE,KAAW/+D,GAASimD,EAAMtrD,QAAQqlE,aACtChgE,EAAI++D,GAAW,CAAC,GAElBniE,EAAWqpD,EAAMtrD,QAAQ4lE,oBAAsBQ,EAAY9a,EAAMtrD,QAAQ4lE,oBAAqB71C,EAAKmG,WAAWt3B,GAAMA,GAAOmxB,EAAKmG,WAAWt3B,GAC3IwoE,EAAe9b,EAAMtrD,QAAQ2lE,mBAAqBS,EAAY9a,EAAMtrD,QAAQ2lE,mBAAoB/mE,GAAOA,EACnG0sD,EAAMtrD,QAAQqlE,WAChB/Z,EAAMib,aAAalhE,EAAK+hE,EAAcnlE,GAEtCjD,EAAeqG,EAAI++D,GAAUgD,EAAcnlE,IAWjD,OAPAoD,EAAI,SAAWimD,EAAMtrD,QAAQ6lE,kBAAoBO,EAAY9a,EAAMtrD,QAAQ6lE,kBAAmB91C,EAAK/0B,MAAQ+0B,EAAK/0B,KAC5GswD,EAAMtrD,QAAQ62D,QAChBxxD,EAAIimD,EAAMtrD,QAAQymE,UAAY,CAC5BpJ,IAAKttC,EAAKstC,IACVH,MAAOntC,EAAKmtC,QAGTtyD,EAAMpQ,KAAK6K,EACpB,CACD,CA9B0B,CA8BxBrL,MACHA,KAAK6sE,UAAUQ,WAAa,SAAU/b,GACpC,OAAO,WACL,IAAIyN,EAAOuO,EAAU1oE,EAAKmxB,EAAMw3C,EAAUliE,EAAKmiE,EAAUC,EAAK5U,EAAG6U,EAqDjE,GApDAriE,EAAMuF,EAAMC,MACZ08D,EAAWliE,EAAI,SACVimD,EAAMtrD,QAAQulE,kBAAqBja,EAAMtrD,QAAQgmE,8BAC7C3gE,EAAI,UAEK,IAAdA,EAAI0zD,QACNA,EAAQ1zD,EAAI0zD,aACL1zD,EAAI0zD,OAEblG,EAAIjoD,EAAMA,EAAMlP,OAAS,GACrB2J,EAAIg/D,GAASpmE,MAAM,WAAa86D,GAClCuO,EAAWjiE,EAAIg/D,UACRh/D,EAAIg/D,KAEP/Y,EAAMtrD,QAAQoB,OAChBiE,EAAIg/D,GAAWh/D,EAAIg/D,GAASjjE,QAE1BkqD,EAAMtrD,QAAQ+8D,YAChB13D,EAAIg/D,GAAWh/D,EAAIg/D,GAAS9jE,QAAQ,UAAW,KAAKa,QAEtDiE,EAAIg/D,GAAW/Y,EAAMtrD,QAAQ8lE,gBAAkBM,EAAY9a,EAAMtrD,QAAQ8lE,gBAAiBzgE,EAAIg/D,GAAUkD,GAAYliE,EAAIg/D,GACxF,IAA5B9qE,OAAO+G,KAAK+E,GAAK3J,QAAgB2oE,KAAWh/D,IAAQimD,EAAM4b,mBAC5D7hE,EAAMA,EAAIg/D,KAGV8B,EAAQ9gE,KAERA,EADoC,mBAA3BimD,EAAMtrD,QAAQ+lE,SACjBza,EAAMtrD,QAAQ+lE,WAEa,KAA3Bza,EAAMtrD,QAAQ+lE,SAAkBza,EAAMtrD,QAAQ+lE,SAAWuB,GAGpC,MAA3Bhc,EAAMtrD,QAAQslE,YAChBoC,EAAQ,IAAO,WACb,IAAIlsE,EAAGa,EAAK+3B,EAEZ,IADAA,EAAU,GACL54B,EAAI,EAAGa,EAAMuO,EAAMlP,OAAQF,EAAIa,EAAKb,IACvCu0B,EAAOnlB,EAAMpP,GACb44B,EAAQ55B,KAAKu1B,EAAK,UAEpB,OAAOqE,CACR,CARa,GAQR/4B,OAAOksE,GAAU5pE,KAAK,KAC5B,WACE,IAAI+G,EACJ,IACE,OAAOW,EAAMimD,EAAMtrD,QAAQslE,UAAUoC,EAAO7U,GAAKA,EAAE0U,GAAWliE,EAChE,CAAE,MAAOyhE,GAEP,OADApiE,EAAMoiE,EACCxb,EAAMxvD,KAAK,QAAS4I,EAC7B,CACD,CARD,IAUE4mD,EAAMtrD,QAAQulE,mBAAqBja,EAAMtrD,QAAQqlE,YAA6B,iBAARhgE,EACxE,GAAKimD,EAAMtrD,QAAQgmE,uBAcZ,GAAInT,EAAG,CAGZ,IAAKj0D,KAFLi0D,EAAEvH,EAAMtrD,QAAQwlE,UAAY3S,EAAEvH,EAAMtrD,QAAQwlE,WAAa,GACzDgC,EAAW,CAAC,EACAniE,EACL2+D,EAAQ9oE,KAAKmK,EAAKzG,IACvBI,EAAewoE,EAAU5oE,EAAKyG,EAAIzG,IAEpCi0D,EAAEvH,EAAMtrD,QAAQwlE,UAAUhrE,KAAKgtE,UACxBniE,EAAI,SACqB,IAA5B9L,OAAO+G,KAAK+E,GAAK3J,QAAgB2oE,KAAWh/D,IAAQimD,EAAM4b,mBAC5D7hE,EAAMA,EAAIg/D,GAEd,OAzBEt0C,EAAO,CAAC,EACJu7B,EAAMtrD,QAAQokE,WAAW/+D,IAC3B0qB,EAAKu7B,EAAMtrD,QAAQokE,SAAW/+D,EAAIimD,EAAMtrD,QAAQokE,gBACzC/+D,EAAIimD,EAAMtrD,QAAQokE,WAEtB9Y,EAAMtrD,QAAQylE,iBAAmBna,EAAMtrD,QAAQqkE,WAAWh/D,IAC7D0qB,EAAKu7B,EAAMtrD,QAAQqkE,SAAWh/D,EAAIimD,EAAMtrD,QAAQqkE,gBACzCh/D,EAAIimD,EAAMtrD,QAAQqkE,UAEvB9qE,OAAOimD,oBAAoBn6C,GAAK3J,OAAS,IAC3Cq0B,EAAKu7B,EAAMtrD,QAAQwlE,UAAYngE,GAEjCA,EAAM0qB,EAeV,OAAInlB,EAAMlP,OAAS,EACV4vD,EAAMib,aAAa1T,EAAG0U,EAAUliE,IAEnCimD,EAAMtrD,QAAQq9C,eAChBoqB,EAAMpiE,EAENrG,EADAqG,EAAM,CAAC,EACakiE,EAAUE,IAEhCnc,EAAM2b,aAAe5hE,EACrBimD,EAAMub,UAAU9iB,OAAQ,EACjBuH,EAAMxvD,KAAK,MAAOwvD,EAAM2b,cAEnC,CACD,CAjG2B,CAiGzBjtE,MACHgtE,EAAS,SAAU1b,GACjB,OAAO,SAASwR,GACd,IAAI6K,EAAW9U,EAEf,GADAA,EAAIjoD,EAAMA,EAAMlP,OAAS,GAcvB,OAZAm3D,EAAEwR,IAAYvH,EACVxR,EAAMtrD,QAAQulE,kBAAoBja,EAAMtrD,QAAQgmE,uBAAyB1a,EAAMtrD,QAAQylE,kBAAoBna,EAAMtrD,QAAQ0lE,mBAAyD,KAApC5I,EAAKv8D,QAAQ,OAAQ,IAAIa,UACzKyxD,EAAEvH,EAAMtrD,QAAQwlE,UAAY3S,EAAEvH,EAAMtrD,QAAQwlE,WAAa,IACzDmC,EAAY,CACV,QAAS,aAEDtD,GAAWvH,EACjBxR,EAAMtrD,QAAQ+8D,YAChB4K,EAAUtD,GAAWsD,EAAUtD,GAAS9jE,QAAQ,UAAW,KAAKa,QAElEyxD,EAAEvH,EAAMtrD,QAAQwlE,UAAUhrE,KAAKmtE,IAE1B9U,CAEX,CACD,CApBQ,CAoBN74D,MACHA,KAAK6sE,UAAUG,OAASA,EACjBhtE,KAAK6sE,UAAUe,QACb,SAAS9K,GACd,IAAIjK,EAEJ,GADAA,EAAImU,EAAOlK,GAET,OAAOjK,EAAEkG,OAAQ,CAErB,CAEJ,EAEA3b,EAAO5jD,UAAU8sE,YAAc,SAAS7hE,EAAKuV,GAC3C,IAAItV,EACO,MAANsV,GAA6B,mBAAPA,IACzBhgB,KAAK2C,GAAG,OAAO,SAAS+B,GAEtB,OADA1E,KAAK24B,QACE3Y,EAAG,KAAMtb,EAClB,IACA1E,KAAK2C,GAAG,SAAS,SAAS+H,GAExB,OADA1K,KAAK24B,QACE3Y,EAAGtV,EACZ,KAEF,IAEE,MAAmB,MADnBD,EAAMA,EAAI/E,YACF0B,QACNpH,KAAK8B,KAAK,MAAO,OACV,IAET2I,EAAMyhE,EAAIxC,SAASj/D,GACfzK,KAAKgG,QAAQ4zB,OACf55B,KAAK4sE,UAAYniE,EACjBw5D,EAAajkE,KAAKwsE,cACXxsE,KAAK6sE,WAEP7sE,KAAK6sE,UAAUze,MAAM3jD,GAAKwnB,QACnC,CAAE,MAAO66C,GAEP,GADApiE,EAAMoiE,GACA9sE,KAAK6sE,UAAUE,YAAa/sE,KAAK6sE,UAAU9iB,MAE/C,OADA/pD,KAAK8B,KAAK,QAAS4I,GACZ1K,KAAK6sE,UAAUE,WAAY,EAC7B,GAAI/sE,KAAK6sE,UAAU9iB,MACxB,MAAMr/C,CAEV,CACF,EAEA04C,EAAO5jD,UAAU8jD,mBAAqB,SAAS74C,GAC7C,OAAO,IAAImc,SAAkB0qC,EAU1BtxD,KATM,SAAS+V,EAASuN,GACvB,OAAOguC,EAAMgb,YAAY7hE,GAAK,SAASC,EAAKtF,GAC1C,OAAIsF,EACK4Y,EAAO5Y,GAEPqL,EAAQ3Q,EAEnB,GACF,IATiB,IAAUksD,CAW/B,EAEOlO,CAER,CAjUgB,CAiUdriD,GAEHiC,EAAQspE,YAAc,SAAS7hE,EAAK9D,EAAGC,GACrC,IAAIoZ,EAAIha,EAeR,OAdS,MAALY,GACe,mBAANA,IACToZ,EAAKpZ,GAEU,iBAAND,IACTX,EAAUW,KAGK,mBAANA,IACTqZ,EAAKrZ,GAEPX,EAAU,CAAC,GAEJ,IAAIhD,EAAQogD,OAAOp9C,GACdsmE,YAAY7hE,EAAKuV,EACjC,EAEAhd,EAAQsgD,mBAAqB,SAAS74C,EAAK9D,GACzC,IAAIX,EAKJ,MAJiB,iBAANW,IACTX,EAAUW,GAEH,IAAI3D,EAAQogD,OAAOp9C,GACds9C,mBAAmB74C,EACnC,CAED,GAAEvJ,KAAKlB,4BCzYR,WACE,aACA,IAAI6tE,EAEJA,EAAc,IAAIxqE,OAAO,iBAEzBL,EAAQ+/D,UAAY,SAASt4D,GAC3B,OAAOA,EAAInD,aACb,EAEAtE,EAAQ8qE,mBAAqB,SAASrjE,GACpC,OAAOA,EAAIkG,OAAO,GAAGrJ,cAAgBmD,EAAItJ,MAAM,EACjD,EAEA6B,EAAQ+qE,YAAc,SAAStjE,GAC7B,OAAOA,EAAIlE,QAAQsnE,EAAa,GAClC,EAEA7qE,EAAQkE,aAAe,SAASuD,GAI9B,OAHKtD,MAAMsD,KACTA,EAAMA,EAAM,GAAM,EAAIw9B,SAASx9B,EAAK,IAAMujE,WAAWvjE,IAEhDA,CACT,EAEAzH,EAAQqE,cAAgB,SAASoD,GAI/B,MAHI,oBAAoBtC,KAAKsC,KAC3BA,EAA4B,SAAtBA,EAAInD,eAELmD,CACT,CAED,GAAEvJ,KAAKlB,8BChCR,WACE,aACA,IAAI2pE,EAASC,EAAUzmB,EAAQkpB,EAE7BrC,EAAU,CAAC,EAAEvqE,eAEfmqE,EAAW,EAAQ,OAEnBD,EAAU,EAAQ,OAElBxmB,EAAS,EAAQ,OAEjBkpB,EAAa,EAAQ,OAErBrpE,EAAQ4mE,SAAWA,EAASA,SAE5B5mE,EAAQqpE,WAAaA,EAErBrpE,EAAQirE,gBAAkB,SAAUxlB,GAGlC,SAASwlB,EAAgB3uD,GACvBtf,KAAKsf,QAAUA,CACjB,CAEA,OAtBS,SAAShH,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAgBzR4K,CAAO6jE,EAQNzuD,OAFMyuD,CAER,CATyB,GAW1BjrE,EAAQinE,QAAUN,EAAQM,QAE1BjnE,EAAQogD,OAASD,EAAOC,OAExBpgD,EAAQspE,YAAcnpB,EAAOmpB,YAE7BtpE,EAAQsgD,mBAAqBH,EAAOG,kBAErC,GAAEpiD,KAAKlB,0BCrCR,WACE+C,EAAOC,QAAU,CACfkrE,aAAc,EACdC,UAAW,EACXC,UAAW,EACXC,SAAU,EACVC,YAAa,GACbC,uBAAwB,GAG3B,GAAErtE,KAAKlB,0BCVR,WACE+C,EAAOC,QAAU,CACfwrE,QAAS,EACTC,UAAW,EACXC,KAAM,EACNC,MAAO,EACPC,gBAAiB,EACjBC,kBAAmB,EACnBC,sBAAuB,EACvBC,QAAS,EACTC,SAAU,EACVC,QAAS,GACTC,iBAAkB,GAClBC,oBAAqB,GACrBC,YAAa,IACbC,IAAK,IACLC,qBAAsB,IACtBC,mBAAoB,IACpBC,MAAO,IAGV,GAAEtuE,KAAKlB,0BCrBR,WACE,IAAIwkD,EAAQirB,EAAU9qE,EAASwnE,EAASuD,EAAY9xD,EAAU+xD,EAC5DxuE,EAAQ,GAAGA,MACX6oE,EAAU,CAAC,EAAEvqE,eAEf+kD,EAAS,WACP,IAAIhjD,EAAGoD,EAAKvC,EAAKiP,EAAQs+D,EAASn5D,EAElC,GADAA,EAASnU,UAAU,GAAIstE,EAAU,GAAKttE,UAAUZ,OAASP,EAAMD,KAAKoB,UAAW,GAAK,GAChFotE,EAAWnwE,OAAOilD,QACpBjlD,OAAOilD,OAAO/hD,MAAM,KAAMH,gBAE1B,IAAKd,EAAI,EAAGa,EAAMutE,EAAQluE,OAAQF,EAAIa,EAAKb,IAEzC,GAAc,OADd8P,EAASs+D,EAAQpuE,IAEf,IAAKoD,KAAO0M,EACL04D,EAAQ9oE,KAAKoQ,EAAQ1M,KAC1B6R,EAAO7R,GAAO0M,EAAO1M,IAK7B,OAAO6R,CACT,EAEAi5D,EAAa,SAASvkE,GACpB,QAASA,GAA+C,sBAAxC5L,OAAOC,UAAUkG,SAASxE,KAAKiK,EACjD,EAEAyS,EAAW,SAASzS,GAClB,IAAIwB,EACJ,QAASxB,IAA+B,aAAtBwB,SAAaxB,IAA+B,WAARwB,EACxD,EAEAhI,EAAU,SAASwG,GACjB,OAAIukE,EAAW9tE,MAAM+C,SACZ/C,MAAM+C,QAAQwG,GAE0B,mBAAxC5L,OAAOC,UAAUkG,SAASxE,KAAKiK,EAE1C,EAEAghE,EAAU,SAAShhE,GACjB,IAAIvG,EACJ,GAAID,EAAQwG,GACV,OAAQA,EAAIzJ,OAEZ,IAAKkD,KAAOuG,EACV,GAAK6+D,EAAQ9oE,KAAKiK,EAAKvG,GACvB,OAAO,EAET,OAAO,CAEX,EAEA+qE,EAAgB,SAASxkE,GACvB,IAAIuhE,EAAMmD,EACV,OAAOjyD,EAASzS,KAAS0kE,EAAQtwE,OAAOioD,eAAer8C,MAAUuhE,EAAOmD,EAAMtrD,cAAiC,mBAATmoD,GAAyBA,aAAgBA,GAAU78C,SAASrwB,UAAUkG,SAASxE,KAAKwrE,KAAU78C,SAASrwB,UAAUkG,SAASxE,KAAK3B,OACvO,EAEAkwE,EAAW,SAASpkE,GAClB,OAAIqkE,EAAWrkE,EAAIykE,SACVzkE,EAAIykE,UAEJzkE,CAEX,EAEAtI,EAAOC,QAAQwhD,OAASA,EAExBzhD,EAAOC,QAAQ0sE,WAAaA,EAE5B3sE,EAAOC,QAAQ4a,SAAWA,EAE1B7a,EAAOC,QAAQ2B,QAAUA,EAEzB5B,EAAOC,QAAQmpE,QAAUA,EAEzBppE,EAAOC,QAAQ2sE,cAAgBA,EAE/B5sE,EAAOC,QAAQysE,SAAWA,CAE3B,GAAEvuE,KAAKlB,0BCjFR,WACE+C,EAAOC,QAAU,CACf+sE,KAAM,EACNC,QAAS,EACTC,UAAW,EACXC,SAAU,EAGb,GAAEhvE,KAAKlB,8BCRR,WACE,IAAImwE,EAEJA,EAAW,EAAQ,OAET,EAAQ,OAElBptE,EAAOC,QAAyB,WAC9B,SAASotE,EAAa1jE,EAAQ1L,EAAMoE,GAMlC,GALApF,KAAK0M,OAASA,EACV1M,KAAK0M,SACP1M,KAAKgG,QAAUhG,KAAK0M,OAAO1G,QAC3BhG,KAAK8I,UAAY9I,KAAK0M,OAAO5D,WAEnB,MAAR9H,EACF,MAAM,IAAIwe,MAAM,2BAA6Bxf,KAAKqwE,UAAUrvE,IAE9DhB,KAAKgB,KAAOhB,KAAK8I,UAAU9H,KAAKA,GAChChB,KAAKoF,MAAQpF,KAAK8I,UAAUwnE,SAASlrE,GACrCpF,KAAK+N,KAAOoiE,EAAS1B,UACrBzuE,KAAKuwE,MAAO,EACZvwE,KAAKwwE,eAAiB,IACxB,CAgFA,OA9EAjxE,OAAOyF,eAAeorE,EAAa5wE,UAAW,WAAY,CACxD2mB,IAAK,WACH,OAAOnmB,KAAK+N,IACd,IAGFxO,OAAOyF,eAAeorE,EAAa5wE,UAAW,eAAgB,CAC5D2mB,IAAK,WACH,OAAOnmB,KAAK0M,MACd,IAGFnN,OAAOyF,eAAeorE,EAAa5wE,UAAW,cAAe,CAC3D2mB,IAAK,WACH,OAAOnmB,KAAKoF,KACd,EACAmzB,IAAK,SAASnzB,GACZ,OAAOpF,KAAKoF,MAAQA,GAAS,EAC/B,IAGF7F,OAAOyF,eAAeorE,EAAa5wE,UAAW,eAAgB,CAC5D2mB,IAAK,WACH,MAAO,EACT,IAGF5mB,OAAOyF,eAAeorE,EAAa5wE,UAAW,SAAU,CACtD2mB,IAAK,WACH,MAAO,EACT,IAGF5mB,OAAOyF,eAAeorE,EAAa5wE,UAAW,YAAa,CACzD2mB,IAAK,WACH,OAAOnmB,KAAKgB,IACd,IAGFzB,OAAOyF,eAAeorE,EAAa5wE,UAAW,YAAa,CACzD2mB,IAAK,WACH,OAAO,CACT,IAGFiqD,EAAa5wE,UAAUqM,MAAQ,WAC7B,OAAOtM,OAAOqB,OAAOZ,KACvB,EAEAowE,EAAa5wE,UAAUkG,SAAW,SAASM,GACzC,OAAOhG,KAAKgG,QAAQyqE,OAAOr0C,UAAUp8B,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GAC/E,EAEAoqE,EAAa5wE,UAAU6wE,UAAY,SAASrvE,GAE1C,OAAY,OADZA,EAAOA,GAAQhB,KAAKgB,MAEX,YAAchB,KAAK0M,OAAO1L,KAAO,IAEjC,eAAiBA,EAAO,eAAiBhB,KAAK0M,OAAO1L,KAAO,GAEvE,EAEAovE,EAAa5wE,UAAUmxE,YAAc,SAAS56C,GAC5C,OAAIA,EAAK66C,eAAiB5wE,KAAK4wE,cAG3B76C,EAAKr2B,SAAWM,KAAKN,QAGrBq2B,EAAK86C,YAAc7wE,KAAK6wE,WAGxB96C,EAAK3wB,QAAUpF,KAAKoF,KAI1B,EAEOgrE,CAER,CAjG+B,EAmGjC,GAAElvE,KAAKlB,8BC1GR,WACE,IAAImwE,EAAoBW,EAEtB9G,EAAU,CAAC,EAAEvqE,eAEf0wE,EAAW,EAAQ,OAEnBW,EAAmB,EAAQ,OAE3B/tE,EAAOC,QAAqB,SAAUylD,GAGpC,SAASsoB,EAASrkE,EAAQo2D,GAExB,GADAiO,EAASpE,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAC9B,MAARo2D,EACF,MAAM,IAAItjD,MAAM,uBAAyBxf,KAAKqwE,aAEhDrwE,KAAKgB,KAAO,iBACZhB,KAAK+N,KAAOoiE,EAASxB,MACrB3uE,KAAKoF,MAAQpF,KAAK8I,UAAUi2D,MAAM+D,EACpC,CAUA,OA5BS,SAASxqD,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAQzR4K,CAAO2mE,EAAUtoB,GAYjBsoB,EAASvxE,UAAUqM,MAAQ,WACzB,OAAOtM,OAAOqB,OAAOZ,KACvB,EAEA+wE,EAASvxE,UAAUkG,SAAW,SAASM,GACrC,OAAOhG,KAAKgG,QAAQyqE,OAAO1R,MAAM/+D,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GAC3E,EAEO+qE,CAER,CAvB2B,CAuBzBD,EAEJ,GAAE5vE,KAAKlB,8BClCR,WACE,IAAsBgxE,EAEpBhH,EAAU,CAAC,EAAEvqE,eAEfuxE,EAAU,EAAQ,OAElBjuE,EAAOC,QAA6B,SAAUylD,GAG5C,SAASqoB,EAAiBpkE,GACxBokE,EAAiBnE,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAClD1M,KAAKoF,MAAQ,EACf,CA4DA,OAvES,SAASkT,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAMzR4K,CAAO0mE,EAAkBroB,GAOzBlpD,OAAOyF,eAAe8rE,EAAiBtxE,UAAW,OAAQ,CACxD2mB,IAAK,WACH,OAAOnmB,KAAKoF,KACd,EACAmzB,IAAK,SAASnzB,GACZ,OAAOpF,KAAKoF,MAAQA,GAAS,EAC/B,IAGF7F,OAAOyF,eAAe8rE,EAAiBtxE,UAAW,SAAU,CAC1D2mB,IAAK,WACH,OAAOnmB,KAAKoF,MAAM1D,MACpB,IAGFnC,OAAOyF,eAAe8rE,EAAiBtxE,UAAW,cAAe,CAC/D2mB,IAAK,WACH,OAAOnmB,KAAKoF,KACd,EACAmzB,IAAK,SAASnzB,GACZ,OAAOpF,KAAKoF,MAAQA,GAAS,EAC/B,IAGF0rE,EAAiBtxE,UAAUqM,MAAQ,WACjC,OAAOtM,OAAOqB,OAAOZ,KACvB,EAEA8wE,EAAiBtxE,UAAUyxE,cAAgB,SAASt+D,EAAQ2qC,GAC1D,MAAM,IAAI99B,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAS,EAAiBtxE,UAAU0xE,WAAa,SAAS5pB,GAC/C,MAAM,IAAI9nC,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAS,EAAiBtxE,UAAU2xE,WAAa,SAASx+D,EAAQ20C,GACvD,MAAM,IAAI9nC,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAS,EAAiBtxE,UAAU4xE,WAAa,SAASz+D,EAAQ2qC,GACvD,MAAM,IAAI99B,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAS,EAAiBtxE,UAAU6xE,YAAc,SAAS1+D,EAAQ2qC,EAAOgK,GAC/D,MAAM,IAAI9nC,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAS,EAAiBtxE,UAAUmxE,YAAc,SAAS56C,GAChD,QAAK+6C,EAAiBnE,UAAUgE,YAAYluE,MAAMzC,KAAMsC,WAAWquE,YAAY56C,IAG3EA,EAAK3nB,OAASpO,KAAKoO,IAIzB,EAEO0iE,CAER,CApEmC,CAoEjCE,EAEJ,GAAE9vE,KAAKlB,8BC7ER,WACE,IAAImwE,EAAUW,EAEZ9G,EAAU,CAAC,EAAEvqE,eAEf0wE,EAAW,EAAQ,OAEnBW,EAAmB,EAAQ,OAE3B/tE,EAAOC,QAAuB,SAAUylD,GAGtC,SAAS6oB,EAAW5kE,EAAQo2D,GAE1B,GADAwO,EAAW3E,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAChC,MAARo2D,EACF,MAAM,IAAItjD,MAAM,yBAA2Bxf,KAAKqwE,aAElDrwE,KAAKgB,KAAO,WACZhB,KAAK+N,KAAOoiE,EAASpB,QACrB/uE,KAAKoF,MAAQpF,KAAK8I,UAAUm2D,QAAQ6D,EACtC,CAUA,OA5BS,SAASxqD,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAQzR4K,CAAOknE,EAAY7oB,GAYnB6oB,EAAW9xE,UAAUqM,MAAQ,WAC3B,OAAOtM,OAAOqB,OAAOZ,KACvB,EAEAsxE,EAAW9xE,UAAUkG,SAAW,SAASM,GACvC,OAAOhG,KAAKgG,QAAQyqE,OAAOxR,QAAQj/D,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GAC7E,EAEOsrE,CAER,CAvB6B,CAuB3BR,EAEJ,GAAE5vE,KAAKlB,8BClCR,WACE,IAAyBuxE,EAAoBC,EAE7CD,EAAqB,EAAQ,OAE7BC,EAAmB,EAAQ,OAE3BzuE,EAAOC,QAAgC,WACrC,SAASyuE,IAEPzxE,KAAK0xE,cAAgB,CACnB,kBAAkB,EAClB,kBAAkB,EAClB,UAAY,EACZ,0BAA0B,EAC1B,8BAA8B,EAC9B,UAAY,EACZ,gBAAiB,IAAIH,EACrB,SAAW,EACX,sBAAsB,EACtB,YAAc,EACd,0BAA0B,EAC1B,wBAAwB,EACxB,kBAAmB,GACnB,cAAe,GACf,wBAAwB,EACxB,UAAY,EACZ,eAAe,GAEjBvxE,KAAKkM,OAAsB3M,OAAOqB,OAAOZ,KAAK0xE,cAChD,CA4BA,OA1BAnyE,OAAOyF,eAAeysE,EAAoBjyE,UAAW,iBAAkB,CACrE2mB,IAAK,WACH,OAAO,IAAIqrD,EAAiBjyE,OAAO+G,KAAKtG,KAAK0xE,eAC/C,IAGFD,EAAoBjyE,UAAUmyE,aAAe,SAAS3wE,GACpD,OAAIhB,KAAKkM,OAAOzM,eAAeuB,GACtBhB,KAAKkM,OAAOlL,GAEZ,IAEX,EAEAywE,EAAoBjyE,UAAUoyE,gBAAkB,SAAS5wE,EAAMoE,GAC7D,OAAO,CACT,EAEAqsE,EAAoBjyE,UAAUqyE,aAAe,SAAS7wE,EAAMoE,GAC1D,OAAa,MAATA,EACKpF,KAAKkM,OAAOlL,GAAQoE,SAEbpF,KAAKkM,OAAOlL,EAE9B,EAEOywE,CAER,CArDsC,EAuDxC,GAAEvwE,KAAKlB,0BC9DR,WAGE+C,EAAOC,QAA+B,WACpC,SAASuuE,IAAsB,CAM/B,OAJAA,EAAmB/xE,UAAUsyE,YAAc,SAASvyD,GAClD,MAAM,IAAIC,MAAMD,EAClB,EAEOgyD,CAER,CATqC,EAWvC,GAAErwE,KAAKlB,0BCdR,WAGE+C,EAAOC,QAAiC,WACtC,SAAS+uE,IAAwB,CAsBjC,OApBAA,EAAqBvyE,UAAUwyE,WAAa,SAASC,EAASxpD,GAC5D,OAAO,CACT,EAEAspD,EAAqBvyE,UAAU0yE,mBAAqB,SAASC,EAAeC,EAAUC,GACpF,MAAM,IAAI7yD,MAAM,sCAClB,EAEAuyD,EAAqBvyE,UAAU8yE,eAAiB,SAAS1B,EAAcuB,EAAehT,GACpF,MAAM,IAAI3/C,MAAM,sCAClB,EAEAuyD,EAAqBvyE,UAAU+yE,mBAAqB,SAAStpD,GAC3D,MAAM,IAAIzJ,MAAM,sCAClB,EAEAuyD,EAAqBvyE,UAAUgzE,WAAa,SAASP,EAASxpD,GAC5D,MAAM,IAAIjJ,MAAM,sCAClB,EAEOuyD,CAER,CAzBuC,EA2BzC,GAAE7wE,KAAKlB,0BC9BR,WAGE+C,EAAOC,QAA6B,WAClC,SAASwuE,EAAiBtgE,GACxBlR,KAAKkR,IAAMA,GAAO,EACpB,CAgBA,OAdA3R,OAAOyF,eAAewsE,EAAiBhyE,UAAW,SAAU,CAC1D2mB,IAAK,WACH,OAAOnmB,KAAKkR,IAAIxP,MAClB,IAGF8vE,EAAiBhyE,UAAU0I,KAAO,SAASgB,GACzC,OAAOlJ,KAAKkR,IAAIhI,IAAU,IAC5B,EAEAsoE,EAAiBhyE,UAAU6rC,SAAW,SAAS5gC,GAC7C,OAAkC,IAA3BzK,KAAKkR,IAAI5M,QAAQmG,EAC1B,EAEO+mE,CAER,CArBmC,EAuBrC,GAAEtwE,KAAKlB,8BC1BR,WACE,IAAImwE,EAAyBa,EAE3BhH,EAAU,CAAC,EAAEvqE,eAEfuxE,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBptE,EAAOC,QAA0B,SAAUylD,GAGzC,SAASgqB,EAAc/lE,EAAQgmE,EAAaC,EAAeC,EAAeC,EAAkBC,GAE1F,GADAL,EAAc9F,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAC5B,MAAfgmE,EACF,MAAM,IAAIlzD,MAAM,6BAA+Bxf,KAAKqwE,aAEtD,GAAqB,MAAjBsC,EACF,MAAM,IAAInzD,MAAM,+BAAiCxf,KAAKqwE,UAAUqC,IAElE,IAAKE,EACH,MAAM,IAAIpzD,MAAM,+BAAiCxf,KAAKqwE,UAAUqC,IAElE,IAAKG,EACH,MAAM,IAAIrzD,MAAM,kCAAoCxf,KAAKqwE,UAAUqC,IAKrE,GAHsC,IAAlCG,EAAiBvuE,QAAQ,OAC3BuuE,EAAmB,IAAMA,IAEtBA,EAAiB5uE,MAAM,0CAC1B,MAAM,IAAIub,MAAM,kFAAoFxf,KAAKqwE,UAAUqC,IAErH,GAAII,IAAiBD,EAAiB5uE,MAAM,uBAC1C,MAAM,IAAIub,MAAM,qDAAuDxf,KAAKqwE,UAAUqC,IAExF1yE,KAAK0yE,YAAc1yE,KAAK8I,UAAU9H,KAAK0xE,GACvC1yE,KAAK+N,KAAOoiE,EAASb,qBACrBtvE,KAAK2yE,cAAgB3yE,KAAK8I,UAAU9H,KAAK2xE,GACzC3yE,KAAK4yE,cAAgB5yE,KAAK8I,UAAUiqE,WAAWH,GAC3CE,IACF9yE,KAAK8yE,aAAe9yE,KAAK8I,UAAUkqE,cAAcF,IAEnD9yE,KAAK6yE,iBAAmBA,CAC1B,CAMA,OA/CS,SAASv6D,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAQzR4K,CAAOqoE,EAAehqB,GAmCtBgqB,EAAcjzE,UAAUkG,SAAW,SAASM,GAC1C,OAAOhG,KAAKgG,QAAQyqE,OAAOwC,WAAWjzE,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GAChF,EAEOysE,CAER,CA1CgC,CA0C9BzB,EAEJ,GAAE9vE,KAAKlB,8BCrDR,WACE,IAAImwE,EAAyBa,EAE3BhH,EAAU,CAAC,EAAEvqE,eAEfuxE,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBptE,EAAOC,QAA0B,SAAUylD,GAGzC,SAASyqB,EAAcxmE,EAAQ1L,EAAMoE,GAEnC,GADA8tE,EAAcvG,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GACnC,MAAR1L,EACF,MAAM,IAAIwe,MAAM,6BAA+Bxf,KAAKqwE,aAEjDjrE,IACHA,EAAQ,aAENxD,MAAM+C,QAAQS,KAChBA,EAAQ,IAAMA,EAAMzB,KAAK,KAAO,KAElC3D,KAAKgB,KAAOhB,KAAK8I,UAAU9H,KAAKA,GAChChB,KAAK+N,KAAOoiE,EAASZ,mBACrBvvE,KAAKoF,MAAQpF,KAAK8I,UAAUqqE,gBAAgB/tE,EAC9C,CAMA,OA9BS,SAASkT,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAQzR4K,CAAO8oE,EAAezqB,GAkBtByqB,EAAc1zE,UAAUkG,SAAW,SAASM,GAC1C,OAAOhG,KAAKgG,QAAQyqE,OAAO2C,WAAWpzE,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GAChF,EAEOktE,CAER,CAzBgC,CAyB9BlC,EAEJ,GAAE9vE,KAAKlB,6BCpCR,WACE,IAAImwE,EAAwBa,EAASpzD,EAEnCosD,EAAU,CAAC,EAAEvqE,eAEfme,EAAW,kBAEXozD,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBptE,EAAOC,QAAyB,SAAUylD,GAGxC,SAAS4qB,EAAa3mE,EAAQ4mE,EAAItyE,EAAMoE,GAEtC,GADAiuE,EAAa1G,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAClC,MAAR1L,EACF,MAAM,IAAIwe,MAAM,4BAA8Bxf,KAAKqwE,UAAUrvE,IAE/D,GAAa,MAAToE,EACF,MAAM,IAAIoa,MAAM,6BAA+Bxf,KAAKqwE,UAAUrvE,IAKhE,GAHAhB,KAAKszE,KAAOA,EACZtzE,KAAKgB,KAAOhB,KAAK8I,UAAU9H,KAAKA,GAChChB,KAAK+N,KAAOoiE,EAAStB,kBAChBjxD,EAASxY,GAGP,CACL,IAAKA,EAAMmuE,QAAUnuE,EAAMouE,MACzB,MAAM,IAAIh0D,MAAM,yEAA2Exf,KAAKqwE,UAAUrvE,IAE5G,GAAIoE,EAAMmuE,QAAUnuE,EAAMouE,MACxB,MAAM,IAAIh0D,MAAM,+DAAiExf,KAAKqwE,UAAUrvE,IAYlG,GAVAhB,KAAKyzE,UAAW,EACG,MAAfruE,EAAMmuE,QACRvzE,KAAKuzE,MAAQvzE,KAAK8I,UAAU4qE,SAAStuE,EAAMmuE,QAE1B,MAAfnuE,EAAMouE,QACRxzE,KAAKwzE,MAAQxzE,KAAK8I,UAAU6qE,SAASvuE,EAAMouE,QAE1B,MAAfpuE,EAAMwuE,QACR5zE,KAAK4zE,MAAQ5zE,KAAK8I,UAAU+qE,SAASzuE,EAAMwuE,QAEzC5zE,KAAKszE,IAAMtzE,KAAK4zE,MAClB,MAAM,IAAIp0D,MAAM,8DAAgExf,KAAKqwE,UAAUrvE,GAEnG,MAtBEhB,KAAKoF,MAAQpF,KAAK8I,UAAUgrE,eAAe1uE,GAC3CpF,KAAKyzE,UAAW,CAsBpB,CA0CA,OAzFS,SAASn7D,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAUzR4K,CAAOipE,EAAc5qB,GAuCrBlpD,OAAOyF,eAAequE,EAAa7zE,UAAW,WAAY,CACxD2mB,IAAK,WACH,OAAOnmB,KAAKuzE,KACd,IAGFh0E,OAAOyF,eAAequE,EAAa7zE,UAAW,WAAY,CACxD2mB,IAAK,WACH,OAAOnmB,KAAKwzE,KACd,IAGFj0E,OAAOyF,eAAequE,EAAa7zE,UAAW,eAAgB,CAC5D2mB,IAAK,WACH,OAAOnmB,KAAK4zE,OAAS,IACvB,IAGFr0E,OAAOyF,eAAequE,EAAa7zE,UAAW,gBAAiB,CAC7D2mB,IAAK,WACH,OAAO,IACT,IAGF5mB,OAAOyF,eAAequE,EAAa7zE,UAAW,cAAe,CAC3D2mB,IAAK,WACH,OAAO,IACT,IAGF5mB,OAAOyF,eAAequE,EAAa7zE,UAAW,aAAc,CAC1D2mB,IAAK,WACH,OAAO,IACT,IAGFktD,EAAa7zE,UAAUkG,SAAW,SAASM,GACzC,OAAOhG,KAAKgG,QAAQyqE,OAAOsD,UAAU/zE,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GAC/E,EAEOqtE,CAER,CAlF+B,CAkF7BrC,EAEJ,GAAE9vE,KAAKlB,8BC/FR,WACE,IAAImwE,EAA0Ba,EAE5BhH,EAAU,CAAC,EAAEvqE,eAEfuxE,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBptE,EAAOC,QAA2B,SAAUylD,GAG1C,SAASurB,EAAetnE,EAAQ1L,EAAMoE,GAEpC,GADA4uE,EAAerH,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GACpC,MAAR1L,EACF,MAAM,IAAIwe,MAAM,8BAAgCxf,KAAKqwE,UAAUrvE,IAEjE,IAAKoE,EAAMmuE,QAAUnuE,EAAMouE,MACzB,MAAM,IAAIh0D,MAAM,qEAAuExf,KAAKqwE,UAAUrvE,IAExGhB,KAAKgB,KAAOhB,KAAK8I,UAAU9H,KAAKA,GAChChB,KAAK+N,KAAOoiE,EAAShB,oBACF,MAAf/pE,EAAMmuE,QACRvzE,KAAKuzE,MAAQvzE,KAAK8I,UAAU4qE,SAAStuE,EAAMmuE,QAE1B,MAAfnuE,EAAMouE,QACRxzE,KAAKwzE,MAAQxzE,KAAK8I,UAAU6qE,SAASvuE,EAAMouE,OAE/C,CAkBA,OA5CS,SAASl7D,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAQzR4K,CAAO4pE,EAAgBvrB,GAoBvBlpD,OAAOyF,eAAegvE,EAAex0E,UAAW,WAAY,CAC1D2mB,IAAK,WACH,OAAOnmB,KAAKuzE,KACd,IAGFh0E,OAAOyF,eAAegvE,EAAex0E,UAAW,WAAY,CAC1D2mB,IAAK,WACH,OAAOnmB,KAAKwzE,KACd,IAGFQ,EAAex0E,UAAUkG,SAAW,SAASM,GAC3C,OAAOhG,KAAKgG,QAAQyqE,OAAOwD,YAAYj0E,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GACjF,EAEOguE,CAER,CAvCiC,CAuC/BhD,EAEJ,GAAE9vE,KAAKlB,8BClDR,WACE,IAAImwE,EAA0Ba,EAASpzD,EAErCosD,EAAU,CAAC,EAAEvqE,eAEfme,EAAW,kBAEXozD,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBptE,EAAOC,QAA2B,SAAUylD,GAG1C,SAASyrB,EAAexnE,EAAQ+b,EAASiiC,EAAUypB,GACjD,IAAIxnE,EACJunE,EAAevH,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAC5CkR,EAAS6K,KACIA,GAAf9b,EAAM8b,GAAuBA,QAASiiC,EAAW/9C,EAAI+9C,SAAUypB,EAAaxnE,EAAIwnE,YAE7E1rD,IACHA,EAAU,OAEZzoB,KAAK+N,KAAOoiE,EAASf,YACrBpvE,KAAKyoB,QAAUzoB,KAAK8I,UAAUsrE,WAAW3rD,GACzB,MAAZiiC,IACF1qD,KAAK0qD,SAAW1qD,KAAK8I,UAAUurE,YAAY3pB,IAE3B,MAAdypB,IACFn0E,KAAKm0E,WAAan0E,KAAK8I,UAAUwrE,cAAcH,GAEnD,CAMA,OAnCS,SAAS77D,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAUzR4K,CAAO8pE,EAAgBzrB,GAqBvByrB,EAAe10E,UAAUkG,SAAW,SAASM,GAC3C,OAAOhG,KAAKgG,QAAQyqE,OAAO8D,YAAYv0E,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GACjF,EAEOkuE,CAER,CA5BiC,CA4B/BlD,EAEJ,GAAE9vE,KAAKlB,8BCzCR,WACE,IAAImwE,EAAUsC,EAAeS,EAAeG,EAAcW,EAA4BQ,EAAiBxD,EAASpzD,EAE9GosD,EAAU,CAAC,EAAEvqE,eAEfme,EAAW,kBAEXozD,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBsC,EAAgB,EAAQ,OAExBY,EAAe,EAAQ,MAEvBH,EAAgB,EAAQ,OAExBc,EAAiB,EAAQ,OAEzBQ,EAAkB,EAAQ,OAE1BzxE,EAAOC,QAAuB,SAAUylD,GAGtC,SAASgsB,EAAW/nE,EAAQ6mE,EAAOC,GACjC,IAAIl7D,EAAO9W,EAAGa,EAAKsK,EAAK+nE,EAAMC,EAG9B,GAFAF,EAAW9H,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAC5C1M,KAAK+N,KAAOoiE,EAASlB,QACjBviE,EAAOyB,SAET,IAAK3M,EAAI,EAAGa,GADZsK,EAAMD,EAAOyB,UACSzM,OAAQF,EAAIa,EAAKb,IAErC,IADA8W,EAAQ3L,EAAInL,IACFuM,OAASoiE,EAAS3B,QAAS,CACnCxuE,KAAKgB,KAAOsX,EAAMtX,KAClB,KACF,CAGJhB,KAAK40E,eAAiBloE,EAClBkR,EAAS21D,KACGA,GAAdmB,EAAOnB,GAAoBA,MAAOC,EAAQkB,EAAKlB,OAEpC,MAATA,IACqBA,GAAvBmB,EAAO,CAACpB,EAAOC,IAAqB,GAAID,EAAQoB,EAAK,IAE1C,MAATpB,IACFvzE,KAAKuzE,MAAQvzE,KAAK8I,UAAU4qE,SAASH,IAE1B,MAATC,IACFxzE,KAAKwzE,MAAQxzE,KAAK8I,UAAU6qE,SAASH,GAEzC,CAiIA,OAlLS,SAASl7D,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAoBzR4K,CAAOqqE,EAAYhsB,GA+BnBlpD,OAAOyF,eAAeyvE,EAAWj1E,UAAW,WAAY,CACtD2mB,IAAK,WACH,IAAI7N,EAAO9W,EAAGa,EAAKmzB,EAAO7oB,EAG1B,IAFA6oB,EAAQ,CAAC,EAEJh0B,EAAI,EAAGa,GADZsK,EAAM3M,KAAKmO,UACWzM,OAAQF,EAAIa,EAAKb,KACrC8W,EAAQ3L,EAAInL,IACDuM,OAASoiE,EAAStB,mBAAuBv2D,EAAMg7D,KACxD99C,EAAMld,EAAMtX,MAAQsX,GAGxB,OAAO,IAAIk8D,EAAgBh/C,EAC7B,IAGFj2B,OAAOyF,eAAeyvE,EAAWj1E,UAAW,YAAa,CACvD2mB,IAAK,WACH,IAAI7N,EAAO9W,EAAGa,EAAKmzB,EAAO7oB,EAG1B,IAFA6oB,EAAQ,CAAC,EAEJh0B,EAAI,EAAGa,GADZsK,EAAM3M,KAAKmO,UACWzM,OAAQF,EAAIa,EAAKb,KACrC8W,EAAQ3L,EAAInL,IACFuM,OAASoiE,EAAShB,sBAC1B35C,EAAMld,EAAMtX,MAAQsX,GAGxB,OAAO,IAAIk8D,EAAgBh/C,EAC7B,IAGFj2B,OAAOyF,eAAeyvE,EAAWj1E,UAAW,WAAY,CACtD2mB,IAAK,WACH,OAAOnmB,KAAKuzE,KACd,IAGFh0E,OAAOyF,eAAeyvE,EAAWj1E,UAAW,WAAY,CACtD2mB,IAAK,WACH,OAAOnmB,KAAKwzE,KACd,IAGFj0E,OAAOyF,eAAeyvE,EAAWj1E,UAAW,iBAAkB,CAC5D2mB,IAAK,WACH,MAAM,IAAI3G,MAAM,sCAAwCxf,KAAKqwE,YAC/D,IAGFoE,EAAWj1E,UAAU8sC,QAAU,SAAStrC,EAAMoE,GAC5C,IAAIkT,EAGJ,OAFAA,EAAQ,IAAI46D,EAAclzE,KAAMgB,EAAMoE,GACtCpF,KAAKmO,SAAS3N,KAAK8X,GACZtY,IACT,EAEAy0E,EAAWj1E,UAAUq1E,QAAU,SAASnC,EAAaC,EAAeC,EAAeC,EAAkBC,GACnG,IAAIx6D,EAGJ,OAFAA,EAAQ,IAAIm6D,EAAczyE,KAAM0yE,EAAaC,EAAeC,EAAeC,EAAkBC,GAC7F9yE,KAAKmO,SAAS3N,KAAK8X,GACZtY,IACT,EAEAy0E,EAAWj1E,UAAUgiE,OAAS,SAASxgE,EAAMoE,GAC3C,IAAIkT,EAGJ,OAFAA,EAAQ,IAAI+6D,EAAarzE,MAAM,EAAOgB,EAAMoE,GAC5CpF,KAAKmO,SAAS3N,KAAK8X,GACZtY,IACT,EAEAy0E,EAAWj1E,UAAUs1E,QAAU,SAAS9zE,EAAMoE,GAC5C,IAAIkT,EAGJ,OAFAA,EAAQ,IAAI+6D,EAAarzE,MAAM,EAAMgB,EAAMoE,GAC3CpF,KAAKmO,SAAS3N,KAAK8X,GACZtY,IACT,EAEAy0E,EAAWj1E,UAAUu1E,SAAW,SAAS/zE,EAAMoE,GAC7C,IAAIkT,EAGJ,OAFAA,EAAQ,IAAI07D,EAAeh0E,KAAMgB,EAAMoE,GACvCpF,KAAKmO,SAAS3N,KAAK8X,GACZtY,IACT,EAEAy0E,EAAWj1E,UAAUkG,SAAW,SAASM,GACvC,OAAOhG,KAAKgG,QAAQyqE,OAAOuE,QAAQh1E,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GAC7E,EAEAyuE,EAAWj1E,UAAUkrE,IAAM,SAAS1pE,EAAMoE,GACxC,OAAOpF,KAAKssC,QAAQtrC,EAAMoE,EAC5B,EAEAqvE,EAAWj1E,UAAUorE,IAAM,SAAS8H,EAAaC,EAAeC,EAAeC,EAAkBC,GAC/F,OAAO9yE,KAAK60E,QAAQnC,EAAaC,EAAeC,EAAeC,EAAkBC,EACnF,EAEA2B,EAAWj1E,UAAUy1E,IAAM,SAASj0E,EAAMoE,GACxC,OAAOpF,KAAKwhE,OAAOxgE,EAAMoE,EAC3B,EAEAqvE,EAAWj1E,UAAU01E,KAAO,SAASl0E,EAAMoE,GACzC,OAAOpF,KAAK80E,QAAQ9zE,EAAMoE,EAC5B,EAEAqvE,EAAWj1E,UAAU21E,IAAM,SAASn0E,EAAMoE,GACxC,OAAOpF,KAAK+0E,SAAS/zE,EAAMoE,EAC7B,EAEAqvE,EAAWj1E,UAAUmrE,GAAK,WACxB,OAAO3qE,KAAK01B,QAAU11B,KAAK40E,cAC7B,EAEAH,EAAWj1E,UAAUmxE,YAAc,SAAS56C,GAC1C,QAAK0+C,EAAW9H,UAAUgE,YAAYluE,MAAMzC,KAAMsC,WAAWquE,YAAY56C,IAGrEA,EAAK/0B,OAAShB,KAAKgB,MAGnB+0B,EAAKq8C,WAAapyE,KAAKoyE,UAGvBr8C,EAAKs8C,WAAaryE,KAAKqyE,QAI7B,EAEOoC,CAER,CAjK6B,CAiK3BzD,EAEJ,GAAE9vE,KAAKlB,8BCxLR,WACE,IAAImwE,EAAUsB,EAAqBM,EAAmCf,EAASoE,EAAiBC,EAAgB1F,EAE9G3F,EAAU,CAAC,EAAEvqE,eAEfkwE,EAAgB,uBAEhBoC,EAAuB,EAAQ,OAE/BN,EAAsB,EAAQ,OAE9BT,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBkF,EAAiB,EAAQ,OAEzBD,EAAkB,EAAQ,OAE1BryE,EAAOC,QAAwB,SAAUylD,GAGvC,SAAS6sB,EAAYtvE,GACnBsvE,EAAY3I,UAAUpoD,YAAYrjB,KAAKlB,KAAM,MAC7CA,KAAKgB,KAAO,YACZhB,KAAK+N,KAAOoiE,EAASnB,SACrBhvE,KAAKu1E,YAAc,KACnBv1E,KAAKw1E,UAAY,IAAI/D,EACrBzrE,IAAYA,EAAU,CAAC,GAClBA,EAAQyqE,SACXzqE,EAAQyqE,OAAS,IAAI2E,GAEvBp1E,KAAKgG,QAAUA,EACfhG,KAAK8I,UAAY,IAAIusE,EAAervE,EACtC,CA0MA,OA1OS,SAASsS,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAkBzR4K,CAAOkrE,EAAa7sB,GAgBpBlpD,OAAOyF,eAAeswE,EAAY91E,UAAW,iBAAkB,CAC7D4F,MAAO,IAAI2sE,IAGbxyE,OAAOyF,eAAeswE,EAAY91E,UAAW,UAAW,CACtD2mB,IAAK,WACH,IAAI7N,EAAO9W,EAAGa,EAAKsK,EAEnB,IAAKnL,EAAI,EAAGa,GADZsK,EAAM3M,KAAKmO,UACWzM,OAAQF,EAAIa,EAAKb,IAErC,IADA8W,EAAQ3L,EAAInL,IACFuM,OAASoiE,EAASlB,QAC1B,OAAO32D,EAGX,OAAO,IACT,IAGF/Y,OAAOyF,eAAeswE,EAAY91E,UAAW,kBAAmB,CAC9D2mB,IAAK,WACH,OAAOnmB,KAAKy1E,YAAc,IAC5B,IAGFl2E,OAAOyF,eAAeswE,EAAY91E,UAAW,gBAAiB,CAC5D2mB,IAAK,WACH,OAAO,IACT,IAGF5mB,OAAOyF,eAAeswE,EAAY91E,UAAW,sBAAuB,CAClE2mB,IAAK,WACH,OAAO,CACT,IAGF5mB,OAAOyF,eAAeswE,EAAY91E,UAAW,cAAe,CAC1D2mB,IAAK,WACH,OAA6B,IAAzBnmB,KAAKmO,SAASzM,QAAgB1B,KAAKmO,SAAS,GAAGJ,OAASoiE,EAASf,YAC5DpvE,KAAKmO,SAAS,GAAGu8C,SAEjB,IAEX,IAGFnrD,OAAOyF,eAAeswE,EAAY91E,UAAW,gBAAiB,CAC5D2mB,IAAK,WACH,OAA6B,IAAzBnmB,KAAKmO,SAASzM,QAAgB1B,KAAKmO,SAAS,GAAGJ,OAASoiE,EAASf,aAC5B,QAAhCpvE,KAAKmO,SAAS,GAAGgmE,UAI5B,IAGF50E,OAAOyF,eAAeswE,EAAY91E,UAAW,aAAc,CACzD2mB,IAAK,WACH,OAA6B,IAAzBnmB,KAAKmO,SAASzM,QAAgB1B,KAAKmO,SAAS,GAAGJ,OAASoiE,EAASf,YAC5DpvE,KAAKmO,SAAS,GAAGsa,QAEjB,KAEX,IAGFlpB,OAAOyF,eAAeswE,EAAY91E,UAAW,MAAO,CAClD2mB,IAAK,WACH,OAAOnmB,KAAKu1E,WACd,IAGFh2E,OAAOyF,eAAeswE,EAAY91E,UAAW,SAAU,CACrD2mB,IAAK,WACH,OAAO,IACT,IAGF5mB,OAAOyF,eAAeswE,EAAY91E,UAAW,aAAc,CACzD2mB,IAAK,WACH,OAAO,IACT,IAGF5mB,OAAOyF,eAAeswE,EAAY91E,UAAW,eAAgB,CAC3D2mB,IAAK,WACH,OAAO,IACT,IAGF5mB,OAAOyF,eAAeswE,EAAY91E,UAAW,cAAe,CAC1D2mB,IAAK,WACH,OAAO,IACT,IAGFmvD,EAAY91E,UAAUmU,IAAM,SAAS88D,GACnC,IAAIiF,EAQJ,OAPAA,EAAgB,CAAC,EACZjF,EAEMd,EAAcc,KACvBiF,EAAgBjF,EAChBA,EAASzwE,KAAKgG,QAAQyqE,QAHtBA,EAASzwE,KAAKgG,QAAQyqE,OAKjBA,EAAO1yD,SAAS/d,KAAMywE,EAAOC,cAAcgF,GACpD,EAEAJ,EAAY91E,UAAUkG,SAAW,SAASM,GACxC,OAAOhG,KAAKgG,QAAQyqE,OAAO1yD,SAAS/d,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GAC9E,EAEAsvE,EAAY91E,UAAUgmE,cAAgB,SAAShH,GAC7C,MAAM,IAAIh/C,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUm2E,uBAAyB,WAC7C,MAAM,IAAIn2D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUo2E,eAAiB,SAASxnE,GAC9C,MAAM,IAAIoR,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUq2E,cAAgB,SAASznE,GAC7C,MAAM,IAAIoR,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUs2E,mBAAqB,SAAS1nE,GAClD,MAAM,IAAIoR,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUu2E,4BAA8B,SAASt/D,EAAQrI,GACnE,MAAM,IAAIoR,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUw2E,gBAAkB,SAASh1E,GAC/C,MAAM,IAAIwe,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUy2E,sBAAwB,SAASj1E,GACrD,MAAM,IAAIwe,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAU02E,qBAAuB,SAASC,GACpD,MAAM,IAAI32D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAU42E,WAAa,SAASC,EAAc3zB,GACxD,MAAM,IAAIljC,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAU82E,gBAAkB,SAAS1F,EAAcuB,GAC7D,MAAM,IAAI3yD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAU+2E,kBAAoB,SAAS3F,EAAcuB,GAC/D,MAAM,IAAI3yD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUg3E,uBAAyB,SAAS5F,EAAcC,GACpE,MAAM,IAAIrxD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUwe,eAAiB,SAASy4D,GAC9C,MAAM,IAAIj3D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUk3E,UAAY,SAASplE,GACzC,MAAM,IAAIkO,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUm3E,kBAAoB,WACxC,MAAM,IAAIn3D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUo3E,WAAa,SAAS7gD,EAAM66C,EAAcuB,GAC9D,MAAM,IAAI3yD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUq3E,uBAAyB,SAASC,GACtD,MAAM,IAAIt3D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUu3E,YAAc,SAASC,GAC3C,MAAM,IAAIx3D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAUy3E,YAAc,WAClC,MAAM,IAAIz3D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAU03E,mBAAqB,SAASxhD,EAAMyhD,EAAY7tE,GACpE,MAAM,IAAIkW,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiF,EAAY91E,UAAU43E,iBAAmB,SAAS1hD,EAAMyhD,EAAY7tE,GAClE,MAAM,IAAIkW,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEOiF,CAER,CA3N8B,CA2N5BtE,EAEJ,GAAE9vE,KAAKlB,8BChPR,WACE,IAAImwE,EAAUkH,EAAajH,EAAcW,EAAUO,EAAYmB,EAAeS,EAAeG,EAAcW,EAAgBE,EAAgBO,EAAYa,EAA4BgC,EAAYC,EAA0BC,EAAQpC,EAAiBC,EAAgBoC,EAAShI,EAAUC,EAAY9xD,EAAU+xD,EAAehjE,EACxTq9D,EAAU,CAAC,EAAEvqE,eAEfkN,EAAM,EAAQ,OAAciR,EAAWjR,EAAIiR,SAAU8xD,EAAa/iE,EAAI+iE,WAAYC,EAAgBhjE,EAAIgjE,cAAeF,EAAW9iE,EAAI8iE,SAEpIU,EAAW,EAAQ,OAEnBmF,EAAc,EAAQ,OAEtBgC,EAAa,EAAQ,OAErBvG,EAAW,EAAQ,OAEnBO,EAAa,EAAQ,OAErBkG,EAAS,EAAQ,MAEjBC,EAAU,EAAQ,OAElBF,EAA2B,EAAQ,OAEnCrD,EAAiB,EAAQ,OAEzBO,EAAa,EAAQ,OAErBhC,EAAgB,EAAQ,OAExBY,EAAe,EAAQ,MAEvBH,EAAgB,EAAQ,OAExBc,EAAiB,EAAQ,OAEzB5D,EAAe,EAAQ,OAEvBiF,EAAiB,EAAQ,OAEzBD,EAAkB,EAAQ,OAE1BiC,EAAc,EAAQ,OAEtBt0E,EAAOC,QAA0B,WAC/B,SAAS00E,EAAc1xE,EAAS2xE,EAAQC,GACtC,IAAIlC,EACJ11E,KAAKgB,KAAO,OACZhB,KAAK+N,KAAOoiE,EAASnB,SACrBhpE,IAAYA,EAAU,CAAC,GACvB0vE,EAAgB,CAAC,EACZ1vE,EAAQyqE,OAEFd,EAAc3pE,EAAQyqE,UAC/BiF,EAAgB1vE,EAAQyqE,OACxBzqE,EAAQyqE,OAAS,IAAI2E,GAHrBpvE,EAAQyqE,OAAS,IAAI2E,EAKvBp1E,KAAKgG,QAAUA,EACfhG,KAAKywE,OAASzqE,EAAQyqE,OACtBzwE,KAAK01E,cAAgB11E,KAAKywE,OAAOC,cAAcgF,GAC/C11E,KAAK8I,UAAY,IAAIusE,EAAervE,GACpChG,KAAK63E,eAAiBF,GAAU,WAAY,EAC5C33E,KAAK83E,cAAgBF,GAAS,WAAY,EAC1C53E,KAAK+3E,YAAc,KACnB/3E,KAAKg4E,cAAgB,EACrBh4E,KAAKi4E,SAAW,CAAC,EACjBj4E,KAAKk4E,iBAAkB,EACvBl4E,KAAKm4E,mBAAoB,EACzBn4E,KAAK01B,KAAO,IACd,CAucA,OArcAgiD,EAAcl4E,UAAU44E,gBAAkB,SAASriD,GACjD,IAAI60C,EAAKyN,EAASn8C,EAAY5jB,EAAO9W,EAAGa,EAAKqyE,EAAMC,EACnD,OAAQ5+C,EAAKhoB,MACX,KAAKoiE,EAASxB,MACZ3uE,KAAK++D,MAAMhpC,EAAK3wB,OAChB,MACF,KAAK+qE,EAASpB,QACZ/uE,KAAKi/D,QAAQlpC,EAAK3wB,OAClB,MACF,KAAK+qE,EAAS3B,QAGZ,IAAK6J,KAFLn8C,EAAa,CAAC,EACdw4C,EAAO3+C,EAAKuiD,QAELtO,EAAQ9oE,KAAKwzE,EAAM2D,KACxBzN,EAAM8J,EAAK2D,GACXn8C,EAAWm8C,GAAWzN,EAAIxlE,OAE5BpF,KAAK+1B,KAAKA,EAAK/0B,KAAMk7B,GACrB,MACF,KAAKi0C,EAASX,MACZxvE,KAAKu4E,QACL,MACF,KAAKpI,EAASd,IACZrvE,KAAKoU,IAAI2hB,EAAK3wB,OACd,MACF,KAAK+qE,EAASzB,KACZ1uE,KAAK8iE,KAAK/sC,EAAK3wB,OACf,MACF,KAAK+qE,EAASrB,sBACZ9uE,KAAKw4E,YAAYziD,EAAKtf,OAAQsf,EAAK3wB,OACnC,MACF,QACE,MAAM,IAAIoa,MAAM,uDAAyDuW,EAAKxR,YAAYvjB,MAG9F,IAAKQ,EAAI,EAAGa,GADZsyE,EAAO5+C,EAAK5nB,UACWzM,OAAQF,EAAIa,EAAKb,IACtC8W,EAAQq8D,EAAKnzE,GACbxB,KAAKo4E,gBAAgB9/D,GACjBA,EAAMvK,OAASoiE,EAAS3B,SAC1BxuE,KAAK2qE,KAGT,OAAO3qE,IACT,EAEA03E,EAAcl4E,UAAU+4E,MAAQ,WAC9B,OAAOv4E,IACT,EAEA03E,EAAcl4E,UAAUu2B,KAAO,SAAS/0B,EAAMk7B,EAAY4mC,GACxD,IAAI4R,EACJ,GAAY,MAAR1zE,EACF,MAAM,IAAIwe,MAAM,sBAElB,GAAIxf,KAAK01B,OAA+B,IAAvB11B,KAAKg4E,aACpB,MAAM,IAAIx4D,MAAM,yCAA2Cxf,KAAKqwE,UAAUrvE,IAkB5E,OAhBAhB,KAAKy4E,cACLz3E,EAAOyuE,EAASzuE,GACE,MAAdk7B,IACFA,EAAa,CAAC,GAEhBA,EAAauzC,EAASvzC,GACjBte,EAASse,KACe4mC,GAA3B4R,EAAO,CAACx4C,EAAY4mC,IAAmB,GAAI5mC,EAAaw4C,EAAK,IAE/D10E,KAAK+3E,YAAc,IAAIT,EAAWt3E,KAAMgB,EAAMk7B,GAC9Cl8B,KAAK+3E,YAAY5pE,UAAW,EAC5BnO,KAAKg4E,eACLh4E,KAAKi4E,SAASj4E,KAAKg4E,cAAgBh4E,KAAK+3E,YAC5B,MAARjV,GACF9iE,KAAK8iE,KAAKA,GAEL9iE,IACT,EAEA03E,EAAcl4E,UAAU8sC,QAAU,SAAStrC,EAAMk7B,EAAY4mC,GAC3D,IAAIxqD,EAAO9W,EAAGa,EAAKq2E,EAAmBhE,EAAMh/C,EAC5C,GAAI11B,KAAK+3E,aAAe/3E,KAAK+3E,YAAYhqE,OAASoiE,EAASlB,QACzDjvE,KAAKozE,WAAW3wE,MAAMzC,KAAMsC,gBAE5B,GAAIV,MAAM+C,QAAQ3D,IAAS4c,EAAS5c,IAAS0uE,EAAW1uE,GAOtD,IANA03E,EAAoB14E,KAAKgG,QAAQ2yE,aACjC34E,KAAKgG,QAAQ2yE,cAAe,GAC5BjjD,EAAO,IAAI4/C,EAAYt1E,KAAKgG,SAASsmC,QAAQ,cACxCA,QAAQtrC,GACbhB,KAAKgG,QAAQ2yE,aAAeD,EAEvBl3E,EAAI,EAAGa,GADZqyE,EAAOh/C,EAAKvnB,UACWzM,OAAQF,EAAIa,EAAKb,IACtC8W,EAAQo8D,EAAKlzE,GACbxB,KAAKo4E,gBAAgB9/D,GACjBA,EAAMvK,OAASoiE,EAAS3B,SAC1BxuE,KAAK2qE,UAIT3qE,KAAK+1B,KAAK/0B,EAAMk7B,EAAY4mC,GAGhC,OAAO9iE,IACT,EAEA03E,EAAcl4E,UAAU48B,UAAY,SAASp7B,EAAMoE,GACjD,IAAIizE,EAAS/H,EACb,IAAKtwE,KAAK+3E,aAAe/3E,KAAK+3E,YAAY5pE,SACxC,MAAM,IAAIqR,MAAM,4EAA8Exf,KAAKqwE,UAAUrvE,IAK/G,GAHY,MAARA,IACFA,EAAOyuE,EAASzuE,IAEd4c,EAAS5c,GACX,IAAKq3E,KAAWr3E,EACTgpE,EAAQ9oE,KAAKF,EAAMq3E,KACxB/H,EAAWtvE,EAAKq3E,GAChBr4E,KAAKo8B,UAAUi8C,EAAS/H,SAGtBZ,EAAWtqE,KACbA,EAAQA,EAAM3C,SAEZzC,KAAKgG,QAAQ4yE,oBAAgC,MAATxzE,EACtCpF,KAAK+3E,YAAYO,QAAQt3E,GAAQ,IAAIovE,EAAapwE,KAAMgB,EAAM,IAC5C,MAAToE,IACTpF,KAAK+3E,YAAYO,QAAQt3E,GAAQ,IAAIovE,EAAapwE,KAAMgB,EAAMoE,IAGlE,OAAOpF,IACT,EAEA03E,EAAcl4E,UAAUsjE,KAAO,SAAS19D,GACtC,IAAI2wB,EAIJ,OAHA/1B,KAAKy4E,cACL1iD,EAAO,IAAI0hD,EAAQz3E,KAAMoF,GACzBpF,KAAK23E,OAAO33E,KAAKywE,OAAO3N,KAAK/sC,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,aAAe,GAAIh4E,KAAKg4E,aAAe,GAC5Fh4E,IACT,EAEA03E,EAAcl4E,UAAUu/D,MAAQ,SAAS35D,GACvC,IAAI2wB,EAIJ,OAHA/1B,KAAKy4E,cACL1iD,EAAO,IAAIg7C,EAAS/wE,KAAMoF,GAC1BpF,KAAK23E,OAAO33E,KAAKywE,OAAO1R,MAAMhpC,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,aAAe,GAAIh4E,KAAKg4E,aAAe,GAC7Fh4E,IACT,EAEA03E,EAAcl4E,UAAUy/D,QAAU,SAAS75D,GACzC,IAAI2wB,EAIJ,OAHA/1B,KAAKy4E,cACL1iD,EAAO,IAAIu7C,EAAWtxE,KAAMoF,GAC5BpF,KAAK23E,OAAO33E,KAAKywE,OAAOxR,QAAQlpC,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,aAAe,GAAIh4E,KAAKg4E,aAAe,GAC/Fh4E,IACT,EAEA03E,EAAcl4E,UAAU4U,IAAM,SAAShP,GACrC,IAAI2wB,EAIJ,OAHA/1B,KAAKy4E,cACL1iD,EAAO,IAAIyhD,EAAOx3E,KAAMoF,GACxBpF,KAAK23E,OAAO33E,KAAKywE,OAAOr8D,IAAI2hB,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,aAAe,GAAIh4E,KAAKg4E,aAAe,GAC3Fh4E,IACT,EAEA03E,EAAcl4E,UAAUg5E,YAAc,SAAS/hE,EAAQrR,GACrD,IAAI5D,EAAGq3E,EAAWC,EAAUz2E,EAAK0zB,EAQjC,GAPA/1B,KAAKy4E,cACS,MAAVhiE,IACFA,EAASg5D,EAASh5D,IAEP,MAATrR,IACFA,EAAQqqE,EAASrqE,IAEfxD,MAAM+C,QAAQ8R,GAChB,IAAKjV,EAAI,EAAGa,EAAMoU,EAAO/U,OAAQF,EAAIa,EAAKb,IACxCq3E,EAAYpiE,EAAOjV,GACnBxB,KAAKw4E,YAAYK,QAEd,GAAIj7D,EAASnH,GAClB,IAAKoiE,KAAapiE,EACXuzD,EAAQ9oE,KAAKuV,EAAQoiE,KAC1BC,EAAWriE,EAAOoiE,GAClB74E,KAAKw4E,YAAYK,EAAWC,SAG1BpJ,EAAWtqE,KACbA,EAAQA,EAAM3C,SAEhBszB,EAAO,IAAIwhD,EAAyBv3E,KAAMyW,EAAQrR,GAClDpF,KAAK23E,OAAO33E,KAAKywE,OAAOsI,sBAAsBhjD,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,aAAe,GAAIh4E,KAAKg4E,aAAe,GAEtH,OAAOh4E,IACT,EAEA03E,EAAcl4E,UAAU+0E,YAAc,SAAS9rD,EAASiiC,EAAUypB,GAChE,IAAIp+C,EAEJ,GADA/1B,KAAKy4E,cACDz4E,KAAKk4E,gBACP,MAAM,IAAI14D,MAAM,yCAIlB,OAFAuW,EAAO,IAAIm+C,EAAel0E,KAAMyoB,EAASiiC,EAAUypB,GACnDn0E,KAAK23E,OAAO33E,KAAKywE,OAAO8D,YAAYx+C,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,aAAe,GAAIh4E,KAAKg4E,aAAe,GACnGh4E,IACT,EAEA03E,EAAcl4E,UAAU2/D,QAAU,SAASzpC,EAAM69C,EAAOC,GAEtD,GADAxzE,KAAKy4E,cACO,MAAR/iD,EACF,MAAM,IAAIlW,MAAM,2BAElB,GAAIxf,KAAK01B,KACP,MAAM,IAAIlW,MAAM,yCAOlB,OALAxf,KAAK+3E,YAAc,IAAItD,EAAWz0E,KAAMuzE,EAAOC,GAC/CxzE,KAAK+3E,YAAYiB,aAAetjD,EAChC11B,KAAK+3E,YAAY5pE,UAAW,EAC5BnO,KAAKg4E,eACLh4E,KAAKi4E,SAASj4E,KAAKg4E,cAAgBh4E,KAAK+3E,YACjC/3E,IACT,EAEA03E,EAAcl4E,UAAU4zE,WAAa,SAASpyE,EAAMoE,GAClD,IAAI2wB,EAIJ,OAHA/1B,KAAKy4E,cACL1iD,EAAO,IAAIm9C,EAAclzE,KAAMgB,EAAMoE,GACrCpF,KAAK23E,OAAO33E,KAAKywE,OAAO2C,WAAWr9C,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,aAAe,GAAIh4E,KAAKg4E,aAAe,GAClGh4E,IACT,EAEA03E,EAAcl4E,UAAUq1E,QAAU,SAASnC,EAAaC,EAAeC,EAAeC,EAAkBC,GACtG,IAAI/8C,EAIJ,OAHA/1B,KAAKy4E,cACL1iD,EAAO,IAAI08C,EAAczyE,KAAM0yE,EAAaC,EAAeC,EAAeC,EAAkBC,GAC5F9yE,KAAK23E,OAAO33E,KAAKywE,OAAOwC,WAAWl9C,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,aAAe,GAAIh4E,KAAKg4E,aAAe,GAClGh4E,IACT,EAEA03E,EAAcl4E,UAAUgiE,OAAS,SAASxgE,EAAMoE,GAC9C,IAAI2wB,EAIJ,OAHA/1B,KAAKy4E,cACL1iD,EAAO,IAAIs9C,EAAarzE,MAAM,EAAOgB,EAAMoE,GAC3CpF,KAAK23E,OAAO33E,KAAKywE,OAAOsD,UAAUh+C,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,aAAe,GAAIh4E,KAAKg4E,aAAe,GACjGh4E,IACT,EAEA03E,EAAcl4E,UAAUs1E,QAAU,SAAS9zE,EAAMoE,GAC/C,IAAI2wB,EAIJ,OAHA/1B,KAAKy4E,cACL1iD,EAAO,IAAIs9C,EAAarzE,MAAM,EAAMgB,EAAMoE,GAC1CpF,KAAK23E,OAAO33E,KAAKywE,OAAOsD,UAAUh+C,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,aAAe,GAAIh4E,KAAKg4E,aAAe,GACjGh4E,IACT,EAEA03E,EAAcl4E,UAAUu1E,SAAW,SAAS/zE,EAAMoE,GAChD,IAAI2wB,EAIJ,OAHA/1B,KAAKy4E,cACL1iD,EAAO,IAAIi+C,EAAeh0E,KAAMgB,EAAMoE,GACtCpF,KAAK23E,OAAO33E,KAAKywE,OAAOwD,YAAYl+C,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,aAAe,GAAIh4E,KAAKg4E,aAAe,GACnGh4E,IACT,EAEA03E,EAAcl4E,UAAUmrE,GAAK,WAC3B,GAAI3qE,KAAKg4E,aAAe,EACtB,MAAM,IAAIx4D,MAAM,oCAclB,OAZIxf,KAAK+3E,aACH/3E,KAAK+3E,YAAY5pE,SACnBnO,KAAKi5E,UAAUj5E,KAAK+3E,aAEpB/3E,KAAKk5E,SAASl5E,KAAK+3E,aAErB/3E,KAAK+3E,YAAc,MAEnB/3E,KAAKi5E,UAAUj5E,KAAKi4E,SAASj4E,KAAKg4E,sBAE7Bh4E,KAAKi4E,SAASj4E,KAAKg4E,cAC1Bh4E,KAAKg4E,eACEh4E,IACT,EAEA03E,EAAcl4E,UAAUmU,IAAM,WAC5B,KAAO3T,KAAKg4E,cAAgB,GAC1Bh4E,KAAK2qE,KAEP,OAAO3qE,KAAK43E,OACd,EAEAF,EAAcl4E,UAAUi5E,YAAc,WACpC,GAAIz4E,KAAK+3E,YAEP,OADA/3E,KAAK+3E,YAAY5pE,UAAW,EACrBnO,KAAKk5E,SAASl5E,KAAK+3E,YAE9B,EAEAL,EAAcl4E,UAAU05E,SAAW,SAASnjD,GAC1C,IAAI60C,EAAKngB,EAAOzpD,EAAM0zE,EACtB,IAAK3+C,EAAKojD,OAAQ,CAKhB,GAJKn5E,KAAK01B,MAA8B,IAAtB11B,KAAKg4E,cAAsBjiD,EAAKhoB,OAASoiE,EAAS3B,UAClExuE,KAAK01B,KAAOK,GAEd00B,EAAQ,GACJ10B,EAAKhoB,OAASoiE,EAAS3B,QAAS,CAIlC,IAAKxtE,KAHLhB,KAAK01E,cAAcz5D,MAAQo7D,EAAYrH,QACvCvlB,EAAQzqD,KAAKywE,OAAO2I,OAAOrjD,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,cAAgB,IAAMjiD,EAAK/0B,KACrF0zE,EAAO3+C,EAAKuiD,QAELtO,EAAQ9oE,KAAKwzE,EAAM1zE,KACxB4pE,EAAM8J,EAAK1zE,GACXypD,GAASzqD,KAAKywE,OAAOr0C,UAAUwuC,EAAK5qE,KAAK01E,cAAe11E,KAAKg4E,eAE/DvtB,IAAU10B,EAAK5nB,SAAW,IAAM,MAAQnO,KAAKywE,OAAO4I,QAAQtjD,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,cAC3Fh4E,KAAK01E,cAAcz5D,MAAQo7D,EAAYpH,SACzC,MACEjwE,KAAK01E,cAAcz5D,MAAQo7D,EAAYrH,QACvCvlB,EAAQzqD,KAAKywE,OAAO2I,OAAOrjD,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,cAAgB,aAAejiD,EAAKijD,aAC1FjjD,EAAKw9C,OAASx9C,EAAKy9C,MACrB/oB,GAAS,YAAc10B,EAAKw9C,MAAQ,MAAQx9C,EAAKy9C,MAAQ,IAChDz9C,EAAKy9C,QACd/oB,GAAS,YAAc10B,EAAKy9C,MAAQ,KAElCz9C,EAAK5nB,UACPs8C,GAAS,KACTzqD,KAAK01E,cAAcz5D,MAAQo7D,EAAYpH,YAEvCjwE,KAAK01E,cAAcz5D,MAAQo7D,EAAYnH,SACvCzlB,GAAS,KAEXA,GAASzqD,KAAKywE,OAAO4I,QAAQtjD,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,cAG9D,OADAh4E,KAAK23E,OAAOltB,EAAOzqD,KAAKg4E,cACjBjiD,EAAKojD,QAAS,CACvB,CACF,EAEAzB,EAAcl4E,UAAUy5E,UAAY,SAASljD,GAC3C,IAAI00B,EACJ,IAAK10B,EAAKujD,SAUR,MATQ,GACRt5E,KAAK01E,cAAcz5D,MAAQo7D,EAAYnH,SAErCzlB,EADE10B,EAAKhoB,OAASoiE,EAAS3B,QACjBxuE,KAAKywE,OAAO2I,OAAOrjD,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,cAAgB,KAAOjiD,EAAK/0B,KAAO,IAAMhB,KAAKywE,OAAO4I,QAAQtjD,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,cAE9Ih4E,KAAKywE,OAAO2I,OAAOrjD,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,cAAgB,KAAOh4E,KAAKywE,OAAO4I,QAAQtjD,EAAM/1B,KAAK01E,cAAe11E,KAAKg4E,cAEtIh4E,KAAK01E,cAAcz5D,MAAQo7D,EAAYtH,KACvC/vE,KAAK23E,OAAOltB,EAAOzqD,KAAKg4E,cACjBjiD,EAAKujD,UAAW,CAE3B,EAEA5B,EAAcl4E,UAAUm4E,OAAS,SAASltB,EAAO8uB,GAE/C,OADAv5E,KAAKk4E,iBAAkB,EAChBl4E,KAAK63E,eAAeptB,EAAO8uB,EAAQ,EAC5C,EAEA7B,EAAcl4E,UAAUo4E,MAAQ,WAE9B,OADA53E,KAAKm4E,mBAAoB,EAClBn4E,KAAK83E,eACd,EAEAJ,EAAcl4E,UAAU6wE,UAAY,SAASrvE,GAC3C,OAAY,MAARA,EACK,GAEA,UAAYA,EAAO,GAE9B,EAEA02E,EAAcl4E,UAAUkrE,IAAM,WAC5B,OAAO1qE,KAAKssC,QAAQ7pC,MAAMzC,KAAMsC,UAClC,EAEAo1E,EAAcl4E,UAAUg6E,IAAM,SAASx4E,EAAMk7B,EAAY4mC,GACvD,OAAO9iE,KAAK+1B,KAAK/0B,EAAMk7B,EAAY4mC,EACrC,EAEA4U,EAAcl4E,UAAUirE,IAAM,SAASrlE,GACrC,OAAOpF,KAAK8iE,KAAK19D,EACnB,EAEAsyE,EAAcl4E,UAAUi6E,IAAM,SAASr0E,GACrC,OAAOpF,KAAK++D,MAAM35D,EACpB,EAEAsyE,EAAcl4E,UAAUk6E,IAAM,SAASt0E,GACrC,OAAOpF,KAAKi/D,QAAQ75D,EACtB,EAEAsyE,EAAcl4E,UAAUm6E,IAAM,SAASljE,EAAQrR,GAC7C,OAAOpF,KAAKw4E,YAAY/hE,EAAQrR,EAClC,EAEAsyE,EAAcl4E,UAAUo6E,IAAM,SAASnxD,EAASiiC,EAAUypB,GACxD,OAAOn0E,KAAKu0E,YAAY9rD,EAASiiC,EAAUypB,EAC7C,EAEAuD,EAAcl4E,UAAUq6E,IAAM,SAASnkD,EAAM69C,EAAOC,GAClD,OAAOxzE,KAAKm/D,QAAQzpC,EAAM69C,EAAOC,EACnC,EAEAkE,EAAcl4E,UAAUsM,EAAI,SAAS9K,EAAMk7B,EAAY4mC,GACrD,OAAO9iE,KAAKssC,QAAQtrC,EAAMk7B,EAAY4mC,EACxC,EAEA4U,EAAcl4E,UAAUolB,EAAI,SAAS5jB,EAAMk7B,EAAY4mC,GACrD,OAAO9iE,KAAK+1B,KAAK/0B,EAAMk7B,EAAY4mC,EACrC,EAEA4U,EAAcl4E,UAAUquB,EAAI,SAASzoB,GACnC,OAAOpF,KAAK8iE,KAAK19D,EACnB,EAEAsyE,EAAcl4E,UAAUsmE,EAAI,SAAS1gE,GACnC,OAAOpF,KAAK++D,MAAM35D,EACpB,EAEAsyE,EAAcl4E,UAAU+K,EAAI,SAASnF,GACnC,OAAOpF,KAAKi/D,QAAQ75D,EACtB,EAEAsyE,EAAcl4E,UAAU+oE,EAAI,SAASnjE,GACnC,OAAOpF,KAAKoU,IAAIhP,EAClB,EAEAsyE,EAAcl4E,UAAUgC,EAAI,SAASiV,EAAQrR,GAC3C,OAAOpF,KAAKw4E,YAAY/hE,EAAQrR,EAClC,EAEAsyE,EAAcl4E,UAAUorE,IAAM,WAC5B,OAAI5qE,KAAK+3E,aAAe/3E,KAAK+3E,YAAYhqE,OAASoiE,EAASlB,QAClDjvE,KAAK60E,QAAQpyE,MAAMzC,KAAMsC,WAEzBtC,KAAKo8B,UAAU35B,MAAMzC,KAAMsC,UAEtC,EAEAo1E,EAAcl4E,UAAUmH,EAAI,WAC1B,OAAI3G,KAAK+3E,aAAe/3E,KAAK+3E,YAAYhqE,OAASoiE,EAASlB,QAClDjvE,KAAK60E,QAAQpyE,MAAMzC,KAAMsC,WAEzBtC,KAAKo8B,UAAU35B,MAAMzC,KAAMsC,UAEtC,EAEAo1E,EAAcl4E,UAAUy1E,IAAM,SAASj0E,EAAMoE,GAC3C,OAAOpF,KAAKwhE,OAAOxgE,EAAMoE,EAC3B,EAEAsyE,EAAcl4E,UAAU01E,KAAO,SAASl0E,EAAMoE,GAC5C,OAAOpF,KAAK80E,QAAQ9zE,EAAMoE,EAC5B,EAEAsyE,EAAcl4E,UAAU21E,IAAM,SAASn0E,EAAMoE,GAC3C,OAAOpF,KAAK+0E,SAAS/zE,EAAMoE,EAC7B,EAEOsyE,CAER,CAlegC,EAoelC,GAAEx2E,KAAKlB,8BC9gBR,WACE,IAAImwE,EAAoBa,EAEtBhH,EAAU,CAAC,EAAEvqE,eAEfuxE,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBptE,EAAOC,QAAqB,SAAUylD,GAGpC,SAASqxB,EAASptE,GAChBotE,EAASnN,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAC1C1M,KAAK+N,KAAOoiE,EAASX,KACvB,CAUA,OAvBS,SAASl3D,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAQzR4K,CAAO0vE,EAAUrxB,GAOjBqxB,EAASt6E,UAAUqM,MAAQ,WACzB,OAAOtM,OAAOqB,OAAOZ,KACvB,EAEA85E,EAASt6E,UAAUkG,SAAW,SAASM,GACrC,MAAO,EACT,EAEO8zE,CAER,CAlB2B,CAkBzB9I,EAEJ,GAAE9vE,KAAKlB,8BC7BR,WACE,IAAImwE,EAAUC,EAA0BoE,EAAiBxD,EAASvB,EAAUC,EAAY9xD,EAAUjR,EAEhGq9D,EAAU,CAAC,EAAEvqE,eAEfkN,EAAM,EAAQ,OAAciR,EAAWjR,EAAIiR,SAAU8xD,EAAa/iE,EAAI+iE,WAAYD,EAAW9iE,EAAI8iE,SAEjGuB,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBC,EAAe,EAAQ,OAEvBoE,EAAkB,EAAQ,OAE1BzxE,EAAOC,QAAuB,SAAUylD,GAGtC,SAAS6uB,EAAW5qE,EAAQ1L,EAAMk7B,GAChC,IAAI5jB,EAAO5V,EAAGL,EAAKqyE,EAEnB,GADA4C,EAAW3K,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAChC,MAAR1L,EACF,MAAM,IAAIwe,MAAM,yBAA2Bxf,KAAKqwE,aASlD,GAPArwE,KAAKgB,KAAOhB,KAAK8I,UAAU9H,KAAKA,GAChChB,KAAK+N,KAAOoiE,EAAS3B,QACrBxuE,KAAKs4E,QAAU,CAAC,EAChBt4E,KAAKwwE,eAAiB,KACJ,MAAdt0C,GACFl8B,KAAKo8B,UAAUF,GAEbxvB,EAAOqB,OAASoiE,EAASnB,WAC3BhvE,KAAK+5E,QAAS,EACd/5E,KAAK40E,eAAiBloE,EACtBA,EAAO+oE,WAAaz1E,KAChB0M,EAAOyB,UAET,IAAKzL,EAAI,EAAGL,GADZqyE,EAAOhoE,EAAOyB,UACSzM,OAAQgB,EAAIL,EAAKK,IAEtC,IADA4V,EAAQo8D,EAAKhyE,IACHqL,OAASoiE,EAASlB,QAAS,CACnC32D,EAAMtX,KAAOhB,KAAKgB,KAClB,KACF,CAIR,CAsPA,OAlSS,SAASsX,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAczR4K,CAAOktE,EAAY7uB,GAgCnBlpD,OAAOyF,eAAesyE,EAAW93E,UAAW,UAAW,CACrD2mB,IAAK,WACH,OAAOnmB,KAAKgB,IACd,IAGFzB,OAAOyF,eAAesyE,EAAW93E,UAAW,eAAgB,CAC1D2mB,IAAK,WACH,MAAO,EACT,IAGF5mB,OAAOyF,eAAesyE,EAAW93E,UAAW,SAAU,CACpD2mB,IAAK,WACH,MAAO,EACT,IAGF5mB,OAAOyF,eAAesyE,EAAW93E,UAAW,YAAa,CACvD2mB,IAAK,WACH,OAAOnmB,KAAKgB,IACd,IAGFzB,OAAOyF,eAAesyE,EAAW93E,UAAW,KAAM,CAChD2mB,IAAK,WACH,MAAM,IAAI3G,MAAM,sCAAwCxf,KAAKqwE,YAC/D,IAGF9wE,OAAOyF,eAAesyE,EAAW93E,UAAW,YAAa,CACvD2mB,IAAK,WACH,MAAM,IAAI3G,MAAM,sCAAwCxf,KAAKqwE,YAC/D,IAGF9wE,OAAOyF,eAAesyE,EAAW93E,UAAW,YAAa,CACvD2mB,IAAK,WACH,MAAM,IAAI3G,MAAM,sCAAwCxf,KAAKqwE,YAC/D,IAGF9wE,OAAOyF,eAAesyE,EAAW93E,UAAW,aAAc,CACxD2mB,IAAK,WAIH,OAHKnmB,KAAKg6E,cAAiBh6E,KAAKg6E,aAAaxkD,QAC3Cx1B,KAAKg6E,aAAe,IAAIxF,EAAgBx0E,KAAKs4E,UAExCt4E,KAAKg6E,YACd,IAGF1C,EAAW93E,UAAUqM,MAAQ,WAC3B,IAAI++D,EAAKyN,EAAS4B,EAAYvF,EAO9B,IAAK2D,KANL4B,EAAa16E,OAAOqB,OAAOZ,OACZ+5E,SACbE,EAAWrF,eAAiB,MAE9BqF,EAAW3B,QAAU,CAAC,EACtB5D,EAAO10E,KAAKs4E,QAELtO,EAAQ9oE,KAAKwzE,EAAM2D,KACxBzN,EAAM8J,EAAK2D,GACX4B,EAAW3B,QAAQD,GAAWzN,EAAI/+D,SASpC,OAPAouE,EAAW9rE,SAAW,GACtBnO,KAAKmO,SAASpD,SAAQ,SAASuN,GAC7B,IAAI4hE,EAGJ,OAFAA,EAAc5hE,EAAMzM,SACRa,OAASutE,EACdA,EAAW9rE,SAAS3N,KAAK05E,EAClC,IACOD,CACT,EAEA3C,EAAW93E,UAAU48B,UAAY,SAASp7B,EAAMoE,GAC9C,IAAIizE,EAAS/H,EAIb,GAHY,MAARtvE,IACFA,EAAOyuE,EAASzuE,IAEd4c,EAAS5c,GACX,IAAKq3E,KAAWr3E,EACTgpE,EAAQ9oE,KAAKF,EAAMq3E,KACxB/H,EAAWtvE,EAAKq3E,GAChBr4E,KAAKo8B,UAAUi8C,EAAS/H,SAGtBZ,EAAWtqE,KACbA,EAAQA,EAAM3C,SAEZzC,KAAKgG,QAAQ4yE,oBAAgC,MAATxzE,EACtCpF,KAAKs4E,QAAQt3E,GAAQ,IAAIovE,EAAapwE,KAAMgB,EAAM,IAChC,MAAToE,IACTpF,KAAKs4E,QAAQt3E,GAAQ,IAAIovE,EAAapwE,KAAMgB,EAAMoE,IAGtD,OAAOpF,IACT,EAEAs3E,EAAW93E,UAAU26E,gBAAkB,SAASn5E,GAC9C,IAAIq3E,EAAS31E,EAAGL,EAChB,GAAY,MAARrB,EACF,MAAM,IAAIwe,MAAM,2BAA6Bxf,KAAKqwE,aAGpD,GADArvE,EAAOyuE,EAASzuE,GACZY,MAAM+C,QAAQ3D,GAChB,IAAK0B,EAAI,EAAGL,EAAMrB,EAAKU,OAAQgB,EAAIL,EAAKK,IACtC21E,EAAUr3E,EAAK0B,UACR1C,KAAKs4E,QAAQD,eAGfr4E,KAAKs4E,QAAQt3E,GAEtB,OAAOhB,IACT,EAEAs3E,EAAW93E,UAAUkG,SAAW,SAASM,GACvC,OAAOhG,KAAKgG,QAAQyqE,OAAOnkC,QAAQtsC,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GAC7E,EAEAsxE,EAAW93E,UAAUorE,IAAM,SAAS5pE,EAAMoE,GACxC,OAAOpF,KAAKo8B,UAAUp7B,EAAMoE,EAC9B,EAEAkyE,EAAW93E,UAAUmH,EAAI,SAAS3F,EAAMoE,GACtC,OAAOpF,KAAKo8B,UAAUp7B,EAAMoE,EAC9B,EAEAkyE,EAAW93E,UAAU4Y,aAAe,SAASpX,GAC3C,OAAIhB,KAAKs4E,QAAQ74E,eAAeuB,GACvBhB,KAAKs4E,QAAQt3E,GAAMoE,MAEnB,IAEX,EAEAkyE,EAAW93E,UAAUizC,aAAe,SAASzxC,EAAMoE,GACjD,MAAM,IAAIoa,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAU46E,iBAAmB,SAASp5E,GAC/C,OAAIhB,KAAKs4E,QAAQ74E,eAAeuB,GACvBhB,KAAKs4E,QAAQt3E,GAEb,IAEX,EAEAs2E,EAAW93E,UAAU66E,iBAAmB,SAASC,GAC/C,MAAM,IAAI96D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAU+6E,oBAAsB,SAASC,GAClD,MAAM,IAAIh7D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAU02E,qBAAuB,SAASl1E,GACnD,MAAM,IAAIwe,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAUi7E,eAAiB,SAAS7J,EAAcC,GAC3D,MAAM,IAAIrxD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAUk7E,eAAiB,SAAS9J,EAAcuB,EAAe/sE,GAC1E,MAAM,IAAIoa,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAUm7E,kBAAoB,SAAS/J,EAAcC,GAC9D,MAAM,IAAIrxD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAUo7E,mBAAqB,SAAShK,EAAcC,GAC/D,MAAM,IAAIrxD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAUq7E,mBAAqB,SAASP,GACjD,MAAM,IAAI96D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAUg3E,uBAAyB,SAAS5F,EAAcC,GACnE,MAAM,IAAIrxD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAUs7E,aAAe,SAAS95E,GAC3C,OAAOhB,KAAKs4E,QAAQ74E,eAAeuB,EACrC,EAEAs2E,EAAW93E,UAAUu7E,eAAiB,SAASnK,EAAcC,GAC3D,MAAM,IAAIrxD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAUw7E,eAAiB,SAASh6E,EAAMuvE,GACnD,OAAIvwE,KAAKs4E,QAAQ74E,eAAeuB,GACvBhB,KAAKs4E,QAAQt3E,GAAMuvE,KAEnBA,CAEX,EAEA+G,EAAW93E,UAAUy7E,iBAAmB,SAASrK,EAAcC,EAAWN,GACxE,MAAM,IAAI/wD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAU07E,mBAAqB,SAASC,EAAQ5K,GACzD,MAAM,IAAI/wD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAU02E,qBAAuB,SAASC,GACnD,MAAM,IAAI32D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAUg3E,uBAAyB,SAAS5F,EAAcC,GACnE,MAAM,IAAIrxD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAUq3E,uBAAyB,SAASC,GACrD,MAAM,IAAIt3D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAiH,EAAW93E,UAAUmxE,YAAc,SAAS56C,GAC1C,IAAIv0B,EAAGkB,EAAGgyE,EACV,IAAK4C,EAAW3K,UAAUgE,YAAYluE,MAAMzC,KAAMsC,WAAWquE,YAAY56C,GACvE,OAAO,EAET,GAAIA,EAAK66C,eAAiB5wE,KAAK4wE,aAC7B,OAAO,EAET,GAAI76C,EAAKr2B,SAAWM,KAAKN,OACvB,OAAO,EAET,GAAIq2B,EAAK86C,YAAc7wE,KAAK6wE,UAC1B,OAAO,EAET,GAAI96C,EAAKuiD,QAAQ52E,SAAW1B,KAAKs4E,QAAQ52E,OACvC,OAAO,EAET,IAAKF,EAAIkB,EAAI,EAAGgyE,EAAO10E,KAAKs4E,QAAQ52E,OAAS,EAAG,GAAKgzE,EAAOhyE,GAAKgyE,EAAOhyE,GAAKgyE,EAAMlzE,EAAI,GAAKkzE,IAAShyE,IAAMA,EACzG,IAAK1C,KAAKs4E,QAAQ92E,GAAGmvE,YAAY56C,EAAKuiD,QAAQ92E,IAC5C,OAAO,EAGX,OAAO,CACT,EAEO81E,CAER,CAvR6B,CAuR3BtG,EAEJ,GAAE9vE,KAAKlB,0BCxSR,WAGE+C,EAAOC,QAA4B,WACjC,SAASwxE,EAAgBh/C,GACvBx1B,KAAKw1B,MAAQA,CACf,CA8CA,OA5CAj2B,OAAOyF,eAAewvE,EAAgBh1E,UAAW,SAAU,CACzD2mB,IAAK,WACH,OAAO5mB,OAAO+G,KAAKtG,KAAKw1B,OAAO9zB,QAAU,CAC3C,IAGF8yE,EAAgBh1E,UAAUqM,MAAQ,WAChC,OAAO7L,KAAKw1B,MAAQ,IACtB,EAEAg/C,EAAgBh1E,UAAU47E,aAAe,SAASp6E,GAChD,OAAOhB,KAAKw1B,MAAMx0B,EACpB,EAEAwzE,EAAgBh1E,UAAU67E,aAAe,SAAStlD,GAChD,IAAIulD,EAGJ,OAFAA,EAAUt7E,KAAKw1B,MAAMO,EAAKw3C,UAC1BvtE,KAAKw1B,MAAMO,EAAKw3C,UAAYx3C,EACrBulD,GAAW,IACpB,EAEA9G,EAAgBh1E,UAAU+7E,gBAAkB,SAASv6E,GACnD,IAAIs6E,EAGJ,OAFAA,EAAUt7E,KAAKw1B,MAAMx0B,UACdhB,KAAKw1B,MAAMx0B,GACXs6E,GAAW,IACpB,EAEA9G,EAAgBh1E,UAAU0I,KAAO,SAASgB,GACxC,OAAOlJ,KAAKw1B,MAAMj2B,OAAO+G,KAAKtG,KAAKw1B,OAAOtsB,KAAW,IACvD,EAEAsrE,EAAgBh1E,UAAUg8E,eAAiB,SAAS5K,EAAcC,GAChE,MAAM,IAAIrxD,MAAM,sCAClB,EAEAg1D,EAAgBh1E,UAAUi8E,eAAiB,SAAS1lD,GAClD,MAAM,IAAIvW,MAAM,sCAClB,EAEAg1D,EAAgBh1E,UAAUk8E,kBAAoB,SAAS9K,EAAcC,GACnE,MAAM,IAAIrxD,MAAM,sCAClB,EAEOg1D,CAER,CAnDkC,EAqDpC,GAAEtzE,KAAKlB,8BCxDR,WACE,IAAI27E,EAAkBxL,EAAUY,EAAUO,EAAY4C,EAAgBO,EAAYqF,EAAUxC,EAAsCsE,EAAarE,EAA0BC,EAAQC,EAAShI,EAAUtD,EAASuD,EAAY9xD,EAAU82D,EACjO1K,EAAU,CAAC,EAAEvqE,eAEfi1E,EAAO,EAAQ,OAAc92D,EAAW82D,EAAK92D,SAAU8xD,EAAagF,EAAKhF,WAAYvD,EAAUuI,EAAKvI,QAASsD,EAAWiF,EAAKjF,SAE7H6H,EAAa,KAEbvG,EAAW,KAEXO,EAAa,KAEb4C,EAAiB,KAEjBO,EAAa,KAEb+C,EAAS,KAETC,EAAU,KAEVF,EAA2B,KAE3BuC,EAAW,KAEX3J,EAAW,KAEXyL,EAAc,KAIdD,EAAmB,KAEnB54E,EAAOC,QAAoB,WACzB,SAASguE,EAAQ6K,GACf77E,KAAK0M,OAASmvE,EACV77E,KAAK0M,SACP1M,KAAKgG,QAAUhG,KAAK0M,OAAO1G,QAC3BhG,KAAK8I,UAAY9I,KAAK0M,OAAO5D,WAE/B9I,KAAKoF,MAAQ,KACbpF,KAAKmO,SAAW,GAChBnO,KAAK87E,QAAU,KACVxE,IACHA,EAAa,EAAQ,OACrBvG,EAAW,EAAQ,OACnBO,EAAa,EAAQ,OACrB4C,EAAiB,EAAQ,OACzBO,EAAa,EAAQ,OACrB+C,EAAS,EAAQ,MACjBC,EAAU,EAAQ,OAClBF,EAA2B,EAAQ,OACnCuC,EAAW,EAAQ,OACnB3J,EAAW,EAAQ,OACnByL,EAAc,EAAQ,OACJ,EAAQ,OAC1BD,EAAmB,EAAQ,OAE/B,CAktBA,OAhtBAp8E,OAAOyF,eAAegsE,EAAQxxE,UAAW,WAAY,CACnD2mB,IAAK,WACH,OAAOnmB,KAAKgB,IACd,IAGFzB,OAAOyF,eAAegsE,EAAQxxE,UAAW,WAAY,CACnD2mB,IAAK,WACH,OAAOnmB,KAAK+N,IACd,IAGFxO,OAAOyF,eAAegsE,EAAQxxE,UAAW,YAAa,CACpD2mB,IAAK,WACH,OAAOnmB,KAAKoF,KACd,IAGF7F,OAAOyF,eAAegsE,EAAQxxE,UAAW,aAAc,CACrD2mB,IAAK,WACH,OAAOnmB,KAAK0M,MACd,IAGFnN,OAAOyF,eAAegsE,EAAQxxE,UAAW,aAAc,CACrD2mB,IAAK,WAIH,OAHKnmB,KAAK+7E,eAAkB/7E,KAAK+7E,cAAcvmD,QAC7Cx1B,KAAK+7E,cAAgB,IAAIH,EAAY57E,KAAKmO,WAErCnO,KAAK+7E,aACd,IAGFx8E,OAAOyF,eAAegsE,EAAQxxE,UAAW,aAAc,CACrD2mB,IAAK,WACH,OAAOnmB,KAAKmO,SAAS,IAAM,IAC7B,IAGF5O,OAAOyF,eAAegsE,EAAQxxE,UAAW,YAAa,CACpD2mB,IAAK,WACH,OAAOnmB,KAAKmO,SAASnO,KAAKmO,SAASzM,OAAS,IAAM,IACpD,IAGFnC,OAAOyF,eAAegsE,EAAQxxE,UAAW,kBAAmB,CAC1D2mB,IAAK,WACH,IAAI3kB,EAEJ,OADAA,EAAIxB,KAAK0M,OAAOyB,SAAS7J,QAAQtE,MAC1BA,KAAK0M,OAAOyB,SAAS3M,EAAI,IAAM,IACxC,IAGFjC,OAAOyF,eAAegsE,EAAQxxE,UAAW,cAAe,CACtD2mB,IAAK,WACH,IAAI3kB,EAEJ,OADAA,EAAIxB,KAAK0M,OAAOyB,SAAS7J,QAAQtE,MAC1BA,KAAK0M,OAAOyB,SAAS3M,EAAI,IAAM,IACxC,IAGFjC,OAAOyF,eAAegsE,EAAQxxE,UAAW,gBAAiB,CACxD2mB,IAAK,WACH,OAAOnmB,KAAK+d,YAAc,IAC5B,IAGFxe,OAAOyF,eAAegsE,EAAQxxE,UAAW,cAAe,CACtD2mB,IAAK,WACH,IAAI7N,EAAO5V,EAAGL,EAAKsyE,EAAMlqE,EACzB,GAAIzK,KAAK6iE,WAAasN,EAAS3B,SAAWxuE,KAAK6iE,WAAasN,EAASjB,iBAAkB,CAGrF,IAFAzkE,EAAM,GAED/H,EAAI,EAAGL,GADZsyE,EAAO30E,KAAKmO,UACWzM,OAAQgB,EAAIL,EAAKK,KACtC4V,EAAQq8D,EAAKjyE,IACHs5E,cACRvxE,GAAO6N,EAAM0jE,aAGjB,OAAOvxE,CACT,CACE,OAAO,IAEX,EACA8tB,IAAK,SAASnzB,GACZ,MAAM,IAAIoa,MAAM,sCAAwCxf,KAAKqwE,YAC/D,IAGFW,EAAQxxE,UAAUy8E,UAAY,SAASvvE,GACrC,IAAI4L,EAAO5V,EAAGL,EAAKsyE,EAAMv6C,EAQzB,IAPAp6B,KAAK0M,OAASA,EACVA,IACF1M,KAAKgG,QAAU0G,EAAO1G,QACtBhG,KAAK8I,UAAY4D,EAAO5D,WAG1BsxB,EAAU,GACL13B,EAAI,EAAGL,GAFZsyE,EAAO30E,KAAKmO,UAEWzM,OAAQgB,EAAIL,EAAKK,IACtC4V,EAAQq8D,EAAKjyE,GACb03B,EAAQ55B,KAAK8X,EAAM2jE,UAAUj8E,OAE/B,OAAOo6B,CACT,EAEA42C,EAAQxxE,UAAU8sC,QAAU,SAAStrC,EAAMk7B,EAAY4mC,GACrD,IAAIoZ,EAAWh0E,EAAMxF,EAAGy5E,EAAGv3E,EAAKw3E,EAAW/5E,EAAKg6E,EAAM1H,EAAM2H,EAAMnxE,EAelE,GAdAixE,EAAY,KACO,OAAflgD,GAAgC,MAAR4mC,IACP5mC,GAAnBy4C,EAAO,CAAC,CAAC,EAAG,OAAyB,GAAI7R,EAAO6R,EAAK,IAErC,MAAdz4C,IACFA,EAAa,CAAC,GAEhBA,EAAauzC,EAASvzC,GACjBte,EAASse,KACe4mC,GAA3BwZ,EAAO,CAACpgD,EAAY4mC,IAAmB,GAAI5mC,EAAaogD,EAAK,IAEnD,MAARt7E,IACFA,EAAOyuE,EAASzuE,IAEdY,MAAM+C,QAAQ3D,GAChB,IAAK0B,EAAI,EAAGL,EAAMrB,EAAKU,OAAQgB,EAAIL,EAAKK,IACtCwF,EAAOlH,EAAK0B,GACZ05E,EAAYp8E,KAAKssC,QAAQpkC,QAEtB,GAAIwnE,EAAW1uE,GACpBo7E,EAAYp8E,KAAKssC,QAAQtrC,EAAKyB,cACzB,GAAImb,EAAS5c,IAClB,IAAK4D,KAAO5D,EACV,GAAKgpE,EAAQ9oE,KAAKF,EAAM4D,GAKxB,GAJAuG,EAAMnK,EAAK4D,GACP8qE,EAAWvkE,KACbA,EAAMA,EAAI1I,UAEPzC,KAAKgG,QAAQu2E,kBAAoBv8E,KAAK8I,UAAU0zE,eAA+D,IAA9C53E,EAAIN,QAAQtE,KAAK8I,UAAU0zE,eAC/FJ,EAAYp8E,KAAKo8B,UAAUx3B,EAAIsO,OAAOlT,KAAK8I,UAAU0zE,cAAc96E,QAASyJ,QACvE,IAAKnL,KAAKgG,QAAQy2E,oBAAsB76E,MAAM+C,QAAQwG,IAAQghE,EAAQhhE,GAC3EixE,EAAYp8E,KAAKu4E,aACZ,GAAI36D,EAASzS,IAAQghE,EAAQhhE,GAClCixE,EAAYp8E,KAAKssC,QAAQ1nC,QACpB,GAAK5E,KAAKgG,QAAQ02E,eAAyB,MAAPvxE,EAEpC,IAAKnL,KAAKgG,QAAQy2E,oBAAsB76E,MAAM+C,QAAQwG,GAC3D,IAAKgxE,EAAI,EAAGE,EAAOlxE,EAAIzJ,OAAQy6E,EAAIE,EAAMF,IACvCj0E,EAAOiD,EAAIgxE,IACXD,EAAY,CAAC,GACHt3E,GAAOsD,EACjBk0E,EAAYp8E,KAAKssC,QAAQ4vC,QAElBt+D,EAASzS,IACbnL,KAAKgG,QAAQu2E,kBAAoBv8E,KAAK8I,UAAU6zE,gBAAiE,IAA/C/3E,EAAIN,QAAQtE,KAAK8I,UAAU6zE,gBAChGP,EAAYp8E,KAAKssC,QAAQnhC,IAEzBixE,EAAYp8E,KAAKssC,QAAQ1nC,IACf0nC,QAAQnhC,GAGpBixE,EAAYp8E,KAAKssC,QAAQ1nC,EAAKuG,QAhB9BixE,EAAYp8E,KAAKu4E,aAuBnB6D,EAJQp8E,KAAKgG,QAAQ02E,eAA0B,OAAT5Z,GAGnC9iE,KAAKgG,QAAQu2E,kBAAoBv8E,KAAK8I,UAAU6zE,gBAAkE,IAAhD37E,EAAKsD,QAAQtE,KAAK8I,UAAU6zE,gBACrF38E,KAAK8iE,KAAKA,IACZ9iE,KAAKgG,QAAQu2E,kBAAoBv8E,KAAK8I,UAAU8zE,iBAAoE,IAAjD57E,EAAKsD,QAAQtE,KAAK8I,UAAU8zE,iBAC7F58E,KAAK++D,MAAM+D,IACb9iE,KAAKgG,QAAQu2E,kBAAoBv8E,KAAK8I,UAAU+zE,mBAAwE,IAAnD77E,EAAKsD,QAAQtE,KAAK8I,UAAU+zE,mBAC/F78E,KAAKi/D,QAAQ6D,IACf9iE,KAAKgG,QAAQu2E,kBAAoBv8E,KAAK8I,UAAUg0E,eAAgE,IAA/C97E,EAAKsD,QAAQtE,KAAK8I,UAAUg0E,eAC3F98E,KAAKoU,IAAI0uD,IACX9iE,KAAKgG,QAAQu2E,kBAAoBv8E,KAAK8I,UAAUi0E,cAA8D,IAA9C/7E,EAAKsD,QAAQtE,KAAK8I,UAAUi0E,cAC1F/8E,KAAKw4E,YAAYx3E,EAAKkS,OAAOlT,KAAK8I,UAAUi0E,aAAar7E,QAASohE,GAElE9iE,KAAK+1B,KAAK/0B,EAAMk7B,EAAY4mC,GAb9B9iE,KAAKu4E,QAgBnB,GAAiB,MAAb6D,EACF,MAAM,IAAI58D,MAAM,uCAAyCxe,EAAO,KAAOhB,KAAKqwE,aAE9E,OAAO+L,CACT,EAEApL,EAAQxxE,UAAUw9E,aAAe,SAASh8E,EAAMk7B,EAAY4mC,GAC1D,IAAIxqD,EAAO9W,EAAGy7E,EAAUC,EAAUC,EAClC,GAAY,MAARn8E,EAAeA,EAAK+M,UAAO,EAY7B,OAVAmvE,EAAWhhD,GADX+gD,EAAWj8E,GAEFi7E,UAAUj8E,MACfk9E,GACF17E,EAAI2M,SAAS7J,QAAQ44E,GACrBC,EAAUhvE,SAASgL,OAAO3X,GAC1B2M,SAAS3N,KAAKy8E,GACdr7E,MAAMpC,UAAUgB,KAAKiC,MAAM0L,SAAUgvE,IAErChvE,SAAS3N,KAAKy8E,GAETA,EAEP,GAAIj9E,KAAK+5E,OACP,MAAM,IAAIv6D,MAAM,yCAA2Cxf,KAAKqwE,UAAUrvE,IAM5E,OAJAQ,EAAIxB,KAAK0M,OAAOyB,SAAS7J,QAAQtE,MACjCm9E,EAAUn9E,KAAK0M,OAAOyB,SAASgL,OAAO3X,GACtC8W,EAAQtY,KAAK0M,OAAO4/B,QAAQtrC,EAAMk7B,EAAY4mC,GAC9ClhE,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAK0M,OAAOyB,SAAUgvE,GAC1C7kE,CAEX,EAEA04D,EAAQxxE,UAAU49E,YAAc,SAASp8E,EAAMk7B,EAAY4mC,GACzD,IAAIxqD,EAAO9W,EAAG27E,EACd,GAAIn9E,KAAK+5E,OACP,MAAM,IAAIv6D,MAAM,yCAA2Cxf,KAAKqwE,UAAUrvE,IAM5E,OAJAQ,EAAIxB,KAAK0M,OAAOyB,SAAS7J,QAAQtE,MACjCm9E,EAAUn9E,KAAK0M,OAAOyB,SAASgL,OAAO3X,EAAI,GAC1C8W,EAAQtY,KAAK0M,OAAO4/B,QAAQtrC,EAAMk7B,EAAY4mC,GAC9ClhE,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAK0M,OAAOyB,SAAUgvE,GAC1C7kE,CACT,EAEA04D,EAAQxxE,UAAU69E,OAAS,WACzB,IAAI77E,EACJ,GAAIxB,KAAK+5E,OACP,MAAM,IAAIv6D,MAAM,mCAAqCxf,KAAKqwE,aAI5D,OAFA7uE,EAAIxB,KAAK0M,OAAOyB,SAAS7J,QAAQtE,MACjC,GAAGmZ,OAAO1W,MAAMzC,KAAK0M,OAAOyB,SAAU,CAAC3M,EAAGA,EAAIA,EAAI,GAAGH,OAAc,KAC5DrB,KAAK0M,MACd,EAEAskE,EAAQxxE,UAAUu2B,KAAO,SAAS/0B,EAAMk7B,EAAY4mC,GAClD,IAAIxqD,EAAOq8D,EAcX,OAbY,MAAR3zE,IACFA,EAAOyuE,EAASzuE,IAElBk7B,IAAeA,EAAa,CAAC,GAC7BA,EAAauzC,EAASvzC,GACjBte,EAASse,KACe4mC,GAA3B6R,EAAO,CAACz4C,EAAY4mC,IAAmB,GAAI5mC,EAAay4C,EAAK,IAE/Dr8D,EAAQ,IAAIg/D,EAAWt3E,KAAMgB,EAAMk7B,GACvB,MAAR4mC,GACFxqD,EAAMwqD,KAAKA,GAEb9iE,KAAKmO,SAAS3N,KAAK8X,GACZA,CACT,EAEA04D,EAAQxxE,UAAUsjE,KAAO,SAAS19D,GAChC,IAAIkT,EAMJ,OALIsF,EAASxY,IACXpF,KAAKssC,QAAQlnC,GAEfkT,EAAQ,IAAIm/D,EAAQz3E,KAAMoF,GAC1BpF,KAAKmO,SAAS3N,KAAK8X,GACZtY,IACT,EAEAgxE,EAAQxxE,UAAUu/D,MAAQ,SAAS35D,GACjC,IAAIkT,EAGJ,OAFAA,EAAQ,IAAIy4D,EAAS/wE,KAAMoF,GAC3BpF,KAAKmO,SAAS3N,KAAK8X,GACZtY,IACT,EAEAgxE,EAAQxxE,UAAUy/D,QAAU,SAAS75D,GACnC,IAAIkT,EAGJ,OAFAA,EAAQ,IAAIg5D,EAAWtxE,KAAMoF,GAC7BpF,KAAKmO,SAAS3N,KAAK8X,GACZtY,IACT,EAEAgxE,EAAQxxE,UAAU89E,cAAgB,SAASl4E,GACzC,IAAW5D,EAAG27E,EAKd,OAJA37E,EAAIxB,KAAK0M,OAAOyB,SAAS7J,QAAQtE,MACjCm9E,EAAUn9E,KAAK0M,OAAOyB,SAASgL,OAAO3X,GAC9BxB,KAAK0M,OAAOuyD,QAAQ75D,GAC5BxD,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAK0M,OAAOyB,SAAUgvE,GAC1Cn9E,IACT,EAEAgxE,EAAQxxE,UAAU+9E,aAAe,SAASn4E,GACxC,IAAW5D,EAAG27E,EAKd,OAJA37E,EAAIxB,KAAK0M,OAAOyB,SAAS7J,QAAQtE,MACjCm9E,EAAUn9E,KAAK0M,OAAOyB,SAASgL,OAAO3X,EAAI,GAClCxB,KAAK0M,OAAOuyD,QAAQ75D,GAC5BxD,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAK0M,OAAOyB,SAAUgvE,GAC1Cn9E,IACT,EAEAgxE,EAAQxxE,UAAU4U,IAAM,SAAShP,GAC/B,IAAIkT,EAGJ,OAFAA,EAAQ,IAAIk/D,EAAOx3E,KAAMoF,GACzBpF,KAAKmO,SAAS3N,KAAK8X,GACZtY,IACT,EAEAgxE,EAAQxxE,UAAU+4E,MAAQ,WAGxB,OADQ,IAAIuB,EAAS95E,KAEvB,EAEAgxE,EAAQxxE,UAAUg5E,YAAc,SAAS/hE,EAAQrR,GAC/C,IAAIyzE,EAAWC,EAAUN,EAAa91E,EAAGL,EAOzC,GANc,MAAVoU,IACFA,EAASg5D,EAASh5D,IAEP,MAATrR,IACFA,EAAQqqE,EAASrqE,IAEfxD,MAAM+C,QAAQ8R,GAChB,IAAK/T,EAAI,EAAGL,EAAMoU,EAAO/U,OAAQgB,EAAIL,EAAKK,IACxCm2E,EAAYpiE,EAAO/T,GACnB1C,KAAKw4E,YAAYK,QAEd,GAAIj7D,EAASnH,GAClB,IAAKoiE,KAAapiE,EACXuzD,EAAQ9oE,KAAKuV,EAAQoiE,KAC1BC,EAAWriE,EAAOoiE,GAClB74E,KAAKw4E,YAAYK,EAAWC,SAG1BpJ,EAAWtqE,KACbA,EAAQA,EAAM3C,SAEhB+1E,EAAc,IAAIjB,EAAyBv3E,KAAMyW,EAAQrR,GACzDpF,KAAKmO,SAAS3N,KAAKg4E,GAErB,OAAOx4E,IACT,EAEAgxE,EAAQxxE,UAAUg+E,kBAAoB,SAAS/mE,EAAQrR,GACrD,IAAW5D,EAAG27E,EAKd,OAJA37E,EAAIxB,KAAK0M,OAAOyB,SAAS7J,QAAQtE,MACjCm9E,EAAUn9E,KAAK0M,OAAOyB,SAASgL,OAAO3X,GAC9BxB,KAAK0M,OAAO8rE,YAAY/hE,EAAQrR,GACxCxD,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAK0M,OAAOyB,SAAUgvE,GAC1Cn9E,IACT,EAEAgxE,EAAQxxE,UAAUi+E,iBAAmB,SAAShnE,EAAQrR,GACpD,IAAW5D,EAAG27E,EAKd,OAJA37E,EAAIxB,KAAK0M,OAAOyB,SAAS7J,QAAQtE,MACjCm9E,EAAUn9E,KAAK0M,OAAOyB,SAASgL,OAAO3X,EAAI,GAClCxB,KAAK0M,OAAO8rE,YAAY/hE,EAAQrR,GACxCxD,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAK0M,OAAOyB,SAAUgvE,GAC1Cn9E,IACT,EAEAgxE,EAAQxxE,UAAU+0E,YAAc,SAAS9rD,EAASiiC,EAAUypB,GAC1D,IAAIzP,EAAKmG,EAUT,OATAnG,EAAM1kE,KAAK+d,WACX8sD,EAAS,IAAIqJ,EAAexP,EAAKj8C,EAASiiC,EAAUypB,GACxB,IAAxBzP,EAAIv2D,SAASzM,OACfgjE,EAAIv2D,SAAS1B,QAAQo+D,GACZnG,EAAIv2D,SAAS,GAAGJ,OAASoiE,EAASf,YAC3C1K,EAAIv2D,SAAS,GAAK08D,EAElBnG,EAAIv2D,SAAS1B,QAAQo+D,GAEhBnG,EAAIhvC,QAAUgvC,CACvB,EAEAsM,EAAQxxE,UAAUq6E,IAAM,SAAStG,EAAOC,GACtC,IAAW9O,EAAKvF,EAAS39D,EAAGkB,EAAGy5E,EAAG95E,EAAKg6E,EAAM1H,EAAM2H,EAInD,IAHA5X,EAAM1kE,KAAK+d,WACXohD,EAAU,IAAIsV,EAAW/P,EAAK6O,EAAOC,GAEhChyE,EAAIkB,EAAI,EAAGL,GADhBsyE,EAAOjQ,EAAIv2D,UACgBzM,OAAQgB,EAAIL,EAAKb,IAAMkB,EAEhD,GADQiyE,EAAKnzE,GACHuM,OAASoiE,EAASlB,QAE1B,OADAvK,EAAIv2D,SAAS3M,GAAK29D,EACXA,EAIX,IAAK39D,EAAI26E,EAAI,EAAGE,GADhBC,EAAO5X,EAAIv2D,UACiBzM,OAAQy6E,EAAIE,EAAM76E,IAAM26E,EAElD,GADQG,EAAK96E,GACHu4E,OAER,OADArV,EAAIv2D,SAASgL,OAAO3X,EAAG,EAAG29D,GACnBA,EAIX,OADAuF,EAAIv2D,SAAS3N,KAAK2+D,GACXA,CACT,EAEA6R,EAAQxxE,UAAUmrE,GAAK,WACrB,GAAI3qE,KAAK+5E,OACP,MAAM,IAAIv6D,MAAM,kFAElB,OAAOxf,KAAK0M,MACd,EAEAskE,EAAQxxE,UAAUk2B,KAAO,WACvB,IAAIK,EAEJ,IADAA,EAAO/1B,KACA+1B,GAAM,CACX,GAAIA,EAAKhoB,OAASoiE,EAASnB,SACzB,OAAOj5C,EAAK0/C,WACP,GAAI1/C,EAAKgkD,OACd,OAAOhkD,EAEPA,EAAOA,EAAKrpB,MAEhB,CACF,EAEAskE,EAAQxxE,UAAUue,SAAW,WAC3B,IAAIgY,EAEJ,IADAA,EAAO/1B,KACA+1B,GAAM,CACX,GAAIA,EAAKhoB,OAASoiE,EAASnB,SACzB,OAAOj5C,EAEPA,EAAOA,EAAKrpB,MAEhB,CACF,EAEAskE,EAAQxxE,UAAUmU,IAAM,SAAS3N,GAC/B,OAAOhG,KAAK+d,WAAWpK,IAAI3N,EAC7B,EAEAgrE,EAAQxxE,UAAUuiB,KAAO,WACvB,IAAIvgB,EAEJ,IADAA,EAAIxB,KAAK0M,OAAOyB,SAAS7J,QAAQtE,OACzB,EACN,MAAM,IAAIwf,MAAM,8BAAgCxf,KAAKqwE,aAEvD,OAAOrwE,KAAK0M,OAAOyB,SAAS3M,EAAI,EAClC,EAEAwvE,EAAQxxE,UAAUoT,KAAO,WACvB,IAAIpR,EAEJ,IAAW,KADXA,EAAIxB,KAAK0M,OAAOyB,SAAS7J,QAAQtE,QACjBwB,IAAMxB,KAAK0M,OAAOyB,SAASzM,OAAS,EAClD,MAAM,IAAI8d,MAAM,6BAA+Bxf,KAAKqwE,aAEtD,OAAOrwE,KAAK0M,OAAOyB,SAAS3M,EAAI,EAClC,EAEAwvE,EAAQxxE,UAAUk+E,eAAiB,SAAShZ,GAC1C,IAAIiZ,EAKJ,OAJAA,EAAajZ,EAAIhvC,OAAO7pB,SACba,OAAS1M,KACpB29E,EAAW5D,QAAS,EACpB/5E,KAAKmO,SAAS3N,KAAKm9E,GACZ39E,IACT,EAEAgxE,EAAQxxE,UAAU6wE,UAAY,SAASrvE,GACrC,IAAI2zE,EAAM2H,EAEV,OAAa,OADbt7E,EAAOA,GAAQhB,KAAKgB,QAC4B,OAAvB2zE,EAAO30E,KAAK0M,QAAkBioE,EAAK3zE,UAAO,GAEhD,MAARA,EACF,YAAchB,KAAK0M,OAAO1L,KAAO,KACL,OAAvBs7E,EAAOt8E,KAAK0M,QAAkB4vE,EAAKt7E,UAAO,GAG/C,UAAYA,EAAO,eAAiBhB,KAAK0M,OAAO1L,KAAO,IAFvD,UAAYA,EAAO,IAJnB,EAQX,EAEAgwE,EAAQxxE,UAAUkrE,IAAM,SAAS1pE,EAAMk7B,EAAY4mC,GACjD,OAAO9iE,KAAKssC,QAAQtrC,EAAMk7B,EAAY4mC,EACxC,EAEAkO,EAAQxxE,UAAUg6E,IAAM,SAASx4E,EAAMk7B,EAAY4mC,GACjD,OAAO9iE,KAAK+1B,KAAK/0B,EAAMk7B,EAAY4mC,EACrC,EAEAkO,EAAQxxE,UAAUirE,IAAM,SAASrlE,GAC/B,OAAOpF,KAAK8iE,KAAK19D,EACnB,EAEA4rE,EAAQxxE,UAAUi6E,IAAM,SAASr0E,GAC/B,OAAOpF,KAAK++D,MAAM35D,EACpB,EAEA4rE,EAAQxxE,UAAUk6E,IAAM,SAASt0E,GAC/B,OAAOpF,KAAKi/D,QAAQ75D,EACtB,EAEA4rE,EAAQxxE,UAAUm6E,IAAM,SAASljE,EAAQrR,GACvC,OAAOpF,KAAKw4E,YAAY/hE,EAAQrR,EAClC,EAEA4rE,EAAQxxE,UAAUklE,IAAM,WACtB,OAAO1kE,KAAK+d,UACd,EAEAizD,EAAQxxE,UAAUo6E,IAAM,SAASnxD,EAASiiC,EAAUypB,GAClD,OAAOn0E,KAAKu0E,YAAY9rD,EAASiiC,EAAUypB,EAC7C,EAEAnD,EAAQxxE,UAAUsM,EAAI,SAAS9K,EAAMk7B,EAAY4mC,GAC/C,OAAO9iE,KAAKssC,QAAQtrC,EAAMk7B,EAAY4mC,EACxC,EAEAkO,EAAQxxE,UAAUolB,EAAI,SAAS5jB,EAAMk7B,EAAY4mC,GAC/C,OAAO9iE,KAAK+1B,KAAK/0B,EAAMk7B,EAAY4mC,EACrC,EAEAkO,EAAQxxE,UAAUquB,EAAI,SAASzoB,GAC7B,OAAOpF,KAAK8iE,KAAK19D,EACnB,EAEA4rE,EAAQxxE,UAAUsmE,EAAI,SAAS1gE,GAC7B,OAAOpF,KAAK++D,MAAM35D,EACpB,EAEA4rE,EAAQxxE,UAAU+K,EAAI,SAASnF,GAC7B,OAAOpF,KAAKi/D,QAAQ75D,EACtB,EAEA4rE,EAAQxxE,UAAU+oE,EAAI,SAASnjE,GAC7B,OAAOpF,KAAKoU,IAAIhP,EAClB,EAEA4rE,EAAQxxE,UAAUgC,EAAI,SAASiV,EAAQrR,GACrC,OAAOpF,KAAKw4E,YAAY/hE,EAAQrR,EAClC,EAEA4rE,EAAQxxE,UAAUo+E,EAAI,WACpB,OAAO59E,KAAK2qE,IACd,EAEAqG,EAAQxxE,UAAUq+E,iBAAmB,SAASnZ,GAC5C,OAAO1kE,KAAK09E,eAAehZ,EAC7B,EAEAsM,EAAQxxE,UAAUs+E,aAAe,SAASb,EAAUc,GAClD,MAAM,IAAIv+D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAUkmE,YAAc,SAASqY,GACvC,MAAM,IAAIv+D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAUuwB,YAAc,SAASktD,GACvC,MAAM,IAAIz9D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAUw+E,cAAgB,WAChC,OAAgC,IAAzBh+E,KAAKmO,SAASzM,MACvB,EAEAsvE,EAAQxxE,UAAU+oC,UAAY,SAASma,GACrC,MAAM,IAAIljC,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAUujE,UAAY,WAC5B,MAAM,IAAIvjD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAUy+E,YAAc,SAAShM,EAASxpD,GAChD,OAAO,CACT,EAEAuoD,EAAQxxE,UAAU0+E,cAAgB,WAChC,OAA+B,IAAxBl+E,KAAKs4E,QAAQ52E,MACtB,EAEAsvE,EAAQxxE,UAAU2+E,wBAA0B,SAASC,GACnD,IAAIzxE,EAAK7B,EAET,OADA6B,EAAM3M,QACMo+E,EACH,EACEp+E,KAAK+d,aAAeqgE,EAAMrgE,YACnCjT,EAAM6wE,EAAiBzN,aAAeyN,EAAiBpN,uBACnD9rD,KAAKw3B,SAAW,GAClBnvC,GAAO6wE,EAAiBxN,UAExBrjE,GAAO6wE,EAAiBvN,UAEnBtjE,GACE6B,EAAI0xE,WAAWD,GACjBzC,EAAiBtN,SAAWsN,EAAiBxN,UAC3CxhE,EAAI2xE,aAAaF,GACnBzC,EAAiBtN,SAAWsN,EAAiBvN,UAC3CzhE,EAAI4xE,YAAYH,GAClBzC,EAAiBxN,UAEjBwN,EAAiBvN,SAE5B,EAEA4C,EAAQxxE,UAAUg/E,WAAa,SAASJ,GACtC,MAAM,IAAI5+D,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAUi/E,aAAe,SAAS7N,GACxC,MAAM,IAAIpxD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAUk/E,mBAAqB,SAAS9N,GAC9C,MAAM,IAAIpxD,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAUm/E,mBAAqB,SAASj/E,GAC9C,MAAM,IAAI8f,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAUmxE,YAAc,SAAS56C,GACvC,IAAIv0B,EAAGkB,EAAGiyE,EACV,GAAI5+C,EAAK8sC,WAAa7iE,KAAK6iE,SACzB,OAAO,EAET,GAAI9sC,EAAK5nB,SAASzM,SAAW1B,KAAKmO,SAASzM,OACzC,OAAO,EAET,IAAKF,EAAIkB,EAAI,EAAGiyE,EAAO30E,KAAKmO,SAASzM,OAAS,EAAG,GAAKizE,EAAOjyE,GAAKiyE,EAAOjyE,GAAKiyE,EAAMnzE,EAAI,GAAKmzE,IAASjyE,IAAMA,EAC1G,IAAK1C,KAAKmO,SAAS3M,GAAGmvE,YAAY56C,EAAK5nB,SAAS3M,IAC9C,OAAO,EAGX,OAAO,CACT,EAEAwvE,EAAQxxE,UAAUgzE,WAAa,SAASP,EAASxpD,GAC/C,MAAM,IAAIjJ,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAUo/E,YAAc,SAASh6E,EAAKwJ,EAAMwI,GAClD,MAAM,IAAI4I,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAUq/E,YAAc,SAASj6E,GACvC,MAAM,IAAI4a,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAW,EAAQxxE,UAAU6rC,SAAW,SAAS+yC,GACpC,QAAKA,IAGEA,IAAUp+E,MAAQA,KAAKs+E,aAAaF,GAC7C,EAEApN,EAAQxxE,UAAU8+E,aAAe,SAASvoD,GACxC,IAAIzd,EAA0B5V,EAAGL,EAAKsyE,EAEtC,IAAKjyE,EAAI,EAAGL,GADZsyE,EAAO30E,KAAKmO,UACWzM,OAAQgB,EAAIL,EAAKK,IAAK,CAE3C,GAAIqzB,KADJzd,EAAQq8D,EAAKjyE,IAEX,OAAO,EAGT,GADoB4V,EAAMgmE,aAAavoD,GAErC,OAAO,CAEX,CACA,OAAO,CACT,EAEAi7C,EAAQxxE,UAAU6+E,WAAa,SAAStoD,GACtC,OAAOA,EAAKuoD,aAAat+E,KAC3B,EAEAgxE,EAAQxxE,UAAU++E,YAAc,SAASxoD,GACvC,IAAI+oD,EAASC,EAGb,OAFAD,EAAU9+E,KAAKg/E,aAAajpD,GAC5BgpD,EAAU/+E,KAAKg/E,aAAah/E,OACX,IAAb8+E,IAA+B,IAAbC,GAGbD,EAAUC,CAErB,EAEA/N,EAAQxxE,UAAUy/E,YAAc,SAASlpD,GACvC,IAAI+oD,EAASC,EAGb,OAFAD,EAAU9+E,KAAKg/E,aAAajpD,GAC5BgpD,EAAU/+E,KAAKg/E,aAAah/E,OACX,IAAb8+E,IAA+B,IAAbC,GAGbD,EAAUC,CAErB,EAEA/N,EAAQxxE,UAAUw/E,aAAe,SAASjpD,GACxC,IAAImpD,EAAOC,EASX,OARAA,EAAM,EACND,GAAQ,EACRl/E,KAAKo/E,gBAAgBp/E,KAAK+d,YAAY,SAASm+D,GAE7C,GADAiD,KACKD,GAAShD,IAAcnmD,EAC1B,OAAOmpD,GAAQ,CAEnB,IACIA,EACKC,GAEC,CAEZ,EAEAnO,EAAQxxE,UAAU4/E,gBAAkB,SAASrpD,EAAMspD,GACjD,IAAI/mE,EAAO5V,EAAGL,EAAKsyE,EAAM7pE,EAGzB,IAFAirB,IAASA,EAAO/1B,KAAK+d,YAEhBrb,EAAI,EAAGL,GADZsyE,EAAO5+C,EAAK5nB,UACWzM,OAAQgB,EAAIL,EAAKK,IAAK,CAE3C,GAAIoI,EAAMu0E,EADV/mE,EAAQq8D,EAAKjyE,IAEX,OAAOoI,EAGP,GADAA,EAAM9K,KAAKo/E,gBAAgB9mE,EAAO+mE,GAEhC,OAAOv0E,CAGb,CACF,EAEOkmE,CAER,CA7uB0B,EA+uB5B,GAAE9vE,KAAKlB,0BC/wBR,WAGE+C,EAAOC,QAAwB,WAC7B,SAAS44E,EAAYpmD,GACnBx1B,KAAKw1B,MAAQA,CACf,CAgBA,OAdAj2B,OAAOyF,eAAe42E,EAAYp8E,UAAW,SAAU,CACrD2mB,IAAK,WACH,OAAOnmB,KAAKw1B,MAAM9zB,QAAU,CAC9B,IAGFk6E,EAAYp8E,UAAUqM,MAAQ,WAC5B,OAAO7L,KAAKw1B,MAAQ,IACtB,EAEAomD,EAAYp8E,UAAU0I,KAAO,SAASgB,GACpC,OAAOlJ,KAAKw1B,MAAMtsB,IAAU,IAC9B,EAEO0yE,CAER,CArB8B,EAuBhC,GAAE16E,KAAKlB,8BC1BR,WACE,IAAImwE,EAAUW,EAEZ9G,EAAU,CAAC,EAAEvqE,eAEf0wE,EAAW,EAAQ,OAEnBW,EAAmB,EAAQ,OAE3B/tE,EAAOC,QAAqC,SAAUylD,GAGpD,SAAS8uB,EAAyB7qE,EAAQ+J,EAAQrR,GAEhD,GADAmyE,EAAyB5K,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAC5C,MAAV+J,EACF,MAAM,IAAI+I,MAAM,+BAAiCxf,KAAKqwE,aAExDrwE,KAAK+N,KAAOoiE,EAASrB,sBACrB9uE,KAAKyW,OAASzW,KAAK8I,UAAU+vE,UAAUpiE,GACvCzW,KAAKgB,KAAOhB,KAAKyW,OACbrR,IACFpF,KAAKoF,MAAQpF,KAAK8I,UAAUgwE,SAAS1zE,GAEzC,CAoBA,OAzCS,SAASkT,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAQzR4K,CAAOmtE,EAA0B9uB,GAejC8uB,EAAyB/3E,UAAUqM,MAAQ,WACzC,OAAOtM,OAAOqB,OAAOZ,KACvB,EAEAu3E,EAAyB/3E,UAAUkG,SAAW,SAASM,GACrD,OAAOhG,KAAKgG,QAAQyqE,OAAOsI,sBAAsB/4E,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GAC3F,EAEAuxE,EAAyB/3E,UAAUmxE,YAAc,SAAS56C,GACxD,QAAKwhD,EAAyB5K,UAAUgE,YAAYluE,MAAMzC,KAAMsC,WAAWquE,YAAY56C,IAGnFA,EAAKtf,SAAWzW,KAAKyW,MAI3B,EAEO8gE,CAER,CApC2C,CAoCzCzG,EAEJ,GAAE5vE,KAAKlB,6BC/CR,WACE,IAAImwE,EAAUa,EAEZhH,EAAU,CAAC,EAAEvqE,eAEf0wE,EAAW,EAAQ,OAEnBa,EAAU,EAAQ,OAElBjuE,EAAOC,QAAmB,SAAUylD,GAGlC,SAAS+uB,EAAO9qE,EAAQo2D,GAEtB,GADA0U,EAAO7K,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAC5B,MAARo2D,EACF,MAAM,IAAItjD,MAAM,qBAAuBxf,KAAKqwE,aAE9CrwE,KAAK+N,KAAOoiE,EAASd,IACrBrvE,KAAKoF,MAAQpF,KAAK8I,UAAUsL,IAAI0uD,EAClC,CAUA,OA3BS,SAASxqD,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAQzR4K,CAAOotE,EAAQ/uB,GAWf+uB,EAAOh4E,UAAUqM,MAAQ,WACvB,OAAOtM,OAAOqB,OAAOZ,KACvB,EAEAw3E,EAAOh4E,UAAUkG,SAAW,SAASM,GACnC,OAAOhG,KAAKgG,QAAQyqE,OAAOr8D,IAAIpU,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GACzE,EAEOwxE,CAER,CAtByB,CAsBvBxG,EAEJ,GAAE9vE,KAAKlB,8BCjCR,WACE,IAAImwE,EAAUkH,EAA8BiI,EAE1CtV,EAAU,CAAC,EAAEvqE,eAEf0wE,EAAW,EAAQ,OAEnBmP,EAAgB,EAAQ,MAExBjI,EAAc,EAAQ,OAEtBt0E,EAAOC,QAA4B,SAAUylD,GAG3C,SAAS82B,EAAgBvzB,EAAQhmD,GAC/BhG,KAAKgsD,OAASA,EACduzB,EAAgB5S,UAAUpoD,YAAYrjB,KAAKlB,KAAMgG,EACnD,CAyJA,OAxKS,SAASsS,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAUzR4K,CAAOm1E,EAAiB92B,GAOxB82B,EAAgB//E,UAAU65E,QAAU,SAAStjD,EAAM/vB,EAASuzE,GAC1D,OAAIxjD,EAAKypD,gBAAkBx5E,EAAQiW,QAAUo7D,EAAYnH,SAChD,GAEAqP,EAAgB5S,UAAU0M,QAAQn4E,KAAKlB,KAAM+1B,EAAM/vB,EAASuzE,EAEvE,EAEAgG,EAAgB//E,UAAUue,SAAW,SAAS2mD,EAAK1+D,GACjD,IAAIsS,EAAO9W,EAAGkB,EAAGy5E,EAAG95E,EAAKg6E,EAAM1vE,EAAK+nE,EAAMt6C,EAE1C,IAAK54B,EAAIkB,EAAI,EAAGL,GADhBsK,EAAM+3D,EAAIv2D,UACgBzM,OAAQgB,EAAIL,EAAKb,IAAMkB,GAC/C4V,EAAQ3L,EAAInL,IACNg+E,eAAiBh+E,IAAMkjE,EAAIv2D,SAASzM,OAAS,EAKrD,IAHAsE,EAAUhG,KAAK0wE,cAAc1qE,GAE7Bo0B,EAAU,GACL+hD,EAAI,EAAGE,GAFZ3H,EAAOhQ,EAAIv2D,UAEazM,OAAQy6E,EAAIE,EAAMF,IACxC7jE,EAAQo8D,EAAKyH,GACb/hD,EAAQ55B,KAAKR,KAAKy/E,eAAennE,EAAOtS,EAAS,IAEnD,OAAOo0B,CACT,EAEAmlD,EAAgB//E,UAAU48B,UAAY,SAASwuC,EAAK5kE,EAASuzE,GAC3D,OAAOv5E,KAAKgsD,OAAOoC,MAAMmxB,EAAgB5S,UAAUvwC,UAAUl7B,KAAKlB,KAAM4qE,EAAK5kE,EAASuzE,GACxF,EAEAgG,EAAgB//E,UAAUu/D,MAAQ,SAAShpC,EAAM/vB,EAASuzE,GACxD,OAAOv5E,KAAKgsD,OAAOoC,MAAMmxB,EAAgB5S,UAAU5N,MAAM79D,KAAKlB,KAAM+1B,EAAM/vB,EAASuzE,GACrF,EAEAgG,EAAgB//E,UAAUy/D,QAAU,SAASlpC,EAAM/vB,EAASuzE,GAC1D,OAAOv5E,KAAKgsD,OAAOoC,MAAMmxB,EAAgB5S,UAAU1N,QAAQ/9D,KAAKlB,KAAM+1B,EAAM/vB,EAASuzE,GACvF,EAEAgG,EAAgB//E,UAAU+0E,YAAc,SAASx+C,EAAM/vB,EAASuzE,GAC9D,OAAOv5E,KAAKgsD,OAAOoC,MAAMmxB,EAAgB5S,UAAU4H,YAAYrzE,KAAKlB,KAAM+1B,EAAM/vB,EAASuzE,GAC3F,EAEAgG,EAAgB//E,UAAUw1E,QAAU,SAASj/C,EAAM/vB,EAASuzE,GAC1D,IAAIjhE,EAAO5V,EAAGL,EAAKsK,EAWnB,GAVA4sE,IAAUA,EAAQ,GAClBv5E,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BhwE,KAAKgsD,OAAOoC,MAAMpuD,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,IAC7Cv5E,KAAKgsD,OAAOoC,MAAM,aAAer4B,EAAKL,OAAO10B,MACzC+0B,EAAKw9C,OAASx9C,EAAKy9C,MACrBxzE,KAAKgsD,OAAOoC,MAAM,YAAcr4B,EAAKw9C,MAAQ,MAAQx9C,EAAKy9C,MAAQ,KACzDz9C,EAAKy9C,OACdxzE,KAAKgsD,OAAOoC,MAAM,YAAcr4B,EAAKy9C,MAAQ,KAE3Cz9C,EAAK5nB,SAASzM,OAAS,EAAG,CAK5B,IAJA1B,KAAKgsD,OAAOoC,MAAM,MAClBpuD,KAAKgsD,OAAOoC,MAAMpuD,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,IAC9CvzE,EAAQiW,MAAQo7D,EAAYpH,UAEvBvtE,EAAI,EAAGL,GADZsK,EAAMopB,EAAK5nB,UACWzM,OAAQgB,EAAIL,EAAKK,IACrC4V,EAAQ3L,EAAIjK,GACZ1C,KAAKy/E,eAAennE,EAAOtS,EAASuzE,EAAQ,GAE9CvzE,EAAQiW,MAAQo7D,EAAYnH,SAC5BlwE,KAAKgsD,OAAOoC,MAAM,IACpB,CAKA,OAJApoD,EAAQiW,MAAQo7D,EAAYnH,SAC5BlwE,KAAKgsD,OAAOoC,MAAMpoD,EAAQ05E,iBAAmB,KAC7C1/E,KAAKgsD,OAAOoC,MAAMpuD,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,IAC9CvzE,EAAQiW,MAAQo7D,EAAYtH,KACrB/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,EACvC,EAEAgG,EAAgB//E,UAAU8sC,QAAU,SAASvW,EAAM/vB,EAASuzE,GAC1D,IAAI3O,EAAKtyD,EAAOqnE,EAAgBC,EAAgBl9E,EAAGL,EAAKrB,EAAwB2L,EAAK+nE,EAMrF,IAAK1zE,KALLu4E,IAAUA,EAAQ,GAClBv5E,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BhwE,KAAKgsD,OAAOoC,MAAMpuD,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,IAAMxjD,EAAK/0B,MACjE2L,EAAMopB,EAAKuiD,QAEJtO,EAAQ9oE,KAAKyL,EAAK3L,KACvB4pE,EAAMj+D,EAAI3L,GACVhB,KAAKo8B,UAAUwuC,EAAK5kE,EAASuzE,IAI/B,GADAqG,EAAoC,KADpCD,EAAiB5pD,EAAK5nB,SAASzM,QACS,KAAOq0B,EAAK5nB,SAAS,GACtC,IAAnBwxE,GAAwB5pD,EAAK5nB,SAASjB,OAAM,SAASpB,GACvD,OAAQA,EAAEiC,OAASoiE,EAASzB,MAAQ5iE,EAAEiC,OAASoiE,EAASd,MAAoB,KAAZvjE,EAAE1G,KACpE,IACMY,EAAQ65E,YACV7/E,KAAKgsD,OAAOoC,MAAM,KAClBpoD,EAAQiW,MAAQo7D,EAAYnH,SAC5BlwE,KAAKgsD,OAAOoC,MAAM,KAAOr4B,EAAK/0B,KAAO,OAErCgF,EAAQiW,MAAQo7D,EAAYnH,SAC5BlwE,KAAKgsD,OAAOoC,MAAMpoD,EAAQ05E,iBAAmB,YAE1C,IAAI15E,EAAQuN,QAA6B,IAAnBosE,GAAyBC,EAAe7xE,OAASoiE,EAASzB,MAAQkR,EAAe7xE,OAASoiE,EAASd,KAAiC,MAAxBuQ,EAAex6E,MAUjJ,CAIL,IAHApF,KAAKgsD,OAAOoC,MAAM,IAAMpuD,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,IACpDvzE,EAAQiW,MAAQo7D,EAAYpH,UAEvBvtE,EAAI,EAAGL,GADZqyE,EAAO3+C,EAAK5nB,UACWzM,OAAQgB,EAAIL,EAAKK,IACtC4V,EAAQo8D,EAAKhyE,GACb1C,KAAKy/E,eAAennE,EAAOtS,EAASuzE,EAAQ,GAE9CvzE,EAAQiW,MAAQo7D,EAAYnH,SAC5BlwE,KAAKgsD,OAAOoC,MAAMpuD,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,KAAOxjD,EAAK/0B,KAAO,IAC3E,MAnBEhB,KAAKgsD,OAAOoC,MAAM,KAClBpoD,EAAQiW,MAAQo7D,EAAYpH,UAC5BjqE,EAAQ85E,sBAER9/E,KAAKy/E,eAAeG,EAAgB55E,EAASuzE,EAAQ,GACrDvzE,EAAQ85E,sBAER95E,EAAQiW,MAAQo7D,EAAYnH,SAC5BlwE,KAAKgsD,OAAOoC,MAAM,KAAOr4B,EAAK/0B,KAAO,KAcvC,OAFAhB,KAAKgsD,OAAOoC,MAAMpuD,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,IAC9CvzE,EAAQiW,MAAQo7D,EAAYtH,KACrB/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,EACvC,EAEAgG,EAAgB//E,UAAUu5E,sBAAwB,SAAShjD,EAAM/vB,EAASuzE,GACxE,OAAOv5E,KAAKgsD,OAAOoC,MAAMmxB,EAAgB5S,UAAUoM,sBAAsB73E,KAAKlB,KAAM+1B,EAAM/vB,EAASuzE,GACrG,EAEAgG,EAAgB//E,UAAU4U,IAAM,SAAS2hB,EAAM/vB,EAASuzE,GACtD,OAAOv5E,KAAKgsD,OAAOoC,MAAMmxB,EAAgB5S,UAAUv4D,IAAIlT,KAAKlB,KAAM+1B,EAAM/vB,EAASuzE,GACnF,EAEAgG,EAAgB//E,UAAUsjE,KAAO,SAAS/sC,EAAM/vB,EAASuzE,GACvD,OAAOv5E,KAAKgsD,OAAOoC,MAAMmxB,EAAgB5S,UAAU7J,KAAK5hE,KAAKlB,KAAM+1B,EAAM/vB,EAASuzE,GACpF,EAEAgG,EAAgB//E,UAAUyzE,WAAa,SAASl9C,EAAM/vB,EAASuzE,GAC7D,OAAOv5E,KAAKgsD,OAAOoC,MAAMmxB,EAAgB5S,UAAUsG,WAAW/xE,KAAKlB,KAAM+1B,EAAM/vB,EAASuzE,GAC1F,EAEAgG,EAAgB//E,UAAU4zE,WAAa,SAASr9C,EAAM/vB,EAASuzE,GAC7D,OAAOv5E,KAAKgsD,OAAOoC,MAAMmxB,EAAgB5S,UAAUyG,WAAWlyE,KAAKlB,KAAM+1B,EAAM/vB,EAASuzE,GAC1F,EAEAgG,EAAgB//E,UAAUu0E,UAAY,SAASh+C,EAAM/vB,EAASuzE,GAC5D,OAAOv5E,KAAKgsD,OAAOoC,MAAMmxB,EAAgB5S,UAAUoH,UAAU7yE,KAAKlB,KAAM+1B,EAAM/vB,EAASuzE,GACzF,EAEAgG,EAAgB//E,UAAUy0E,YAAc,SAASl+C,EAAM/vB,EAASuzE,GAC9D,OAAOv5E,KAAKgsD,OAAOoC,MAAMmxB,EAAgB5S,UAAUsH,YAAY/yE,KAAKlB,KAAM+1B,EAAM/vB,EAASuzE,GAC3F,EAEOgG,CAER,CAjKkC,CAiKhCD,EAEJ,GAAEp+E,KAAKlB,8BC9KR,WACE,IAAqBs/E,EAEnBtV,EAAU,CAAC,EAAEvqE,eAEf6/E,EAAgB,EAAQ,MAExBv8E,EAAOC,QAA4B,SAAUylD,GAG3C,SAAS2sB,EAAgBpvE,GACvBovE,EAAgBzI,UAAUpoD,YAAYrjB,KAAKlB,KAAMgG,EACnD,CAiBA,OA3BS,SAASsS,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAMzR4K,CAAOgrE,EAAiB3sB,GAMxB2sB,EAAgB51E,UAAUue,SAAW,SAAS2mD,EAAK1+D,GACjD,IAAIsS,EAAO9W,EAAGa,EAAKkmE,EAAG57D,EAItB,IAHA3G,EAAUhG,KAAK0wE,cAAc1qE,GAC7BuiE,EAAI,GAEC/mE,EAAI,EAAGa,GADZsK,EAAM+3D,EAAIv2D,UACYzM,OAAQF,EAAIa,EAAKb,IACrC8W,EAAQ3L,EAAInL,GACZ+mE,GAAKvoE,KAAKy/E,eAAennE,EAAOtS,EAAS,GAK3C,OAHIA,EAAQuN,QAAUg1D,EAAEpnE,OAAO6E,EAAQ+5E,QAAQr+E,UAAYsE,EAAQ+5E,UACjExX,EAAIA,EAAEpnE,MAAM,GAAI6E,EAAQ+5E,QAAQr+E,SAE3B6mE,CACT,EAEO6M,CAER,CAxBkC,CAwBhCkK,EAEJ,GAAEp+E,KAAKlB,0BCjCR,WACE,IACEihB,EAAO,SAASphB,EAAIqiE,GAAK,OAAO,WAAY,OAAOriE,EAAG4C,MAAMy/D,EAAI5/D,UAAY,CAAG,EAC/E0nE,EAAU,CAAC,EAAEvqE,eAEfsD,EAAOC,QAA2B,WAChC,SAASqyE,EAAervE,GAGtB,IAAIpB,EAAK+H,EAAKvH,EAOd,IAAKR,KATL5E,KAAKggF,gBAAkB/+D,EAAKjhB,KAAKggF,gBAAiBhgF,MAClDA,KAAKigF,gBAAkBh/D,EAAKjhB,KAAKigF,gBAAiBjgF,MAElDgG,IAAYA,EAAU,CAAC,GACvBhG,KAAKgG,QAAUA,EACVhG,KAAKgG,QAAQyiB,UAChBzoB,KAAKgG,QAAQyiB,QAAU,OAEzB9b,EAAM3G,EAAQ8C,WAAa,CAAC,EAErBkhE,EAAQ9oE,KAAKyL,EAAK/H,KACvBQ,EAAQuH,EAAI/H,GACZ5E,KAAK4E,GAAOQ,EAEhB,CAqNA,OAnNAiwE,EAAe71E,UAAUwB,KAAO,SAASmK,GACvC,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEFnL,KAAKggF,gBAAgB,GAAK70E,GAAO,GAC1C,EAEAkqE,EAAe71E,UAAUsjE,KAAO,SAAS33D,GACvC,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEFnL,KAAKigF,gBAAgBjgF,KAAKkgF,WAAW,GAAK/0E,GAAO,IAC1D,EAEAkqE,EAAe71E,UAAUu/D,MAAQ,SAAS5zD,GACxC,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,GAGTA,GADAA,EAAM,GAAKA,GAAO,IACR5E,QAAQ,MAAO,mBAClBvG,KAAKigF,gBAAgB90E,GAC9B,EAEAkqE,EAAe71E,UAAUy/D,QAAU,SAAS9zD,GAC1C,GAAInL,KAAKgG,QAAQ2yE,aACf,OAAOxtE,EAGT,IADAA,EAAM,GAAKA,GAAO,IACVlH,MAAM,MACZ,MAAM,IAAIub,MAAM,6CAA+CrU,GAEjE,OAAOnL,KAAKigF,gBAAgB90E,EAC9B,EAEAkqE,EAAe71E,UAAU4U,IAAM,SAASjJ,GACtC,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEF,GAAKA,GAAO,EACrB,EAEAkqE,EAAe71E,UAAU8wE,SAAW,SAASnlE,GAC3C,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEFnL,KAAKigF,gBAAgBjgF,KAAKmgF,UAAUh1E,EAAM,GAAKA,GAAO,IAC/D,EAEAkqE,EAAe71E,UAAUq5E,UAAY,SAAS1tE,GAC5C,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEFnL,KAAKigF,gBAAgB,GAAK90E,GAAO,GAC1C,EAEAkqE,EAAe71E,UAAUs5E,SAAW,SAAS3tE,GAC3C,GAAInL,KAAKgG,QAAQ2yE,aACf,OAAOxtE,EAGT,IADAA,EAAM,GAAKA,GAAO,IACVlH,MAAM,OACZ,MAAM,IAAIub,MAAM,yCAA2CrU,GAE7D,OAAOnL,KAAKigF,gBAAgB90E,EAC9B,EAEAkqE,EAAe71E,UAAU40E,WAAa,SAASjpE,GAC7C,GAAInL,KAAKgG,QAAQ2yE,aACf,OAAOxtE,EAGT,KADAA,EAAM,GAAKA,GAAO,IACTlH,MAAM,aACb,MAAM,IAAIub,MAAM,2BAA6BrU,GAE/C,OAAOA,CACT,EAEAkqE,EAAe71E,UAAU60E,YAAc,SAASlpE,GAC9C,GAAInL,KAAKgG,QAAQ2yE,aACf,OAAOxtE,EAGT,KADAA,EAAM,GAAKA,GAAO,IACTlH,MAAM,iCACb,MAAM,IAAIub,MAAM,qBAAuBrU,GAEzC,OAAOnL,KAAKigF,gBAAgB90E,EAC9B,EAEAkqE,EAAe71E,UAAU80E,cAAgB,SAASnpE,GAChD,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAELA,EACK,MAEA,IAEX,EAEAkqE,EAAe71E,UAAUk0E,SAAW,SAASvoE,GAC3C,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEFnL,KAAKigF,gBAAgB,GAAK90E,GAAO,GAC1C,EAEAkqE,EAAe71E,UAAUm0E,SAAW,SAASxoE,GAC3C,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEFnL,KAAKigF,gBAAgB,GAAK90E,GAAO,GAC1C,EAEAkqE,EAAe71E,UAAU2zE,gBAAkB,SAAShoE,GAClD,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEFnL,KAAKigF,gBAAgB,GAAK90E,GAAO,GAC1C,EAEAkqE,EAAe71E,UAAUuzE,WAAa,SAAS5nE,GAC7C,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEFnL,KAAKigF,gBAAgB,GAAK90E,GAAO,GAC1C,EAEAkqE,EAAe71E,UAAUwzE,cAAgB,SAAS7nE,GAChD,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEFnL,KAAKigF,gBAAgB,GAAK90E,GAAO,GAC1C,EAEAkqE,EAAe71E,UAAUs0E,eAAiB,SAAS3oE,GACjD,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEFnL,KAAKigF,gBAAgB,GAAK90E,GAAO,GAC1C,EAEAkqE,EAAe71E,UAAUq0E,SAAW,SAAS1oE,GAC3C,OAAInL,KAAKgG,QAAQ2yE,aACRxtE,EAEFnL,KAAKigF,gBAAgB,GAAK90E,GAAO,GAC1C,EAEAkqE,EAAe71E,UAAUg9E,cAAgB,IAEzCnH,EAAe71E,UAAUu9E,aAAe,IAExC1H,EAAe71E,UAAUm9E,eAAiB,QAE1CtH,EAAe71E,UAAUo9E,gBAAkB,SAE3CvH,EAAe71E,UAAUq9E,kBAAoB,WAE7CxH,EAAe71E,UAAUs9E,cAAgB,OAEzCzH,EAAe71E,UAAUygF,gBAAkB,SAASx1E,GAClD,IAAIgP,EAAO3O,EACX,GAAI9K,KAAKgG,QAAQ2yE,aACf,OAAOluE,EAGT,GADAgP,EAAQ,GACqB,QAAzBzZ,KAAKgG,QAAQyiB,SAEf,GADAhP,EAAQ,gHACJ3O,EAAML,EAAIxG,MAAMwV,GAClB,MAAM,IAAI+F,MAAM,gCAAkC/U,EAAM,aAAeK,EAAI5B,YAExE,GAA6B,QAAzBlJ,KAAKgG,QAAQyiB,UACtBhP,EAAQ,4FACJ3O,EAAML,EAAIxG,MAAMwV,IAClB,MAAM,IAAI+F,MAAM,gCAAkC/U,EAAM,aAAeK,EAAI5B,OAG/E,OAAOuB,CACT,EAEA4qE,EAAe71E,UAAUwgF,gBAAkB,SAASv1E,GAClD,IAAIgP,EACJ,GAAIzZ,KAAKgG,QAAQ2yE,aACf,OAAOluE,EAIT,GAFAzK,KAAKigF,gBAAgBx1E,GACrBgP,EAAQ,gXACHhP,EAAIxG,MAAMwV,GACb,MAAM,IAAI+F,MAAM,6BAElB,OAAO/U,CACT,EAEA4qE,EAAe71E,UAAU0gF,WAAa,SAASz1E,GAC7C,IAAI21E,EACJ,OAAIpgF,KAAKgG,QAAQ2yE,aACRluE,GAET21E,EAAWpgF,KAAKgG,QAAQq6E,iBAAmB,cAAgB,KACpD51E,EAAIlE,QAAQ65E,EAAU,SAAS75E,QAAQ,KAAM,QAAQA,QAAQ,KAAM,QAAQA,QAAQ,MAAO,SACnG,EAEA8uE,EAAe71E,UAAU2gF,UAAY,SAAS11E,GAC5C,IAAI21E,EACJ,OAAIpgF,KAAKgG,QAAQ2yE,aACRluE,GAET21E,EAAWpgF,KAAKgG,QAAQq6E,iBAAmB,cAAgB,KACpD51E,EAAIlE,QAAQ65E,EAAU,SAAS75E,QAAQ,KAAM,QAAQA,QAAQ,KAAM,UAAUA,QAAQ,MAAO,SAASA,QAAQ,MAAO,SAASA,QAAQ,MAAO,SACrJ,EAEO8uE,CAER,CAvOiC,EAyOnC,GAAEn0E,KAAKlB,8BC9OR,WACE,IAAImwE,EAAUW,EAEZ9G,EAAU,CAAC,EAAEvqE,eAEf0wE,EAAW,EAAQ,OAEnBW,EAAmB,EAAQ,OAE3B/tE,EAAOC,QAAoB,SAAUylD,GAGnC,SAASgvB,EAAQ/qE,EAAQo2D,GAEvB,GADA2U,EAAQ9K,UAAUpoD,YAAYrjB,KAAKlB,KAAM0M,GAC7B,MAARo2D,EACF,MAAM,IAAItjD,MAAM,yBAA2Bxf,KAAKqwE,aAElDrwE,KAAKgB,KAAO,QACZhB,KAAK+N,KAAOoiE,EAASzB,KACrB1uE,KAAKoF,MAAQpF,KAAK8I,UAAUg6D,KAAKA,EACnC,CA2CA,OA7DS,SAASxqD,EAAO5L,GAAU,IAAK,IAAI9H,KAAO8H,EAAcs9D,EAAQ9oE,KAAKwL,EAAQ9H,KAAM0T,EAAM1T,GAAO8H,EAAO9H,IAAQ,SAAS8nE,IAAS1sE,KAAKukB,YAAcjM,CAAO,CAAEo0D,EAAKltE,UAAYkN,EAAOlN,UAAW8Y,EAAM9Y,UAAY,IAAIktE,EAAQp0D,EAAMq0D,UAAYjgE,EAAOlN,SAAyB,CAQzR4K,CAAOqtE,EAAShvB,GAYhBlpD,OAAOyF,eAAeyyE,EAAQj4E,UAAW,6BAA8B,CACrE2mB,IAAK,WACH,MAAM,IAAI3G,MAAM,sCAAwCxf,KAAKqwE,YAC/D,IAGF9wE,OAAOyF,eAAeyyE,EAAQj4E,UAAW,YAAa,CACpD2mB,IAAK,WACH,IAAIvT,EAAMmP,EAAMtX,EAGhB,IAFAA,EAAM,GACNsX,EAAO/hB,KAAKsgF,gBACLv+D,GACLtX,EAAMsX,EAAK3T,KAAO3D,EAClBsX,EAAOA,EAAKu+D,gBAId,IAFA71E,GAAOzK,KAAKoO,KACZwE,EAAO5S,KAAKugF,YACL3tE,GACLnI,GAAYmI,EAAKxE,KACjBwE,EAAOA,EAAK2tE,YAEd,OAAO91E,CACT,IAGFgtE,EAAQj4E,UAAUqM,MAAQ,WACxB,OAAOtM,OAAOqB,OAAOZ,KACvB,EAEAy3E,EAAQj4E,UAAUkG,SAAW,SAASM,GACpC,OAAOhG,KAAKgG,QAAQyqE,OAAO3N,KAAK9iE,KAAMA,KAAKgG,QAAQyqE,OAAOC,cAAc1qE,GAC1E,EAEAyxE,EAAQj4E,UAAUghF,UAAY,SAAS7tE,GACrC,MAAM,IAAI6M,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEAoH,EAAQj4E,UAAUihF,iBAAmB,SAAS5xB,GAC5C,MAAM,IAAIrvC,MAAM,sCAAwCxf,KAAKqwE,YAC/D,EAEOoH,CAER,CAxD0B,CAwDxB3G,EAEJ,GAAE5vE,KAAKlB,6BCnER,WACE,IAAImwE,EAAUkH,EAA2M7yB,EACvNwlB,EAAU,CAAC,EAAEvqE,eAEf+kD,EAAS,gBAET2rB,EAAW,EAAQ,OAEF,EAAQ,OAEZ,EAAQ,OAEV,EAAQ,OAEN,EAAQ,OAER,EAAQ,OAEZ,EAAQ,MAEP,EAAQ,OAES,EAAQ,OAExB,EAAQ,OAEH,EAAQ,OAER,EAAQ,OAET,EAAQ,MAEN,EAAQ,OAEzBkH,EAAc,EAAQ,OAEtBt0E,EAAOC,QAA0B,WAC/B,SAASs8E,EAAct5E,GACrB,IAAIpB,EAAK+H,EAAKvH,EAId,IAAKR,KAHLoB,IAAYA,EAAU,CAAC,GACvBhG,KAAKgG,QAAUA,EACf2G,EAAM3G,EAAQyqE,QAAU,CAAC,EAElBzG,EAAQ9oE,KAAKyL,EAAK/H,KACvBQ,EAAQuH,EAAI/H,GACZ5E,KAAK,IAAM4E,GAAO5E,KAAK4E,GACvB5E,KAAK4E,GAAOQ,EAEhB,CAsXA,OApXAk6E,EAAc9/E,UAAUkxE,cAAgB,SAAS1qE,GAC/C,IAAI06E,EAAiB/zE,EAAK+nE,EAAMC,EAAM2H,EAAMqE,EAAMC,EAAMC,EAmBxD,OAlBA76E,IAAYA,EAAU,CAAC,GACvBA,EAAUw+C,EAAO,CAAC,EAAGxkD,KAAKgG,QAASA,IACnC06E,EAAkB,CAChBjQ,OAAQzwE,OAEMuT,OAASvN,EAAQuN,SAAU,EAC3CmtE,EAAgBb,WAAa75E,EAAQ65E,aAAc,EACnDa,EAAgBtH,OAAmC,OAAzBzsE,EAAM3G,EAAQozE,QAAkBzsE,EAAM,KAChE+zE,EAAgBX,QAAsC,OAA3BrL,EAAO1uE,EAAQ+5E,SAAmBrL,EAAO,KACpEgM,EAAgB/tE,OAAoC,OAA1BgiE,EAAO3uE,EAAQ2M,QAAkBgiE,EAAO,EAClE+L,EAAgBI,oBAAoH,OAA7FxE,EAA+C,OAAvCqE,EAAO36E,EAAQ86E,qBAA+BH,EAAO36E,EAAQ+6E,qBAA+BzE,EAAO,EAClJoE,EAAgBhB,iBAA2G,OAAvFkB,EAA4C,OAApCC,EAAO76E,EAAQ05E,kBAA4BmB,EAAO76E,EAAQg7E,kBAA4BJ,EAAO,IAChG,IAArCF,EAAgBhB,mBAClBgB,EAAgBhB,iBAAmB,KAErCgB,EAAgBZ,oBAAsB,EACtCY,EAAgBO,KAAO,CAAC,EACxBP,EAAgBzkE,MAAQo7D,EAAYtH,KAC7B2Q,CACT,EAEApB,EAAc9/E,UAAU45E,OAAS,SAASrjD,EAAM/vB,EAASuzE,GACvD,IAAI2H,EACJ,OAAKl7E,EAAQuN,QAAUvN,EAAQ85E,oBACtB,GACE95E,EAAQuN,SACjB2tE,GAAe3H,GAAS,GAAKvzE,EAAQ2M,OAAS,GAC5B,EACT,IAAI/Q,MAAMs/E,GAAav9E,KAAKqC,EAAQozE,QAGxC,EACT,EAEAkG,EAAc9/E,UAAU65E,QAAU,SAAStjD,EAAM/vB,EAASuzE,GACxD,OAAKvzE,EAAQuN,QAAUvN,EAAQ85E,oBACtB,GAEA95E,EAAQ+5E,OAEnB,EAEAT,EAAc9/E,UAAU48B,UAAY,SAASwuC,EAAK5kE,EAASuzE,GACzD,IAAIhR,EAIJ,OAHAvoE,KAAKmhF,cAAcvW,EAAK5kE,EAASuzE,GACjChR,EAAI,IAAMqC,EAAI5pE,KAAO,KAAO4pE,EAAIxlE,MAAQ,IACxCpF,KAAKohF,eAAexW,EAAK5kE,EAASuzE,GAC3BhR,CACT,EAEA+W,EAAc9/E,UAAUu/D,MAAQ,SAAShpC,EAAM/vB,EAASuzE,GACtD,IAAIhR,EAUJ,OATAvoE,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,EAAIvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,YACxCvzE,EAAQiW,MAAQo7D,EAAYpH,UAC5B1H,GAAKxyC,EAAK3wB,MACVY,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAK,MAAQvoE,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GACzCvzE,EAAQiW,MAAQo7D,EAAYtH,KAC5B/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAUy/D,QAAU,SAASlpC,EAAM/vB,EAASuzE,GACxD,IAAIhR,EAUJ,OATAvoE,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,EAAIvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,WACxCvzE,EAAQiW,MAAQo7D,EAAYpH,UAC5B1H,GAAKxyC,EAAK3wB,MACVY,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAK,UAASvoE,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GAC1CvzE,EAAQiW,MAAQo7D,EAAYtH,KAC5B/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAU+0E,YAAc,SAASx+C,EAAM/vB,EAASuzE,GAC5D,IAAIhR,EAiBJ,OAhBAvoE,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,EAAIvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,QACxCvzE,EAAQiW,MAAQo7D,EAAYpH,UAC5B1H,GAAK,aAAexyC,EAAKtN,QAAU,IACd,MAAjBsN,EAAK20B,WACP6d,GAAK,cAAgBxyC,EAAK20B,SAAW,KAEhB,MAAnB30B,EAAKo+C,aACP5L,GAAK,gBAAkBxyC,EAAKo+C,WAAa,KAE3CnuE,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAKviE,EAAQ05E,iBAAmB,KAChCnX,GAAKvoE,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GACjCvzE,EAAQiW,MAAQo7D,EAAYtH,KAC5B/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAUw1E,QAAU,SAASj/C,EAAM/vB,EAASuzE,GACxD,IAAIjhE,EAAO9W,EAAGa,EAAKkmE,EAAG57D,EAWtB,GAVA4sE,IAAUA,EAAQ,GAClBv5E,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,EAAIvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAC/BhR,GAAK,aAAexyC,EAAKL,OAAO10B,KAC5B+0B,EAAKw9C,OAASx9C,EAAKy9C,MACrBjL,GAAK,YAAcxyC,EAAKw9C,MAAQ,MAAQx9C,EAAKy9C,MAAQ,IAC5Cz9C,EAAKy9C,QACdjL,GAAK,YAAcxyC,EAAKy9C,MAAQ,KAE9Bz9C,EAAK5nB,SAASzM,OAAS,EAAG,CAK5B,IAJA6mE,GAAK,KACLA,GAAKvoE,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GACjCvzE,EAAQiW,MAAQo7D,EAAYpH,UAEvBzuE,EAAI,EAAGa,GADZsK,EAAMopB,EAAK5nB,UACWzM,OAAQF,EAAIa,EAAKb,IACrC8W,EAAQ3L,EAAInL,GACZ+mE,GAAKvoE,KAAKy/E,eAAennE,EAAOtS,EAASuzE,EAAQ,GAEnDvzE,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAK,GACP,CAMA,OALAviE,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAKviE,EAAQ05E,iBAAmB,IAChCnX,GAAKvoE,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GACjCvzE,EAAQiW,MAAQo7D,EAAYtH,KAC5B/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAU8sC,QAAU,SAASvW,EAAM/vB,EAASuzE,GACxD,IAAI3O,EAAKtyD,EAAOqnE,EAAgBC,EAAgBp+E,EAAGkB,EAAGL,EAAKg6E,EAAMr7E,EAAMqgF,EAAkB9Y,EAAG57D,EAAK+nE,EAAMC,EAQvG,IAAK3zE,KAPLu4E,IAAUA,EAAQ,GAClB8H,GAAmB,EACnB9Y,EAAI,GACJvoE,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,GAAKvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,IAAMxjD,EAAK/0B,KACpD2L,EAAMopB,EAAKuiD,QAEJtO,EAAQ9oE,KAAKyL,EAAK3L,KACvB4pE,EAAMj+D,EAAI3L,GACVunE,GAAKvoE,KAAKo8B,UAAUwuC,EAAK5kE,EAASuzE,IAIpC,GADAqG,EAAoC,KADpCD,EAAiB5pD,EAAK5nB,SAASzM,QACS,KAAOq0B,EAAK5nB,SAAS,GACtC,IAAnBwxE,GAAwB5pD,EAAK5nB,SAASjB,OAAM,SAASpB,GACvD,OAAQA,EAAEiC,OAASoiE,EAASzB,MAAQ5iE,EAAEiC,OAASoiE,EAASd,MAAoB,KAAZvjE,EAAE1G,KACpE,IACMY,EAAQ65E,YACVtX,GAAK,IACLviE,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAK,KAAOxyC,EAAK/0B,KAAO,IAAMhB,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,KAE1DvzE,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAKviE,EAAQ05E,iBAAmB,KAAO1/E,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,SAEhE,IAAIvzE,EAAQuN,QAA6B,IAAnBosE,GAAyBC,EAAe7xE,OAASoiE,EAASzB,MAAQkR,EAAe7xE,OAASoiE,EAASd,KAAiC,MAAxBuQ,EAAex6E,MAUjJ,CACL,GAAIY,EAAQ86E,oBAEV,IAAKt/E,EAAI,EAAGa,GADZqyE,EAAO3+C,EAAK5nB,UACWzM,OAAQF,EAAIa,EAAKb,IAEtC,KADA8W,EAAQo8D,EAAKlzE,IACFuM,OAASoiE,EAASzB,MAAQp2D,EAAMvK,OAASoiE,EAASd,MAAwB,MAAf/2D,EAAMlT,MAAgB,CAC1FY,EAAQ85E,sBACRuB,GAAmB,EACnB,KACF,CAMJ,IAHA9Y,GAAK,IAAMvoE,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GACvCvzE,EAAQiW,MAAQo7D,EAAYpH,UAEvBvtE,EAAI,EAAG25E,GADZ1H,EAAO5+C,EAAK5nB,UACYzM,OAAQgB,EAAI25E,EAAM35E,IACxC4V,EAAQq8D,EAAKjyE,GACb6lE,GAAKvoE,KAAKy/E,eAAennE,EAAOtS,EAASuzE,EAAQ,GAEnDvzE,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAKvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,KAAOxjD,EAAK/0B,KAAO,IACxDqgF,GACFr7E,EAAQ85E,sBAEVvX,GAAKvoE,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GACjCvzE,EAAQiW,MAAQo7D,EAAYtH,IAC9B,MAnCExH,GAAK,IACLviE,EAAQiW,MAAQo7D,EAAYpH,UAC5BjqE,EAAQ85E,sBACRuB,GAAmB,EACnB9Y,GAAKvoE,KAAKy/E,eAAeG,EAAgB55E,EAASuzE,EAAQ,GAC1DvzE,EAAQ85E,sBACRuB,GAAmB,EACnBr7E,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAK,KAAOxyC,EAAK/0B,KAAO,IAAMhB,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GA6B5D,OADAv5E,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAUigF,eAAiB,SAAS1pD,EAAM/vB,EAASuzE,GAC/D,OAAQxjD,EAAKhoB,MACX,KAAKoiE,EAASxB,MACZ,OAAO3uE,KAAK++D,MAAMhpC,EAAM/vB,EAASuzE,GACnC,KAAKpJ,EAASpB,QACZ,OAAO/uE,KAAKi/D,QAAQlpC,EAAM/vB,EAASuzE,GACrC,KAAKpJ,EAAS3B,QACZ,OAAOxuE,KAAKssC,QAAQvW,EAAM/vB,EAASuzE,GACrC,KAAKpJ,EAASd,IACZ,OAAOrvE,KAAKoU,IAAI2hB,EAAM/vB,EAASuzE,GACjC,KAAKpJ,EAASzB,KACZ,OAAO1uE,KAAK8iE,KAAK/sC,EAAM/vB,EAASuzE,GAClC,KAAKpJ,EAASrB,sBACZ,OAAO9uE,KAAK+4E,sBAAsBhjD,EAAM/vB,EAASuzE,GACnD,KAAKpJ,EAASX,MACZ,MAAO,GACT,KAAKW,EAASf,YACZ,OAAOpvE,KAAKu0E,YAAYx+C,EAAM/vB,EAASuzE,GACzC,KAAKpJ,EAASlB,QACZ,OAAOjvE,KAAKg1E,QAAQj/C,EAAM/vB,EAASuzE,GACrC,KAAKpJ,EAASb,qBACZ,OAAOtvE,KAAKizE,WAAWl9C,EAAM/vB,EAASuzE,GACxC,KAAKpJ,EAASZ,mBACZ,OAAOvvE,KAAKozE,WAAWr9C,EAAM/vB,EAASuzE,GACxC,KAAKpJ,EAAStB,kBACZ,OAAO7uE,KAAK+zE,UAAUh+C,EAAM/vB,EAASuzE,GACvC,KAAKpJ,EAAShB,oBACZ,OAAOnvE,KAAKi0E,YAAYl+C,EAAM/vB,EAASuzE,GACzC,QACE,MAAM,IAAI/5D,MAAM,0BAA4BuW,EAAKxR,YAAYvjB,MAEnE,EAEAs+E,EAAc9/E,UAAUu5E,sBAAwB,SAAShjD,EAAM/vB,EAASuzE,GACtE,IAAIhR,EAcJ,OAbAvoE,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,EAAIvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,KACxCvzE,EAAQiW,MAAQo7D,EAAYpH,UAC5B1H,GAAKxyC,EAAKtf,OACNsf,EAAK3wB,QACPmjE,GAAK,IAAMxyC,EAAK3wB,OAElBY,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAKviE,EAAQ05E,iBAAmB,KAChCnX,GAAKvoE,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GACjCvzE,EAAQiW,MAAQo7D,EAAYtH,KAC5B/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAU4U,IAAM,SAAS2hB,EAAM/vB,EAASuzE,GACpD,IAAIhR,EAUJ,OATAvoE,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,EAAIvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAC/BvzE,EAAQiW,MAAQo7D,EAAYpH,UAC5B1H,GAAKxyC,EAAK3wB,MACVY,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAKvoE,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GACjCvzE,EAAQiW,MAAQo7D,EAAYtH,KAC5B/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAUsjE,KAAO,SAAS/sC,EAAM/vB,EAASuzE,GACrD,IAAIhR,EAUJ,OATAvoE,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,EAAIvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAC/BvzE,EAAQiW,MAAQo7D,EAAYpH,UAC5B1H,GAAKxyC,EAAK3wB,MACVY,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAKvoE,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GACjCvzE,EAAQiW,MAAQo7D,EAAYtH,KAC5B/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAUyzE,WAAa,SAASl9C,EAAM/vB,EAASuzE,GAC3D,IAAIhR,EAgBJ,OAfAvoE,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,EAAIvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,YACxCvzE,EAAQiW,MAAQo7D,EAAYpH,UAC5B1H,GAAK,IAAMxyC,EAAK28C,YAAc,IAAM38C,EAAK48C,cAAgB,IAAM58C,EAAK68C,cACtC,aAA1B78C,EAAK88C,mBACPtK,GAAK,IAAMxyC,EAAK88C,kBAEd98C,EAAK+8C,eACPvK,GAAK,KAAOxyC,EAAK+8C,aAAe,KAElC9sE,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAKviE,EAAQ05E,iBAAmB,IAAM1/E,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GAClEvzE,EAAQiW,MAAQo7D,EAAYtH,KAC5B/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAU4zE,WAAa,SAASr9C,EAAM/vB,EAASuzE,GAC3D,IAAIhR,EAUJ,OATAvoE,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,EAAIvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,YACxCvzE,EAAQiW,MAAQo7D,EAAYpH,UAC5B1H,GAAK,IAAMxyC,EAAK/0B,KAAO,IAAM+0B,EAAK3wB,MAClCY,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAKviE,EAAQ05E,iBAAmB,IAAM1/E,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GAClEvzE,EAAQiW,MAAQo7D,EAAYtH,KAC5B/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAUu0E,UAAY,SAASh+C,EAAM/vB,EAASuzE,GAC1D,IAAIhR,EAyBJ,OAxBAvoE,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,EAAIvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,WACxCvzE,EAAQiW,MAAQo7D,EAAYpH,UACxBl6C,EAAKu9C,KACP/K,GAAK,MAEPA,GAAK,IAAMxyC,EAAK/0B,KACZ+0B,EAAK3wB,MACPmjE,GAAK,KAAOxyC,EAAK3wB,MAAQ,KAErB2wB,EAAKw9C,OAASx9C,EAAKy9C,MACrBjL,GAAK,YAAcxyC,EAAKw9C,MAAQ,MAAQx9C,EAAKy9C,MAAQ,IAC5Cz9C,EAAKy9C,QACdjL,GAAK,YAAcxyC,EAAKy9C,MAAQ,KAE9Bz9C,EAAK69C,QACPrL,GAAK,UAAYxyC,EAAK69C,QAG1B5tE,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAKviE,EAAQ05E,iBAAmB,IAAM1/E,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GAClEvzE,EAAQiW,MAAQo7D,EAAYtH,KAC5B/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAUy0E,YAAc,SAASl+C,EAAM/vB,EAASuzE,GAC5D,IAAIhR,EAiBJ,OAhBAvoE,KAAKk5E,SAASnjD,EAAM/vB,EAASuzE,GAC7BvzE,EAAQiW,MAAQo7D,EAAYrH,QAC5BzH,EAAIvoE,KAAKo5E,OAAOrjD,EAAM/vB,EAASuzE,GAAS,aACxCvzE,EAAQiW,MAAQo7D,EAAYpH,UAC5B1H,GAAK,IAAMxyC,EAAK/0B,KACZ+0B,EAAKw9C,OAASx9C,EAAKy9C,MACrBjL,GAAK,YAAcxyC,EAAKw9C,MAAQ,MAAQx9C,EAAKy9C,MAAQ,IAC5Cz9C,EAAKw9C,MACdhL,GAAK,YAAcxyC,EAAKw9C,MAAQ,IACvBx9C,EAAKy9C,QACdjL,GAAK,YAAcxyC,EAAKy9C,MAAQ,KAElCxtE,EAAQiW,MAAQo7D,EAAYnH,SAC5B3H,GAAKviE,EAAQ05E,iBAAmB,IAAM1/E,KAAKq5E,QAAQtjD,EAAM/vB,EAASuzE,GAClEvzE,EAAQiW,MAAQo7D,EAAYtH,KAC5B/vE,KAAKi5E,UAAUljD,EAAM/vB,EAASuzE,GACvBhR,CACT,EAEA+W,EAAc9/E,UAAU05E,SAAW,SAASnjD,EAAM/vB,EAASuzE,GAAQ,EAEnE+F,EAAc9/E,UAAUy5E,UAAY,SAASljD,EAAM/vB,EAASuzE,GAAQ,EAEpE+F,EAAc9/E,UAAU2hF,cAAgB,SAASvW,EAAK5kE,EAASuzE,GAAQ,EAEvE+F,EAAc9/E,UAAU4hF,eAAiB,SAASxW,EAAK5kE,EAASuzE,GAAQ,EAEjE+F,CAER,CApYgC,EAsYlC,GAAEp+E,KAAKlB,8BC1aR,WACE,IAAImwE,EAAUkH,EAAatF,EAAsBuD,EAAaoC,EAAe6H,EAAiBnK,EAAiB5wB,EAAQkrB,EAAY/iE,EAEnIA,EAAM,EAAQ,OAAc63C,EAAS73C,EAAI63C,OAAQkrB,EAAa/iE,EAAI+iE,WAElEqC,EAAuB,EAAQ,OAE/BuD,EAAc,EAAQ,OAEtBoC,EAAgB,EAAQ,OAExBtC,EAAkB,EAAQ,OAE1BmK,EAAkB,EAAQ,OAE1BpP,EAAW,EAAQ,OAEnBkH,EAAc,EAAQ,OAEtBt0E,EAAOC,QAAQpC,OAAS,SAASI,EAAM6pE,EAAQ1L,EAASn5D,GACtD,IAAI0+D,EAAKhvC,EACT,GAAY,MAAR10B,EACF,MAAM,IAAIwe,MAAM,8BAWlB,OATAxZ,EAAUw+C,EAAO,CAAC,EAAGqmB,EAAQ1L,EAASn5D,GAEtC0vB,GADAgvC,EAAM,IAAI4Q,EAAYtvE,IACXsmC,QAAQtrC,GACdgF,EAAQ8kE,WACXpG,EAAI6P,YAAYvuE,GACM,MAAjBA,EAAQutE,OAAoC,MAAjBvtE,EAAQwtE,OACtC9O,EAAImV,IAAI7zE,IAGL0vB,CACT,EAEA3yB,EAAOC,QAAQs+E,MAAQ,SAASt7E,EAAS2xE,EAAQC,GAC/C,IAAIlD,EAKJ,OAJIhF,EAAW1pE,KACa2xE,GAA1BjD,EAAO,CAAC1uE,EAAS2xE,IAAuB,GAAIC,EAAQlD,EAAK,GACzD1uE,EAAU,CAAC,GAET2xE,EACK,IAAID,EAAc1xE,EAAS2xE,EAAQC,GAEnC,IAAItC,EAAYtvE,EAE3B,EAEAjD,EAAOC,QAAQu+E,aAAe,SAASv7E,GACrC,OAAO,IAAIovE,EAAgBpvE,EAC7B,EAEAjD,EAAOC,QAAQw+E,aAAe,SAASx1B,EAAQhmD,GAC7C,OAAO,IAAIu5E,EAAgBvzB,EAAQhmD,EACrC,EAEAjD,EAAOC,QAAQy+E,eAAiB,IAAI1P,EAEpChvE,EAAOC,QAAQ6/D,SAAWsN,EAE1BptE,EAAOC,QAAQ0+E,YAAcrK,CAE9B,GAAEn2E,KAAKlB,0+BCnCR,MAMMivB,EALS,QADIgyD,GAMM,YAJd,UAAmB71D,OAAO,SAASE,SAErC,UAAmBF,OAAO,SAASu2D,OAAOV,EAAKvvD,KAAKpG,QAJ3C,IAAC21D,EAkCnB,MAAMW,EACJC,SAAW,GACX,aAAAC,CAAcpoD,GACZ15B,KAAK+hF,cAAcroD,GACnBA,EAAMsoD,SAAWtoD,EAAMsoD,UAAY,EACnChiF,KAAK6hF,SAASrhF,KAAKk5B,EACrB,CACA,eAAAuoD,CAAgBvoD,GACd,MAAMwoD,EAA8B,iBAAVxoD,EAAqB15B,KAAKmiF,cAAczoD,GAAS15B,KAAKmiF,cAAczoD,EAAMlG,KAChF,IAAhB0uD,EAIJliF,KAAK6hF,SAAS1oE,OAAO+oE,EAAY,GAH/BjzD,EAAO+T,KAAK,mCAAoC,CAAEtJ,QAAOrzB,QAASrG,KAAKk6B,cAI3E,CAMA,UAAAA,CAAWp6B,GACT,OAAIA,EACKE,KAAK6hF,SAASv4E,QAAQowB,GAAmC,mBAAlBA,EAAMnE,SAAyBmE,EAAMnE,QAAQz1B,KAEtFE,KAAK6hF,QACd,CACA,aAAAM,CAAc3uD,GACZ,OAAOxzB,KAAK6hF,SAASp0C,WAAW/T,GAAUA,EAAMlG,KAAOA,GACzD,CACA,aAAAuuD,CAAcroD,GACZ,IAAKA,EAAMlG,KAAOkG,EAAMtE,cAAiBsE,EAAMrE,gBAAiBqE,EAAM3E,YAAe2E,EAAM9iB,QACzF,MAAM,IAAI4I,MAAM,iBAElB,GAAwB,iBAAbka,EAAMlG,IAAgD,iBAAtBkG,EAAMtE,YAC/C,MAAM,IAAI5V,MAAM,sCAElB,GAAIka,EAAM3E,WAAwC,iBAApB2E,EAAM3E,WAA0B2E,EAAMrE,eAAgD,iBAAxBqE,EAAMrE,cAChG,MAAM,IAAI7V,MAAM,yBAElB,QAAsB,IAAlBka,EAAMnE,SAA+C,mBAAlBmE,EAAMnE,QAC3C,MAAM,IAAI/V,MAAM,4BAElB,GAA6B,mBAAlBka,EAAM9iB,QACf,MAAM,IAAI4I,MAAM,4BAElB,GAAI,UAAWka,GAAgC,iBAAhBA,EAAM/F,MACnC,MAAM,IAAInU,MAAM,0BAElB,IAAsC,IAAlCxf,KAAKmiF,cAAczoD,EAAMlG,IAC3B,MAAM,IAAIhU,MAAM,kBAEpB,EA8BF,IAAI+tB,EAA8B,CAAE60C,IAClCA,EAAsB,QAAI,UAC1BA,EAAqB,OAAI,SAClBA,GAHyB,CAI/B70C,GAAe,CAAC,GACnB,MAAMpY,EACJktD,QACA,WAAA99D,CAAY2Q,GACVl1B,KAAKsiF,eAAeptD,GACpBl1B,KAAKqiF,QAAUntD,CACjB,CACA,MAAI1B,GACF,OAAOxzB,KAAKqiF,QAAQ7uD,EACtB,CACA,eAAI4B,GACF,OAAOp1B,KAAKqiF,QAAQjtD,WACtB,CACA,SAAInM,GACF,OAAOjpB,KAAKqiF,QAAQp5D,KACtB,CACA,iBAAIoM,GACF,OAAOr1B,KAAKqiF,QAAQhtD,aACtB,CACA,WAAIE,GACF,OAAOv1B,KAAKqiF,QAAQ9sD,OACtB,CACA,QAAInvB,GACF,OAAOpG,KAAKqiF,QAAQj8E,IACtB,CACA,aAAI+7B,GACF,OAAOniC,KAAKqiF,QAAQlgD,SACtB,CACA,SAAIxO,GACF,OAAO3zB,KAAKqiF,QAAQ1uD,KACtB,CACA,UAAIjnB,GACF,OAAO1M,KAAKqiF,QAAQ31E,MACtB,CACA,WAAI,GACF,OAAO1M,KAAKqiF,QAAQr0E,OACtB,CACA,UAAIk/B,GACF,OAAOltC,KAAKqiF,QAAQn1C,MACtB,CACA,gBAAIE,GACF,OAAOptC,KAAKqiF,QAAQj1C,YACtB,CACA,cAAAk1C,CAAeptD,GACb,IAAKA,EAAO1B,IAA2B,iBAAd0B,EAAO1B,GAC9B,MAAM,IAAIhU,MAAM,cAElB,IAAK0V,EAAOE,aAA6C,mBAAvBF,EAAOE,YACvC,MAAM,IAAI5V,MAAM,gCAElB,GAAI,UAAW0V,GAAkC,mBAAjBA,EAAOjM,MACrC,MAAM,IAAIzJ,MAAM,0BAElB,IAAK0V,EAAOG,eAAiD,mBAAzBH,EAAOG,cACzC,MAAM,IAAI7V,MAAM,kCAElB,IAAK0V,EAAO9uB,MAA+B,mBAAhB8uB,EAAO9uB,KAChC,MAAM,IAAIoZ,MAAM,yBAElB,GAAI,YAAa0V,GAAoC,mBAAnBA,EAAOK,QACvC,MAAM,IAAI/V,MAAM,4BAElB,GAAI,cAAe0V,GAAsC,mBAArBA,EAAOiN,UACzC,MAAM,IAAI3iB,MAAM,8BAElB,GAAI,UAAW0V,GAAkC,iBAAjBA,EAAOvB,MACrC,MAAM,IAAInU,MAAM,iBAElB,GAAI,WAAY0V,GAAmC,iBAAlBA,EAAOxoB,OACtC,MAAM,IAAI8S,MAAM,kBAElB,GAAI0V,EAAOlnB,UAAYzO,OAAO60C,OAAO7G,GAAaxlC,SAASmtB,EAAOlnB,SAChE,MAAM,IAAIwR,MAAM,mBAElB,GAAI,WAAY0V,GAAmC,mBAAlBA,EAAOgY,OACtC,MAAM,IAAI1tB,MAAM,2BAElB,GAAI,iBAAkB0V,GAAyC,mBAAxBA,EAAOkY,aAC5C,MAAM,IAAI5tB,MAAM,gCAEpB,EAEF,MAWM+sB,EAAiB,WAKrB,YAJsC,IAA3B/zB,OAAO+pE,kBAChB/pE,OAAO+pE,gBAAkB,GACzBtzD,EAAO+E,MAAM,4BAERxb,OAAO+pE,eAChB,EAwEMnmC,EAAqB,WAKzB,YAJyC,IAA9B5jC,OAAOgqE,qBAChBhqE,OAAOgqE,mBAAqB,GAC5BvzD,EAAO+E,MAAM,gCAERxb,OAAOgqE,kBAChB,EAsBA,IAAI3sD,EAA6B,CAAE4sD,IACjCA,EAAYA,EAAkB,KAAI,GAAK,OACvCA,EAAYA,EAAoB,OAAI,GAAK,SACzCA,EAAYA,EAAkB,KAAI,GAAK,OACvCA,EAAYA,EAAoB,OAAI,GAAK,SACzCA,EAAYA,EAAoB,OAAI,GAAK,SACzCA,EAAYA,EAAmB,MAAI,IAAM,QACzCA,EAAYA,EAAiB,IAAI,IAAM,MAChCA,GARwB,CAS9B5sD,GAAc,CAAC,GAuBlB,MAAM6sD,EAAuB,CAC3B,qBACA,mBACA,YACA,oBACA,0BACA,iBACA,iBACA,kBACA,gBACA,qBACA,cACA,YACA,wBACA,cACA,iBACA,WAEIC,EAAuB,CAC3B7c,EAAG,OACH8c,GAAI,0BACJC,GAAI,yBACJC,IAAK,6CAyBDC,EAAmB,WAIvB,YAHyC,IAA9BvqE,OAAOwqE,qBAChBxqE,OAAOwqE,mBAAqB,IAAIN,IAE3BlqE,OAAOwqE,mBAAmBl8E,KAAKm8E,GAAS,IAAIA,SAAWt/E,KAAK,IACrE,EACMu/E,EAAmB,WAIvB,YAHyC,IAA9B1qE,OAAO2qE,qBAChB3qE,OAAO2qE,mBAAqB,IAAKR,IAE5BpjF,OAAO+G,KAAKkS,OAAO2qE,oBAAoBr8E,KAAKg2D,GAAO,SAASA,MAAOtkD,OAAO2qE,qBAAqBrmB,QAAQn5D,KAAK,IACrH,EACMk3B,EAAwB,WAC5B,MAAO,0CACOqoD,iCAEVH,yCAGN,EAYMK,EAAqB,SAAS9pD,GAClC,MAAO,4DACU4pD,8HAKbH,iGAKe,WAAkBrxD,0nBA0BrB4H,yXAkBlB,EAuBMmE,EAAsB,SAAS4lD,EAAa,IAChD,IAAIztD,EAAcC,EAAWC,KAC7B,OAAKutD,IAGDA,EAAWt7E,SAAS,MAAQs7E,EAAWt7E,SAAS,QAClD6tB,GAAeC,EAAWuL,QAExBiiD,EAAWt7E,SAAS,OACtB6tB,GAAeC,EAAWqa,OAExBmzC,EAAWt7E,SAAS,MAAQs7E,EAAWt7E,SAAS,MAAQs7E,EAAWt7E,SAAS,QAC9E6tB,GAAeC,EAAWiG,QAExBunD,EAAWt7E,SAAS,OACtB6tB,GAAeC,EAAWytD,QAExBD,EAAWt7E,SAAS,OACtB6tB,GAAeC,EAAWosB,OAErBrsB,GAjBEA,CAkBX,EAsBA,IAAIiC,EAA2B,CAAE0rD,IAC/BA,EAAkB,OAAI,SACtBA,EAAgB,KAAI,OACbA,GAHsB,CAI5B1rD,GAAY,CAAC,GAsBhB,MAAM2rD,EAAiB,SAASlyE,EAAQmyE,GACtC,OAAoC,OAA7BnyE,EAAOrN,MAAMw/E,EACtB,EACMC,EAAe,CAACt1E,EAAMq1E,KAC1B,GAAIr1E,EAAKolB,IAAyB,iBAAZplB,EAAKolB,GACzB,MAAM,IAAIhU,MAAM,4BAElB,IAAKpR,EAAKkD,OACR,MAAM,IAAIkO,MAAM,4BAElB,IACE,IAAIvV,IAAImE,EAAKkD,OACf,CAAE,MAAOxF,GACP,MAAM,IAAI0T,MAAM,oDAClB,CACA,IAAKpR,EAAKkD,OAAOqkB,WAAW,QAC1B,MAAM,IAAInW,MAAM,oDAElB,GAAIpR,EAAKyvB,SAAWzvB,EAAKyvB,iBAAiB3iB,MACxC,MAAM,IAAIsE,MAAM,sBAElB,GAAIpR,EAAKu1E,UAAYv1E,EAAKu1E,kBAAkBzoE,MAC1C,MAAM,IAAIsE,MAAM,uBAElB,IAAKpR,EAAK2vB,MAA6B,iBAAd3vB,EAAK2vB,OAAsB3vB,EAAK2vB,KAAK95B,MAAM,yBAClE,MAAM,IAAIub,MAAM,qCAElB,GAAI,SAAUpR,GAA6B,iBAAdA,EAAK+a,WAAmC,IAAd/a,EAAK+a,KAC1D,MAAM,IAAI3J,MAAM,qBAElB,GAAI,gBAAiBpR,QAA6B,IAArBA,EAAKwnB,eAAwD,iBAArBxnB,EAAKwnB,aAA4BxnB,EAAKwnB,aAAeC,EAAWC,MAAQ1nB,EAAKwnB,aAAeC,EAAWgG,KAC1K,MAAM,IAAIrc,MAAM,uBAElB,GAAIpR,EAAKsvB,OAAwB,OAAftvB,EAAKsvB,OAAwC,iBAAftvB,EAAKsvB,MACnD,MAAM,IAAIle,MAAM,sBAElB,GAAIpR,EAAK8tB,YAAyC,iBAApB9tB,EAAK8tB,WACjC,MAAM,IAAI1c,MAAM,2BAElB,GAAIpR,EAAKsnB,MAA6B,iBAAdtnB,EAAKsnB,KAC3B,MAAM,IAAIlW,MAAM,qBAElB,GAAIpR,EAAKsnB,OAAStnB,EAAKsnB,KAAKC,WAAW,KACrC,MAAM,IAAInW,MAAM,wCAElB,GAAIpR,EAAKsnB,OAAStnB,EAAKkD,OAAOvJ,SAASqG,EAAKsnB,MAC1C,MAAM,IAAIlW,MAAM,mCAElB,GAAIpR,EAAKsnB,MAAQ8tD,EAAep1E,EAAKkD,OAAQmyE,GAAa,CACxD,MAAM9sD,EAAUvoB,EAAKkD,OAAOrN,MAAMw/E,GAAY,GAC9C,IAAKr1E,EAAKkD,OAAOvJ,UAAS,IAAApE,MAAKgzB,EAASvoB,EAAKsnB,OAC3C,MAAM,IAAIlW,MAAM,4DAEpB,CACA,GAAIpR,EAAKyyB,SAAWthC,OAAO60C,OAAO9U,GAAYv3B,SAASqG,EAAKyyB,QAC1D,MAAM,IAAIrhB,MAAM,oCAClB,EAuBF,IAAI8f,EAA6B,CAAEskD,IACjCA,EAAiB,IAAI,MACrBA,EAAoB,OAAI,SACxBA,EAAqB,QAAI,UACzBA,EAAoB,OAAI,SACjBA,GALwB,CAM9BtkD,GAAc,CAAC,GAClB,MAAMuJ,EACJg7C,MACA/1C,YACAg2C,iBAAmB,mCACnBC,mBAAqBxkF,OAAO8G,QAAQ9G,OAAO+4D,0BAA0BzvB,EAAKrpC,YAAY8J,QAAQwC,GAA0B,mBAAbA,EAAE,GAAGqa,KAA+B,cAATra,EAAE,KAAoBhF,KAAKgF,GAAMA,EAAE,KACzK8K,QAAU,CACR2hB,IAAK,CAAC9hB,EAAQwsE,EAAM79E,KACdpF,KAAK+jF,mBAAmBh8E,SAASk7E,IAG9Bh+E,QAAQszB,IAAI9hB,EAAQwsE,EAAM79E,GAEnC4+E,eAAgB,CAACvtE,EAAQwsE,KACnBjjF,KAAK+jF,mBAAmBh8E,SAASk7E,IAG9Bh+E,QAAQ++E,eAAevtE,EAAQwsE,GAGxC98D,IAAK,CAAC1P,EAAQwsE,EAAM19B,IACdvlD,KAAK+jF,mBAAmBh8E,SAASk7E,IACnCh0D,EAAO+T,KAAK,8BAA8BigD,8DACnCh+E,QAAQkhB,IAAInmB,KAAMijF,IAEpBh+E,QAAQkhB,IAAI1P,EAAQwsE,EAAM19B,IAGrC,WAAAhhC,CAAYnW,EAAMq1E,GAChBC,EAAat1E,EAAMq1E,GAAczjF,KAAK8jF,kBACtC9jF,KAAK6jF,MAAQ,IAAKz1E,EAAM8tB,WAAY,CAAC,GACrCl8B,KAAK8tC,YAAc,IAAIm2C,MAAMjkF,KAAK6jF,MAAM3nD,WAAYl8B,KAAK4W,SACzD5W,KAAKwqB,OAAOpc,EAAK8tB,YAAc,CAAC,GAC5BunD,IACFzjF,KAAK8jF,iBAAmBL,EAE5B,CAMA,UAAInyE,GACF,OAAOtR,KAAK6jF,MAAMvyE,OAAO/K,QAAQ,OAAQ,GAC3C,CAIA,iBAAIwrC,GACF,MAAM,OAAE2B,GAAW,IAAIzpC,IAAIjK,KAAKsR,QAChC,OAAOoiC,GAAS,QAAW1zC,KAAKsR,OAAOnQ,MAAMuyC,EAAOhyC,QACtD,CAMA,YAAIw5B,GACF,OAAO,IAAAA,UAASl7B,KAAKsR,OACvB,CAMA,aAAIk4B,GACF,OAAO,IAAArJ,SAAQngC,KAAKsR,OACtB,CAQA,WAAIymB,GACF,GAAI/3B,KAAK01B,KAAM,CACb,IAAIpkB,EAAStR,KAAKsR,OACdtR,KAAKwjF,iBACPlyE,EAASA,EAAO7N,MAAMzD,KAAK8jF,kBAAkBjzE,OAE/C,MAAMqzE,EAAa5yE,EAAOhN,QAAQtE,KAAK01B,MACjCA,EAAO11B,KAAK01B,KAAKnvB,QAAQ,MAAO,IACtC,OAAO,IAAAwxB,SAAQzmB,EAAOnQ,MAAM+iF,EAAaxuD,EAAKh0B,SAAW,IAC3D,CACA,MAAM8H,EAAM,IAAIS,IAAIjK,KAAKsR,QACzB,OAAO,IAAAymB,SAAQvuB,EAAIub,SACrB,CAKA,QAAIgZ,GACF,OAAO/9B,KAAK6jF,MAAM9lD,IACpB,CAIA,SAAIF,GACF,OAAO79B,KAAK6jF,MAAMhmD,KACpB,CAIA,SAAIA,CAAMA,GACR79B,KAAK6jF,MAAMhmD,MAAQA,CACrB,CAKA,UAAI8lD,GACF,OAAO3jF,KAAK6jF,MAAMF,MACpB,CAIA,QAAIx6D,GACF,OAAOnpB,KAAK6jF,MAAM16D,IACpB,CAIA,QAAIA,CAAKA,GACPnpB,KAAKmkF,cACLnkF,KAAK6jF,MAAM16D,KAAOA,CACpB,CAKA,cAAI+S,GACF,OAAOl8B,KAAK8tC,WACd,CAIA,eAAIlY,GACF,OAAmB,OAAf51B,KAAK09B,OAAmB19B,KAAKwjF,oBAGC,IAA3BxjF,KAAK6jF,MAAMjuD,YAAyB51B,KAAK6jF,MAAMjuD,YAAcC,EAAWC,KAFtED,EAAWqa,IAGtB,CAIA,eAAIta,CAAYA,GACd51B,KAAKmkF,cACLnkF,KAAK6jF,MAAMjuD,YAAcA,CAC3B,CAKA,SAAI8H,GACF,OAAK19B,KAAKwjF,eAGHxjF,KAAK6jF,MAAMnmD,MAFT,IAGX,CAIA,kBAAI8lD,GACF,OAAOA,EAAexjF,KAAKsR,OAAQtR,KAAK8jF,iBAC1C,CAKA,QAAIpuD,GACF,OAAI11B,KAAK6jF,MAAMnuD,KACN11B,KAAK6jF,MAAMnuD,KAAKnvB,QAAQ,WAAY,MAEzCvG,KAAKwjF,iBACM,IAAAzrD,SAAQ/3B,KAAKsR,QACd7N,MAAMzD,KAAK8jF,kBAAkBjzE,OAEpC,IACT,CAIA,QAAI5E,GACF,GAAIjM,KAAK01B,KAAM,CACb,IAAIpkB,EAAStR,KAAKsR,OACdtR,KAAKwjF,iBACPlyE,EAASA,EAAO7N,MAAMzD,KAAK8jF,kBAAkBjzE,OAE/C,MAAMqzE,EAAa5yE,EAAOhN,QAAQtE,KAAK01B,MACjCA,EAAO11B,KAAK01B,KAAKnvB,QAAQ,MAAO,IACtC,OAAO+K,EAAOnQ,MAAM+iF,EAAaxuD,EAAKh0B,SAAW,GACnD,CACA,OAAQ1B,KAAK+3B,QAAU,IAAM/3B,KAAKk7B,UAAU30B,QAAQ,QAAS,IAC/D,CAKA,UAAI2vB,GACF,OAAOl2B,KAAK6jF,OAAOrwD,EACrB,CAIA,UAAIqN,GACF,OAAO7gC,KAAK6jF,OAAOhjD,MACrB,CAIA,UAAIA,CAAOA,GACT7gC,KAAK6jF,MAAMhjD,OAASA,CACtB,CAOA,IAAAujD,CAAKppD,GACH0oD,EAAa,IAAK1jF,KAAK6jF,MAAOvyE,OAAQ0pB,GAAeh7B,KAAK8jF,kBAC1D9jF,KAAK6jF,MAAMvyE,OAAS0pB,EACpBh7B,KAAKmkF,aACP,CAOA,MAAAnyC,CAAOqyC,GACL,GAAIA,EAAUt8E,SAAS,KACrB,MAAM,IAAIyX,MAAM,oBAElBxf,KAAKokF,MAAK,IAAArsD,SAAQ/3B,KAAKsR,QAAU,IAAM+yE,EACzC,CAIA,WAAAF,GACMnkF,KAAK6jF,MAAMhmD,QACb79B,KAAK6jF,MAAMhmD,MAAwB,IAAI3iB,KAE3C,CAOA,MAAAsP,CAAO0R,GACL,IAAK,MAAOl7B,EAAMoE,KAAU7F,OAAO8G,QAAQ61B,GACzC,SACgB,IAAV92B,SACKpF,KAAKk8B,WAAWl7B,GAEvBhB,KAAKk8B,WAAWl7B,GAAQoE,CAE5B,CAAE,MAAO0G,GACP,GAAIA,aAAa1L,UACf,SAEF,MAAM0L,CACR,CAEJ,EAuBF,MAAMmtB,UAAa4P,EACjB,QAAI96B,GACF,OAAO8pB,EAASoB,IAClB,EAuBF,MAAMnB,UAAe+Q,EACnB,WAAAtkB,CAAYnW,GACV+qB,MAAM,IACD/qB,EACH2vB,KAAM,wBAEV,CACA,QAAIhwB,GACF,OAAO8pB,EAASC,MAClB,CACA,aAAI0R,GACF,OAAO,IACT,CACA,QAAIzL,GACF,MAAO,sBACT,EAwBF,MAAM4B,EAAc,WAAU,WAAkBjO,MAC1C4yD,GAAe,QAAkB,OACjC/pD,EAAe,SAASgqD,EAAYD,EAAcnnD,EAAU,CAAC,GACjE,MAAMT,GAAS,QAAa6nD,EAAW,CAAEpnD,YACzC,SAASN,EAAW15B,GAClBu5B,EAAOG,WAAW,IACbM,EAEH,mBAAoB,iBAEpBL,aAAc35B,GAAS,IAE3B,CAYA,OAXA,QAAqB05B,GACrBA,GAAW,YACK,UACRK,MAAM,SAAS,CAAC1zB,EAAKxD,KAC3B,MAAMw+E,EAAWx+E,EAAQm3B,QAKzB,OAJIqnD,GAAUpnD,SACZp3B,EAAQo3B,OAASonD,EAASpnD,cACnBonD,EAASpnD,QAEXC,MAAM7zB,EAAKxD,EAAQ,IAErB02B,CACT,EACM+nD,EAAmB,CAACnqD,EAAWruB,EAAO,IAAKy4E,EAAU/kD,KACzD,MAAMxB,EAAa,IAAIC,gBACvB,OAAO,IAAI,EAAAE,mBAAkB1E,MAAO7jB,EAASuN,EAAQib,KACnDA,GAAS,IAAMJ,EAAW/b,UAC1B,IAYErM,SAX+BukB,EAAUmE,qBAAqB,GAAGimD,IAAUz4E,IAAQ,CACjF0yB,OAAQR,EAAWQ,OACnB/D,SAAS,EACTxsB,KAvnBC,+CACY80E,iCAEfH,wIAqnBE5lD,QAAS,CAEPC,OAAQ,UAEVsB,aAAa,KAEgBtwB,KAAK9E,QAAQysB,GAASA,EAAK4H,WAAa1xB,IAAMnF,KAAKpC,GAAWo2B,EAAgBp2B,EAAQggF,KAEvH,CAAE,MAAOnlE,GACP+D,EAAO/D,EACT,IACA,EAEEub,EAAkB,SAAS/E,EAAM4uD,EAAYhlD,EAAa4kD,EAAYD,GAC1E,IAAI9mD,GAAS,WAAkB9L,IAC/B,MAAMkzD,EAAW7mE,SAASE,cAAc,mBAAmB7Y,MAC3D,GAAIw/E,EACFpnD,EAASA,GAAUzf,SAASE,cAAc,wBAAwB7Y,MAClEo4B,EAASA,GAAU,iBACd,IAAKA,EACV,MAAM,IAAIhe,MAAM,oBAElB,MAAM1R,EAAQioB,EAAKjoB,MACb8nB,EAAc6H,EAAoB3vB,GAAO8nB,aACzC8H,EAAQ9yB,OAAOkD,IAAQ,aAAe0vB,GACtCI,EAAW,CACfpK,GAAI1lB,GAAOooB,QAAU,EACrB5kB,OAAQ,GAAGizE,IAAYxuD,EAAK4H,WAC5BE,MAAO,IAAI3iB,KAAKA,KAAKzT,MAAMsuB,EAAK+H,UAChCC,KAAMhI,EAAKgI,MAAQ,2BACnB5U,KAAMrb,GAAOqb,MAAQtiB,OAAOohC,SAASn6B,EAAM+2E,kBAAoB,KAC/DjvD,cACA8H,QACAhI,KAAMivD,EACNzoD,WAAY,IACPnG,KACAjoB,EACHkwB,WAAYlwB,IAAQ,iBAIxB,cADO8vB,EAAS1B,YAAYpuB,MACP,SAAdioB,EAAKhoB,KAAkB,IAAIkrB,EAAK2E,GAAY,IAAI9F,EAAO8F,EAChE,EAC4BplB,OAAOssE,WACJtsE,OAAOssE,YAAY/zC,uBAAwB,IAAI1tC,OAAOmV,OAAOssE,WAAW/zC,uBAgCvG,MAAMg0C,EAAY,CAAC,IAAK,KAAM,KAAM,KAAM,KAAM,MAC1CC,EAAkB,CAAC,IAAK,MAAO,MAAO,MAAO,MAAO,OAC1D,SAASv3D,EAAetE,EAAM87D,GAAiB,EAAOC,GAAiB,EAAOC,GAAW,GACvFD,EAAiBA,IAAmBC,EAChB,iBAATh8D,IACTA,EAAOtiB,OAAOsiB,IAEhB,IAAIwK,EAAQxK,EAAO,EAAI1G,KAAKi3B,MAAMj3B,KAAK2iE,IAAIj8D,GAAQ1G,KAAK2iE,IAAID,EAAW,IAAM,OAAS,EACtFxxD,EAAQlR,KAAKmN,KAAKs1D,EAAiBF,EAAgBtjF,OAASqjF,EAAUrjF,QAAU,EAAGiyB,GACnF,MAAM0xD,EAAiBH,EAAiBF,EAAgBrxD,GAASoxD,EAAUpxD,GAC3E,IAAI2xD,GAAgBn8D,EAAO1G,KAAKszB,IAAIovC,EAAW,IAAM,KAAMxxD,IAAQvY,QAAQ,GAC3E,OAAuB,IAAnB6pE,GAAqC,IAAVtxD,GACJ,QAAjB2xD,EAAyB,OAAS,OAASJ,EAAiBF,EAAgB,GAAKD,EAAU,KAGnGO,EADE3xD,EAAQ,EACKq6C,WAAWsX,GAAclqE,QAAQ,GAEjC4yD,WAAWsX,GAAcC,gBAAe,WAElDD,EAAe,IAAMD,EAC9B,CAmHA,MAAMnhC,EACJshC,OAAS,GACTC,aAAe,KACf,QAAA7gC,CAAS77B,GACP,GAAI/oB,KAAKwlF,OAAOjyD,MAAMrO,GAAWA,EAAOsO,KAAOzK,EAAKyK,KAClD,MAAM,IAAIhU,MAAM,WAAWuJ,EAAKyK,4BAElCxzB,KAAKwlF,OAAOhlF,KAAKuoB,EACnB,CACA,MAAAs0D,CAAO7pD,GACL,MAAMtqB,EAAQlJ,KAAKwlF,OAAO/3C,WAAW1kB,GAASA,EAAKyK,KAAOA,KAC3C,IAAXtqB,GACFlJ,KAAKwlF,OAAOrsE,OAAOjQ,EAAO,EAE9B,CACA,SAAIoqB,GACF,OAAOtzB,KAAKwlF,MACd,CACA,SAAAzxD,CAAUhL,GACR/oB,KAAKylF,aAAe18D,CACtB,CACA,UAAI6O,GACF,OAAO53B,KAAKylF,YACd,EAEF,MAAM9tD,EAAgB,WAKpB,YAJqC,IAA1Bnf,OAAOktE,iBAChBltE,OAAOktE,eAAiB,IAAIxhC,EAC5Bj1B,EAAO+E,MAAM,mCAERxb,OAAOktE,cAChB,EAsBA,MAAMC,EACJC,QACA,WAAArhE,CAAYmyB,GACVmvC,EAAcnvC,GACd12C,KAAK4lF,QAAUlvC,CACjB,CACA,MAAIljB,GACF,OAAOxzB,KAAK4lF,QAAQpyD,EACtB,CACA,SAAIvK,GACF,OAAOjpB,KAAK4lF,QAAQ38D,KACtB,CACA,UAAIhb,GACF,OAAOjO,KAAK4lF,QAAQ33E,MACtB,CACA,QAAIvH,GACF,OAAO1G,KAAK4lF,QAAQl/E,IACtB,CACA,WAAIohC,GACF,OAAO9nC,KAAK4lF,QAAQ99C,OACtB,EAEF,MAAM+9C,EAAgB,SAASnvC,GAC7B,IAAKA,EAAOljB,IAA2B,iBAAdkjB,EAAOljB,GAC9B,MAAM,IAAIhU,MAAM,2BAElB,IAAKk3B,EAAOztB,OAAiC,iBAAjBytB,EAAOztB,MACjC,MAAM,IAAIzJ,MAAM,8BAElB,IAAKk3B,EAAOzoC,QAAmC,mBAAlByoC,EAAOzoC,OAClC,MAAM,IAAIuR,MAAM,iCAElB,GAAIk3B,EAAOhwC,MAA+B,mBAAhBgwC,EAAOhwC,KAC/B,MAAM,IAAI8Y,MAAM,0CAElB,GAAIk3B,EAAO5O,SAAqC,mBAAnB4O,EAAO5O,QAClC,MAAM,IAAItoB,MAAM,qCAElB,OAAO,CACT,EACA,IAAIsmE,EAAc,CAAC,EACfC,EAAS,CAAC,GACd,SAAU/iF,GACR,MAAMgjF,EAAgB,gLAEhBC,EAAa,IAAMD,EAAgB,KADxBA,EACE,iDACbE,EAAY,IAAI7iF,OAAO,IAAM4iF,EAAa,KAoBhDjjF,EAAQmjF,QAAU,SAASzoE,GACzB,YAAoB,IAANA,CAChB,EACA1a,EAAQojF,cAAgB,SAAS/6E,GAC/B,OAAmC,IAA5B9L,OAAO+G,KAAK+E,GAAK3J,MAC1B,EACAsB,EAAQqjF,MAAQ,SAAS5vE,EAAQ9P,EAAG2/E,GAClC,GAAI3/E,EAAG,CACL,MAAML,EAAO/G,OAAO+G,KAAKK,GACnBtE,EAAMiE,EAAK5E,OACjB,IAAK,IAAIF,EAAI,EAAGA,EAAIa,EAAKb,IAErBiV,EAAOnQ,EAAK9E,IADI,WAAd8kF,EACgB,CAAC3/E,EAAEL,EAAK9E,KAERmF,EAAEL,EAAK9E,GAG/B,CACF,EACAwB,EAAQysE,SAAW,SAAS/xD,GAC1B,OAAI1a,EAAQmjF,QAAQzoE,GACXA,EAEA,EAEX,EACA1a,EAAQujF,OA9BO,SAASpiF,GAEtB,QAAQ,MADM+hF,EAAU9/E,KAAKjC,GAE/B,EA4BAnB,EAAQwjF,cA9Cc,SAASriF,EAAQsV,GACrC,MAAMpG,EAAU,GAChB,IAAIpP,EAAQwV,EAAMrT,KAAKjC,GACvB,KAAOF,GAAO,CACZ,MAAMwiF,EAAa,GACnBA,EAAW9sC,WAAalgC,EAAM2gC,UAAYn2C,EAAM,GAAGvC,OACnD,MAAMW,EAAM4B,EAAMvC,OAClB,IAAK,IAAIwH,EAAQ,EAAGA,EAAQ7G,EAAK6G,IAC/Bu9E,EAAWjmF,KAAKyD,EAAMiF,IAExBmK,EAAQ7S,KAAKimF,GACbxiF,EAAQwV,EAAMrT,KAAKjC,EACrB,CACA,OAAOkP,CACT,EAiCArQ,EAAQijF,WAAaA,CACtB,CArDD,CAqDGF,GACH,MAAMW,EAASX,EACTY,EAAmB,CACvBC,wBAAwB,EAExBC,aAAc,IA4IhB,SAASC,EAAa71C,GACpB,MAAgB,MAATA,GAAyB,OAATA,GAAyB,OAATA,GAA0B,OAATA,CAC1D,CACA,SAAS81C,EAAOC,EAASxlF,GACvB,MAAMiiC,EAAQjiC,EACd,KAAOA,EAAIwlF,EAAQtlF,OAAQF,IACzB,GAAkB,KAAdwlF,EAAQxlF,IAA2B,KAAdwlF,EAAQxlF,QAAjC,CACE,MAAM20E,EAAU6Q,EAAQ9zE,OAAOuwB,EAAOjiC,EAAIiiC,GAC1C,GAAIjiC,EAAI,GAAiB,QAAZ20E,EACX,OAAO8Q,GAAe,aAAc,6DAA8DC,GAAyBF,EAASxlF,IAC/H,GAAkB,KAAdwlF,EAAQxlF,IAA+B,KAAlBwlF,EAAQxlF,EAAI,GAAW,CACrDA,IACA,KACF,CAGF,CAEF,OAAOA,CACT,CACA,SAAS2lF,EAAoBH,EAASxlF,GACpC,GAAIwlF,EAAQtlF,OAASF,EAAI,GAAwB,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAClE,IAAKA,GAAK,EAAGA,EAAIwlF,EAAQtlF,OAAQF,IAC/B,GAAmB,MAAfwlF,EAAQxlF,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,GAAY,CAC1EA,GAAK,EACL,KACF,OAEG,GAAIwlF,EAAQtlF,OAASF,EAAI,GAAwB,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,GAAY,CACvN,IAAI4lF,EAAqB,EACzB,IAAK5lF,GAAK,EAAGA,EAAIwlF,EAAQtlF,OAAQF,IAC/B,GAAmB,MAAfwlF,EAAQxlF,GACV4lF,SACK,GAAmB,MAAfJ,EAAQxlF,KACjB4lF,IAC2B,IAAvBA,GACF,KAIR,MAAO,GAAIJ,EAAQtlF,OAASF,EAAI,GAAwB,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,GAC3M,IAAKA,GAAK,EAAGA,EAAIwlF,EAAQtlF,OAAQF,IAC/B,GAAmB,MAAfwlF,EAAQxlF,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,GAAY,CAC1EA,GAAK,EACL,KACF,CAGJ,OAAOA,CACT,CA3LAskF,EAAYuB,SAAW,SAASL,EAAShhF,GACvCA,EAAUzG,OAAOilD,OAAO,CAAC,EAAGmiC,EAAkB3gF,GAC9C,MAAMm2D,EAAO,GACb,IAAImrB,GAAW,EACXC,GAAc,EACC,WAAfP,EAAQ,KACVA,EAAUA,EAAQ9zE,OAAO,IAE3B,IAAK,IAAI1R,EAAI,EAAGA,EAAIwlF,EAAQtlF,OAAQF,IAClC,GAAmB,MAAfwlF,EAAQxlF,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAGpC,GAFAA,GAAK,EACLA,EAAIulF,EAAOC,EAASxlF,GAChBA,EAAEkJ,IACJ,OAAOlJ,MACJ,IAAmB,MAAfwlF,EAAQxlF,GA4GZ,CACL,GAAIslF,EAAaE,EAAQxlF,IACvB,SAEF,OAAOylF,GAAe,cAAe,SAAWD,EAAQxlF,GAAK,qBAAsB0lF,GAAyBF,EAASxlF,GACvH,CAjH+B,CAC7B,IAAIgmF,EAAchmF,EAElB,GADAA,IACmB,MAAfwlF,EAAQxlF,GAAY,CACtBA,EAAI2lF,EAAoBH,EAASxlF,GACjC,QACF,CAAO,CACL,IAAIimF,GAAa,EACE,MAAfT,EAAQxlF,KACVimF,GAAa,EACbjmF,KAEF,IAAIg9D,EAAU,GACd,KAAOh9D,EAAIwlF,EAAQtlF,QAAyB,MAAfslF,EAAQxlF,IAA6B,MAAfwlF,EAAQxlF,IAA6B,OAAfwlF,EAAQxlF,IAA6B,OAAfwlF,EAAQxlF,IAA8B,OAAfwlF,EAAQxlF,GAAaA,IACzIg9D,GAAWwoB,EAAQxlF,GAOrB,GALAg9D,EAAUA,EAAQp3D,OACkB,MAAhCo3D,EAAQA,EAAQ98D,OAAS,KAC3B88D,EAAUA,EAAQpV,UAAU,EAAGoV,EAAQ98D,OAAS,GAChDF,KAgQe20E,EA9PI3X,GA+PpBkoB,EAAOH,OAAOpQ,GA/PgB,CAC7B,IAAI3yD,EAMJ,OAJEA,EAD4B,IAA1Bg7C,EAAQp3D,OAAO1F,OACX,2BAEA,QAAU88D,EAAU,wBAErByoB,GAAe,aAAczjE,EAAK0jE,GAAyBF,EAASxlF,GAC7E,CACA,MAAMkD,EAASgjF,GAAiBV,EAASxlF,GACzC,IAAe,IAAXkD,EACF,OAAOuiF,GAAe,cAAe,mBAAqBzoB,EAAU,qBAAsB0oB,GAAyBF,EAASxlF,IAE9H,IAAImmF,EAAUjjF,EAAOU,MAErB,GADA5D,EAAIkD,EAAOwE,MACyB,MAAhCy+E,EAAQA,EAAQjmF,OAAS,GAAY,CACvC,MAAMkmF,EAAepmF,EAAImmF,EAAQjmF,OACjCimF,EAAUA,EAAQv+B,UAAU,EAAGu+B,EAAQjmF,OAAS,GAChD,MAAMmmF,EAAUC,GAAwBH,EAAS3hF,GACjD,IAAgB,IAAZ6hF,EAGF,OAAOZ,GAAeY,EAAQn9E,IAAI09C,KAAMy/B,EAAQn9E,IAAI8Y,IAAK0jE,GAAyBF,EAASY,EAAeC,EAAQn9E,IAAIuyD,OAFtHqqB,GAAW,CAIf,MAAO,GAAIG,EAAY,CACrB,IAAK/iF,EAAOqjF,UACV,OAAOd,GAAe,aAAc,gBAAkBzoB,EAAU,iCAAkC0oB,GAAyBF,EAASxlF,IAC/H,GAAImmF,EAAQvgF,OAAO1F,OAAS,EACjC,OAAOulF,GAAe,aAAc,gBAAkBzoB,EAAU,+CAAgD0oB,GAAyBF,EAASQ,IAC7I,GAAoB,IAAhBrrB,EAAKz6D,OACd,OAAOulF,GAAe,aAAc,gBAAkBzoB,EAAU,yBAA0B0oB,GAAyBF,EAASQ,IACvH,CACL,MAAMQ,EAAM7rB,EAAKtrD,MACjB,GAAI2tD,IAAYwpB,EAAIxpB,QAAS,CAC3B,IAAIypB,EAAUf,GAAyBF,EAASgB,EAAIR,aACpD,OAAOP,GACL,aACA,yBAA2Be,EAAIxpB,QAAU,qBAAuBypB,EAAQhrB,KAAO,SAAWgrB,EAAQC,IAAM,6BAA+B1pB,EAAU,KACjJ0oB,GAAyBF,EAASQ,GAEtC,CACmB,GAAfrrB,EAAKz6D,SACP6lF,GAAc,EAElB,CACF,KAAO,CACL,MAAMM,EAAUC,GAAwBH,EAAS3hF,GACjD,IAAgB,IAAZ6hF,EACF,OAAOZ,GAAeY,EAAQn9E,IAAI09C,KAAMy/B,EAAQn9E,IAAI8Y,IAAK0jE,GAAyBF,EAASxlF,EAAImmF,EAAQjmF,OAASmmF,EAAQn9E,IAAIuyD,OAE9H,IAAoB,IAAhBsqB,EACF,OAAON,GAAe,aAAc,sCAAuCC,GAAyBF,EAASxlF,KACzD,IAA3CwE,EAAQ6gF,aAAaviF,QAAQk6D,IAGtCrC,EAAK37D,KAAK,CAAEg+D,UAASgpB,gBAEvBF,GAAW,CACb,CACA,IAAK9lF,IAAKA,EAAIwlF,EAAQtlF,OAAQF,IAC5B,GAAmB,MAAfwlF,EAAQxlF,GAAY,CACtB,GAAuB,MAAnBwlF,EAAQxlF,EAAI,GAAY,CAC1BA,IACAA,EAAI2lF,EAAoBH,EAASxlF,GACjC,QACF,CAAO,GAAuB,MAAnBwlF,EAAQxlF,EAAI,GAKrB,MAHA,GADAA,EAAIulF,EAAOC,IAAWxlF,GAClBA,EAAEkJ,IACJ,OAAOlJ,CAIb,MAAO,GAAmB,MAAfwlF,EAAQxlF,GAAY,CAC7B,MAAM2mF,EAAWC,GAAkBpB,EAASxlF,GAC5C,IAAiB,GAAb2mF,EACF,OAAOlB,GAAe,cAAe,4BAA6BC,GAAyBF,EAASxlF,IACtGA,EAAI2mF,CACN,MACE,IAAoB,IAAhBZ,IAAyBT,EAAaE,EAAQxlF,IAChD,OAAOylF,GAAe,aAAc,wBAAyBC,GAAyBF,EAASxlF,IAIlF,MAAfwlF,EAAQxlF,IACVA,GAEJ,CACF,CAKA,CAkKJ,IAAyB20E,EAhKvB,OAAKmR,EAEqB,GAAfnrB,EAAKz6D,OACPulF,GAAe,aAAc,iBAAmB9qB,EAAK,GAAGqC,QAAU,KAAM0oB,GAAyBF,EAAS7qB,EAAK,GAAGqrB,gBAChHrrB,EAAKz6D,OAAS,IAChBulF,GAAe,aAAc,YAAczzE,KAAK1K,UAAUqzD,EAAKr1D,KAAK+mB,GAAMA,EAAE2wC,UAAU,KAAM,GAAGj4D,QAAQ,SAAU,IAAM,WAAY,CAAE02D,KAAM,EAAGirB,IAAK,IAJnJjB,GAAe,aAAc,sBAAuB,EAO/D,EAmDA,MAAMoB,EAAc,IACdC,EAAc,IACpB,SAASZ,GAAiBV,EAASxlF,GACjC,IAAImmF,EAAU,GACVY,EAAY,GACZR,GAAY,EAChB,KAAOvmF,EAAIwlF,EAAQtlF,OAAQF,IAAK,CAC9B,GAAIwlF,EAAQxlF,KAAO6mF,GAAerB,EAAQxlF,KAAO8mF,EAC7B,KAAdC,EACFA,EAAYvB,EAAQxlF,GACX+mF,IAAcvB,EAAQxlF,KAG/B+mF,EAAY,SAET,GAAmB,MAAfvB,EAAQxlF,IACC,KAAd+mF,EAAkB,CACpBR,GAAY,EACZ,KACF,CAEFJ,GAAWX,EAAQxlF,EACrB,CACA,MAAkB,KAAd+mF,GAGG,CACLnjF,MAAOuiF,EACPz+E,MAAO1H,EACPumF,YAEJ,CACA,MAAMS,GAAoB,IAAInlF,OAAO,0DAA0D,KAC/F,SAASykF,GAAwBH,EAAS3hF,GACxC,MAAMqN,EAAUqzE,EAAOF,cAAcmB,EAASa,IACxCC,EAAY,CAAC,EACnB,IAAK,IAAIjnF,EAAI,EAAGA,EAAI6R,EAAQ3R,OAAQF,IAAK,CACvC,GAA6B,IAAzB6R,EAAQ7R,GAAG,GAAGE,OAChB,OAAOulF,GAAe,cAAe,cAAgB5zE,EAAQ7R,GAAG,GAAK,8BAA+BknF,GAAqBr1E,EAAQ7R,KAC5H,QAAsB,IAAlB6R,EAAQ7R,GAAG,SAAmC,IAAlB6R,EAAQ7R,GAAG,GAChD,OAAOylF,GAAe,cAAe,cAAgB5zE,EAAQ7R,GAAG,GAAK,sBAAuBknF,GAAqBr1E,EAAQ7R,KACpH,QAAsB,IAAlB6R,EAAQ7R,GAAG,KAAkBwE,EAAQ4gF,uBAC9C,OAAOK,GAAe,cAAe,sBAAwB5zE,EAAQ7R,GAAG,GAAK,oBAAqBknF,GAAqBr1E,EAAQ7R,KAEjI,MAAMmnF,EAAWt1E,EAAQ7R,GAAG,GAC5B,IAAKonF,GAAiBD,GACpB,OAAO1B,GAAe,cAAe,cAAgB0B,EAAW,wBAAyBD,GAAqBr1E,EAAQ7R,KAExH,GAAKinF,EAAUhpF,eAAekpF,GAG5B,OAAO1B,GAAe,cAAe,cAAgB0B,EAAW,iBAAkBD,GAAqBr1E,EAAQ7R,KAF/GinF,EAAUE,GAAY,CAI1B,CACA,OAAO,CACT,CAeA,SAASP,GAAkBpB,EAASxlF,GAElC,GAAmB,MAAfwlF,IADJxlF,GAEE,OAAQ,EACV,GAAmB,MAAfwlF,EAAQxlF,GAEV,OApBJ,SAAiCwlF,EAASxlF,GACxC,IAAIiS,EAAK,KAKT,IAJmB,MAAfuzE,EAAQxlF,KACVA,IACAiS,EAAK,cAEAjS,EAAIwlF,EAAQtlF,OAAQF,IAAK,CAC9B,GAAmB,MAAfwlF,EAAQxlF,GACV,OAAOA,EACT,IAAKwlF,EAAQxlF,GAAGyC,MAAMwP,GACpB,KACJ,CACA,OAAQ,CACV,CAOWo1E,CAAwB7B,IAD/BxlF,GAGF,IAAI87C,EAAQ,EACZ,KAAO97C,EAAIwlF,EAAQtlF,OAAQF,IAAK87C,IAC9B,KAAI0pC,EAAQxlF,GAAGyC,MAAM,OAASq5C,EAAQ,IAAtC,CAEA,GAAmB,MAAf0pC,EAAQxlF,GACV,MACF,OAAQ,CAHE,CAKZ,OAAOA,CACT,CACA,SAASylF,GAAe7+B,EAAM9oC,EAASwpE,GACrC,MAAO,CACLp+E,IAAK,CACH09C,OACA5kC,IAAKlE,EACL29C,KAAM6rB,EAAW7rB,MAAQ6rB,EACzBZ,IAAKY,EAAWZ,KAGtB,CACA,SAASU,GAAiBD,GACxB,OAAOjC,EAAOH,OAAOoC,EACvB,CAIA,SAASzB,GAAyBF,EAAS99E,GACzC,MAAM6/E,EAAQ/B,EAAQ59B,UAAU,EAAGlgD,GAAOzF,MAAM,SAChD,MAAO,CACLw5D,KAAM8rB,EAAMrnF,OAEZwmF,IAAKa,EAAMA,EAAMrnF,OAAS,GAAGA,OAAS,EAE1C,CACA,SAASgnF,GAAqBzkF,GAC5B,OAAOA,EAAM01C,WAAa11C,EAAM,GAAGvC,MACrC,CACA,IAAIsnF,GAAiB,CAAC,EACtB,MAAMC,GAAmB,CACvBC,eAAe,EACfC,oBAAqB,KACrBC,qBAAqB,EACrBC,aAAc,QACdC,kBAAkB,EAClBC,gBAAgB,EAEhB3C,wBAAwB,EAGxB4C,eAAe,EACfC,qBAAqB,EACrBC,YAAY,EAEZC,eAAe,EACfC,mBAAoB,CAClBC,KAAK,EACLC,cAAc,EACdC,WAAW,GAEbC,kBAAmB,SAASxrB,EAASlzD,GACnC,OAAOA,CACT,EACA2+E,wBAAyB,SAAStB,EAAUr9E,GAC1C,OAAOA,CACT,EACA4+E,UAAW,GAEXC,sBAAsB,EACtBxlF,QAAS,KAAM,EACfylF,iBAAiB,EACjBvD,aAAc,GACdwD,iBAAiB,EACjBC,cAAc,EACdC,mBAAmB,EACnBC,cAAc,EACdC,kBAAkB,EAClBC,wBAAwB,EACxBC,UAAW,SAASnsB,EAASosB,EAAOv6E,GAClC,OAAOmuD,CACT,GAMFwqB,GAAe6B,aAHQ,SAAS7kF,GAC9B,OAAOzG,OAAOilD,OAAO,CAAC,EAAGykC,GAAkBjjF,EAC7C,EAEAgjF,GAAe8B,eAAiB7B,GAuBhC,MAAM8B,GAAShF,EAwDf,SAASiF,GAAchE,EAASxlF,GAC9B,IAAIypF,EAAc,GAClB,KAAOzpF,EAAIwlF,EAAQtlF,QAA0B,MAAfslF,EAAQxlF,IAA6B,MAAfwlF,EAAQxlF,GAAaA,IACvEypF,GAAejE,EAAQxlF,GAGzB,GADAypF,EAAcA,EAAY7jF,QACQ,IAA9B6jF,EAAY3mF,QAAQ,KACtB,MAAM,IAAIkb,MAAM,sCAClB,MAAM+oE,EAAYvB,EAAQxlF,KAC1B,IAAI8J,EAAO,GACX,KAAO9J,EAAIwlF,EAAQtlF,QAAUslF,EAAQxlF,KAAO+mF,EAAW/mF,IACrD8J,GAAQ07E,EAAQxlF,GAElB,MAAO,CAACypF,EAAa3/E,EAAM9J,EAC7B,CACA,SAAS0pF,GAAUlE,EAASxlF,GAC1B,MAAuB,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,EAGtE,CACA,SAAS2pF,GAASnE,EAASxlF,GACzB,MAAuB,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,EAG9K,CACA,SAAS4pF,GAAUpE,EAASxlF,GAC1B,MAAuB,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,EAGxM,CACA,SAAS6pF,GAAUrE,EAASxlF,GAC1B,MAAuB,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,EAGxM,CACA,SAAS8pF,GAAWtE,EAASxlF,GAC3B,MAAuB,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,EAGlO,CACA,SAAS+pF,GAAmBvqF,GAC1B,GAAI+pF,GAAOxE,OAAOvlF,GAChB,OAAOA,EAEP,MAAM,IAAIwe,MAAM,uBAAuBxe,IAC3C,CAEA,MAAMwqF,GAAW,wBACXC,GAAW,+EACZ5kF,OAAOohC,UAAYzvB,OAAOyvB,WAC7BphC,OAAOohC,SAAWzvB,OAAOyvB,WAEtBphC,OAAOmnE,YAAcx1D,OAAOw1D,aAC/BnnE,OAAOmnE,WAAax1D,OAAOw1D,YAE7B,MAAM0d,GAAW,CACf7B,KAAK,EACLC,cAAc,EACd6B,aAAc,IACd5B,WAAW,GA+EP/hE,GAAO+9D,EACP6F,GAzNN,MACE,WAAArnE,CAAY4xD,GACVn2E,KAAKm2E,QAAUA,EACfn2E,KAAKsY,MAAQ,GACbtY,KAAK,MAAQ,CAAC,CAChB,CACA,GAAAw/B,CAAI56B,EAAK0G,GACK,cAAR1G,IACFA,EAAM,cACR5E,KAAKsY,MAAM9X,KAAK,CAAE,CAACoE,GAAM0G,GAC3B,CACA,QAAAugF,CAAS91D,GACc,cAAjBA,EAAKogD,UACPpgD,EAAKogD,QAAU,cACbpgD,EAAK,OAASx2B,OAAO+G,KAAKyvB,EAAK,OAAOr0B,OAAS,EACjD1B,KAAKsY,MAAM9X,KAAK,CAAE,CAACu1B,EAAKogD,SAAUpgD,EAAKzd,MAAO,KAAQyd,EAAK,QAE3D/1B,KAAKsY,MAAM9X,KAAK,CAAE,CAACu1B,EAAKogD,SAAUpgD,EAAKzd,OAE3C,GAuMIwzE,GAnMN,SAAuB9E,EAASxlF,GAC9B,MAAMuqF,EAAW,CAAC,EAClB,GAAuB,MAAnB/E,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,GAiDhJ,MAAM,IAAIge,MAAM,kCAjD4I,CAC5Jhe,GAAQ,EACR,IAAI4lF,EAAqB,EACrB4E,GAAU,EAAO/sB,GAAU,EAC3BgtB,EAAM,GACV,KAAOzqF,EAAIwlF,EAAQtlF,OAAQF,IACzB,GAAmB,MAAfwlF,EAAQxlF,IAAey9D,EAqBpB,GAAmB,MAAf+nB,EAAQxlF,IASjB,GARIy9D,EACqB,MAAnB+nB,EAAQxlF,EAAI,IAAiC,MAAnBwlF,EAAQxlF,EAAI,KACxCy9D,GAAU,EACVmoB,KAGFA,IAEyB,IAAvBA,EACF,UAEsB,MAAfJ,EAAQxlF,GACjBwqF,GAAU,EAEVC,GAAOjF,EAAQxlF,OApCmB,CAClC,GAAIwqF,GAAWb,GAASnE,EAASxlF,GAC/BA,GAAK,GACJ0qF,WAAY/gF,IAAK3J,GAAKwpF,GAAchE,EAASxlF,EAAI,IACxB,IAAtB2J,IAAI7G,QAAQ,OACdynF,EAASR,GAAmBW,aAAe,CACzCC,KAAM9oF,OAAO,IAAI6oF,cAAe,KAChC/gF,WAEC,GAAI6gF,GAAWZ,GAAUpE,EAASxlF,GACvCA,GAAK,OACF,GAAIwqF,GAAWX,GAAUrE,EAASxlF,GACrCA,GAAK,OACF,GAAIwqF,GAAWV,GAAWtE,EAASxlF,GACtCA,GAAK,MACF,KAAI0pF,GAGP,MAAM,IAAI1rE,MAAM,mBAFhBy/C,GAAU,CAEwB,CACpCmoB,IACA6E,EAAM,EACR,CAkBF,GAA2B,IAAvB7E,EACF,MAAM,IAAI5nE,MAAM,mBAEpB,CAGA,MAAO,CAAEusE,WAAUvqF,IACrB,EA8IM4qF,GA/EN,SAAoB3hF,EAAKzE,EAAU,CAAC,GAElC,GADAA,EAAUzG,OAAOilD,OAAO,CAAC,EAAGknC,GAAU1lF,IACjCyE,GAAsB,iBAARA,EACjB,OAAOA,EACT,IAAI4hF,EAAa5hF,EAAIrD,OACrB,QAAyB,IAArBpB,EAAQsmF,UAAuBtmF,EAAQsmF,SAASnkF,KAAKkkF,GACvD,OAAO5hF,EACJ,GAAIzE,EAAQ6jF,KAAO2B,GAASrjF,KAAKkkF,GACpC,OAAOxlF,OAAOohC,SAASokD,EAAY,IAC9B,CACL,MAAMpoF,EAAQwnF,GAASrlF,KAAKimF,GAC5B,GAAIpoF,EAAO,CACT,MAAMsoF,EAAOtoF,EAAM,GACb6lF,EAAe7lF,EAAM,GAC3B,IAAIuoF,GAgDS7oB,EAhDqB1/D,EAAM,MAiDL,IAAzB0/D,EAAOr/D,QAAQ,MAEZ,OADfq/D,EAASA,EAAOp9D,QAAQ,MAAO,KAE7Bo9D,EAAS,IACY,MAAdA,EAAO,GACdA,EAAS,IAAMA,EACsB,MAA9BA,EAAOA,EAAOjiE,OAAS,KAC9BiiE,EAASA,EAAOzwD,OAAO,EAAGywD,EAAOjiE,OAAS,IACrCiiE,GAEFA,EA1DH,MAAMomB,EAAY9lF,EAAM,IAAMA,EAAM,GACpC,IAAK+B,EAAQ8jF,cAAgBA,EAAapoF,OAAS,GAAK6qF,GAA0B,MAAlBF,EAAW,GACzE,OAAO5hF,EACJ,IAAKzE,EAAQ8jF,cAAgBA,EAAapoF,OAAS,IAAM6qF,GAA0B,MAAlBF,EAAW,GAC/E,OAAO5hF,EACJ,CACH,MAAMg5D,EAAM58D,OAAOwlF,GACb1oB,EAAS,GAAKF,EACpB,OAA+B,IAA3BE,EAAOz+C,OAAO,SAKP6kE,EAJL/jF,EAAQ+jF,UACHtmB,EAEAh5D,GAM6B,IAA7B4hF,EAAW/nF,QAAQ,KACb,MAAXq/D,GAAwC,KAAtB6oB,GAEb7oB,IAAW6oB,GAEXD,GAAQ5oB,IAAW,IAAM6oB,EAHzB/oB,EAMAh5D,EAEPq/E,EACE0C,IAAsB7oB,GAEjB4oB,EAAOC,IAAsB7oB,EAD7BF,EAIAh5D,EAEP4hF,IAAe1oB,GAEV0oB,IAAeE,EAAO5oB,EADtBF,EAGFh5D,CACT,CACF,CACE,OAAOA,CAEX,CAEF,IAAmBk5D,CADnB,EA6DA,SAAS8oB,GAAoBC,GAC3B,MAAMC,EAAUptF,OAAO+G,KAAKomF,GAC5B,IAAK,IAAIlrF,EAAI,EAAGA,EAAImrF,EAAQjrF,OAAQF,IAAK,CACvC,MAAMyzE,EAAM0X,EAAQnrF,GACpBxB,KAAK4sF,aAAa3X,GAAO,CACvBx7D,MAAO,IAAIpW,OAAO,IAAM4xE,EAAM,IAAK,KACnC9pE,IAAKuhF,EAAiBzX,GAE1B,CACF,CACA,SAAS4X,GAAcvhF,EAAMkzD,EAASosB,EAAOkC,EAAU5O,EAAe6O,EAAYC,GAChF,QAAa,IAAT1hF,IACEtL,KAAKgG,QAAQ0jF,aAAeoD,IAC9BxhF,EAAOA,EAAKlE,QAEVkE,EAAK5J,OAAS,GAAG,CACdsrF,IACH1hF,EAAOtL,KAAKitF,qBAAqB3hF,IACnC,MAAM4hF,EAASltF,KAAKgG,QAAQgkF,kBAAkBxrB,EAASlzD,EAAMs/E,EAAO1M,EAAe6O,GACnF,OAAIG,QACK5hF,SACS4hF,UAAkB5hF,GAAQ4hF,IAAW5hF,EAC9C4hF,EACEltF,KAAKgG,QAAQ0jF,YAGHp+E,EAAKlE,SACLkE,EAHZrE,GAAWqE,EAAMtL,KAAKgG,QAAQwjF,cAAexpF,KAAKgG,QAAQ4jF,oBAMxDt+E,CAGb,CAEJ,CACA,SAAS6hF,GAAiBhX,GACxB,GAAIn2E,KAAKgG,QAAQujF,eAAgB,CAC/B,MAAMptB,EAAOga,EAAQ1yE,MAAM,KACrB/D,EAA+B,MAAtBy2E,EAAQxlE,OAAO,GAAa,IAAM,GACjD,GAAgB,UAAZwrD,EAAK,GACP,MAAO,GAEW,IAAhBA,EAAKz6D,SACPy0E,EAAUz2E,EAASy8D,EAAK,GAE5B,CACA,OAAOga,CACT,CACA,MAAMiX,GAAY,IAAI/pF,OAAO,+CAA+C,MAC5E,SAASgqF,GAAmB1F,EAASiD,EAAOpsB,GAC1C,IAAKx+D,KAAKgG,QAAQsjF,kBAAuC,iBAAZ3B,EAAsB,CACjE,MAAMt0E,EAAU2U,GAAKw+D,cAAcmB,EAASyF,IACtC/qF,EAAMgR,EAAQ3R,OACd2O,EAAQ,CAAC,EACf,IAAK,IAAI7O,EAAI,EAAGA,EAAIa,EAAKb,IAAK,CAC5B,MAAMmnF,EAAW3oF,KAAKmtF,iBAAiB95E,EAAQ7R,GAAG,IAClD,IAAI8rF,EAASj6E,EAAQ7R,GAAG,GACpB+rF,EAAQvtF,KAAKgG,QAAQmjF,oBAAsBR,EAC/C,GAAIA,EAASjnF,OAMX,GALI1B,KAAKgG,QAAQ0kF,yBACf6C,EAAQvtF,KAAKgG,QAAQ0kF,uBAAuB6C,IAEhC,cAAVA,IACFA,EAAQ,mBACK,IAAXD,EAAmB,CACjBttF,KAAKgG,QAAQ0jF,aACf4D,EAASA,EAAOlmF,QAElBkmF,EAASttF,KAAKitF,qBAAqBK,GACnC,MAAME,EAASxtF,KAAKgG,QAAQikF,wBAAwBtB,EAAU2E,EAAQ1C,GAEpEv6E,EAAMk9E,GADJC,QACaF,SACCE,UAAkBF,GAAUE,IAAWF,EACxCE,EAEAvmF,GACbqmF,EACAttF,KAAKgG,QAAQyjF,oBACbzpF,KAAKgG,QAAQ4jF,mBAGnB,MAAW5pF,KAAKgG,QAAQ4gF,yBACtBv2E,EAAMk9E,IAAS,EAGrB,CACA,IAAKhuF,OAAO+G,KAAK+J,GAAO3O,OACtB,OAEF,GAAI1B,KAAKgG,QAAQojF,oBAAqB,CACpC,MAAMqE,EAAiB,CAAC,EAExB,OADAA,EAAeztF,KAAKgG,QAAQojF,qBAAuB/4E,EAC5Co9E,CACT,CACA,OAAOp9E,CACT,CACF,CACA,MAAMq9E,GAAW,SAAS1G,GACxBA,EAAUA,EAAQzgF,QAAQ,SAAU,MACpC,MAAMonF,EAAS,IAAI/B,GAAQ,QAC3B,IAAI7T,EAAc4V,EACdC,EAAW,GACXhD,EAAQ,GACZ,IAAK,IAAIppF,EAAI,EAAGA,EAAIwlF,EAAQtlF,OAAQF,IAElC,GAAW,MADAwlF,EAAQxlF,GAEjB,GAAuB,MAAnBwlF,EAAQxlF,EAAI,GAAY,CAC1B,MAAMqsF,EAAaC,GAAiB9G,EAAS,IAAKxlF,EAAG,8BACrD,IAAIg9D,EAAUwoB,EAAQ59B,UAAU5nD,EAAI,EAAGqsF,GAAYzmF,OACnD,GAAIpH,KAAKgG,QAAQujF,eAAgB,CAC/B,MAAMwE,EAAavvB,EAAQl6D,QAAQ,MACf,IAAhBypF,IACFvvB,EAAUA,EAAQtrD,OAAO66E,EAAa,GAE1C,CACI/tF,KAAKgG,QAAQykF,mBACfjsB,EAAUx+D,KAAKgG,QAAQykF,iBAAiBjsB,IAEtCuZ,IACF6V,EAAW5tF,KAAKguF,oBAAoBJ,EAAU7V,EAAa6S,IAE7D,MAAMqD,EAAcrD,EAAMxhC,UAAUwhC,EAAMsD,YAAY,KAAO,GAC7D,GAAI1vB,IAA2D,IAAhDx+D,KAAKgG,QAAQ6gF,aAAaviF,QAAQk6D,GAC/C,MAAM,IAAIh/C,MAAM,kDAAkDg/C,MAEpE,IAAI2vB,EAAY,EACZF,IAAmE,IAApDjuF,KAAKgG,QAAQ6gF,aAAaviF,QAAQ2pF,IACnDE,EAAYvD,EAAMsD,YAAY,IAAKtD,EAAMsD,YAAY,KAAO,GAC5DluF,KAAKouF,cAAcv9E,OAEnBs9E,EAAYvD,EAAMsD,YAAY,KAEhCtD,EAAQA,EAAMxhC,UAAU,EAAG+kC,GAC3BpW,EAAc/3E,KAAKouF,cAAcv9E,MACjC+8E,EAAW,GACXpsF,EAAIqsF,CACN,MAAO,GAAuB,MAAnB7G,EAAQxlF,EAAI,GAAY,CACjC,IAAI6sF,EAAUC,GAAWtH,EAASxlF,GAAG,EAAO,MAC5C,IAAK6sF,EACH,MAAM,IAAI7uE,MAAM,yBAElB,GADAouE,EAAW5tF,KAAKguF,oBAAoBJ,EAAU7V,EAAa6S,GACvD5qF,KAAKgG,QAAQukF,mBAAyC,SAApB8D,EAAQ7vB,SAAsBx+D,KAAKgG,QAAQwkF,kBAE5E,CACH,MAAMtO,EAAY,IAAI0P,GAAQyC,EAAQ7vB,SACtC0d,EAAU18C,IAAIx/B,KAAKgG,QAAQqjF,aAAc,IACrCgF,EAAQ7vB,UAAY6vB,EAAQE,QAAUF,EAAQG,iBAChDtS,EAAU,MAAQl8E,KAAKqtF,mBAAmBgB,EAAQE,OAAQ3D,EAAOyD,EAAQ7vB,UAE3Ex+D,KAAK6rF,SAAS9T,EAAamE,EAAW0O,EACxC,CACAppF,EAAI6sF,EAAQR,WAAa,CAC3B,MAAO,GAAiC,QAA7B7G,EAAQ9zE,OAAO1R,EAAI,EAAG,GAAc,CAC7C,MAAMitF,EAAWX,GAAiB9G,EAAS,SAAOxlF,EAAI,EAAG,0BACzD,GAAIxB,KAAKgG,QAAQokF,gBAAiB,CAChC,MAAMnrB,EAAU+nB,EAAQ59B,UAAU5nD,EAAI,EAAGitF,EAAW,GACpDb,EAAW5tF,KAAKguF,oBAAoBJ,EAAU7V,EAAa6S,GAC3D7S,EAAYv4C,IAAIx/B,KAAKgG,QAAQokF,gBAAiB,CAAC,CAAE,CAACpqF,KAAKgG,QAAQqjF,cAAepqB,IAChF,CACAz9D,EAAIitF,CACN,MAAO,GAAiC,OAA7BzH,EAAQ9zE,OAAO1R,EAAI,EAAG,GAAa,CAC5C,MAAMkD,EAASonF,GAAY9E,EAASxlF,GACpCxB,KAAK0uF,gBAAkBhqF,EAAOqnF,SAC9BvqF,EAAIkD,EAAOlD,CACb,MAAO,GAAiC,OAA7BwlF,EAAQ9zE,OAAO1R,EAAI,EAAG,GAAa,CAC5C,MAAMqsF,EAAaC,GAAiB9G,EAAS,MAAOxlF,EAAG,wBAA0B,EAC3E+sF,EAASvH,EAAQ59B,UAAU5nD,EAAI,EAAGqsF,GACxCD,EAAW5tF,KAAKguF,oBAAoBJ,EAAU7V,EAAa6S,GAC3D,IAAIt/E,EAAOtL,KAAK6sF,cAAc0B,EAAQxW,EAAY5B,QAASyU,GAAO,GAAM,GAAO,GAAM,GACzE,MAARt/E,IACFA,EAAO,IACLtL,KAAKgG,QAAQ2jF,cACf5R,EAAYv4C,IAAIx/B,KAAKgG,QAAQ2jF,cAAe,CAAC,CAAE,CAAC3pF,KAAKgG,QAAQqjF,cAAekF,KAE5ExW,EAAYv4C,IAAIx/B,KAAKgG,QAAQqjF,aAAc/9E,GAE7C9J,EAAIqsF,EAAa,CACnB,KAAO,CACL,IAAInpF,EAAS4pF,GAAWtH,EAASxlF,EAAGxB,KAAKgG,QAAQujF,gBAC7C/qB,EAAU95D,EAAO85D,QACrB,MAAMmwB,EAAajqF,EAAOiqF,WAC1B,IAAIJ,EAAS7pF,EAAO6pF,OAChBC,EAAiB9pF,EAAO8pF,eACxBX,EAAanpF,EAAOmpF,WACpB7tF,KAAKgG,QAAQykF,mBACfjsB,EAAUx+D,KAAKgG,QAAQykF,iBAAiBjsB,IAEtCuZ,GAAe6V,GACW,SAAxB7V,EAAY5B,UACdyX,EAAW5tF,KAAKguF,oBAAoBJ,EAAU7V,EAAa6S,GAAO,IAGtE,MAAMgE,EAAU7W,EAQhB,GAPI6W,IAAmE,IAAxD5uF,KAAKgG,QAAQ6gF,aAAaviF,QAAQsqF,EAAQzY,WACvD4B,EAAc/3E,KAAKouF,cAAcv9E,MACjC+5E,EAAQA,EAAMxhC,UAAU,EAAGwhC,EAAMsD,YAAY,OAE3C1vB,IAAYmvB,EAAOxX,UACrByU,GAASA,EAAQ,IAAMpsB,EAAUA,GAE/Bx+D,KAAK6uF,aAAa7uF,KAAKgG,QAAQkkF,UAAWU,EAAOpsB,GAAU,CAC7D,IAAIswB,EAAa,GACjB,GAAIP,EAAO7sF,OAAS,GAAK6sF,EAAOL,YAAY,OAASK,EAAO7sF,OAAS,EAC/B,MAAhC88D,EAAQA,EAAQ98D,OAAS,IAC3B88D,EAAUA,EAAQtrD,OAAO,EAAGsrD,EAAQ98D,OAAS,GAC7CkpF,EAAQA,EAAM13E,OAAO,EAAG03E,EAAMlpF,OAAS,GACvC6sF,EAAS/vB,GAET+vB,EAASA,EAAOr7E,OAAO,EAAGq7E,EAAO7sF,OAAS,GAE5CF,EAAIkD,EAAOmpF,gBACN,IAAoD,IAAhD7tF,KAAKgG,QAAQ6gF,aAAaviF,QAAQk6D,GAC3Ch9D,EAAIkD,EAAOmpF,eACN,CACL,MAAMkB,EAAU/uF,KAAKgvF,iBAAiBhI,EAAS2H,EAAYd,EAAa,GACxE,IAAKkB,EACH,MAAM,IAAIvvE,MAAM,qBAAqBmvE,KACvCntF,EAAIutF,EAAQvtF,EACZstF,EAAaC,EAAQD,UACvB,CACA,MAAM5S,EAAY,IAAI0P,GAAQptB,GAC1BA,IAAY+vB,GAAUC,IACxBtS,EAAU,MAAQl8E,KAAKqtF,mBAAmBkB,EAAQ3D,EAAOpsB,IAEvDswB,IACFA,EAAa9uF,KAAK6sF,cAAciC,EAAYtwB,EAASosB,GAAO,EAAM4D,GAAgB,GAAM,IAE1F5D,EAAQA,EAAM13E,OAAO,EAAG03E,EAAMsD,YAAY,MAC1ChS,EAAU18C,IAAIx/B,KAAKgG,QAAQqjF,aAAcyF,GACzC9uF,KAAK6rF,SAAS9T,EAAamE,EAAW0O,EACxC,KAAO,CACL,GAAI2D,EAAO7sF,OAAS,GAAK6sF,EAAOL,YAAY,OAASK,EAAO7sF,OAAS,EAAG,CAClC,MAAhC88D,EAAQA,EAAQ98D,OAAS,IAC3B88D,EAAUA,EAAQtrD,OAAO,EAAGsrD,EAAQ98D,OAAS,GAC7CkpF,EAAQA,EAAM13E,OAAO,EAAG03E,EAAMlpF,OAAS,GACvC6sF,EAAS/vB,GAET+vB,EAASA,EAAOr7E,OAAO,EAAGq7E,EAAO7sF,OAAS,GAExC1B,KAAKgG,QAAQykF,mBACfjsB,EAAUx+D,KAAKgG,QAAQykF,iBAAiBjsB,IAE1C,MAAM0d,EAAY,IAAI0P,GAAQptB,GAC1BA,IAAY+vB,GAAUC,IACxBtS,EAAU,MAAQl8E,KAAKqtF,mBAAmBkB,EAAQ3D,EAAOpsB,IAE3Dx+D,KAAK6rF,SAAS9T,EAAamE,EAAW0O,GACtCA,EAAQA,EAAM13E,OAAO,EAAG03E,EAAMsD,YAAY,KAC5C,KAAO,CACL,MAAMhS,EAAY,IAAI0P,GAAQptB,GAC9Bx+D,KAAKouF,cAAc5tF,KAAKu3E,GACpBvZ,IAAY+vB,GAAUC,IACxBtS,EAAU,MAAQl8E,KAAKqtF,mBAAmBkB,EAAQ3D,EAAOpsB,IAE3Dx+D,KAAK6rF,SAAS9T,EAAamE,EAAW0O,GACtC7S,EAAcmE,CAChB,CACA0R,EAAW,GACXpsF,EAAIqsF,CACN,CACF,MAEAD,GAAY5G,EAAQxlF,GAGxB,OAAOmsF,EAAOr1E,KAChB,EACA,SAASuzE,GAAS9T,EAAamE,EAAW0O,GACxC,MAAMlmF,EAAS1E,KAAKgG,QAAQ2kF,UAAUzO,EAAU/F,QAASyU,EAAO1O,EAAU,QAC3D,IAAXx3E,IAEuB,iBAAXA,GACdw3E,EAAU/F,QAAUzxE,EACpBqzE,EAAY8T,SAAS3P,IAErBnE,EAAY8T,SAAS3P,GAEzB,CACA,MAAM+S,GAAyB,SAAS3jF,GACtC,GAAItL,KAAKgG,QAAQqkF,gBAAiB,CAChC,IAAK,IAAIY,KAAejrF,KAAK0uF,gBAAiB,CAC5C,MAAMltB,EAASxhE,KAAK0uF,gBAAgBzD,GACpC3/E,EAAOA,EAAK/E,QAAQi7D,EAAO2qB,KAAM3qB,EAAOr2D,IAC1C,CACA,IAAK,IAAI8/E,KAAejrF,KAAK4sF,aAAc,CACzC,MAAMprB,EAASxhE,KAAK4sF,aAAa3B,GACjC3/E,EAAOA,EAAK/E,QAAQi7D,EAAO/nD,MAAO+nD,EAAOr2D,IAC3C,CACA,GAAInL,KAAKgG,QAAQskF,aACf,IAAK,IAAIW,KAAejrF,KAAKsqF,aAAc,CACzC,MAAM9oB,EAASxhE,KAAKsqF,aAAaW,GACjC3/E,EAAOA,EAAK/E,QAAQi7D,EAAO/nD,MAAO+nD,EAAOr2D,IAC3C,CAEFG,EAAOA,EAAK/E,QAAQvG,KAAKkvF,UAAUz1E,MAAOzZ,KAAKkvF,UAAU/jF,IAC3D,CACA,OAAOG,CACT,EACA,SAAS0iF,GAAoBJ,EAAU7V,EAAa6S,EAAOmC,GAgBzD,OAfIa,SACiB,IAAfb,IACFA,EAAuD,IAA1CxtF,OAAO+G,KAAKyxE,EAAYz/D,OAAO5W,aAS7B,KARjBksF,EAAW5tF,KAAK6sF,cACde,EACA7V,EAAY5B,QACZyU,GACA,IACA7S,EAAY,OAAkD,IAA1Cx4E,OAAO+G,KAAKyxE,EAAY,OAAOr2E,OACnDqrF,KAEsC,KAAba,GACzB7V,EAAYv4C,IAAIx/B,KAAKgG,QAAQqjF,aAAcuE,GAC7CA,EAAW,IAENA,CACT,CACA,SAASiB,GAAa3E,EAAWU,EAAOuE,GACtC,MAAMC,EAAc,KAAOD,EAC3B,IAAK,MAAME,KAAgBnF,EAAW,CACpC,MAAMoF,EAAcpF,EAAUmF,GAC9B,GAAID,IAAgBE,GAAe1E,IAAU0E,EAC3C,OAAO,CACX,CACA,OAAO,CACT,CA+BA,SAASxB,GAAiB9G,EAASv8E,EAAKjJ,EAAG+tF,GACzC,MAAMC,EAAexI,EAAQ1iF,QAAQmG,EAAKjJ,GAC1C,IAAsB,IAAlBguF,EACF,MAAM,IAAIhwE,MAAM+vE,GAEhB,OAAOC,EAAe/kF,EAAI/I,OAAS,CAEvC,CACA,SAAS4sF,GAAWtH,EAASxlF,EAAG+nF,EAAgBkG,EAAc,KAC5D,MAAM/qF,EAvCR,SAAgCsiF,EAASxlF,EAAGiuF,EAAc,KACxD,IAAIC,EACAnB,EAAS,GACb,IAAK,IAAIrlF,EAAQ1H,EAAG0H,EAAQ89E,EAAQtlF,OAAQwH,IAAS,CACnD,IAAIymF,EAAK3I,EAAQ99E,GACjB,GAAIwmF,EACEC,IAAOD,IACTA,EAAe,SACZ,GAAW,MAAPC,GAAqB,MAAPA,EACvBD,EAAeC,OACV,GAAIA,IAAOF,EAAY,GAAI,CAChC,IAAIA,EAAY,GAQd,MAAO,CACLrhF,KAAMmgF,EACNrlF,SATF,GAAI89E,EAAQ99E,EAAQ,KAAOumF,EAAY,GACrC,MAAO,CACLrhF,KAAMmgF,EACNrlF,QASR,KAAkB,OAAPymF,IACTA,EAAK,KAEPpB,GAAUoB,CACZ,CACF,CAUiBC,CAAuB5I,EAASxlF,EAAI,EAAGiuF,GACtD,IAAK/qF,EACH,OACF,IAAI6pF,EAAS7pF,EAAO0J,KACpB,MAAMy/E,EAAanpF,EAAOwE,MACpB7E,EAAiBkqF,EAAOrpE,OAAO,MACrC,IAAIs5C,EAAU+vB,EACVC,GAAiB,GACG,IAApBnqF,IACFm6D,EAAU+vB,EAAOnlC,UAAU,EAAG/kD,GAC9BkqF,EAASA,EAAOnlC,UAAU/kD,EAAiB,GAAGwrF,aAEhD,MAAMlB,EAAanwB,EACnB,GAAI+qB,EAAgB,CAClB,MAAMwE,EAAavvB,EAAQl6D,QAAQ,MACf,IAAhBypF,IACFvvB,EAAUA,EAAQtrD,OAAO66E,EAAa,GACtCS,EAAiBhwB,IAAY95D,EAAO0J,KAAK8E,OAAO66E,EAAa,GAEjE,CACA,MAAO,CACLvvB,UACA+vB,SACAV,aACAW,iBACAG,aAEJ,CACA,SAASK,GAAiBhI,EAASxoB,EAASh9D,GAC1C,MAAMm4C,EAAan4C,EACnB,IAAIsuF,EAAe,EACnB,KAAOtuF,EAAIwlF,EAAQtlF,OAAQF,IACzB,GAAmB,MAAfwlF,EAAQxlF,GACV,GAAuB,MAAnBwlF,EAAQxlF,EAAI,GAAY,CAC1B,MAAMqsF,EAAaC,GAAiB9G,EAAS,IAAKxlF,EAAG,GAAGg9D,mBAExD,GADmBwoB,EAAQ59B,UAAU5nD,EAAI,EAAGqsF,GAAYzmF,SACnCo3D,IACnBsxB,IACqB,IAAjBA,GACF,MAAO,CACLhB,WAAY9H,EAAQ59B,UAAUzP,EAAYn4C,GAC1CA,EAAGqsF,GAITrsF,EAAIqsF,CACN,MAAO,GAAuB,MAAnB7G,EAAQxlF,EAAI,GAErBA,EADmBssF,GAAiB9G,EAAS,KAAMxlF,EAAI,EAAG,gCAErD,GAAiC,QAA7BwlF,EAAQ9zE,OAAO1R,EAAI,EAAG,GAE/BA,EADmBssF,GAAiB9G,EAAS,SAAOxlF,EAAI,EAAG,gCAEtD,GAAiC,OAA7BwlF,EAAQ9zE,OAAO1R,EAAI,EAAG,GAE/BA,EADmBssF,GAAiB9G,EAAS,MAAOxlF,EAAG,2BAA6B,MAE/E,CACL,MAAM6sF,EAAUC,GAAWtH,EAASxlF,EAAG,KACnC6sF,KACkBA,GAAWA,EAAQ7vB,WACnBA,GAAyD,MAA9C6vB,EAAQE,OAAOF,EAAQE,OAAO7sF,OAAS,IACpEouF,IAEFtuF,EAAI6sF,EAAQR,WAEhB,CAGN,CACA,SAAS5mF,GAAWqE,EAAMykF,EAAa/pF,GACrC,GAAI+pF,GAA+B,iBAATzkF,EAAmB,CAC3C,MAAM4hF,EAAS5hF,EAAKlE,OACpB,MAAe,SAAX8lF,GAEgB,UAAXA,GAGAd,GAAS9gF,EAAMtF,EAC1B,CACE,OAAIgiB,GAAKm+D,QAAQ76E,GACRA,EAEA,EAGb,CACA,IACI0kF,GAAY,CAAC,EAIjB,SAASC,GAAS/+E,EAAKlL,EAAS4kF,GAC9B,IAAI9nB,EACJ,MAAMotB,EAAgB,CAAC,EACvB,IAAK,IAAI1uF,EAAI,EAAGA,EAAI0P,EAAIxP,OAAQF,IAAK,CACnC,MAAM2uF,EAASj/E,EAAI1P,GACb4uF,EAAWC,GAAWF,GAC5B,IAAIG,EAAW,GAKf,GAHEA,OADY,IAAV1F,EACSwF,EAEAxF,EAAQ,IAAMwF,EACvBA,IAAapqF,EAAQqjF,kBACV,IAATvmB,EACFA,EAAOqtB,EAAOC,GAEdttB,GAAQ,GAAKqtB,EAAOC,OACjB,SAAiB,IAAbA,EACT,SACK,GAAID,EAAOC,GAAW,CAC3B,IAAI9kF,EAAO2kF,GAASE,EAAOC,GAAWpqF,EAASsqF,GAC/C,MAAMC,EAASC,GAAUllF,EAAMtF,GAC3BmqF,EAAO,MACTM,GAAiBnlF,EAAM6kF,EAAO,MAAOG,EAAUtqF,GACT,IAA7BzG,OAAO+G,KAAKgF,GAAM5J,aAA+C,IAA/B4J,EAAKtF,EAAQqjF,eAA6BrjF,EAAQmkF,qBAEvD,IAA7B5qF,OAAO+G,KAAKgF,GAAM5J,SACvBsE,EAAQmkF,qBACV7+E,EAAKtF,EAAQqjF,cAAgB,GAE7B/9E,EAAO,IALTA,EAAOA,EAAKtF,EAAQqjF,mBAOU,IAA5B6G,EAAcE,IAAwBF,EAAczwF,eAAe2wF,IAChExuF,MAAM+C,QAAQurF,EAAcE,MAC/BF,EAAcE,GAAY,CAACF,EAAcE,KAE3CF,EAAcE,GAAU5vF,KAAK8K,IAEzBtF,EAAQrB,QAAQyrF,EAAUE,EAAUC,GACtCL,EAAcE,GAAY,CAAC9kF,GAE3B4kF,EAAcE,GAAY9kF,CAGhC,EACF,CAMA,MALoB,iBAATw3D,EACLA,EAAKphE,OAAS,IAChBwuF,EAAclqF,EAAQqjF,cAAgBvmB,QACtB,IAATA,IACTotB,EAAclqF,EAAQqjF,cAAgBvmB,GACjCotB,CACT,CACA,SAASG,GAAWhlF,GAClB,MAAM/E,EAAO/G,OAAO+G,KAAK+E,GACzB,IAAK,IAAI7J,EAAI,EAAGA,EAAI8E,EAAK5E,OAAQF,IAAK,CACpC,MAAMoD,EAAM0B,EAAK9E,GACjB,GAAY,OAARoD,EACF,OAAOA,CACX,CACF,CACA,SAAS6rF,GAAiBplF,EAAKqlF,EAASC,EAAO3qF,GAC7C,GAAI0qF,EAAS,CACX,MAAMpqF,EAAO/G,OAAO+G,KAAKoqF,GACnBruF,EAAMiE,EAAK5E,OACjB,IAAK,IAAIF,EAAI,EAAGA,EAAIa,EAAKb,IAAK,CAC5B,MAAMovF,EAAWtqF,EAAK9E,GAClBwE,EAAQrB,QAAQisF,EAAUD,EAAQ,IAAMC,GAAU,GAAM,GAC1DvlF,EAAIulF,GAAY,CAACF,EAAQE,IAEzBvlF,EAAIulF,GAAYF,EAAQE,EAE5B,CACF,CACF,CACA,SAASJ,GAAUnlF,EAAKrF,GACtB,MAAM,aAAEqjF,GAAiBrjF,EACnB6qF,EAAYtxF,OAAO+G,KAAK+E,GAAK3J,OACnC,OAAkB,IAAdmvF,KAGc,IAAdA,IAAoBxlF,EAAIg+E,IAA8C,kBAAtBh+E,EAAIg+E,IAAqD,IAAtBh+E,EAAIg+E,GAI7F,CACA2G,GAAUc,SAxFV,SAAoB/6D,EAAM/vB,GACxB,OAAOiqF,GAASl6D,EAAM/vB,EACxB,EAuFA,MAAM,aAAE6kF,IAAiB7B,GACnB+H,GAxkBmB,MACvB,WAAAxsE,CAAYve,GACVhG,KAAKgG,QAAUA,EACfhG,KAAK+3E,YAAc,KACnB/3E,KAAKouF,cAAgB,GACrBpuF,KAAK0uF,gBAAkB,CAAC,EACxB1uF,KAAK4sF,aAAe,CAClB,KAAQ,CAAEnzE,MAAO,qBAAsBtO,IAAK,KAC5C,GAAM,CAAEsO,MAAO,mBAAoBtO,IAAK,KACxC,GAAM,CAAEsO,MAAO,mBAAoBtO,IAAK,KACxC,KAAQ,CAAEsO,MAAO,qBAAsBtO,IAAK,MAE9CnL,KAAKkvF,UAAY,CAAEz1E,MAAO,oBAAqBtO,IAAK,KACpDnL,KAAKsqF,aAAe,CAClB,MAAS,CAAE7wE,MAAO,iBAAkBtO,IAAK,KAMzC,KAAQ,CAAEsO,MAAO,iBAAkBtO,IAAK,KACxC,MAAS,CAAEsO,MAAO,kBAAmBtO,IAAK,KAC1C,IAAO,CAAEsO,MAAO,gBAAiBtO,IAAK,KACtC,KAAQ,CAAEsO,MAAO,kBAAmBtO,IAAK,KACzC,UAAa,CAAEsO,MAAO,iBAAkBtO,IAAK,KAC7C,IAAO,CAAEsO,MAAO,gBAAiBtO,IAAK,KACtC,IAAO,CAAEsO,MAAO,iBAAkBtO,IAAK,KACvC,QAAW,CAAEsO,MAAO,mBAAoBtO,IAAK,CAAC+C,EAAGzD,IAAQG,OAAOg4D,aAAa/7D,OAAOohC,SAASx9B,EAAK,MAClG,QAAW,CAAEgP,MAAO,0BAA2BtO,IAAK,CAAC+C,EAAGzD,IAAQG,OAAOg4D,aAAa/7D,OAAOohC,SAASx9B,EAAK,OAE3GzK,KAAKysF,oBAAsBA,GAC3BzsF,KAAK0tF,SAAWA,GAChB1tF,KAAK6sF,cAAgBA,GACrB7sF,KAAKmtF,iBAAmBA,GACxBntF,KAAKqtF,mBAAqBA,GAC1BrtF,KAAK6uF,aAAeA,GACpB7uF,KAAKitF,qBAAuBgC,GAC5BjvF,KAAKgvF,iBAAmBA,GACxBhvF,KAAKguF,oBAAsBA,GAC3BhuF,KAAK6rF,SAAWA,EAClB,IAiiBI,SAAEiF,IAAad,GACfgB,GAAclL,EA6DpB,SAASmL,GAAS//E,EAAKlL,EAAS4kF,EAAOsG,GACrC,IAAIC,EAAS,GACTC,GAAuB,EAC3B,IAAK,IAAI5vF,EAAI,EAAGA,EAAI0P,EAAIxP,OAAQF,IAAK,CACnC,MAAM2uF,EAASj/E,EAAI1P,GACbg9D,EAAU6yB,GAASlB,GACzB,QAAgB,IAAZ3xB,EACF,SACF,IAAI8yB,EAAW,GAKf,GAHEA,EADmB,IAAjB1G,EAAMlpF,OACG88D,EAEA,GAAGosB,KAASpsB,IACrBA,IAAYx4D,EAAQqjF,aAAc,CACpC,IAAIkI,EAAUpB,EAAO3xB,GAChBgzB,GAAWF,EAAUtrF,KACxBurF,EAAUvrF,EAAQgkF,kBAAkBxrB,EAAS+yB,GAC7CA,EAAUtE,GAAqBsE,EAASvrF,IAEtCorF,IACFD,GAAUD,GAEZC,GAAUI,EACVH,GAAuB,EACvB,QACF,CAAO,GAAI5yB,IAAYx4D,EAAQ2jF,cAAe,CACxCyH,IACFD,GAAUD,GAEZC,GAAU,YAAYhB,EAAO3xB,GAAS,GAAGx4D,EAAQqjF,mBACjD+H,GAAuB,EACvB,QACF,CAAO,GAAI5yB,IAAYx4D,EAAQokF,gBAAiB,CAC9C+G,GAAUD,EAAc,UAAOf,EAAO3xB,GAAS,GAAGx4D,EAAQqjF,sBAC1D+H,GAAuB,EACvB,QACF,CAAO,GAAmB,MAAf5yB,EAAQ,GAAY,CAC7B,MAAMizB,EAAUC,GAAYvB,EAAO,MAAOnqF,GACpC2rF,EAAsB,SAAZnzB,EAAqB,GAAK0yB,EAC1C,IAAIU,EAAiBzB,EAAO3xB,GAAS,GAAGx4D,EAAQqjF,cAChDuI,EAA2C,IAA1BA,EAAelwF,OAAe,IAAMkwF,EAAiB,GACtET,GAAUQ,EAAU,IAAInzB,IAAUozB,IAAiBH,MACnDL,GAAuB,EACvB,QACF,CACA,IAAIS,EAAgBX,EACE,KAAlBW,IACFA,GAAiB7rF,EAAQ8rF,UAE3B,MACMC,EAAWb,EAAc,IAAI1yB,IADpBkzB,GAAYvB,EAAO,MAAOnqF,KAEnCgsF,EAAWf,GAASd,EAAO3xB,GAAUx4D,EAASsrF,EAAUO,IACf,IAA3C7rF,EAAQ6gF,aAAaviF,QAAQk6D,GAC3Bx4D,EAAQisF,qBACVd,GAAUY,EAAW,IAErBZ,GAAUY,EAAW,KACZC,GAAgC,IAApBA,EAAStwF,SAAiBsE,EAAQksF,kBAEhDF,GAAYA,EAAS3oC,SAAS,KACvC8nC,GAAUY,EAAW,IAAIC,IAAWd,MAAgB1yB,MAEpD2yB,GAAUY,EAAW,IACjBC,GAA4B,KAAhBd,IAAuBc,EAASjqF,SAAS,OAASiqF,EAASjqF,SAAS,OAClFopF,GAAUD,EAAclrF,EAAQ8rF,SAAWE,EAAWd,EAEtDC,GAAUa,EAEZb,GAAU,KAAK3yB,MAVf2yB,GAAUY,EAAW,KAYvBX,GAAuB,CACzB,CACA,OAAOD,CACT,CACA,SAASE,GAAShmF,GAChB,MAAM/E,EAAO/G,OAAO+G,KAAK+E,GACzB,IAAK,IAAI7J,EAAI,EAAGA,EAAI8E,EAAK5E,OAAQF,IAAK,CACpC,MAAMoD,EAAM0B,EAAK9E,GACjB,GAAK6J,EAAI5L,eAAemF,IAEZ,OAARA,EACF,OAAOA,CACX,CACF,CACA,SAAS8sF,GAAYhB,EAAS1qF,GAC5B,IAAI2hF,EAAU,GACd,GAAI+I,IAAY1qF,EAAQsjF,iBACtB,IAAK,IAAI9e,KAAQkmB,EAAS,CACxB,IAAKA,EAAQjxF,eAAe+qE,GAC1B,SACF,IAAI2nB,EAAUnsF,EAAQikF,wBAAwBzf,EAAMkmB,EAAQlmB,IAC5D2nB,EAAUlF,GAAqBkF,EAASnsF,IACxB,IAAZmsF,GAAoBnsF,EAAQosF,0BAC9BzK,GAAW,IAAInd,EAAKt3D,OAAOlN,EAAQmjF,oBAAoBznF,UAEvDimF,GAAW,IAAInd,EAAKt3D,OAAOlN,EAAQmjF,oBAAoBznF,YAAYywF,IAEvE,CAEF,OAAOxK,CACT,CACA,SAAS6J,GAAW5G,EAAO5kF,GAEzB,IAAIw4D,GADJosB,EAAQA,EAAM13E,OAAO,EAAG03E,EAAMlpF,OAASsE,EAAQqjF,aAAa3nF,OAAS,IACjDwR,OAAO03E,EAAMsD,YAAY,KAAO,GACpD,IAAK,IAAIhlF,KAASlD,EAAQkkF,UACxB,GAAIlkF,EAAQkkF,UAAUhhF,KAAW0hF,GAAS5kF,EAAQkkF,UAAUhhF,KAAW,KAAOs1D,EAC5E,OAAO,EAEX,OAAO,CACT,CACA,SAASyuB,GAAqBoF,EAAWrsF,GACvC,GAAIqsF,GAAaA,EAAU3wF,OAAS,GAAKsE,EAAQqkF,gBAC/C,IAAK,IAAI7oF,EAAI,EAAGA,EAAIwE,EAAQ+lF,SAASrqF,OAAQF,IAAK,CAChD,MAAMggE,EAASx7D,EAAQ+lF,SAASvqF,GAChC6wF,EAAYA,EAAU9rF,QAAQi7D,EAAO/nD,MAAO+nD,EAAOr2D,IACrD,CAEF,OAAOknF,CACT,CAEA,MAAMC,GA/HN,SAAeC,EAAQvsF,GACrB,IAAIkrF,EAAc,GAIlB,OAHIlrF,EAAQwwC,QAAUxwC,EAAQ8rF,SAASpwF,OAAS,IAC9CwvF,EAJQ,MAMHD,GAASsB,EAAQvsF,EAAS,GAAIkrF,EACvC,EA0HMpG,GAAiB,CACrB3B,oBAAqB,KACrBC,qBAAqB,EACrBC,aAAc,QACdC,kBAAkB,EAClBK,eAAe,EACfnzC,QAAQ,EACRs7C,SAAU,KACVI,mBAAmB,EACnBD,sBAAsB,EACtBG,2BAA2B,EAC3BpI,kBAAmB,SAASplF,EAAK+B,GAC/B,OAAOA,CACT,EACAsjF,wBAAyB,SAAStB,EAAUhiF,GAC1C,OAAOA,CACT,EACAuiF,eAAe,EACfkB,iBAAiB,EACjBvD,aAAc,GACdkF,SAAU,CACR,CAAEtyE,MAAO,IAAIpW,OAAO,IAAK,KAAM8H,IAAK,SAEpC,CAAEsO,MAAO,IAAIpW,OAAO,IAAK,KAAM8H,IAAK,QACpC,CAAEsO,MAAO,IAAIpW,OAAO,IAAK,KAAM8H,IAAK,QACpC,CAAEsO,MAAO,IAAIpW,OAAO,IAAK,KAAM8H,IAAK,UACpC,CAAEsO,MAAO,IAAIpW,OAAO,IAAK,KAAM8H,IAAK,WAEtCk/E,iBAAiB,EACjBH,UAAW,GAGXsI,cAAc,GAEhB,SAASvoB,GAAQjkE,GACfhG,KAAKgG,QAAUzG,OAAOilD,OAAO,CAAC,EAAGsmC,GAAgB9kF,GAC7ChG,KAAKgG,QAAQsjF,kBAAoBtpF,KAAKgG,QAAQojF,oBAChDppF,KAAKyyF,YAAc,WACjB,OAAO,CACT,GAEAzyF,KAAK0yF,cAAgB1yF,KAAKgG,QAAQmjF,oBAAoBznF,OACtD1B,KAAKyyF,YAAcA,IAErBzyF,KAAK2yF,qBAAuBA,GACxB3yF,KAAKgG,QAAQwwC,QACfx2C,KAAK4yF,UAAYA,GACjB5yF,KAAK6yF,WAAa,MAClB7yF,KAAK8yF,QAAU,OAEf9yF,KAAK4yF,UAAY,WACf,MAAO,EACT,EACA5yF,KAAK6yF,WAAa,IAClB7yF,KAAK8yF,QAAU,GAEnB,CA6FA,SAASH,GAAqBnuF,EAAQI,EAAK20E,GACzC,MAAM70E,EAAS1E,KAAK+yF,IAAIvuF,EAAQ+0E,EAAQ,GACxC,YAA0C,IAAtC/0E,EAAOxE,KAAKgG,QAAQqjF,eAA2D,IAA/B9pF,OAAO+G,KAAK9B,GAAQ9C,OAC/D1B,KAAKgzF,iBAAiBxuF,EAAOxE,KAAKgG,QAAQqjF,cAAezkF,EAAKF,EAAOijF,QAASpO,GAE9Ev5E,KAAKizF,gBAAgBvuF,EAAOyG,IAAKvG,EAAKF,EAAOijF,QAASpO,EAEjE,CA8DA,SAASqZ,GAAUrZ,GACjB,OAAOv5E,KAAKgG,QAAQ8rF,SAASrgF,OAAO8nE,EACtC,CACA,SAASkZ,GAAYzxF,GACnB,SAAIA,EAAK20B,WAAW31B,KAAKgG,QAAQmjF,sBAAwBnoF,IAAShB,KAAKgG,QAAQqjF,eACtEroF,EAAKkS,OAAOlT,KAAK0yF,cAI5B,CA1KAzoB,GAAQzqE,UAAU8rB,MAAQ,SAAS4nE,GACjC,OAAIlzF,KAAKgG,QAAQkjF,cACRoJ,GAAmBY,EAAMlzF,KAAKgG,UAEjCpE,MAAM+C,QAAQuuF,IAASlzF,KAAKgG,QAAQmtF,eAAiBnzF,KAAKgG,QAAQmtF,cAAczxF,OAAS,IAC3FwxF,EAAO,CACL,CAAClzF,KAAKgG,QAAQmtF,eAAgBD,IAG3BlzF,KAAK+yF,IAAIG,EAAM,GAAG/nF,IAE7B,EACA8+D,GAAQzqE,UAAUuzF,IAAM,SAASG,EAAM3Z,GACrC,IAAIoO,EAAU,GACVr8E,EAAO,GACX,IAAK,IAAI1G,KAAOsuF,EACd,GAAK3zF,OAAOC,UAAUC,eAAeyB,KAAKgyF,EAAMtuF,GAEhD,QAAyB,IAAdsuF,EAAKtuF,GACV5E,KAAKyyF,YAAY7tF,KACnB0G,GAAQ,SAEL,GAAkB,OAAd4nF,EAAKtuF,GACV5E,KAAKyyF,YAAY7tF,GACnB0G,GAAQ,GACY,MAAX1G,EAAI,GACb0G,GAAQtL,KAAK4yF,UAAUrZ,GAAS,IAAM30E,EAAM,IAAM5E,KAAK6yF,WAEvDvnF,GAAQtL,KAAK4yF,UAAUrZ,GAAS,IAAM30E,EAAM,IAAM5E,KAAK6yF,gBAEpD,GAAIK,EAAKtuF,aAAgBsW,KAC9B5P,GAAQtL,KAAKgzF,iBAAiBE,EAAKtuF,GAAMA,EAAK,GAAI20E,QAC7C,GAAyB,iBAAd2Z,EAAKtuF,GAAmB,CACxC,MAAM4lE,EAAOxqE,KAAKyyF,YAAY7tF,GAC9B,GAAI4lE,EACFmd,GAAW3nF,KAAKozF,iBAAiB5oB,EAAM,GAAK0oB,EAAKtuF,SAEjD,GAAIA,IAAQ5E,KAAKgG,QAAQqjF,aAAc,CACrC,IAAI6D,EAASltF,KAAKgG,QAAQgkF,kBAAkBplF,EAAK,GAAKsuF,EAAKtuF,IAC3D0G,GAAQtL,KAAKitF,qBAAqBC,EACpC,MACE5hF,GAAQtL,KAAKgzF,iBAAiBE,EAAKtuF,GAAMA,EAAK,GAAI20E,EAGxD,MAAO,GAAI33E,MAAM+C,QAAQuuF,EAAKtuF,IAAO,CACnC,MAAMyuF,EAASH,EAAKtuF,GAAKlD,OACzB,IAAI4xF,EAAa,GACjB,IAAK,IAAI5wF,EAAI,EAAGA,EAAI2wF,EAAQ3wF,IAAK,CAC/B,MAAMwF,EAAOgrF,EAAKtuF,GAAKlC,QACH,IAATwF,IAEO,OAATA,EACQ,MAAXtD,EAAI,GACN0G,GAAQtL,KAAK4yF,UAAUrZ,GAAS,IAAM30E,EAAM,IAAM5E,KAAK6yF,WAEvDvnF,GAAQtL,KAAK4yF,UAAUrZ,GAAS,IAAM30E,EAAM,IAAM5E,KAAK6yF,WAChC,iBAAT3qF,EACZlI,KAAKgG,QAAQwsF,aACfc,GAActzF,KAAK+yF,IAAI7qF,EAAMqxE,EAAQ,GAAGpuE,IAExCmoF,GAActzF,KAAK2yF,qBAAqBzqF,EAAMtD,EAAK20E,GAGrD+Z,GAActzF,KAAKgzF,iBAAiB9qF,EAAMtD,EAAK,GAAI20E,GAEvD,CACIv5E,KAAKgG,QAAQwsF,eACfc,EAAatzF,KAAKizF,gBAAgBK,EAAY1uF,EAAK,GAAI20E,IAEzDjuE,GAAQgoF,CACV,MACE,GAAItzF,KAAKgG,QAAQojF,qBAAuBxkF,IAAQ5E,KAAKgG,QAAQojF,oBAAqB,CAChF,MAAMmK,EAAKh0F,OAAO+G,KAAK4sF,EAAKtuF,IACtB4uF,EAAID,EAAG7xF,OACb,IAAK,IAAIgB,EAAI,EAAGA,EAAI8wF,EAAG9wF,IACrBilF,GAAW3nF,KAAKozF,iBAAiBG,EAAG7wF,GAAI,GAAKwwF,EAAKtuF,GAAK2uF,EAAG7wF,IAE9D,MACE4I,GAAQtL,KAAK2yF,qBAAqBO,EAAKtuF,GAAMA,EAAK20E,GAIxD,MAAO,CAAEoO,UAASx8E,IAAKG,EACzB,EACA2+D,GAAQzqE,UAAU4zF,iBAAmB,SAASzK,EAAUr9E,GAGtD,OAFAA,EAAOtL,KAAKgG,QAAQikF,wBAAwBtB,EAAU,GAAKr9E,GAC3DA,EAAOtL,KAAKitF,qBAAqB3hF,GAC7BtL,KAAKgG,QAAQosF,2BAAsC,SAAT9mF,EACrC,IAAMq9E,EAEN,IAAMA,EAAW,KAAOr9E,EAAO,GAC1C,EASA2+D,GAAQzqE,UAAUyzF,gBAAkB,SAAS3nF,EAAM1G,EAAK+iF,EAASpO,GAC/D,GAAa,KAATjuE,EACF,MAAe,MAAX1G,EAAI,GACC5E,KAAK4yF,UAAUrZ,GAAS,IAAM30E,EAAM+iF,EAAU,IAAM3nF,KAAK6yF,WAEzD7yF,KAAK4yF,UAAUrZ,GAAS,IAAM30E,EAAM+iF,EAAU3nF,KAAKqgE,SAASz7D,GAAO5E,KAAK6yF,WAE5E,CACL,IAAIY,EAAY,KAAO7uF,EAAM5E,KAAK6yF,WAC9Ba,EAAgB,GAKpB,MAJe,MAAX9uF,EAAI,KACN8uF,EAAgB,IAChBD,EAAY,KAET9L,GAAuB,KAAZA,IAA0C,IAAvBr8E,EAAKhH,QAAQ,MAEJ,IAAjCtE,KAAKgG,QAAQokF,iBAA6BxlF,IAAQ5E,KAAKgG,QAAQokF,iBAA4C,IAAzBsJ,EAAchyF,OAClG1B,KAAK4yF,UAAUrZ,GAAS,UAAOjuE,UAAYtL,KAAK8yF,QAEhD9yF,KAAK4yF,UAAUrZ,GAAS,IAAM30E,EAAM+iF,EAAU+L,EAAgB1zF,KAAK6yF,WAAavnF,EAAOtL,KAAK4yF,UAAUrZ,GAASka,EAJ/GzzF,KAAK4yF,UAAUrZ,GAAS,IAAM30E,EAAM+iF,EAAU+L,EAAgB,IAAMpoF,EAAOmoF,CAMtF,CACF,EACAxpB,GAAQzqE,UAAU6gE,SAAW,SAASz7D,GACpC,IAAIy7D,EAAW,GASf,OARgD,IAA5CrgE,KAAKgG,QAAQ6gF,aAAaviF,QAAQM,GAC/B5E,KAAKgG,QAAQisF,uBAChB5xB,EAAW,KAEbA,EADSrgE,KAAKgG,QAAQksF,kBACX,IAEA,MAAMttF,IAEZy7D,CACT,EACA4J,GAAQzqE,UAAUwzF,iBAAmB,SAAS1nF,EAAM1G,EAAK+iF,EAASpO,GAChE,IAAmC,IAA/Bv5E,KAAKgG,QAAQ2jF,eAA2B/kF,IAAQ5E,KAAKgG,QAAQ2jF,cAC/D,OAAO3pF,KAAK4yF,UAAUrZ,GAAS,YAAYjuE,OAAYtL,KAAK8yF,QACvD,IAAqC,IAAjC9yF,KAAKgG,QAAQokF,iBAA6BxlF,IAAQ5E,KAAKgG,QAAQokF,gBACxE,OAAOpqF,KAAK4yF,UAAUrZ,GAAS,UAAOjuE,UAAYtL,KAAK8yF,QAClD,GAAe,MAAXluF,EAAI,GACb,OAAO5E,KAAK4yF,UAAUrZ,GAAS,IAAM30E,EAAM+iF,EAAU,IAAM3nF,KAAK6yF,WAC3D,CACL,IAAIR,EAAYryF,KAAKgG,QAAQgkF,kBAAkBplF,EAAK0G,GAEpD,OADA+mF,EAAYryF,KAAKitF,qBAAqBoF,GACpB,KAAdA,EACKryF,KAAK4yF,UAAUrZ,GAAS,IAAM30E,EAAM+iF,EAAU3nF,KAAKqgE,SAASz7D,GAAO5E,KAAK6yF,WAExE7yF,KAAK4yF,UAAUrZ,GAAS,IAAM30E,EAAM+iF,EAAU,IAAM0K,EAAY,KAAOztF,EAAM5E,KAAK6yF,UAE7F,CACF,EACA5oB,GAAQzqE,UAAUytF,qBAAuB,SAASoF,GAChD,GAAIA,GAAaA,EAAU3wF,OAAS,GAAK1B,KAAKgG,QAAQqkF,gBACpD,IAAK,IAAI7oF,EAAI,EAAGA,EAAIxB,KAAKgG,QAAQ+lF,SAASrqF,OAAQF,IAAK,CACrD,MAAMggE,EAASxhE,KAAKgG,QAAQ+lF,SAASvqF,GACrC6wF,EAAYA,EAAU9rF,QAAQi7D,EAAO/nD,MAAO+nD,EAAOr2D,IACrD,CAEF,OAAOknF,CACT,EAeA,IAAIsB,GAAM,CACRC,UA9ZgB,MAChB,WAAArvE,CAAYve,GACVhG,KAAK0sF,iBAAmB,CAAC,EACzB1sF,KAAKgG,QAAU6kF,GAAa7kF,EAC9B,CAMA,KAAAyB,CAAMu/E,EAAS6M,GACb,GAAuB,iBAAZ7M,OAEN,KAAIA,EAAQthF,SAGf,MAAM,IAAI8Z,MAAM,mDAFhBwnE,EAAUA,EAAQthF,UAGpB,CACA,GAAImuF,EAAkB,EACK,IAArBA,IACFA,EAAmB,CAAC,GACtB,MAAMnvF,EAASssF,GAAY3J,SAASL,EAAS6M,GAC7C,IAAe,IAAXnvF,EACF,MAAM8a,MAAM,GAAG9a,EAAOgG,IAAI8Y,OAAO9e,EAAOgG,IAAIuyD,QAAQv4D,EAAOgG,IAAIw9E,MAEnE,CACA,MAAM4L,EAAmB,IAAI/C,GAAkB/wF,KAAKgG,SACpD8tF,EAAiBrH,oBAAoBzsF,KAAK0sF,kBAC1C,MAAMqH,EAAgBD,EAAiBpG,SAAS1G,GAChD,OAAIhnF,KAAKgG,QAAQkjF,oBAAmC,IAAlB6K,EACzBA,EAEAjD,GAASiD,EAAe/zF,KAAKgG,QACxC,CAMA,SAAAguF,CAAUpvF,EAAKQ,GACb,IAA4B,IAAxBA,EAAMd,QAAQ,KAChB,MAAM,IAAIkb,MAAM,+BACX,IAA0B,IAAtB5a,EAAIN,QAAQ,OAAqC,IAAtBM,EAAIN,QAAQ,KAChD,MAAM,IAAIkb,MAAM,wEACX,GAAc,MAAVpa,EACT,MAAM,IAAIoa,MAAM,6CAEhBxf,KAAK0sF,iBAAiB9nF,GAAOQ,CAEjC,GA8WA6uF,aALgBnO,EAMhBoO,WAPajqB,IAwDf,MAAMr8D,GACJumF,MACA,WAAA5vE,CAAYwE,GACVqrE,GAAYrrE,GACZ/oB,KAAKm0F,MAAQprE,CACf,CACA,MAAIyK,GACF,OAAOxzB,KAAKm0F,MAAM3gE,EACpB,CACA,QAAIxyB,GACF,OAAOhB,KAAKm0F,MAAMnzF,IACpB,CACA,WAAI83C,GACF,OAAO94C,KAAKm0F,MAAMr7C,OACpB,CACA,cAAIgL,GACF,OAAO9jD,KAAKm0F,MAAMrwC,UACpB,CACA,gBAAIC,GACF,OAAO/jD,KAAKm0F,MAAMpwC,YACpB,CACA,eAAI7lB,GACF,OAAOl+B,KAAKm0F,MAAMj2D,WACpB,CACA,QAAIjJ,GACF,OAAOj1B,KAAKm0F,MAAMl/D,IACpB,CACA,QAAIA,CAAKA,GACPj1B,KAAKm0F,MAAMl/D,KAAOA,CACpB,CACA,SAAItB,GACF,OAAO3zB,KAAKm0F,MAAMxgE,KACpB,CACA,SAAIA,CAAMA,GACR3zB,KAAKm0F,MAAMxgE,MAAQA,CACrB,CACA,UAAIznB,GACF,OAAOlM,KAAKm0F,MAAMjoF,MACpB,CACA,UAAIA,CAAOA,GACTlM,KAAKm0F,MAAMjoF,OAASA,CACtB,CACA,WAAIypC,GACF,OAAO31C,KAAKm0F,MAAMx+C,OACpB,CACA,aAAI0+C,GACF,OAAOr0F,KAAKm0F,MAAME,SACpB,CACA,UAAI3nF,GACF,OAAO1M,KAAKm0F,MAAMznF,MACpB,CACA,UAAIsoB,GACF,OAAOh1B,KAAKm0F,MAAMn/D,MACpB,CACA,YAAIP,GACF,OAAOz0B,KAAKm0F,MAAM1/D,QACpB,CACA,YAAIA,CAASA,GACXz0B,KAAKm0F,MAAM1/D,SAAWA,CACxB,CACA,kBAAI8iB,GACF,OAAOv3C,KAAKm0F,MAAM58C,cACpB,EAEF,MAAM68C,GAAc,SAASrrE,GAC3B,IAAKA,EAAKyK,IAAyB,iBAAZzK,EAAKyK,GAC1B,MAAM,IAAIhU,MAAM,4CAElB,IAAKuJ,EAAK/nB,MAA6B,iBAAd+nB,EAAK/nB,KAC5B,MAAM,IAAIwe,MAAM,8CAElB,GAAIuJ,EAAK4sB,SAAW5sB,EAAK4sB,QAAQj0C,OAAS,KAAOqnB,EAAK+vB,SAAmC,iBAAjB/vB,EAAK+vB,SAC3E,MAAM,IAAIt5B,MAAM,qEAElB,IAAKuJ,EAAKmV,aAA2C,mBAArBnV,EAAKmV,YACnC,MAAM,IAAI1e,MAAM,uDAElB,IAAKuJ,EAAKkM,MAA6B,iBAAdlM,EAAKkM,OA5HhC,SAAe9wB,GACb,GAAsB,iBAAXA,EACT,MAAM,IAAI/D,UAAU,uCAAuC+D,OAG7D,GAAsB,KADtBA,EAASA,EAAOiD,QACL1F,OACT,OAAO,EAET,IAA0C,IAAtCiyF,GAAIM,aAAa5M,SAASljF,GAC5B,OAAO,EAET,IAAImwF,EACJ,MAAMnxC,EAAS,IAAIwwC,GAAIC,UACvB,IACEU,EAAanxC,EAAO17C,MAAMtD,EAC5B,CAAE,MACA,OAAO,CACT,CACA,QAAKmwF,KAGA/0F,OAAO+G,KAAKguF,GAAYn4D,MAAM32B,GAA0B,QAApBA,EAAE8B,eAI7C,CAmGsDitF,CAAMxrE,EAAKkM,MAC7D,MAAM,IAAIzV,MAAM,wDAElB,KAAM,UAAWuJ,IAA+B,iBAAfA,EAAK4K,MACpC,MAAM,IAAInU,MAAM,+CASlB,GAPIuJ,EAAK4sB,SACP5sB,EAAK4sB,QAAQ5qC,SAAS2rC,IACpB,KAAMA,aAAkBivC,GACtB,MAAM,IAAInmE,MAAM,gEAClB,IAGAuJ,EAAKsrE,WAAuC,mBAAnBtrE,EAAKsrE,UAChC,MAAM,IAAI70E,MAAM,qCAElB,GAAIuJ,EAAKrc,QAAiC,iBAAhBqc,EAAKrc,OAC7B,MAAM,IAAI8S,MAAM,gCAElB,GAAI,WAAYuJ,GAA+B,kBAAhBA,EAAKiM,OAClC,MAAM,IAAIxV,MAAM,iCAElB,GAAI,aAAcuJ,GAAiC,kBAAlBA,EAAK0L,SACpC,MAAM,IAAIjV,MAAM,mCAElB,GAAIuJ,EAAKwuB,gBAAiD,iBAAxBxuB,EAAKwuB,eACrC,MAAM,IAAI/3B,MAAM,wCAElB,OAAO,CACT,EA+BMg1E,GAAwB,SAAS10F,GAErC,YAphGsC,IAA3B0Y,OAAOi8E,kBAChBj8E,OAAOi8E,gBAAkB,IAAI7S,EAC7B3yD,EAAO+E,MAAM,4BAERxb,OAAOi8E,iBAghGKv6D,WAAWp6B,GAAS4G,MAAK,CAACC,EAAGC,SAC9B,IAAZD,EAAEgtB,YAAgC,IAAZ/sB,EAAE+sB,OAAoBhtB,EAAEgtB,QAAU/sB,EAAE+sB,MACrDhtB,EAAEgtB,MAAQ/sB,EAAE+sB,MAEdhtB,EAAEyuB,YAAYs/D,cAAc9tF,EAAEwuB,iBAAa,EAAQ,CAAEwrB,SAAS,EAAM+zC,YAAa,UAE5F,8PCpoGI3uF,EAAU,CAAC,EAEfA,EAAQopB,kBAAoB,IAC5BppB,EAAQqpB,cAAgB,IAElBrpB,EAAQspB,OAAS,SAAc,KAAM,QAE3CtpB,EAAQupB,OAAS,IACjBvpB,EAAQwpB,mBAAqB,IAEhB,IAAI,IAASxpB,GAKJ,KAAW,IAAQypB,QAAS,IAAQA,6EC1BnD,MAAMmlE,UAAoBp1E,MAChC,WAAA+E,CAAYhB,GACX4V,MAAM5V,GAAU,wBAChBvjB,KAAKgB,KAAO,aACb,CAEA,cAAI6zF,GACH,OAAO,CACR,EAGD,MAAMC,EAAev1F,OAAOgN,OAAO,CAClCmU,QAAS7a,OAAO,WAChBkvF,SAAUlvF,OAAO,YACjBwd,SAAUxd,OAAO,YACjBmvF,SAAUnvF,OAAO,cAGH,MAAMovF,EACpB,SAAOp1F,CAAGq1F,GACT,MAAO,IAAI5oE,IAAe,IAAI2oE,GAAY,CAACl/E,EAASuN,EAAQib,KAC3DjS,EAAW9rB,KAAK+9B,GAChB22D,KAAgB5oE,GAAYtP,KAAKjH,EAASuN,EAAO,GAEnD,CAEA,GAAkB,GAClB,IAAkB,EAClB,GAASwxE,EAAap0E,QACtB,GACA,GAEA,WAAA6D,CAAY4wE,GACXn1F,MAAK,EAAW,IAAI4mB,SAAQ,CAAC7Q,EAASuN,KACrCtjB,MAAK,EAAUsjB,EAEf,MAcMib,EAAW3nB,IAChB,GAAI5W,MAAK,IAAW80F,EAAap0E,QAChC,MAAM,IAAIlB,MAAM,2DAA2Dxf,MAAK,EAAOo1F,gBAGxFp1F,MAAK,EAAgBQ,KAAKoW,EAAQ,EAGnCrX,OAAO2nB,iBAAiBqX,EAAU,CACjC82D,aAAc,CACblvE,IAAK,IAAMnmB,MAAK,EAChBu4B,IAAK+8D,IACJt1F,MAAK,EAAkBs1F,CAAO,KAKjCH,GA/BkB/vF,IACbpF,MAAK,IAAW80F,EAAaC,UAAax2D,EAAS82D,eACtDt/E,EAAQ3Q,GACRpF,MAAK,EAAU80F,EAAazxE,UAC7B,IAGgB9D,IACZvf,MAAK,IAAW80F,EAAaC,UAAax2D,EAAS82D,eACtD/xE,EAAO/D,GACPvf,MAAK,EAAU80F,EAAaE,UAC7B,GAoB6Bz2D,EAAS,GAEzC,CAGA,IAAAvhB,CAAKu4E,EAAaC,GACjB,OAAOx1F,MAAK,EAASgd,KAAKu4E,EAAaC,EACxC,CAEA,MAAMA,GACL,OAAOx1F,MAAK,EAASkd,MAAMs4E,EAC5B,CAEA,QAAQC,GACP,OAAOz1F,MAAK,EAAS01F,QAAQD,EAC9B,CAEA,MAAA9oE,CAAOpJ,GACN,GAAIvjB,MAAK,IAAW80F,EAAap0E,QAAjC,CAMA,GAFA1gB,MAAK,EAAU80F,EAAaC,UAExB/0F,MAAK,EAAgB0B,OAAS,EACjC,IACC,IAAK,MAAMkV,KAAW5W,MAAK,EAC1B4W,GAEF,CAAE,MAAO2I,GAER,YADAvf,MAAK,EAAQuf,EAEd,CAGGvf,MAAK,GACRA,MAAK,EAAQ,IAAI40F,EAAYrxE,GAhB9B,CAkBD,CAEA,cAAIsxE,GACH,OAAO70F,MAAK,IAAW80F,EAAaC,QACrC,CAEA,GAAU94E,GACLjc,MAAK,IAAW80F,EAAap0E,UAChC1gB,MAAK,EAASic,EAEhB,EAGD1c,OAAOs4D,eAAeo9B,EAAYz1F,UAAWonB,QAAQpnB,yBCtH9C,MAAMm2F,UAAqBn2E,MACjC,WAAA+E,CAAYjF,GACX6Z,MAAM7Z,GACNtf,KAAKgB,KAAO,cACb,EAOM,MAAM40F,UAAmBp2E,MAC/B,WAAA+E,CAAYjF,GACX6Z,QACAn5B,KAAKgB,KAAO,aACZhB,KAAKsf,QAAUA,CAChB,EAMD,MAAMu2E,EAAkBC,QAA4CtzF,IAA5BuzF,WAAWC,aAChD,IAAIJ,EAAWE,GACf,IAAIE,aAAaF,GAKdG,EAAmBt3D,IACxB,MAAMpb,OAA2B/gB,IAAlBm8B,EAAOpb,OACnBsyE,EAAgB,+BAChBl3D,EAAOpb,OAEV,OAAOA,aAAkB/D,MAAQ+D,EAASsyE,EAAgBtyE,EAAO,ECjCnD,MAAM2yE,EACjB,GAAS,GACT,OAAAC,CAAQtwB,EAAK7/D,GAKT,MAAMsmC,EAAU,CACZ8pD,UALJpwF,EAAU,CACNowF,SAAU,KACPpwF,IAGeowF,SAClBvwB,OAEJ,GAAI7lE,KAAKmpB,MAAQnpB,MAAK,EAAOA,KAAKmpB,KAAO,GAAGitE,UAAYpwF,EAAQowF,SAE5D,YADAp2F,MAAK,EAAOQ,KAAK8rC,GAGrB,MAAMpjC,ECdC,SAAoBmtF,EAAOjxF,EAAOkxF,GAC7C,IAAI9mC,EAAQ,EACRlS,EAAQ+4C,EAAM30F,OAClB,KAAO47C,EAAQ,GAAG,CACd,MAAMr9B,EAAOwC,KAAK8zE,MAAMj5C,EAAQ,GAChC,IAAIk5C,EAAKhnC,EAAQvvC,EDS+BtZ,ECRjC0vF,EAAMG,GAAKpxF,EDQiCgxF,SAAWzvF,EAAEyvF,UCRpC,GAChC5mC,IAAUgnC,EACVl5C,GAASr9B,EAAO,GAGhBq9B,EAAQr9B,CAEhB,CDCmD,IAACtZ,ECApD,OAAO6oD,CACX,CDDsBinC,CAAWz2F,MAAK,EAAQssC,GACtCtsC,MAAK,EAAOmZ,OAAOjQ,EAAO,EAAGojC,EACjC,CACA,OAAAoqD,GACI,MAAMxuF,EAAOlI,MAAK,EAAOkL,QACzB,OAAOhD,GAAM29D,GACjB,CACA,MAAAv8D,CAAOtD,GACH,OAAOhG,MAAK,EAAOsJ,QAAQgjC,GAAYA,EAAQ8pD,WAAapwF,EAAQowF,WAAUtvF,KAAKwlC,GAAYA,EAAQu5B,KAC3G,CACA,QAAI18C,GACA,OAAOnpB,MAAK,EAAO0B,MACvB,EEtBW,MAAM+5B,UAAe,EAChC,GACA,GACA,GAAiB,EACjB,GACA,GACA,GAAe,EACf,GACA,GACA,GACA,GACA,GAAW,EAEX,GACA,GACA,GAMAstC,QAEA,WAAAxkD,CAAYve,GAYR,GAXAmzB,UAWqC,iBATrCnzB,EAAU,CACN2wF,2BAA2B,EAC3BC,YAAa/vF,OAAOgwF,kBACpBC,SAAU,EACVp7D,YAAa70B,OAAOgwF,kBACpBE,WAAW,EACXC,WAAYd,KACTlwF,IAEc4wF,aAA4B5wF,EAAQ4wF,aAAe,GACpE,MAAM,IAAIx2F,UAAU,gEAAgE4F,EAAQ4wF,aAAalxF,YAAc,gBAAgBM,EAAQ4wF,gBAEnJ,QAAyBp0F,IAArBwD,EAAQ8wF,YAA4BjwF,OAAOi0D,SAAS90D,EAAQ8wF,WAAa9wF,EAAQ8wF,UAAY,GAC7F,MAAM,IAAI12F,UAAU,2DAA2D4F,EAAQ8wF,UAAUpxF,YAAc,gBAAgBM,EAAQ8wF,aAE3I92F,MAAK,EAA6BgG,EAAQ2wF,0BAC1C32F,MAAK,EAAqBgG,EAAQ4wF,cAAgB/vF,OAAOgwF,mBAA0C,IAArB7wF,EAAQ8wF,SACtF92F,MAAK,EAAegG,EAAQ4wF,YAC5B52F,MAAK,EAAYgG,EAAQ8wF,SACzB92F,MAAK,EAAS,IAAIgG,EAAQgxF,WAC1Bh3F,MAAK,EAAcgG,EAAQgxF,WAC3Bh3F,KAAK07B,YAAc11B,EAAQ01B,YAC3B17B,KAAK+oE,QAAU/iE,EAAQ+iE,QACvB/oE,MAAK,GAA6C,IAA3BgG,EAAQixF,eAC/Bj3F,MAAK,GAAkC,IAAtBgG,EAAQ+wF,SAC7B,CACA,KAAI,GACA,OAAO/2F,MAAK,GAAsBA,MAAK,EAAiBA,MAAK,CACjE,CACA,KAAI,GACA,OAAOA,MAAK,EAAWA,MAAK,CAChC,CACA,KACIA,MAAK,IACLA,MAAK,IACLA,KAAK8B,KAAK,OACd,CACA,KACI9B,MAAK,IACLA,MAAK,IACLA,MAAK,OAAawC,CACtB,CACA,KAAI,GACA,MAAMyY,EAAMC,KAAKD,MACjB,QAAyBzY,IAArBxC,MAAK,EAA2B,CAChC,MAAMwrB,EAAQxrB,MAAK,EAAeib,EAClC,KAAIuQ,EAAQ,GAYR,YALwBhpB,IAApBxC,MAAK,IACLA,MAAK,EAAa0sB,YAAW,KACzB1sB,MAAK,GAAmB,GACzBwrB,KAEA,EATPxrB,MAAK,EAAkBA,MAA+B,EAAIA,MAAK,EAAW,CAWlF,CACA,OAAO,CACX,CACA,KACI,GAAyB,IAArBA,MAAK,EAAOmpB,KAWZ,OARInpB,MAAK,GACL8oE,cAAc9oE,MAAK,GAEvBA,MAAK,OAAcwC,EACnBxC,KAAK8B,KAAK,SACY,IAAlB9B,MAAK,GACLA,KAAK8B,KAAK,SAEP,EAEX,IAAK9B,MAAK,EAAW,CACjB,MAAMk3F,GAAyBl3F,MAAK,EACpC,GAAIA,MAAK,GAA6BA,MAAK,EAA6B,CACpE,MAAMm3F,EAAMn3F,MAAK,EAAO02F,UACxB,QAAKS,IAGLn3F,KAAK8B,KAAK,UACVq1F,IACID,GACAl3F,MAAK,KAEF,EACX,CACJ,CACA,OAAO,CACX,CACA,KACQA,MAAK,QAA2CwC,IAArBxC,MAAK,IAGpCA,MAAK,EAAcguB,aAAY,KAC3BhuB,MAAK,GAAa,GACnBA,MAAK,GACRA,MAAK,EAAekb,KAAKD,MAAQjb,MAAK,EAC1C,CACA,KACgC,IAAxBA,MAAK,GAA0C,IAAlBA,MAAK,GAAkBA,MAAK,IACzD8oE,cAAc9oE,MAAK,GACnBA,MAAK,OAAcwC,GAEvBxC,MAAK,EAAiBA,MAAK,EAA6BA,MAAK,EAAW,EACxEA,MAAK,GACT,CAIA,KAEI,KAAOA,MAAK,MAChB,CACA,eAAI07B,GACA,OAAO17B,MAAK,CAChB,CACA,eAAI07B,CAAY07D,GACZ,KAAgC,iBAAnBA,GAA+BA,GAAkB,GAC1D,MAAM,IAAIh3F,UAAU,gEAAgEg3F,eAA4BA,MAEpHp3F,MAAK,EAAeo3F,EACpBp3F,MAAK,GACT,CACA,OAAM,CAAc2+B,GAChB,OAAO,IAAI/X,SAAQ,CAACywE,EAAU/zE,KAC1Bqb,EAAOxiB,iBAAiB,SAAS,KAC7BmH,EAAOqb,EAAOpb,OAAO,GACtB,CAAExjB,MAAM,GAAO,GAE1B,CACA,SAAMy/B,CAAI83D,EAAWtxF,EAAU,CAAC,GAM5B,OALAA,EAAU,CACN+iE,QAAS/oE,KAAK+oE,QACdkuB,eAAgBj3F,MAAK,KAClBgG,GAEA,IAAI4gB,SAAQ,CAAC7Q,EAASuN,KACzBtjB,MAAK,EAAOm2F,SAAQv8D,UAChB55B,MAAK,IACLA,MAAK,IACL,IACIgG,EAAQ24B,QAAQ44D,iBAChB,IAAIC,EAAYF,EAAU,CAAE34D,OAAQ34B,EAAQ24B,SACxC34B,EAAQ+iE,UACRyuB,EHhJT,SAAkBp4C,EAASp5C,GACzC,MAAM,aACLyxF,EAAY,SACZryE,EAAQ,QACR9F,EAAO,aACPo4E,EAAe,CAAChrE,WAAYP,eACzBnmB,EAEJ,IAAI2xF,EAEJ,MA0DMC,EA1DiB,IAAIhxE,SAAQ,CAAC7Q,EAASuN,KAC5C,GAA4B,iBAAjBm0E,GAAyD,IAA5Bh1E,KAAK8pE,KAAKkL,GACjD,MAAM,IAAIr3F,UAAU,4DAA4Dq3F,OAGjF,GAAIzxF,EAAQ24B,OAAQ,CACnB,MAAM,OAACA,GAAU34B,EACb24B,EAAO1f,SACVqE,EAAO2yE,EAAiBt3D,IAGzBA,EAAOxiB,iBAAiB,SAAS,KAChCmH,EAAO2yE,EAAiBt3D,GAAQ,GAElC,CAEA,GAAI84D,IAAiB5wF,OAAOgwF,kBAE3B,YADAz3C,EAAQpiC,KAAKjH,EAASuN,GAKvB,MAAMu0E,EAAe,IAAIlC,EAEzBgC,EAAQD,EAAahrE,WAAWxrB,UAAKsB,GAAW,KAC/C,GAAI4iB,EACH,IACCrP,EAAQqP,IACT,CAAE,MAAO7F,GACR+D,EAAO/D,EACR,KAK6B,mBAAnB6/B,EAAQzyB,QAClByyB,EAAQzyB,UAGO,IAAZrN,EACHvJ,IACUuJ,aAAmBE,MAC7B8D,EAAOhE,IAEPu4E,EAAav4E,QAAUA,GAAW,2BAA2Bm4E,iBAC7Dn0E,EAAOu0E,GACR,GACEJ,GAEH,WACC,IACC1hF,QAAcqpC,EACf,CAAE,MAAO7/B,GACR+D,EAAO/D,EACR,CACA,EAND,EAMI,IAGoCm2E,SAAQ,KAChDkC,EAAkBnrE,OAAO,IAQ1B,OALAmrE,EAAkBnrE,MAAQ,KACzBirE,EAAavrE,aAAajrB,UAAKsB,EAAWm1F,GAC1CA,OAAQn1F,CAAS,EAGXo1F,CACR,CGkEoCE,CAASlxE,QAAQ7Q,QAAQyhF,GAAY,CAAEC,aAAczxF,EAAQ+iE,WAEzE/iE,EAAQ24B,SACR64D,EAAY5wE,QAAQmxE,KAAK,CAACP,EAAWx3F,MAAK,EAAcgG,EAAQ24B,WAEpE,MAAMj6B,QAAe8yF,EACrBzhF,EAAQrR,GACR1E,KAAK8B,KAAK,YAAa4C,EAC3B,CACA,MAAO6a,GACH,GAAIA,aAAiBo2E,IAAiB3vF,EAAQixF,eAE1C,YADAlhF,IAGJuN,EAAO/D,GACPvf,KAAK8B,KAAK,QAASyd,EACvB,CACA,QACIvf,MAAK,GACT,IACDgG,GACHhG,KAAK8B,KAAK,OACV9B,MAAK,GAAoB,GAEjC,CACA,YAAMg4F,CAAOC,EAAWjyF,GACpB,OAAO4gB,QAAQmT,IAAIk+D,EAAUnxF,KAAI8yB,MAAO09D,GAAct3F,KAAKw/B,IAAI83D,EAAWtxF,KAC9E,CAIA,KAAAy9B,GACI,OAAKzjC,MAAK,GAGVA,MAAK,GAAY,EACjBA,MAAK,IACEA,MAJIA,IAKf,CAIA,KAAAwjC,GACIxjC,MAAK,GAAY,CACrB,CAIA,KAAAysB,GACIzsB,MAAK,EAAS,IAAIA,MAAK,CAC3B,CAMA,aAAMk4F,GAEuB,IAArBl4F,MAAK,EAAOmpB,YAGVnpB,MAAK,EAAS,QACxB,CAQA,oBAAMm4F,CAAeC,GAEbp4F,MAAK,EAAOmpB,KAAOivE,SAGjBp4F,MAAK,EAAS,QAAQ,IAAMA,MAAK,EAAOmpB,KAAOivE,GACzD,CAMA,YAAMC,GAEoB,IAAlBr4F,MAAK,GAAuC,IAArBA,MAAK,EAAOmpB,YAGjCnpB,MAAK,EAAS,OACxB,CACA,OAAM,CAASG,EAAOmJ,GAClB,OAAO,IAAIsd,SAAQ7Q,IACf,MAAM1V,EAAW,KACTiJ,IAAWA,MAGftJ,KAAK6C,IAAI1C,EAAOE,GAChB0V,IAAS,EAEb/V,KAAK2C,GAAGxC,EAAOE,EAAS,GAEhC,CAIA,QAAI8oB,GACA,OAAOnpB,MAAK,EAAOmpB,IACvB,CAMA,MAAAmvE,CAAOtyF,GAEH,OAAOhG,MAAK,EAAOsJ,OAAOtD,GAAStE,MACvC,CAIA,WAAIgf,GACA,OAAO1gB,MAAK,CAChB,CAIA,YAAIwuD,GACA,OAAOxuD,MAAK,CAChB,kHCjSJ,MAAMu4F,EAAI3+D,eAAe9tB,EAAG+sD,EAAGhrC,EAAGjJ,EAAI,SACnCpjB,OAAI,EAAQ27D,EAAI,CAAC,GAClB,IAAI17D,EACJ,OAA2BA,EAApBo3D,aAAa2/B,KAAW3/B,QAAcA,IAAKr3D,IAAM27D,EAAElrB,YAAczwC,GAAI27D,EAAE,kBAAoBA,EAAE,gBAAkB,kCAAmC,IAAEs7B,QAAQ,CACjKr7D,OAAQ,MACR5zB,IAAKsC,EACLsC,KAAM3M,EACNk9B,OAAQ9Q,EACR6qE,iBAAkB9zE,EAClBuY,QAASggC,GAEb,EAAGw7B,EAAI,SAAS7sF,EAAG+sD,EAAGhrC,GACpB,OAAa,IAANgrC,GAAW/sD,EAAEqd,MAAQ0E,EAAIjH,QAAQ7Q,QAAQ,IAAIyiF,KAAK,CAAC1sF,GAAI,CAAEiC,KAAMjC,EAAEiC,MAAQ,8BAAiC6Y,QAAQ7Q,QAAQ,IAAIyiF,KAAK,CAAC1sF,EAAE3K,MAAM03D,EAAGA,EAAIhrC,IAAK,CAAE9f,KAAM,6BACzK,EAOGvI,EAAI,SAASsG,OAAI,GAClB,MAAM+sD,EAAIrgD,OAAOs4B,IAAI8nD,WAAWviE,OAAOwiE,eACvC,GAAIhgC,GAAK,EACP,OAAO,EACT,IAAKhyD,OAAOgyD,GACV,OAAO,SACT,MAAMhrC,EAAIpL,KAAKD,IAAI3b,OAAOgyD,GAAI,SAC9B,YAAa,IAAN/sD,EAAe+hB,EAAIpL,KAAKD,IAAIqL,EAAGpL,KAAKg3B,KAAK3tC,EAAI,KACtD,EACA,IAAIvB,EAAoB,CAAEuB,IAAOA,EAAEA,EAAEgtF,YAAc,GAAK,cAAehtF,EAAEA,EAAEitF,UAAY,GAAK,YAAajtF,EAAEA,EAAEktF,WAAa,GAAK,aAAcltF,EAAEA,EAAEmtF,SAAW,GAAK,WAAYntF,EAAEA,EAAEotF,UAAY,GAAK,YAAaptF,EAAEA,EAAEqyC,OAAS,GAAK,SAAUryC,GAAnN,CAAuNvB,GAAK,CAAC,GACrP,IAAIuyD,EAAK,MACPq8B,QACAC,MACAC,WACAC,QACAC,MACAC,UAAY,EACZC,WAAa,EACbC,QAAU,EACVC,YACAC,UAAY,KACZ,WAAAr1E,CAAYs0C,EAAGhrC,GAAI,EAAIjJ,EAAGpjB,GACxB,MAAM27D,EAAI16C,KAAKmN,IAAIpqB,IAAM,EAAIid,KAAKg3B,KAAK70B,EAAIpf,KAAO,EAAG,KACrDxF,KAAKm5F,QAAUtgC,EAAG74D,KAAKq5F,WAAaxrE,GAAKroB,IAAM,GAAK23D,EAAI,EAAGn9D,KAAKs5F,QAAUt5F,KAAKq5F,WAAal8B,EAAI,EAAGn9D,KAAKu5F,MAAQ30E,EAAG5kB,KAAKo5F,MAAQ53F,EAAGxB,KAAK25F,YAAc,IAAIv7D,eAC5J,CACA,UAAI9sB,GACF,OAAOtR,KAAKm5F,OACd,CACA,QAAI1/D,GACF,OAAOz5B,KAAKo5F,KACd,CACA,aAAIS,GACF,OAAO75F,KAAKq5F,UACd,CACA,UAAIS,GACF,OAAO95F,KAAKs5F,OACd,CACA,QAAInwE,GACF,OAAOnpB,KAAKu5F,KACd,CACA,aAAIQ,GACF,OAAO/5F,KAAKy5F,UACd,CACA,YAAIzqE,CAAS6pC,GACX74D,KAAK45F,UAAY/gC,CACnB,CACA,YAAI7pC,GACF,OAAOhvB,KAAK45F,SACd,CACA,YAAII,GACF,OAAOh6F,KAAKw5F,SACd,CAIA,YAAIQ,CAASnhC,GACX,GAAIA,GAAK74D,KAAKu5F,MAEZ,OADAv5F,KAAK05F,QAAU15F,KAAKq5F,WAAa,EAAI,OAAGr5F,KAAKw5F,UAAYx5F,KAAKu5F,OAGhEv5F,KAAK05F,QAAU,EAAG15F,KAAKw5F,UAAY3gC,EAAuB,IAApB74D,KAAKy5F,aAAqBz5F,KAAKy5F,YAAa,IAAqBv+E,MAAQm7B,UACjH,CACA,UAAIxV,GACF,OAAO7gC,KAAK05F,OACd,CAIA,UAAI74D,CAAOg4B,GACT74D,KAAK05F,QAAU7gC,CACjB,CAIA,UAAIl6B,GACF,OAAO3+B,KAAK25F,YAAYh7D,MAC1B,CAIA,MAAAhS,GACE3sB,KAAK25F,YAAYv3E,QAASpiB,KAAK05F,QAAU,CAC3C,GAuBF,MAA8G1uC,EAAtF,QAAZl/C,GAAyG,YAAtF,UAAIsf,OAAO,YAAYE,SAAU,UAAIF,OAAO,YAAYu2D,OAAO71E,EAAE4lB,KAAKpG,QAA1F,IAACxf,EACRmuF,EAAoB,CAAEnuF,IAAOA,EAAEA,EAAEouF,KAAO,GAAK,OAAQpuF,EAAEA,EAAEitF,UAAY,GAAK,YAAajtF,EAAEA,EAAEquF,OAAS,GAAK,SAAUruF,GAA/F,CAAmGmuF,GAAK,CAAC,GACjI,MAAMG,EAEJC,mBACAC,UAEAC,aAAe,GACfC,UAAY,IAAI,EAAE,CAAE9+D,YAAa,IACjC++D,WAAa,EACbC,eAAiB,EACjBC,aAAe,EACfC,WAAa,GAOb,WAAAr2E,CAAYs0C,GAAI,EAAIhrC,GAClB,GAAI7tB,KAAKs6F,UAAYzhC,GAAIhrC,EAAG,CAC1B,MAAMjJ,GAAI,WAAK8M,IAAKlwB,GAAI,QAAE,aAAaojB,KACvC,IAAKA,EACH,MAAM,IAAIpF,MAAM,yBAClBqO,EAAI,IAAI,KAAE,CACR2F,GAAI,EACJkK,MAAO9Y,EACPgR,YAAa,KAAEiG,IACfnG,KAAM,UAAU9Q,IAChBtT,OAAQ9P,GAEZ,CACAxB,KAAKg7B,YAAcnN,EAAGm9B,EAAEh3B,MAAM,+BAAgC,CAC5DgH,YAAah7B,KAAKg7B,YAClBtF,KAAM11B,KAAK01B,KACXkvD,SAAU/rB,EACVgiC,cAAer1F,KAEnB,CAIA,eAAIw1B,GACF,OAAOh7B,KAAKq6F,kBACd,CAIA,eAAIr/D,CAAY69B,GACd,IAAKA,EACH,MAAM,IAAIr5C,MAAM,8BAClBwrC,EAAEh3B,MAAM,kBAAmB,CAAE4K,OAAQi6B,IAAM74D,KAAKq6F,mBAAqBxhC,CACvE,CAIA,QAAInjC,GACF,OAAO11B,KAAKq6F,mBAAmB/oF,MACjC,CAIA,SAAIyO,GACF,OAAO/f,KAAKu6F,YACd,CACA,KAAA5hE,GACE34B,KAAKu6F,aAAaphF,OAAO,EAAGnZ,KAAKu6F,aAAa74F,QAAS1B,KAAKw6F,UAAU/tE,QAASzsB,KAAKy6F,WAAa,EAAGz6F,KAAK06F,eAAiB,EAAG16F,KAAK26F,aAAe,CACnJ,CAIA,KAAAn3D,GACExjC,KAAKw6F,UAAUh3D,QAASxjC,KAAK26F,aAAe,CAC9C,CAIA,KAAAl3D,GACEzjC,KAAKw6F,UAAU/2D,QAASzjC,KAAK26F,aAAe,EAAG36F,KAAK86F,aACtD,CAIA,QAAIv/D,GACF,MAAO,CACLpS,KAAMnpB,KAAKy6F,WACXh0B,SAAUzmE,KAAK06F,eACf75D,OAAQ7gC,KAAK26F,aAEjB,CACA,WAAAG,GACE,MAAMjiC,EAAI74D,KAAKu6F,aAAazzF,KAAK8d,GAAMA,EAAEuE,OAAMvgB,QAAO,CAACgc,EAAGpjB,IAAMojB,EAAIpjB,GAAG,GAAIqsB,EAAI7tB,KAAKu6F,aAAazzF,KAAK8d,GAAMA,EAAEo1E,WAAUpxF,QAAO,CAACgc,EAAGpjB,IAAMojB,EAAIpjB,GAAG,GAChJxB,KAAKy6F,WAAa5hC,EAAG74D,KAAK06F,eAAiB7sE,EAAyB,IAAtB7tB,KAAK26F,eAAuB36F,KAAK26F,aAAe36F,KAAKw6F,UAAUrxE,KAAO,EAAI,EAAI,EAC9H,CACA,WAAA4xE,CAAYliC,GACV74D,KAAK46F,WAAWp6F,KAAKq4D,EACvB,CAOA,MAAAt1B,CAAOs1B,EAAGhrC,EAAGjJ,GACX,MAAMpjB,EAAI,GAAGojB,GAAK5kB,KAAK01B,QAAQmjC,EAAEtyD,QAAQ,MAAO,OAASmtC,OAAQypB,GAAM,IAAIlzD,IAAIzI,GAAIC,EAAI07D,GAAI,QAAE37D,EAAEL,MAAMg8D,EAAEz7D,SACvGspD,EAAEh3B,MAAM,aAAanG,EAAE7sB,WAAWS,KAClC,MAAMu5F,EAAIx1F,EAAEqoB,EAAE1E,MAAOo/C,EAAU,IAANyyB,GAAWntE,EAAE1E,KAAO6xE,GAAKh7F,KAAKs6F,UAAW3zF,EAAI,IAAIm2D,EAAGt7D,GAAI+mE,EAAG16C,EAAE1E,KAAM0E,GAC5F,OAAO7tB,KAAKu6F,aAAa/5F,KAAKmG,GAAI3G,KAAK86F,cAAe,IAAI,GAAElhE,MAAOqhE,EAAGn1B,EAAGo1B,KACvE,GAAIA,EAAEv0F,EAAEgmB,QAAS47C,EAAG,CAClBvd,EAAEh3B,MAAM,8BAA+B,CAAEyF,KAAM5L,EAAG0V,OAAQ58B,IAC1D,MAAMgoD,QAAUgqC,EAAE9qE,EAAG,EAAGlnB,EAAEwiB,MAAOqqE,EAAI55D,UACnC,IACEjzB,EAAEqoB,eAAiBupE,EACjB92F,EACAktD,EACAhoD,EAAEg4B,QACDlsB,IACC9L,EAAEqzF,SAAWrzF,EAAEqzF,SAAWvnF,EAAE0oF,MAAOn7F,KAAK86F,aAAa,QAEvD,EACA,CACE,aAAcjtE,EAAEyL,aAAe,IAC/B,eAAgBzL,EAAE9f,OAEnBpH,EAAEqzF,SAAWrzF,EAAEwiB,KAAMnpB,KAAK86F,cAAe9vC,EAAEh3B,MAAM,yBAAyBnG,EAAE7sB,OAAQ,CAAEy4B,KAAM5L,EAAG0V,OAAQ58B,IAAMs0F,EAAEt0F,EACpH,CAAE,MAAO8L,GACP,GAAIA,aAAa,KAEf,OADA9L,EAAEk6B,OAASt2B,EAAE4zC,YAAQ2nB,EAAE,6BAGzBrzD,GAAGuc,WAAaroB,EAAEqoB,SAAWvc,EAAEuc,UAAWroB,EAAEk6B,OAASt2B,EAAE4zC,OAAQ6M,EAAEzrC,MAAM,oBAAoBsO,EAAE7sB,OAAQ,CAAEue,MAAO9M,EAAGgnB,KAAM5L,EAAG0V,OAAQ58B,IAAMm/D,EAAE,4BAC5I,CACA9lE,KAAK46F,WAAW7vF,SAAS0H,IACvB,IACEA,EAAE9L,EACJ,CAAE,MACF,IACA,EAEJ3G,KAAKw6F,UAAUh7D,IAAIg0D,GAAIxzF,KAAK86F,aAC9B,KAAO,CACL9vC,EAAEh3B,MAAM,8BAA+B,CAAEyF,KAAM5L,EAAG0V,OAAQ58B,IAC1D,MAAMgoD,QA9PN/0B,eAAe9tB,GACrB,MAAiJtK,EAAI,IAA3I,QAAE,gBAAe,WAAKkwB,0BAA+B,IAAI9vB,MAAM,KAAKkF,KAAI,IAAM2b,KAAKi3B,MAAsB,GAAhBj3B,KAAKw3B,UAAev0C,SAAS,MAAK/B,KAAK,MAAwBw5D,EAAIrxD,EAAI,CAAEmmC,YAAanmC,QAAM,EAC/L,aAAa,IAAE2sF,QAAQ,CACrBr7D,OAAQ,QACR5zB,IAAKhI,EACL27B,QAASggC,IACP37D,CACN,CAuPwBswD,CAAGrwD,GAAI+xF,EAAI,GAC3B,IAAK,IAAI/gF,EAAI,EAAGA,EAAI9L,EAAEmzF,OAAQrnF,IAAK,CACjC,MAAM+zC,EAAI/zC,EAAIuoF,EAAGI,EAAI34E,KAAKmN,IAAI42B,EAAIw0C,EAAGr0F,EAAEwiB,MAAOkyE,EAAI,IAAM1C,EAAE9qE,EAAG24B,EAAGw0C,GAAIM,EAAI,IAAM/C,EAC5E,GAAG5pC,KAAKl8C,EAAI,IACZ4oF,EACA10F,EAAEg4B,QACF,IAAM3+B,KAAK86F,eACXr5F,EACA,CACE,aAAcosB,EAAEyL,aAAe,IAC/B,kBAAmBzL,EAAE1E,KACrB,eAAgB,6BAElBnM,MAAK,KACLrW,EAAEqzF,SAAWrzF,EAAEqzF,SAAWgB,CAAC,IAC1B99E,OAAO5O,IACR,MAA8B,MAAxBA,GAAG0gB,UAAU6R,QAAkBmqB,EAAEzrC,MAAM,mGAAoG,CAAEA,MAAOjR,EAAGi1B,OAAQ58B,IAAMA,EAAEgmB,SAAUhmB,EAAEk6B,OAASt2B,EAAE4zC,OAAQ7vC,IAAMA,aAAa,OAAM08C,EAAEzrC,MAAM,SAAS9M,EAAI,KAAK+zC,OAAO40C,qBAAsB,CAAE77E,MAAOjR,EAAGi1B,OAAQ58B,IAAMA,EAAEgmB,SAAUhmB,EAAEk6B,OAASt2B,EAAE4zC,QAAS7vC,EAAE,IAE5VklF,EAAEhzF,KAAKR,KAAKw6F,UAAUh7D,IAAI87D,GAC5B,CACA,UACQ10E,QAAQmT,IAAIy5D,GAAIxzF,KAAK86F,cAAen0F,EAAEqoB,eAAiB,IAAEypE,QAAQ,CACrEr7D,OAAQ,OACR5zB,IAAK,GAAGmlD,UACRxxB,QAAS,CACP,aAActP,EAAEyL,aAAe,IAC/B,kBAAmBzL,EAAE1E,KACrB8oB,YAAaxwC,KAEbzB,KAAK86F,cAAen0F,EAAEk6B,OAASt2B,EAAE0uF,SAAUjuC,EAAEh3B,MAAM,yBAAyBnG,EAAE7sB,OAAQ,CAAEy4B,KAAM5L,EAAG0V,OAAQ58B,IAAMs0F,EAAEt0F,EACvH,CAAE,MAAO8L,GACPA,aAAa,MAAK9L,EAAEk6B,OAASt2B,EAAE4zC,OAAQ2nB,EAAE,+BAAiCn/D,EAAEk6B,OAASt2B,EAAE4zC,OAAQ2nB,EAAE,0CAA2C,IAAE2yB,QAAQ,CACpJr7D,OAAQ,SACR5zB,IAAK,GAAGmlD,KAEZ,CACA3uD,KAAK46F,WAAW7vF,SAAS0H,IACvB,IACEA,EAAE9L,EACJ,CAAE,MACF,IAEJ,CACA,OAAO3G,KAAKw6F,UAAUnC,SAASr7E,MAAK,IAAMhd,KAAK24B,UAAUhyB,CAAC,GAE9D,EAEF,SAAS0W,EAAEvR,EAAG+sD,EAAGhrC,EAAGjJ,EAAGpjB,EAAG27D,EAAG17D,EAAGu5F,GAC9B,IAEIr0F,EAFA4hE,EAAgB,mBAALz8D,EAAkBA,EAAE9F,QAAU8F,EAG7C,GAFA+sD,IAAM0P,EAAEt6D,OAAS4qD,EAAG0P,EAAEgzB,gBAAkB1tE,EAAG06C,EAAEizB,WAAY,GAAK52E,IAAM2jD,EAAE16D,YAAa,GAAKsvD,IAAMoL,EAAEkzB,SAAW,UAAYt+B,GAEnH17D,GAAKkF,EAAI,SAASm/D,KACpBA,EAAIA,GACJ9lE,KAAK+O,QAAU/O,KAAK+O,OAAO2sF,YAC3B17F,KAAK0M,QAAU1M,KAAK0M,OAAOqC,QAAU/O,KAAK0M,OAAOqC,OAAO2sF,oBAAyBC,oBAAsB,MAAQ71B,EAAI61B,qBAAsBn6F,GAAKA,EAAEN,KAAKlB,KAAM8lE,GAAIA,GAAKA,EAAE81B,uBAAyB91B,EAAE81B,sBAAsBp8D,IAAI/9B,EAC7N,EAAG8mE,EAAEszB,aAAel1F,GAAKnF,IAAMmF,EAAIq0F,EAAI,WACrCx5F,EAAEN,KACAlB,MACCuoE,EAAE16D,WAAa7N,KAAK0M,OAAS1M,MAAM87F,MAAMn0E,SAASo0E,WAEvD,EAAIv6F,GAAImF,EACN,GAAI4hE,EAAE16D,WAAY,CAChB06D,EAAEyzB,cAAgBr1F,EAClB,IAAI41D,EAAIgM,EAAEt6D,OACVs6D,EAAEt6D,OAAS,SAASitF,EAAGvsC,GACrB,OAAOhoD,EAAEzF,KAAKytD,GAAI4N,EAAE2+B,EAAGvsC,EACzB,CACF,KAAO,CACL,IAAIssC,EAAI1yB,EAAEzgD,aACVygD,EAAEzgD,aAAemzE,EAAI,GAAG55F,OAAO45F,EAAGt0F,GAAK,CAACA,EAC1C,CACF,MAAO,CACL3D,QAAS8I,EACT9F,QAASuiE,EAEb,CAiCA,MAAM0zB,EAV2B5+E,EAtBtB,CACTrc,KAAM,aACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,OAIN,WACP,IAAI6qD,EAAI74D,KAAM6tB,EAAIgrC,EAAEvvC,MAAMD,GAC1B,OAAOwE,EAAE,OAAQgrC,EAAEtvC,GAAG,CAAEC,YAAa,mCAAoCnZ,MAAO,CAAE,eAAewoD,EAAE5vC,OAAQ,KAAW,aAAc4vC,EAAE5vC,MAAO+mB,KAAM,OAASrtC,GAAI,CAAEmU,MAAO,SAAS8N,GAChL,OAAOi0C,EAAEnvC,MAAM,QAAS9E,EAC1B,IAAO,OAAQi0C,EAAElvC,QAAQ,GAAK,CAACkE,EAAE,MAAO,CAAErE,YAAa,4BAA6BnZ,MAAO,CAAE+qD,KAAMvC,EAAE3vC,UAAWqb,MAAOs0B,EAAE1vC,KAAMk0B,OAAQwb,EAAE1vC,KAAM+yE,QAAS,cAAiB,CAACruE,EAAE,OAAQ,CAAExd,MAAO,CAAEy1D,EAAG,2OAA8O,CAACjN,EAAE5vC,MAAQ4E,EAAE,QAAS,CAACgrC,EAAEjvC,GAAGivC,EAAEhvC,GAAGgvC,EAAE5vC,UAAY4vC,EAAE/uC,UACne,GAAQ,IAIN,EACA,KACA,KACA,KACA,MAEY9mB,QAgCRm5F,GAV2B9+E,EAtBL,CAC1Brc,KAAM,WACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,OAIN,WACP,IAAI6qD,EAAI74D,KAAM6tB,EAAIgrC,EAAEvvC,MAAMD,GAC1B,OAAOwE,EAAE,OAAQgrC,EAAEtvC,GAAG,CAAEC,YAAa,iCAAkCnZ,MAAO,CAAE,eAAewoD,EAAE5vC,OAAQ,KAAW,aAAc4vC,EAAE5vC,MAAO+mB,KAAM,OAASrtC,GAAI,CAAEmU,MAAO,SAAS8N,GAC9K,OAAOi0C,EAAEnvC,MAAM,QAAS9E,EAC1B,IAAO,OAAQi0C,EAAElvC,QAAQ,GAAK,CAACkE,EAAE,MAAO,CAAErE,YAAa,4BAA6BnZ,MAAO,CAAE+qD,KAAMvC,EAAE3vC,UAAWqb,MAAOs0B,EAAE1vC,KAAMk0B,OAAQwb,EAAE1vC,KAAM+yE,QAAS,cAAiB,CAACruE,EAAE,OAAQ,CAAExd,MAAO,CAAEy1D,EAAG,8CAAiD,CAACjN,EAAE5vC,MAAQ4E,EAAE,QAAS,CAACgrC,EAAEjvC,GAAGivC,EAAEhvC,GAAGgvC,EAAE5vC,UAAY4vC,EAAE/uC,UACtS,GAAQ,IAIN,EACA,KACA,KACA,KACA,MAEY9mB,QAgCR8sD,GAV2BzyC,EAtBL,CAC1Brc,KAAM,aACNgoB,MAAO,CAAC,SACRlb,MAAO,CACLmb,MAAO,CACLlb,KAAMnD,QAERse,UAAW,CACTnb,KAAMnD,OACNoD,QAAS,gBAEXmb,KAAM,CACJpb,KAAMlH,OACNmH,QAAS,OAIN,WACP,IAAI6qD,EAAI74D,KAAM6tB,EAAIgrC,EAAEvvC,MAAMD,GAC1B,OAAOwE,EAAE,OAAQgrC,EAAEtvC,GAAG,CAAEC,YAAa,mCAAoCnZ,MAAO,CAAE,eAAewoD,EAAE5vC,OAAQ,KAAW,aAAc4vC,EAAE5vC,MAAO+mB,KAAM,OAASrtC,GAAI,CAAEmU,MAAO,SAAS8N,GAChL,OAAOi0C,EAAEnvC,MAAM,QAAS9E,EAC1B,IAAO,OAAQi0C,EAAElvC,QAAQ,GAAK,CAACkE,EAAE,MAAO,CAAErE,YAAa,4BAA6BnZ,MAAO,CAAE+qD,KAAMvC,EAAE3vC,UAAWqb,MAAOs0B,EAAE1vC,KAAMk0B,OAAQwb,EAAE1vC,KAAM+yE,QAAS,cAAiB,CAACruE,EAAE,OAAQ,CAAExd,MAAO,CAAEy1D,EAAG,mDAAsD,CAACjN,EAAE5vC,MAAQ4E,EAAE,QAAS,CAACgrC,EAAEjvC,GAAGivC,EAAEhvC,GAAGgvC,EAAE5vC,UAAY4vC,EAAE/uC,UAC3S,GAAQ,IAIN,EACA,KACA,KACA,KACA,MAEY9mB,QAuBRqiD,IAAI,SAAK+2C,eACf,CAAC,CAAEC,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kEAAmE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGhWC,OAAQ,CAAC,iOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,kCAAmC,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,mHAAqHC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,2EAI9+BC,OAAQ,CAAC,0TAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,qBAAsB,qBAAsB,yBAA0B,qBAAsB,wBAAyB,0BAA4B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,oCAAqC,oCAAqC,wCAAyC,oCAAqC,uCAAwC,yCAA2C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,kBAAoB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,oBAAsBI,OAAQ,CAAEP,MAAO,SAAUG,OAAQ,CAAC,UAAY,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,6BAA+BK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,UAAY,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,wBAA0B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,mBAAqB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,gGAAkG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,8BAAgCM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,YAAc,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,kBAAoB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,6BAA+B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,8BAAgC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,6BAA+B,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,oBAAqB,oBAAqB,oBAAqB,oBAAqB,oBAAqB,sBAAwB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,kBAAoB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,cAAgB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,kBAAoB,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,qEAAuE,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,wCAA0C,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,+DAAqE,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iFAAkF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,qHAAuHC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG73HC,OAAQ,CAAC,wUAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,MAAOC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,oCAAqC,gBAAiB,kEAAmE,eAAgB,4BAA6Bq/D,SAAU,MAAO,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,uDAGl6BC,OAAQ,CAAC,6OAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,8BAA+B,iCAAmC,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,2CAA4C,8CAAgD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,8BAAgC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,6BAA+B,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0BK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,WAAa,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,+FAAiG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,qDAAuDM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,UAAY,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,kBAAoB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,YAAc,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,2BAA6B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,0BAA4B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,0CAA4C,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,sCAAwC,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,sBAAuB,4BAA8B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,sBAAwB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,mBAAqB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,kBAAoB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,kCAAoC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,gFAAsF,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,iDAAkD,gBAAiB,oEAAqE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,oEAGjrGC,OAAQ,CAAC,2PAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,aAAe,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,uBAAyB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,eAAiB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAA6B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,mEAAoE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,0KAA4KC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGroCC,OAAQ,CAAC,4WAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gFAAiF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGz6BC,OAAQ,CAAC,kPAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gFAAiF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGz6BC,OAAQ,CAAC,kPAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,mUAAqUC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGrrCC,OAAQ,CAAC,igBAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,0GAA4GC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG79BC,OAAQ,CAAC,ySAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,qDAAsD,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,qHAI/6BC,OAAQ,CAAC,2PAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,4BAA8B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,kBAAoB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,sBAAwBC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,YAAc,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,0BAA4B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,qCAAuC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,aAAe,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,yBAA+B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,gDAAiD,gBAAiB,8DAA+D,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gHAAkHC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,mEAG1mCC,OAAQ,CAAC,oUAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,oBAAsB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,6BAA+B9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,oBAA0B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,0CAA2C,gBAAiB,kFAAmF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gHAAkHC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,mFAIpiCC,OAAQ,CAAC,qVAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,yBAA0B,yBAA0B,yBAA0B,2BAA6B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,qCAAsC,qCAAsC,qCAAsC,uCAAyC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,oBAAsB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BI,OAAQ,CAAEP,MAAO,SAAUG,OAAQ,CAAC,WAAa,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,eAAiB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,iFAAmF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,kCAAoCM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,gBAAkB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,mBAAqB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,wCAA0C,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,qCAAuC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,gCAAkC,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,yBAA0B,4BAA6B,4BAA6B,8BAAgC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,mBAAqB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,uBAAyB,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,6FAA+F,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,uCAAyC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,2FAAiG,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kFAAmF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,6EAA+EC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGtyHC,OAAQ,CAAC,iSAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,wCAAyC,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,iFAIj6BC,OAAQ,CAAC,6OAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,uBAAwB,6BAA+B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,mCAAoC,yCAA2C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,gCAAkC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,kBAAoB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,4BAA8BI,OAAQ,CAAEP,MAAO,SAAUG,OAAQ,CAAC,aAAe,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,6BAA+B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,YAAc,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,yBAA2B,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,6FAA+F,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,oCAAsCM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,OAAS,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,+BAAiC,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,qBAAuB,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,iCAAmC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,wBAA0B,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,wBAAyB,8BAAgC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,iBAAmB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,sBAAwB,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,+FAAiG,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,uCAAyC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,sEAA4E,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,+CAAgD,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,wFAInjHC,OAAQ,CAAC,oPAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,yBAA0B,4BAA8B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,sCAAuC,yCAA2C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mCAAqC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,uBAAyB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,2BAA6BI,OAAQ,CAAEP,MAAO,SAAUG,OAAQ,CAAC,cAAgB,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,mCAAqC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0BK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,eAAiB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,mGAAqG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,yCAA2CM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,QAAU,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,iBAAmB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,aAAe,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,iBAAmB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,qCAAuC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,uCAAyC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,2BAA4B,iCAAmC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,0BAA4B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,sBAAwB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,+BAAiC,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,wHAA0H,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,yCAA2C,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,iFAAuF,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,+CAAgD,gBAAiB,4EAA6E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,wFAI3rHC,OAAQ,CAAC,oQAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,yBAA0B,4BAA8B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,sCAAuC,yCAA2C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,kCAAoC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,uBAAyB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,iCAAmCI,OAAQ,CAAEP,MAAO,SAAUG,OAAQ,CAAC,cAAgB,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,mCAAqC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0BK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,eAAiB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,oGAAsG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,yCAA2CM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,QAAU,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,iBAAmB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,aAAe,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,iBAAmB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,qCAAuC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,uCAAyC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,6BAA8B,iCAAmC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,0BAA4B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,sBAAwB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,+BAAiC,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,wHAA0H,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,yCAA2C,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,mFAAyF,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,gBAAiB,gBAAiB,8DAA+D,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,mCAGlpHC,OAAQ,CAAC,oNAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,qCAAuC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,qBAAuB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,gCAAkCC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,aAAe,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,0BAA4B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,qCAAuC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,aAAe,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,4BAAkC,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,0EAA2E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG/iCC,OAAQ,CAAC,4OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yCAA0C,gBAAiB,oFAAqF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,2GAI77BC,OAAQ,CAAC,sQAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,wBAAyB,2BAA6B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,qCAAsC,wCAA0C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,gBAAkB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,uBAAyBC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,QAAU,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,mBAAqBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,yBAA2B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,uFAAyF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,+BAAiC,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,gBAAkB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,kBAAoB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,0BAA4B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,8BAAgC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,iBAAkB,uBAAyB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,iBAAmB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,iBAAmB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,qCAAuC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,0EAAgF,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kEAAmE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG17FC,OAAQ,CAAC,iOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,wBAAyB,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,uLAMz7BC,OAAQ,CAAC,qQAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,+BAAgC,gCAAiC,kCAAoC,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,4CAA6C,6CAA8C,+CAAiD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,4FAA8F,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,6CAA+CM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,UAAY,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,kBAAoB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,YAAc,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,yBAA2B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,mDAAqD,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,8CAAgD,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,0CAA4C,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,sBAAuB,0BAA2B,4BAA8B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAAyB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,mBAAqB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,0BAA4B,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,mCAAqC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,8EAAoF,CAAER,OAAQ,SAAUC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,oFAAqF,eAAgB,4BAA6Bq/D,SAAU,SAAU,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGv1GC,OAAQ,CAAC,8RAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,sBAAwB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,YAAc,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,YAAc,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAA6B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,wBAAyB,gBAAiB,+EAAgF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,2CAG9jCC,OAAQ,CAAC,uRAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,YAAc,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAA6B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,2EAA4E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGvjCC,OAAQ,CAAC,oRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8EAA+E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG98BC,OAAQ,CAAC,uRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gFAAiF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGh9BC,OAAQ,CAAC,yRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,wFAAyF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGx9BC,OAAQ,CAAC,iSAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6EAA8E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG78BC,OAAQ,CAAC,sRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+EAAgF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG/8BC,OAAQ,CAAC,wRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8EAA+E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG98BC,OAAQ,CAAC,uRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4EAA6E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,yEAI58BC,OAAQ,CAAC,qRAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,sBAAwB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,YAAc,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,aAAe,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA8B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+EAAgF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGpkCC,OAAQ,CAAC,wRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4EAA6E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG58BC,OAAQ,CAAC,qRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,0EAA2E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG18BC,OAAQ,CAAC,mRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iFAAkF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGj9BC,OAAQ,CAAC,0RAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8EAA+E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG98BC,OAAQ,CAAC,uRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iFAAkF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGj9BC,OAAQ,CAAC,0RAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6EAA8E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG78BC,OAAQ,CAAC,sRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,mBAAoB,gBAAiB,8EAA+E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,oDAIj6BC,OAAQ,CAAC,0OAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,8BAAgC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,uBAAyB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,uBAAyBC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,SAAW,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,0BAA4B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,kCAAoC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,WAAa,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA8B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,oDAAqD,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,uEAG9hCC,OAAQ,CAAC,yPAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,oCAAsC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,uBAAyB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,iCAAmCC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,uCAAyC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,cAAgB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA8B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,wBAAyB,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,+BAAiCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,2CAGvhCC,OAAQ,CAAC,6NAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,yBAA2B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,eAAiB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,oBAAsBC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,eAAiB,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,iCAAmC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,0BAA4B9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,aAAe,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,yBAA+B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,6CAA8C,gBAAiB,6EAA8E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,gEAGniCC,OAAQ,CAAC,mQAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,gCAAkC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,6BAA+BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,UAAY,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,uBAAyB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,qCAAuC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,gBAAkB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,0BAAgC,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGjhCC,OAAQ,CAAC,+NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,qBAAsB,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,mFAAqFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,oFAKj8BC,OAAQ,CAAC,6QAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,6BAA8B,8BAA+B,gCAAkC,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,4CAA6C,6CAA8C,+CAAiD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,mBAAqB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,gCAAkCI,OAAQ,CAAEP,MAAO,SAAUG,OAAQ,CAAC,YAAc,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,gCAAkC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,uBAAyBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,gCAAkC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,0FAA4F,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,kDAAoDM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,YAAc,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,qBAAuB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,aAAe,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,sBAAwB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,2CAA6C,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,6CAA+C,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4CAA8C,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,qBAAsB,2BAA4B,6BAA+B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,YAAc,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,gCAAkC,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,kCAAoC,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,qHAAuH,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,8CAAgD,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,uFAA6F,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,yEAA0E,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,6FAA+FC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG52HC,OAAQ,CAAC,qSAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,iDAAkD,gBAAiB,iEAAkE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,0JAK56BC,OAAQ,CAAC,wPAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,gCAAiC,mCAAqC,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,6CAA8C,gDAAkD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,8BAAgC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,wBAA0B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,oBAAsBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,6FAA+F,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,4CAA8CM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,iBAAmB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,0BAA4B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,wCAA0C,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,8CAAgD,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,yCAA2C,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,sBAAuB,6BAA+B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAAyB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,oBAAsB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,sBAAwB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,mCAAqC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,kFAAwF,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,8HAAgIC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG1vGC,OAAQ,CAAC,4TAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,yEAA0E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGl6BC,OAAQ,CAAC,2OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iEAAkE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,wGAA0GC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG59BC,OAAQ,CAAC,wSAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,MAAOC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,uEAAwE,eAAgB,4BAA6Bq/D,SAAU,MAAO,eAAgB,oFAAsFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGh9BC,OAAQ,CAAC,2RAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kEAAmE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGr5BC,OAAQ,CAAC,iOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,kBAAmB,gBAAiB,+EAAgF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,mFAIj6BC,OAAQ,CAAC,0OAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,qBAAuB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,4BAA8BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,cAAgB,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,6BAA+B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,2BAA6B9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,kBAAoB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,0BAAgC,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iEAAkE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG/gCC,OAAQ,CAAC,gOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,oEAAqE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGv5BC,OAAQ,CAAC,mOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,oCAAqC,gBAAiB,mEAAoE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,+HAK15BC,OAAQ,CAAC,sOAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,8BAAgC,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,8CAAgD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,4BAA8B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,mBAAqB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,sBAAwBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,qCAAuC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,mBAAqB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,kFAAoF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,+CAAiDM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,qBAAuB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,8BAAgC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,gCAAkC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4BAA8B,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,0BAA4B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,2BAA6B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,wBAA0B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,kBAAoB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,8CAAgD,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,8FAAoG,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6DAA8D,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGh8FC,OAAQ,CAAC,qNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yCAA0C,gBAAiB,kEAAmE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,sDAAwDC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4DAG37BC,OAAQ,CAAC,uQAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,yBAA0B,4BAA8B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,qCAAsC,wCAA0C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,6BAA+B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,2BAA6B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,2BAA6BK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,gBAAkB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4BAA8B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,0BAA4B,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,+FAAiG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,0CAA4CM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,cAAgB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,UAAY,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,qBAAuB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,mBAAqB,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,qCAAuC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4BAA8B,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,sBAAuB,yBAA2B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,iBAAmB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,yBAA2B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,0CAA4C,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,2FAAiG,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,iBAAkB,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,kGAK9iGC,OAAQ,CAAC,8PAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,4BAA6B,4BAA6B,8BAAgC,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,yCAA0C,yCAA0C,2CAA6C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,qBAAuB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,6BAA+B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,0BAA4BK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,+BAAiC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,2FAA6F,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,gCAAkCM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,UAAY,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,mBAAqB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,UAAY,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,uBAAyB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,+BAAiC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,qCAAuC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,oBAAqB,qBAAsB,uBAAyB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,2BAA6B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,2BAA6B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,kBAAoB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,+BAAiC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,yEAA+E,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,2EAA4E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG1qGC,OAAQ,CAAC,oRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,aAAc,gBAAiB,4EAA6E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,2CAIl5BC,OAAQ,CAAC,2NAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mBAAqB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,SAAWC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,OAAS,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,iBAAmB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,WAAa9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,UAAY,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAA0B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iEAAkE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,8BAAgCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG17BC,OAAQ,CAAC,8NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8EAA+E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,8BAAgCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGr6BC,OAAQ,CAAC,8OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,MAAOC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,gBAAiB,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,MAAO,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,mCAG54BC,OAAQ,CAAC,uNAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,oCAAsC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,wBAA0B,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,iCAAmCC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,QAAU,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,iBAAmB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,gCAAkC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,WAAa,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,sBAA4B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,8BAAgCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGpgCC,OAAQ,CAAC,4NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8DAA+D,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG14BC,OAAQ,CAAC,sNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,+BAAiCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGl5BC,OAAQ,CAAC,8NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,oBAAqB,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,uGAKt4BC,OAAQ,CAAC,kNAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,sBAAwB,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,kCAAoC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iBAAmB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,SAAW,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,WAAaK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,OAAS,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,aAAe,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,UAAY,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,2CAA6C,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,kBAAoBM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,WAAa,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,SAAW9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,UAAY,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,aAAe,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,eAAiB,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,eAAiB,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,qBAAuB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,eAAiB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,YAAc,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,WAAa,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,YAAc,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,qBAAuB,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,6CAAmD,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8DAA+D,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGxrFC,OAAQ,CAAC,6NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,sEAAuE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGz5BC,OAAQ,CAAC,qOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4DAA6D,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGx4BC,OAAQ,CAAC,oNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kFAAmF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,mKAAqKC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG9iCC,OAAQ,CAAC,uXAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,mEAAqEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGt7BC,OAAQ,CAAC,kQAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,8CAA+C,gBAAiB,mEAAoE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,8DAAgEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,iEAGz8BC,OAAQ,CAAC,qRAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,oCAAsC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,uBAAyB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,gCAAkC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,cAAgB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,6BAAmC,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,0BAA2B,gBAAiB,kEAAmE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,6CAGrhCC,OAAQ,CAAC,kOAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,4BAA8B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,kBAAoB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,UAAY,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,sBAAwB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,mCAAqC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,kBAAoB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAA0B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGhgCC,OAAQ,CAAC,+NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4EAA6E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG95BC,OAAQ,CAAC,uOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG54BC,OAAQ,CAAC,wNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,uBAAwB,gBAAiB,qFAAsF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,yFAI56BC,OAAQ,CAAC,qPAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,wBAAyB,0BAA4B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,qCAAsC,sCAAwC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,6BAA+B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,2BAA6B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,yBAA2BK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,wBAA0B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,uFAAyF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,+BAAiCM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,OAAS,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,sBAAwB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,cAAgB,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,iCAAmC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,wBAA0B,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,iBAAkB,4BAA8B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,mBAAqB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,0BAA4B,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,iCAAmC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,kEAAwE,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG9gGC,OAAQ,CAAC,8NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,uCAAwC,gBAAiB,8DAA+D,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,0DAG/5BC,OAAQ,CAAC,2OAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,mBAAqB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,aAAe,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,sBAAwB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,qCAAuC9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,eAAiB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,yBAA+B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,0EAA2E,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGlhCC,OAAQ,CAAC,yOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,sFAAuF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG/6BC,OAAQ,CAAC,wPAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4EAA6E,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,+BAAiCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG95BC,OAAQ,CAAC,0OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,gBAAiB,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,kLAAoLC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4GAK3hCC,OAAQ,CAAC,uWAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,mBAAoB,4BAA6B,4BAA6B,8BAAgC,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,uCAAwC,2CAA4C,2CAA4C,6CAA+C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,+BAAiC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,qBAAuB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,2BAA6B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,uFAAyF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,wCAA0CM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,gBAAkB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,eAAiB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,mBAAqB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,2BAA6B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,uCAAyC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,eAAgB,uBAAwB,uBAAwB,yBAA2B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,wBAA0B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,iBAAmB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,qBAAuB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,gCAAkC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,+EAAqF,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG9wGC,OAAQ,CAAC,8NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,2DAA4D,gBAAiB,+EAAgF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,mFAAqFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,oGAI7/BC,OAAQ,CAAC,sUAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,+BAAgC,+BAAgC,iCAAmC,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,4CAA6C,4CAA6C,8CAAgD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,8BAAgCI,OAAQ,CAAEP,MAAO,SAAUG,OAAQ,CAAC,aAAe,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,gCAAkC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,6BAA+B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,kGAAoG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,4CAA8CM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,gBAAkB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,YAAc,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,sBAAwB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,sCAAwC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,2CAA6C,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,sCAAwC,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,2BAA4B,2BAA4B,6BAA+B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,yBAA2B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,oBAAsB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,uBAAyB,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,8FAAgG,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,uCAAyC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,sFAA4F,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,sCAAuC,gBAAiB,iFAAkF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,mFAAqFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,yDAGl0HC,OAAQ,CAAC,mTAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,gCAAkC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,kBAAoB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,wBAA0BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,cAAgB,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,oBAAsB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4BAA8B9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,YAAc,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,yBAA+B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,qDAAsD,gBAAiB,iEAAkE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,yEAA2EC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,wEAGnkCC,OAAQ,CAAC,qSAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,6BAA+B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,6BAA+B9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,iBAAmB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA8B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,kBAAmB,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,0KAA4KC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4HAKpoCC,OAAQ,CAAC,kWAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,yBAA0B,0BAA2B,0BAA2B,4BAA8B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,qCAAsC,sCAAuC,sCAAuC,wCAA0C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,8BAAgC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,8BAAgCC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,aAAe,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,sBAAwBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,eAAiB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,+BAAiC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,mBAAqB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,oFAAsF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,yCAA2C,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,iBAAmB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,mBAAqB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,6BAA+B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,0BAA4B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,mCAAqC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4BAA8B,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,kBAAmB,2BAA4B,4BAA6B,8BAAgC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAAyB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,qCAAuC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,qFAA2F,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4EAA6E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,0KAA4KC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG/2GC,OAAQ,CAAC,wXAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kEAAmE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGr5BC,OAAQ,CAAC,iOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGn5BC,OAAQ,CAAC,+NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+EAAgF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGx6BC,OAAQ,CAAC,iPAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6EAA8E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,2GAA6GC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGj/BC,OAAQ,CAAC,0TAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,0BAA2B,gBAAiB,kEAAmE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,oFAAsFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,6CAG18BC,OAAQ,CAAC,sRAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,wBAA0B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,oBAAsBC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,UAAY,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,yBAA2B9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,cAAgB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA8B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gFAAiF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,oFAAsFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGrjCC,OAAQ,CAAC,sSAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iEAAkE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGp5BC,OAAQ,CAAC,gOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,mBAAoB,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,0GAA4GC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,qFAIv9BC,OAAQ,CAAC,mSAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,wBAAyB,yBAA0B,2BAA6B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,oCAAqC,qCAAsC,uCAAyC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mCAAqC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,qBAAuB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,kCAAoC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,uBAAyBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,YAAc,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,+BAAiC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,yEAA2E,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,sCAAwCM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,iBAAmB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,cAAgB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,mBAAqB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,qCAAuC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,kCAAoC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,6BAA+B,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,qBAAsB,yBAA0B,6BAA+B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAAyB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,0BAA4B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,uBAAyB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,qCAAuC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,2EAAiF,CAAER,OAAQ,WAAYC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8EAA+E,eAAgB,4BAA6Bq/D,SAAU,WAAY,eAAgB,0GAA4GC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGlxGC,OAAQ,CAAC,6TAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,uBAAwB,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,gEAIj5BC,OAAQ,CAAC,6NAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,sBAAuB,0BAA4B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,kCAAmC,sCAAwC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,gCAAkC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,wBAA0BI,OAAQ,CAAEP,MAAO,SAAUG,OAAQ,CAAC,WAAa,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,4BAA8B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,yBAA2BK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,+BAAiC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,kGAAoG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,gCAAkCM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,OAAS,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,yBAA2B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,4BAA8B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,+BAAiC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,wBAA0B,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,uBAAwB,6BAA+B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,kBAAoB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,0BAA4B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,wBAA0B,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,iFAAmF,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,iCAAmC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,wEAA8E,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGngHC,OAAQ,CAAC,+NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8DAA+D,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGj5BC,OAAQ,CAAC,6NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6EAA8E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGt6BC,OAAQ,CAAC,+OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6DAA8D,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGz4BC,OAAQ,CAAC,qNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,oDAAqD,gBAAiB,2EAA4E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,uEAGx7BC,OAAQ,CAAC,iQAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,8BAAgC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,gCAAkCH,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,UAAY,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,2BAA6B9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,iBAAmB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAA0B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG1/BC,OAAQ,CAAC,+NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yCAA0C,gBAAiB,gEAAiE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,+BAAiCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,kFAIl6BC,OAAQ,CAAC,8OAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,8BAA+B,gCAAkC,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,mDAAoD,qDAAuD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BI,OAAQ,CAAEP,MAAO,SAAUG,OAAQ,CAAC,UAAY,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,wBAA0B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,yBAA2BK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,WAAa,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,yBAA2B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,mBAAqB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,0EAA4E,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,uCAAyCM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,iBAAmB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,uBAAyB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,0BAA4B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,+BAAiC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,2BAA6B,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,kBAAmB,yBAA2B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,yBAA2B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,uBAAyB,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,mFAAqF,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,yCAA2C,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,qEAA2E,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG9gHC,OAAQ,CAAC,8NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,2CAA4C,gBAAiB,kEAAmE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,8PAAgQC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,oFAIroCC,OAAQ,CAAC,idAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,2BAA4B,4BAA6B,6BAA8B,+BAAiC,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,gDAAiD,iDAAkD,kDAAmD,oDAAsD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,gCAAkC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,sBAAwB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,6BAA+BI,OAAQ,CAAEP,MAAO,SAAUG,OAAQ,CAAC,cAAgB,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,gCAAkC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,2BAA6BK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,eAAiB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,oBAAsB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,mGAAqG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,kCAAoCM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,gBAAkB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,gBAAkB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,wBAA0B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,gBAAkB,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,+BAAiC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,2BAA6B,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,kBAAmB,2BAA4B,4BAA6B,8BAAgC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,2BAA6B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,sBAAwB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,wBAA0B,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,oFAAsF,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,wBAA0B,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,kFAAwF,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,2EAA4E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGzyHC,OAAQ,CAAC,6OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8DAA+D,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG14BC,OAAQ,CAAC,sNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAO9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,uBAAwB,gBAAiB,mEAAoE,eAAgB,4BAA6Bq/D,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,yFAI74BC,OAAQ,CAAC,yNAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,6BAA+B,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,wCAA0C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,sBAAwB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,mBAAqB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,gBAAkBK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,uFAAyF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,yCAA2CM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,YAAc,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,kBAAoB9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,gBAAkB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,kBAAoB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,6BAA+B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,mCAAqC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,gCAAkC,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,2BAA6B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA0B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,iBAAmB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,iBAAmB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,8BAAgC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,uEAA6E,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,oBAAqB,gBAAiB,2EAA4E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,sFAIj+FC,OAAQ,CAAC,iOAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,gBAAkB,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,+BAAiC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mBAAqB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,SAAWC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,OAAS,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,SAAWK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,OAAS,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,WAAa,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,UAAY,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,+BAAiC,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,eAAiB,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,QAAU9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,QAAU,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,SAAW,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,aAAe,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,aAAe,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,iBAAmB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,WAAa,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,SAAW,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,SAAW,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,cAAgB,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,qBAA2B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,mBAAoB,gBAAiB,+EAAgF,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,qFAIxiFC,OAAQ,CAAC,oOAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,kBAAoB,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,+BAAiC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mBAAqB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,SAAWC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,OAAS,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,SAAWK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,OAAS,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,WAAa,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,SAAW,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,6BAA+B,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,aAAe,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,SAAW9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,QAAU,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,SAAW,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,aAAe,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,YAAc,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,mBAAqB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,SAAW,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,UAAY,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,SAAW,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,cAAgB,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,8BAAoC,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASp/D,QAAS,CAAE,kBAAmB,iCAAkC,gBAAiB,4EAA6E,eAAgB,4BAA6Bq/D,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,0EAIzjFC,OAAQ,CAAC,+OAKR,wBAAyB,CAAEH,MAAO,wBAAyBK,aAAc,yBAA0BF,OAAQ,CAAC,kBAAoB,qCAAsC,CAAEH,MAAO,qCAAsCK,aAAc,sCAAuCF,OAAQ,CAAC,+BAAiC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mBAAqB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEK,UAAW,4CAA8CH,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,SAAWI,OAAQ,CAAEP,MAAO,SAAUG,OAAQ,CAAC,OAAS,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,SAAWK,SAAU,CAAER,MAAO,WAAYG,OAAQ,CAAC,OAAS,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,WAAa,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,SAAW,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,6BAA+B,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,aAAeM,IAAK,CAAET,MAAO,MAAOG,OAAQ,CAAC,OAAS,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,QAAU9vC,OAAQ,CAAE2vC,MAAO,SAAUG,OAAQ,CAAC,QAAU,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,SAAW,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,aAAe,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,YAAc,iBAAkB,CAAEH,MAAO,iBAAkBK,aAAc,qBAAsBF,OAAQ,CAAC,kBAAoB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,SAAW,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,UAAY,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,SAAW,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,SAAW,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,6BAA+B,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,cAAgB,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,+BAAoC/1F,KAAKgF,GAAMu5C,GAAE+3C,eAAetxF,EAAEuwF,OAAQvwF,EAAEwwF,QACjrF,MAAMe,GAAIh4C,GAAE/5B,QAASgyE,GAAKD,GAAEE,SAASt8E,KAAKo8E,IAAIzf,GAAIyf,GAAEG,QAAQv8E,KAAKo8E,IAAII,GAAK,KAAErzF,OAAO,CACjFpJ,KAAM,eACNwC,WAAY,CACVy5F,OAAQhB,EACRvvD,eAAgB,IAChBC,UAAW,IACXkL,SAAU,IACV7kB,iBAAkB,IAClBhG,cAAe,IACf0wE,KAAMvB,GACNwB,OAAQ7tC,IAEVhiD,MAAO,CACL8vF,OAAQ,CACN7vF,KAAMnM,MACNoM,QAAS,MAEX6vF,SAAU,CACR9vF,KAAMlF,QACNmF,SAAS,GAEX8vF,SAAU,CACR/vF,KAAMlF,QACNmF,SAAS,GAEXgtB,YAAa,CACXjtB,KAAM,KACNC,aAAS,GAKX6gD,QAAS,CACP9gD,KAAMnM,MACNoM,QAAS,IAAM,IAEjB0hC,oBAAqB,CACnB3hC,KAAMnM,MACNoM,QAAS,IAAM,KAGnBI,KAAI,KACK,CACL2vF,SAAUngB,GAAE,OACZogB,YAAapgB,GAAE,kBACfqgB,YAAargB,GAAE,gBACfsgB,cAAetgB,GAAE,mBACjBugB,eAAgB,wBAAwB17E,KAAKw3B,SAASv0C,SAAS,IAAIvE,MAAM,KACzEi9F,IAAK,KACLC,SAAU,GACVC,mBAAoB,GACpBC,cAAeC,OAGnBrxE,SAAU,CACR,cAAAsxE,GACE,OAAOz+F,KAAKu+F,cAAchjE,MAAMpS,MAAQ,CAC1C,EACA,iBAAAu1E,GACE,OAAO1+F,KAAKu+F,cAAchjE,MAAMkrC,UAAY,CAC9C,EACA,QAAAA,GACE,OAAOhkD,KAAKqzB,MAAM91C,KAAK0+F,kBAAoB1+F,KAAKy+F,eAAiB,MAAQ,CAC3E,EACA,KAAA1+E,GACE,OAAO/f,KAAKu+F,cAAcx+E,KAC5B,EACA,UAAA4+E,GACE,OAAmE,IAA5D3+F,KAAK+f,OAAOzW,QAAQwC,GAAMA,EAAE+0B,SAAWt2B,EAAE4zC,SAAQz8C,MAC1D,EACA,WAAAk9F,GACE,OAAO5+F,KAAK+f,OAAOre,OAAS,CAC9B,EACA,YAAAm9F,GACE,OAAuE,IAAhE7+F,KAAK+f,OAAOzW,QAAQwC,GAAMA,EAAE+0B,SAAWt2B,EAAEyuF,aAAYt3F,MAC9D,EACA,QAAA8sD,GACE,OAAOxuD,KAAKu+F,cAAchjE,MAAMsF,SAAWo5D,EAAEE,MAC/C,EAEA,UAAA2E,GACE,IAAK9+F,KAAK4+F,YACR,OAAO5+F,KAAK+9F,QAChB,GAEFlqE,MAAO,CACL,WAAAmH,CAAYlvB,GACV9L,KAAK++F,eAAejzF,EACtB,EACA,cAAA2yF,CAAe3yF,GACb9L,KAAKo+F,IAAM,EAAE,CAAExuE,IAAK,EAAGpN,IAAK1W,IAAM9L,KAAKg/F,cACzC,EACA,iBAAAN,CAAkB5yF,GAChB9L,KAAKo+F,KAAK53B,SAAS16D,GAAI9L,KAAKg/F,cAC9B,EACA,QAAAxwC,CAAS1iD,GACPA,EAAI9L,KAAK0pB,MAAM,SAAU1pB,KAAK+f,OAAS/f,KAAK0pB,MAAM,UAAW1pB,KAAK+f,MACpE,GAEF,WAAAgO,GACE/tB,KAAKg7B,aAAeh7B,KAAK++F,eAAe/+F,KAAKg7B,aAAch7B,KAAKu+F,cAAcxD,YAAY/6F,KAAKi/F,oBAAqBj0C,EAAEh3B,MAAM,2BAC9H,EACAzF,QAAS,CAIP,OAAA4X,GACEnmC,KAAKkoC,MAAMnkC,MAAM+S,OACnB,EAIA,YAAMooF,GACJ,IAAIpzF,EAAI,IAAI9L,KAAKkoC,MAAMnkC,MAAMsyB,OAC7B,GAAI8oE,GAAGrzF,EAAG9L,KAAK6uD,SAAU,CACvB,MAAMgK,EAAI/sD,EAAExC,QAAQsb,GAAM5kB,KAAK6uD,QAAQt7B,MAAM/xB,GAAMA,EAAE05B,WAAatW,EAAE5jB,SAAOsI,OAAOT,SAAUglB,EAAI/hB,EAAExC,QAAQsb,IAAOi0C,EAAE9wD,SAAS6c,KAC5H,IACE,MAAQwT,SAAUxT,EAAGwW,QAAS55B,SAAY49F,GAAGp/F,KAAKg7B,YAAYE,SAAU29B,EAAG74D,KAAK6uD,SAChF/iD,EAAI,IAAI+hB,KAAMjJ,KAAMpjB,EACtB,CAAE,MAEA,YADA,QAAEo8E,GAAE,oBAEN,CACF,CACA9xE,EAAEf,SAAS8tD,IACT,MAAMj0C,GAAK5kB,KAAK0vC,qBAAuB,IAAInc,MAAM/xB,GAAMq3D,EAAE73D,KAAK+G,SAASvG,KACvEojB,GAAI,QAAEg5D,GAAE,IAAIh5D,0CAA4C5kB,KAAKu+F,cAAch7D,OAAOs1B,EAAE73D,KAAM63D,GAAG37C,OAAM,QACjG,IACAld,KAAKkoC,MAAMm3D,KAAK1mE,OACtB,EAIA,QAAA4F,GACEv+B,KAAKu+F,cAAcx+E,MAAMhV,SAASe,IAChCA,EAAE6gB,QAAQ,IACR3sB,KAAKkoC,MAAMm3D,KAAK1mE,OACtB,EACA,YAAAqmE,GACE,GAAIh/F,KAAKwuD,SAEP,YADAxuD,KAAKq+F,SAAWzgB,GAAE,WAGpB,MAAM9xE,EAAI2W,KAAKqzB,MAAM91C,KAAKo+F,IAAIv3B,YAC9B,GAAI/6D,IAAM,IAIV,GAAIA,EAAI,GACN9L,KAAKq+F,SAAWzgB,GAAE,2BAGpB,GAAI9xE,EAAI,GAAR,CACE,MAAM+sD,EAAoB,IAAI39C,KAAK,GACnC29C,EAAEymC,WAAWxzF,GACb,MAAM+hB,EAAIgrC,EAAE9/B,cAAc53B,MAAM,GAAI,IACpCnB,KAAKq+F,SAAWzgB,GAAE,cAAe,CAAE2hB,KAAM1xE,GAE3C,MACA7tB,KAAKq+F,SAAWzgB,GAAE,yBAA0B,CAAE4hB,QAAS1zF,SAdrD9L,KAAKq+F,SAAWzgB,GAAE,uBAetB,EACA,cAAAmhB,CAAejzF,GACR9L,KAAKg7B,aAIVh7B,KAAKu+F,cAAcvjE,YAAclvB,EAAG9L,KAAKs+F,oBAAqB,QAAExyF,IAH9Dk/C,EAAEh3B,MAAM,sBAIZ,EACA,kBAAAirE,CAAmBnzF,GACjBA,EAAE+0B,SAAWt2B,EAAE4zC,OAASn+C,KAAK0pB,MAAM,SAAU5d,GAAK9L,KAAK0pB,MAAM,WAAY5d,EAC3E,KA8BE2zF,GAV2BpiF,EAC/BogF,IAlBO,WACP,IAAI5kC,EAAI74D,KAAM6tB,EAAIgrC,EAAEvvC,MAAMD,GAC1B,OAAOwvC,EAAEvvC,MAAM4d,YAAa2xB,EAAE79B,YAAcnN,EAAE,OAAQ,CAAElhB,IAAK,OAAQ6c,YAAa,gBAAiBzS,MAAO,CAAE,2BAA4B8hD,EAAE+lC,YAAa,wBAAyB/lC,EAAErK,UAAYn+C,MAAO,CAAE,wBAAyB,KAAQ,CAACwoD,EAAEylC,oBAAsD,IAAhCzlC,EAAEylC,mBAAmB58F,OAAemsB,EAAE,WAAY,CAAExd,MAAO,CAAEwtF,SAAUhlC,EAAEglC,SAAU,4BAA6B,GAAI9vF,KAAM,aAAepL,GAAI,CAAEmU,MAAO+hD,EAAE1yB,SAAWzT,YAAammC,EAAElmC,GAAG,CAAC,CAAE/tB,IAAK,OAAQ/E,GAAI,WACxc,MAAO,CAACguB,EAAE,OAAQ,CAAExd,MAAO,CAAE4Y,MAAO,GAAIE,KAAM,GAAIu2E,WAAY,MAChE,EAAG9sE,OAAO,IAAO,MAAM,EAAI,aAAe,CAACimC,EAAEjvC,GAAG,IAAMivC,EAAEhvC,GAAGgvC,EAAEimC,YAAc,OAASjxE,EAAE,YAAa,CAAExd,MAAO,CAAE,YAAawoD,EAAEimC,WAAY,aAAcjmC,EAAEklC,SAAUhwF,KAAM,aAAe2kB,YAAammC,EAAElmC,GAAG,CAAC,CAAE/tB,IAAK,OAAQ/E,GAAI,WAC5N,MAAO,CAACguB,EAAE,OAAQ,CAAExd,MAAO,CAAE4Y,MAAO,GAAIE,KAAM,GAAIu2E,WAAY,MAChE,EAAG9sE,OAAO,IAAO,MAAM,EAAI,aAAe,CAAC/E,EAAE,iBAAkB,CAAExd,MAAO,CAAE,4BAA6B,GAAI,qBAAqB,GAAM1N,GAAI,CAAEmU,MAAO+hD,EAAE1yB,SAAWzT,YAAammC,EAAElmC,GAAG,CAAC,CAAE/tB,IAAK,OAAQ/E,GAAI,WACpM,MAAO,CAACguB,EAAE,SAAU,CAAExd,MAAO,CAAE4Y,MAAO,GAAIE,KAAM,GAAIu2E,WAAY,MAClE,EAAG9sE,OAAO,IAAO,MAAM,EAAI,aAAe,CAACimC,EAAEjvC,GAAG,IAAMivC,EAAEhvC,GAAGgvC,EAAEolC,aAAe,OAAQplC,EAAEpmC,GAAGomC,EAAEylC,oBAAoB,SAAS15E,GACtH,OAAOiJ,EAAE,iBAAkB,CAAEjpB,IAAKggB,EAAE4O,GAAIhK,YAAa,4BAA6BnZ,MAAO,CAAE4kB,KAAMrQ,EAAEmQ,UAAW,qBAAqB,GAAMpyB,GAAI,CAAEmU,MAAO,SAAStV,GAC7J,OAAOojB,EAAEhO,QAAQiiD,EAAE79B,YAAa69B,EAAEhK,QACpC,GAAKn8B,YAAammC,EAAElmC,GAAG,CAAC/N,EAAEyQ,cAAgB,CAAEzwB,IAAK,OAAQ/E,GAAI,WAC3D,MAAO,CAACguB,EAAE,mBAAoB,CAAExd,MAAO,CAAEsvF,IAAK/6E,EAAEyQ,iBAClD,EAAGzC,OAAO,GAAO,MAAO,MAAM,IAAO,CAACimC,EAAEjvC,GAAG,IAAMivC,EAAEhvC,GAAGjF,EAAEwQ,aAAe,MACzE,KAAK,GAAIvH,EAAE,MAAO,CAAEskB,WAAY,CAAC,CAAEnxC,KAAM,OAAQoxC,QAAS,SAAUhtC,MAAOyzD,EAAE+lC,YAAavsD,WAAY,gBAAkB7oB,YAAa,2BAA6B,CAACqE,EAAE,gBAAiB,CAAExd,MAAO,CAAE,aAAcwoD,EAAEqlC,cAAe,mBAAoBrlC,EAAEslC,eAAgB5+E,MAAOs5C,EAAE8lC,WAAYv5F,MAAOyzD,EAAE4N,SAAUt9C,KAAM,YAAe0E,EAAE,IAAK,CAAExd,MAAO,CAAEmjB,GAAIqlC,EAAEslC,iBAAoB,CAACtlC,EAAEjvC,GAAG,IAAMivC,EAAEhvC,GAAGgvC,EAAEwlC,UAAY,QAAS,GAAIxlC,EAAE+lC,YAAc/wE,EAAE,WAAY,CAAErE,YAAa,wBAAyBnZ,MAAO,CAAEtC,KAAM,WAAY,aAAc8qD,EAAEmlC,YAAa,+BAAgC,IAAMr7F,GAAI,CAAEmU,MAAO+hD,EAAEt6B,UAAY7L,YAAammC,EAAElmC,GAAG,CAAC,CAAE/tB,IAAK,OAAQ/E,GAAI,WAC9nB,MAAO,CAACguB,EAAE,SAAU,CAAExd,MAAO,CAAE4Y,MAAO,GAAIE,KAAM,MAClD,EAAGyJ,OAAO,IAAO,MAAM,EAAI,cAAiBimC,EAAE/uC,KAAM+D,EAAE,QAAS,CAAEskB,WAAY,CAAC,CAAEnxC,KAAM,OAAQoxC,QAAS,SAAUhtC,OAAO,EAAIitC,WAAY,UAAY1lC,IAAK,QAAS0D,MAAO,CAAEtC,KAAM,OAAQ6vF,OAAQ/kC,EAAE+kC,QAAQj6F,OAAO,MAAOm6F,SAAUjlC,EAAEilC,SAAU,8BAA+B,IAAMn7F,GAAI,CAAEi9F,OAAQ/mC,EAAEqmC,WAAc,GAAKrmC,EAAE/uC,IAC3T,GAAQ,IAIN,EACA,KACA,WACA,KACA,MAEY9mB,QACd,IAAIm5E,GAAI,KACR,SAASqiB,KACP,MAAM1yF,EAAoE,OAAhEiS,SAASE,cAAc,qCACjC,OAAOk+D,cAAaie,IAAMje,GAAI,IAAIie,EAAEtuF,IAAKqwE,EAC3C,CAKAviD,eAAewlE,GAAGtzF,EAAG+sD,EAAGhrC,GACtB,MAAMjJ,GAAI,SAAE,IAAM,2DAClB,OAAO,IAAIgC,SAAQ,CAACplB,EAAG27D,KACrB,MAAM17D,EAAI,IAAI,KAAE,CACdT,KAAM,qBACNiN,OAAS+sF,GAAMA,EAAEp2E,EAAG,CAClB9W,MAAO,CACLiqB,QAASjsB,EACTmvB,UAAW49B,EACXhK,QAAShhC,GAEXlrB,GAAI,CACF,MAAAk9F,CAAOt3B,GACL/mE,EAAE+mE,GAAI9mE,EAAEq+F,WAAYr+F,EAAEquB,KAAKwY,YAAYo9B,YAAYjkE,EAAEquB,IACvD,EACA,MAAAnD,CAAO47C,GACLpL,EAAEoL,GAAK,IAAI/oD,MAAM,aAAc/d,EAAEq+F,WAAYr+F,EAAEquB,KAAKwY,YAAYo9B,YAAYjkE,EAAEquB,IAChF,OAINruB,EAAEmqC,SAAU7tB,SAAS8tB,KAAK9b,YAAYtuB,EAAEquB,IAAI,GAEhD,CACA,SAASqvE,GAAGrzF,EAAG+sD,GACb,MAAMhrC,EAAIgrC,EAAE/xD,KAAKtF,GAAMA,EAAE05B,WACzB,OAAOpvB,EAAExC,QAAQ9H,IACf,MAAM27D,EAAI37D,aAAay3B,KAAOz3B,EAAER,KAAOQ,EAAE05B,SACzC,OAAyB,IAAlBrN,EAAEvpB,QAAQ64D,EAAS,IACzBz7D,OAAS,CACd,0ECppDA,MAAM,MACJq+F,EAAK,WACLt/D,EAAU,cACVu/D,EAAa,SACbC,EAAQ,YACRC,EAAW,QACXC,EAAO,IACPpmE,EAAG,OACHkjE,EAAM,aACNmD,EAAY,OACZC,EAAM,WACNC,EAAU,aACVC,EAAY,eACZC,EAAc,WACdC,EAAU,WACVC,EAAU,YACVC,GACE,MCrBAC,EAA2B,CAAC,EAGhC,SAASC,EAAoBC,GAE5B,IAAIC,EAAeH,EAAyBE,GAC5C,QAAqBt+F,IAAjBu+F,EACH,OAAOA,EAAa/9F,QAGrB,IAAID,EAAS69F,EAAyBE,GAAY,CACjDttE,GAAIstE,EACJE,QAAQ,EACRh+F,QAAS,CAAC,GAUX,OANAi+F,EAAoBH,GAAU5/F,KAAK6B,EAAOC,QAASD,EAAQA,EAAOC,QAAS69F,GAG3E99F,EAAOi+F,QAAS,EAGTj+F,EAAOC,OACf,CAGA69F,EAAoBpuF,EAAIwuF,E7R5BpB9hG,EAAW,GACf0hG,EAAoBvF,EAAI,CAAC52F,EAAQw8F,EAAUrhG,EAAIu2F,KAC9C,IAAG8K,EAAH,CAMA,IAAIC,EAAer6B,IACnB,IAAStlE,EAAI,EAAGA,EAAIrC,EAASuC,OAAQF,IAAK,CACrC0/F,EAAW/hG,EAASqC,GAAG,GACvB3B,EAAKV,EAASqC,GAAG,GACjB40F,EAAWj3F,EAASqC,GAAG,GAE3B,IAJA,IAGI4/F,GAAY,EACP1+F,EAAI,EAAGA,EAAIw+F,EAASx/F,OAAQgB,MACpB,EAAX0zF,GAAsB+K,GAAgB/K,IAAa72F,OAAO+G,KAAKu6F,EAAoBvF,GAAGpuF,OAAOtI,GAASi8F,EAAoBvF,EAAE12F,GAAKs8F,EAASx+F,MAC9Iw+F,EAAS/nF,OAAOzW,IAAK,IAErB0+F,GAAY,EACThL,EAAW+K,IAAcA,EAAe/K,IAG7C,GAAGgL,EAAW,CACbjiG,EAASga,OAAO3X,IAAK,GACrB,IAAI+mE,EAAI1oE,SACE2C,IAAN+lE,IAAiB7jE,EAAS6jE,EAC/B,CACD,CACA,OAAO7jE,CArBP,CAJC0xF,EAAWA,GAAY,EACvB,IAAI,IAAI50F,EAAIrC,EAASuC,OAAQF,EAAI,GAAKrC,EAASqC,EAAI,GAAG,GAAK40F,EAAU50F,IAAKrC,EAASqC,GAAKrC,EAASqC,EAAI,GACrGrC,EAASqC,GAAK,CAAC0/F,EAAUrhG,EAAIu2F,EAuBjB,E8R3BdyK,EAAoBj8E,EAAK7hB,IACxB,IAAIs+F,EAASt+F,GAAUA,EAAOqgB,WAC7B,IAAOrgB,EAAiB,QACxB,IAAM,EAEP,OADA89F,EAAoB/6B,EAAEu7B,EAAQ,CAAE16F,EAAG06F,IAC5BA,CAAM,ECLdR,EAAoB/6B,EAAI,CAAC9iE,EAASs+F,KACjC,IAAI,IAAI18F,KAAO08F,EACXT,EAAoB1jC,EAAEmkC,EAAY18F,KAASi8F,EAAoB1jC,EAAEn6D,EAAS4B,IAC5ErF,OAAOyF,eAAehC,EAAS4B,EAAK,CAAEG,YAAY,EAAMohB,IAAKm7E,EAAW18F,IAE1E,ECNDi8F,EAAoB7F,EAAI,CAAC,EAGzB6F,EAAoB/0F,EAAKy1F,GACjB36E,QAAQmT,IAAIx6B,OAAO+G,KAAKu6F,EAAoB7F,GAAGpyF,QAAO,CAACw5B,EAAUx9B,KACvEi8F,EAAoB7F,EAAEp2F,GAAK28F,EAASn/D,GAC7BA,IACL,KCNJy+D,EAAoBjjB,EAAK2jB,GAEZA,EAAU,IAAMA,EAAU,SAAW,CAAC,KAAO,uBAAuB,KAAO,uBAAuB,KAAO,wBAAwBA,GCH9IV,EAAoB71C,EAAI,WACvB,GAA0B,iBAAf+qC,WAAyB,OAAOA,WAC3C,IACC,OAAO/1F,MAAQ,IAAI6vB,SAAS,cAAb,EAChB,CAAE,MAAO/jB,GACR,GAAsB,iBAAX0M,OAAqB,OAAOA,MACxC,CACA,CAPuB,GCAxBqoF,EAAoB1jC,EAAI,CAAC9xD,EAAK43E,IAAU1jF,OAAOC,UAAUC,eAAeyB,KAAKmK,EAAK43E,GlSA9E7jF,EAAa,CAAC,EACdC,EAAoB,aAExBwhG,EAAoBp/F,EAAI,CAAC+H,EAAKkpD,EAAM9tD,EAAK28F,KACxC,GAAGniG,EAAWoK,GAAQpK,EAAWoK,GAAKhJ,KAAKkyD,OAA3C,CACA,IAAIuL,EAAQujC,EACZ,QAAWh/F,IAARoC,EAEF,IADA,IAAI68F,EAAU1jF,SAASm4D,qBAAqB,UACpC10E,EAAI,EAAGA,EAAIigG,EAAQ//F,OAAQF,IAAK,CACvC,IAAIq3D,EAAI4oC,EAAQjgG,GAChB,GAAGq3D,EAAEzgD,aAAa,QAAU5O,GAAOqvD,EAAEzgD,aAAa,iBAAmB/Y,EAAoBuF,EAAK,CAAEq5D,EAASpF,EAAG,KAAO,CACpH,CAEGoF,IACHujC,GAAa,GACbvjC,EAASlgD,SAASynD,cAAc,WAEzB+2B,QAAU,QACjBt+B,EAAO8K,QAAU,IACb83B,EAAoBje,IACvB3kB,EAAOxrB,aAAa,QAASouD,EAAoBje,IAElD3kB,EAAOxrB,aAAa,eAAgBpzC,EAAoBuF,GAExDq5D,EAAOzpB,IAAMhrC,GAEdpK,EAAWoK,GAAO,CAACkpD,GACnB,IAAIgvC,EAAmB,CAAC3/E,EAAM5hB,KAE7B89D,EAAOnN,QAAUmN,EAAO0jC,OAAS,KACjCx1E,aAAa48C,GACb,IAAI64B,EAAUxiG,EAAWoK,GAIzB,UAHOpK,EAAWoK,GAClBy0D,EAAO31B,YAAc21B,EAAO31B,WAAWo9B,YAAYzH,GACnD2jC,GAAWA,EAAQ72F,SAASlL,GAAQA,EAAGM,KACpC4hB,EAAM,OAAOA,EAAK5hB,EAAM,EAExB4oE,EAAUr8C,WAAWg1E,EAAiBzgF,KAAK,UAAMze,EAAW,CAAEuL,KAAM,UAAW0I,OAAQwnD,IAAW,MACtGA,EAAOnN,QAAU4wC,EAAiBzgF,KAAK,KAAMg9C,EAAOnN,SACpDmN,EAAO0jC,OAASD,EAAiBzgF,KAAK,KAAMg9C,EAAO0jC,QACnDH,GAAczjF,SAAS6wC,KAAK7+B,YAAYkuC,EApCkB,CAoCX,EmSvChD4iC,EAAoBt4B,EAAKvlE,IACH,oBAAX6C,QAA0BA,OAAOwa,aAC1C9gB,OAAOyF,eAAehC,EAAS6C,OAAOwa,YAAa,CAAEjb,MAAO,WAE7D7F,OAAOyF,eAAehC,EAAS,aAAc,CAAEoC,OAAO,GAAO,ECL9Dy7F,EAAoBgB,IAAO9+F,IAC1BA,EAAOu0B,MAAQ,GACVv0B,EAAOoL,WAAUpL,EAAOoL,SAAW,IACjCpL,GCHR89F,EAAoBn+F,EAAI,WCAxB,IAAIo/F,EACAjB,EAAoB71C,EAAE+Z,gBAAe+8B,EAAYjB,EAAoB71C,EAAEt/C,SAAW,IACtF,IAAIqS,EAAW8iF,EAAoB71C,EAAEjtC,SACrC,IAAK+jF,GAAa/jF,IACbA,EAASgkF,gBACZD,EAAY/jF,EAASgkF,cAAcvtD,MAC/BstD,GAAW,CACf,IAAIL,EAAU1jF,EAASm4D,qBAAqB,UAC5C,GAAGurB,EAAQ//F,OAEV,IADA,IAAIF,EAAIigG,EAAQ//F,OAAS,EAClBF,GAAK,KAAOsgG,IAAc,aAAa35F,KAAK25F,KAAaA,EAAYL,EAAQjgG,KAAKgzC,GAE3F,CAID,IAAKstD,EAAW,MAAM,IAAItiF,MAAM,yDAChCsiF,EAAYA,EAAUv7F,QAAQ,OAAQ,IAAIA,QAAQ,QAAS,IAAIA,QAAQ,YAAa,KACpFs6F,EAAoBlyC,EAAImzC,YClBxBjB,EAAoBj6F,EAAImX,SAAS+9D,SAAWvvD,KAAK7gB,SAASsK,KAK1D,IAAIgsF,EAAkB,CACrB,KAAM,GAGPnB,EAAoB7F,EAAEt4F,EAAI,CAAC6+F,EAASn/D,KAElC,IAAI6/D,EAAqBpB,EAAoB1jC,EAAE6kC,EAAiBT,GAAWS,EAAgBT,QAAW/+F,EACtG,GAA0B,IAAvBy/F,EAGF,GAAGA,EACF7/D,EAAS5hC,KAAKyhG,EAAmB,QAC3B,CAGL,IAAI7iD,EAAU,IAAIx4B,SAAQ,CAAC7Q,EAASuN,IAAY2+E,EAAqBD,EAAgBT,GAAW,CAACxrF,EAASuN,KAC1G8e,EAAS5hC,KAAKyhG,EAAmB,GAAK7iD,GAGtC,IAAI51C,EAAMq3F,EAAoBlyC,EAAIkyC,EAAoBjjB,EAAE2jB,GAEpDhiF,EAAQ,IAAIC,MAgBhBqhF,EAAoBp/F,EAAE+H,GAfFrJ,IACnB,GAAG0gG,EAAoB1jC,EAAE6kC,EAAiBT,KAEf,KAD1BU,EAAqBD,EAAgBT,MACRS,EAAgBT,QAAW/+F,GACrDy/F,GAAoB,CACtB,IAAIpiF,EAAY1f,IAAyB,SAAfA,EAAM4N,KAAkB,UAAY5N,EAAM4N,MAChEm0F,EAAU/hG,GAASA,EAAMsW,QAAUtW,EAAMsW,OAAO+9B,IACpDj1B,EAAMD,QAAU,iBAAmBiiF,EAAU,cAAgB1hF,EAAY,KAAOqiF,EAAU,IAC1F3iF,EAAMve,KAAO,iBACbue,EAAMxR,KAAO8R,EACbN,EAAMk5E,QAAUyJ,EAChBD,EAAmB,GAAG1iF,EACvB,CACD,GAEwC,SAAWgiF,EAASA,EAE/D,CACD,EAWFV,EAAoBvF,EAAE54F,EAAK6+F,GAA0C,IAA7BS,EAAgBT,GAGxD,IAAIY,EAAuB,CAACC,EAA4Bh0F,KACvD,IAKI0yF,EAAUS,EALVL,EAAW9yF,EAAK,GAChBi0F,EAAcj0F,EAAK,GACnBk0F,EAAUl0F,EAAK,GAGI5M,EAAI,EAC3B,GAAG0/F,EAAS/kE,MAAM3I,GAAgC,IAAxBwuE,EAAgBxuE,KAAa,CACtD,IAAIstE,KAAYuB,EACZxB,EAAoB1jC,EAAEklC,EAAavB,KACrCD,EAAoBpuF,EAAEquF,GAAYuB,EAAYvB,IAGhD,GAAGwB,EAAS,IAAI59F,EAAS49F,EAAQzB,EAClC,CAEA,IADGuB,GAA4BA,EAA2Bh0F,GACrD5M,EAAI0/F,EAASx/F,OAAQF,IACzB+/F,EAAUL,EAAS1/F,GAChBq/F,EAAoB1jC,EAAE6kC,EAAiBT,IAAYS,EAAgBT,IACrES,EAAgBT,GAAS,KAE1BS,EAAgBT,GAAW,EAE5B,OAAOV,EAAoBvF,EAAE52F,EAAO,EAGjC69F,EAAqBh2E,KAA4B,sBAAIA,KAA4B,uBAAK,GAC1Fg2E,EAAmBx3F,QAAQo3F,EAAqBlhF,KAAK,KAAM,IAC3DshF,EAAmB/hG,KAAO2hG,EAAqBlhF,KAAK,KAAMshF,EAAmB/hG,KAAKygB,KAAKshF,QCvFvF1B,EAAoBje,QAAKpgF,ECGzB,IAAIggG,EAAsB3B,EAAoBvF,OAAE94F,EAAW,CAAC,OAAO,IAAOq+F,EAAoB,SAC9F2B,EAAsB3B,EAAoBvF,EAAEkH","sources":["webpack:///nextcloud/webpack/runtime/chunk loaded","webpack:///nextcloud/webpack/runtime/load script","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/eventemitter3/index.js","webpack:///nextcloud/apps/files/src/store/index.ts","webpack:///nextcloud/node_modules/decode-uri-component/index.js","webpack:///nextcloud/node_modules/split-on-first/index.js","webpack:///nextcloud/node_modules/query-string/node_modules/filter-obj/index.js","webpack:///nextcloud/node_modules/query-string/base.js","webpack:///nextcloud/node_modules/query-string/index.js","webpack:///nextcloud/node_modules/vue-router/dist/vue-router.esm.js","webpack:///nextcloud/apps/files/src/router/router.ts","webpack:///nextcloud/apps/files/src/FilesApp.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/Cog.vue?4d6d","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue?vue&type=template&id=89df8f2e","webpack:///nextcloud/apps/files/src/store/viewConfig.ts","webpack:///nextcloud/apps/files/src/logger.js","webpack:///nextcloud/node_modules/throttle-debounce/esm/index.js","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/ChartPie.vue?421f","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue?vue&type=template&id=b117066e","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?ebc6","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?2966","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?08cb","webpack://nextcloud/./apps/files/src/views/Settings.vue?84f7","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/Clipboard.vue?68c7","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue?vue&type=template&id=0c133921","webpack:///nextcloud/apps/files/src/components/Setting.vue","webpack:///nextcloud/apps/files/src/components/Setting.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/components/Setting.vue?98ea","webpack://nextcloud/./apps/files/src/components/Setting.vue?8d57","webpack:///nextcloud/apps/files/src/store/userconfig.ts","webpack:///nextcloud/apps/files/src/views/Settings.vue","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/views/Settings.vue?8bf3","webpack://nextcloud/./apps/files/src/views/Settings.vue?b81b","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/views/Navigation.vue","webpack://nextcloud/./apps/files/src/views/Navigation.vue?113b","webpack://nextcloud/./apps/files/src/views/Navigation.vue?74b9","webpack:///nextcloud/apps/files/src/views/FilesList.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?5dae","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?vue&type=template&id=00aea13f","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/AccountPlus.vue?2818","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue?vue&type=template&id=a16afc28","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/ViewGrid.vue?4e55","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue?vue&type=template&id=7b96a104","webpack:///nextcloud/apps/files/src/actions/sidebarAction.ts","webpack:///nextcloud/apps/files/src/store/files.ts","webpack:///nextcloud/apps/files/src/store/paths.ts","webpack:///nextcloud/apps/files/src/store/selection.ts","webpack:///nextcloud/apps/files/src/store/uploader.ts","webpack:///nextcloud/apps/files/src/services/SortingService.ts","webpack:///nextcloud/apps/files/src/services/DropServiceUtils.ts","webpack:///nextcloud/apps/files/src/actions/moveOrCopyActionUtils.ts","webpack:///nextcloud/apps/files/src/services/WebdavClient.ts","webpack:///nextcloud/apps/files/src/utils/hashUtils.ts","webpack:///nextcloud/apps/files/src/services/Files.ts","webpack:///nextcloud/apps/files/src/utils/fileUtils.ts","webpack:///nextcloud/apps/files/src/actions/moveOrCopyAction.ts","webpack:///nextcloud/apps/files/src/services/DropService.ts","webpack:///nextcloud/apps/files/src/store/dragging.ts","webpack:///nextcloud/apps/files/src/mixins/filesListWidth.ts","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?0684","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?d357","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue","webpack:///nextcloud/apps/files/src/store/actionsmenu.ts","webpack:///nextcloud/apps/files/src/store/renaming.ts","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/FileMultiple.vue?6e9d","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue?vue&type=template&id=27b46e04","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/DragAndDropPreview.vue?3906","webpack://nextcloud/./apps/files/src/components/DragAndDropPreview.vue?36f6","webpack:///nextcloud/apps/files/src/utils/dragUtils.ts","webpack:///nextcloud/apps/files/src/components/FileEntryMixin.ts","webpack:///nextcloud/apps/files/src/components/CustomElementRender.vue","webpack:///nextcloud/apps/files/src/components/CustomElementRender.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/CustomElementRender.vue?5f5c","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/ArrowLeft.vue?f857","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue?vue&type=template&id=214c9a86","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?c4f3","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?d908","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?7b52","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryCheckbox.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryCheckbox.vue","webpack:///nextcloud/apps/files/src/store/keyboard.ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryCheckbox.vue?a18b","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryName.vue","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryName.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryName.vue?98a4","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryPreview.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/File.vue?245d","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue?vue&type=template&id=e3c8d598","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/FolderOpen.vue?6818","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue?vue&type=template&id=79cee0a4","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Key.vue?157c","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue?vue&type=template&id=01a06d54","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Network.vue?11eb","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue?vue&type=template&id=29f8873c","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Tag.vue?6116","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue?vue&type=template&id=75dd05e4","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/PlayCircle.vue?0c26","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue?vue&type=template&id=6901b3e6","webpack:///nextcloud/apps/files/src/components/FileEntry/CollectivesIcon.vue?vue&type=script&lang=js","webpack:///nextcloud/apps/files/src/components/FileEntry/CollectivesIcon.vue","webpack://nextcloud/./apps/files/src/components/FileEntry/CollectivesIcon.vue?1937","webpack://nextcloud/./apps/files/src/components/FileEntry/CollectivesIcon.vue?949d","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue","webpack://nextcloud/./apps/files/src/components/FileEntry/FavoriteIcon.vue?238d","webpack://nextcloud/./apps/files/src/components/FileEntry/FavoriteIcon.vue?62c6","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryPreview.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/services/LivePhotos.ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryPreview.vue?8c1f","webpack:///nextcloud/apps/files/src/components/FileEntry.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry.vue","webpack://nextcloud/./apps/files/src/components/FileEntry.vue?da7c","webpack:///nextcloud/apps/files/src/components/FileEntryGrid.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntryGrid.vue","webpack://nextcloud/./apps/files/src/components/FileEntryGrid.vue?bb8e","webpack:///nextcloud/apps/files/src/components/FilesListHeader.vue","webpack:///nextcloud/apps/files/src/components/FilesListHeader.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListHeader.vue?349b","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue","webpack://nextcloud/./apps/files/src/components/FilesListTableFooter.vue?975a","webpack://nextcloud/./apps/files/src/components/FilesListTableFooter.vue?fa4c","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue","webpack:///nextcloud/apps/files/src/mixins/filesSorting.ts","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderButton.vue?39b1","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderButton.vue?e364","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListTableHeader.vue?1b05","webpack://nextcloud/./apps/files/src/components/FilesListTableHeader.vue?b1c9","webpack:///nextcloud/apps/files/src/components/VirtualList.vue","webpack:///nextcloud/apps/files/src/components/VirtualList.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/VirtualList.vue?37fa","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderActions.vue?0445","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderActions.vue?9494","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?f4b7","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?b76f","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?3555","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/TrayArrowDown.vue?a897","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue?vue&type=template&id=447c2cd4","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue","webpack://nextcloud/./apps/files/src/components/DragAndDropNotice.vue?c924","webpack://nextcloud/./apps/files/src/components/DragAndDropNotice.vue?a2e0","webpack:///nextcloud/apps/files/src/views/FilesList.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/views/FilesList.vue?31f4","webpack://nextcloud/./apps/files/src/views/FilesList.vue?1e5b","webpack:///nextcloud/apps/files/src/FilesApp.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/FilesApp.vue?597e","webpack:///nextcloud/apps/files/src/main.ts","webpack:///nextcloud/apps/files/src/services/RouterService.ts","webpack:///nextcloud/apps/files/src/services/Settings.js","webpack:///nextcloud/apps/files/src/models/Setting.js","webpack:///nextcloud/node_modules/@nextcloud/upload/dist/assets/index-Ussc_ol3.css","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue?vue&type=style&index=0&id=499e1525&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue?vue&type=style&index=0&id=42ea6dd4&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=0&id=5edd44ea&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=1&id=5edd44ea&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=style&index=0&id=2dd1845e&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=0&id=d5a5c156&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=1&id=d5a5c156&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/views/FilesList.vue?vue&type=style&index=0&id=5c37291f&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=style&index=0&id=476b6b93&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=style&index=0&id=00f09e69&prod&lang=scss&scoped=true","webpack:///nextcloud/node_modules/events/events.js","webpack:///nextcloud/node_modules/readable-stream/errors-browser.js","webpack:///nextcloud/node_modules/readable-stream/lib/_stream_duplex.js","webpack:///nextcloud/node_modules/readable-stream/lib/_stream_passthrough.js","webpack:///nextcloud/node_modules/readable-stream/lib/_stream_readable.js","webpack:///nextcloud/node_modules/readable-stream/lib/_stream_transform.js","webpack:///nextcloud/node_modules/readable-stream/lib/_stream_writable.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/async_iterator.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/buffer_list.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/destroy.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/end-of-stream.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/from-browser.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/pipeline.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/state.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/stream-browser.js","webpack:///nextcloud/node_modules/safe-buffer/index.js","webpack:///nextcloud/node_modules/sax/lib/sax.js","webpack:///nextcloud/node_modules/setimmediate/setImmediate.js","webpack:///nextcloud/node_modules/simple-eta/index.js","webpack:///nextcloud/node_modules/stream-browserify/index.js","webpack:///nextcloud/node_modules/string_decoder/lib/string_decoder.js","webpack:///nextcloud/node_modules/timers-browserify/main.js","webpack:///nextcloud/node_modules/util-deprecate/browser.js","webpack:///nextcloud/node_modules/xml2js/lib/bom.js","webpack:///nextcloud/node_modules/xml2js/lib/builder.js","webpack:///nextcloud/node_modules/xml2js/lib/defaults.js","webpack:///nextcloud/node_modules/xml2js/lib/parser.js","webpack:///nextcloud/node_modules/xml2js/lib/processors.js","webpack:///nextcloud/node_modules/xml2js/lib/xml2js.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/DocumentPosition.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/NodeType.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/Utility.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/WriterState.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLAttribute.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLCData.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLCharacterData.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLComment.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMImplementation.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMStringList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDAttList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDElement.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDEntity.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDNotation.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDeclaration.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocType.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocument.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocumentCB.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDummy.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLElement.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNode.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNodeList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLRaw.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStreamWriter.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStringWriter.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStringifier.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLText.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLWriterBase.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/index.js","webpack:///nextcloud/node_modules/@nextcloud/files/dist/index.mjs","webpack://nextcloud/./node_modules/@nextcloud/upload/dist/assets/index-Ussc_ol3.css?40cd","webpack:///nextcloud/node_modules/p-cancelable/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-timeout/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/priority-queue.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/lower-bound.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/dist/chunks/index-DM2X1kc6.mjs","webpack:///nextcloud/node_modules/axios/index.js","webpack:///nextcloud/webpack/bootstrap","webpack:///nextcloud/webpack/runtime/compat get default export","webpack:///nextcloud/webpack/runtime/define property getters","webpack:///nextcloud/webpack/runtime/ensure chunk","webpack:///nextcloud/webpack/runtime/get javascript chunk filename","webpack:///nextcloud/webpack/runtime/global","webpack:///nextcloud/webpack/runtime/hasOwnProperty shorthand","webpack:///nextcloud/webpack/runtime/make namespace object","webpack:///nextcloud/webpack/runtime/node module decorator","webpack:///nextcloud/webpack/runtime/runtimeId","webpack:///nextcloud/webpack/runtime/publicPath","webpack:///nextcloud/webpack/runtime/jsonp chunk loading","webpack:///nextcloud/webpack/runtime/nonce","webpack:///nextcloud/webpack/startup"],"sourcesContent":["var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","var inProgress = {};\nvar dataWebpackPrefix = \"nextcloud:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = (url, done, key, chunkId) => {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tscript.timeout = 120;\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = (prev, event) => {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach((fn) => (fn(event)));\n\t\tif(prev) return prev(event);\n\t}\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n  , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n  Events.prototype = Object.create(null);\n\n  //\n  // This hack is needed because the `__proto__` property is still inherited in\n  // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n  //\n  if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n  this.fn = fn;\n  this.context = context;\n  this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n  if (typeof fn !== 'function') {\n    throw new TypeError('The listener must be a function');\n  }\n\n  var listener = new EE(fn, context || emitter, once)\n    , evt = prefix ? prefix + event : event;\n\n  if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n  else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n  else emitter._events[evt] = [emitter._events[evt], listener];\n\n  return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n  if (--emitter._eventsCount === 0) emitter._events = new Events();\n  else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n  this._events = new Events();\n  this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n  var names = []\n    , events\n    , name;\n\n  if (this._eventsCount === 0) return names;\n\n  for (name in (events = this._events)) {\n    if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n  }\n\n  if (Object.getOwnPropertySymbols) {\n    return names.concat(Object.getOwnPropertySymbols(events));\n  }\n\n  return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n  var evt = prefix ? prefix + event : event\n    , handlers = this._events[evt];\n\n  if (!handlers) return [];\n  if (handlers.fn) return [handlers.fn];\n\n  for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n    ee[i] = handlers[i].fn;\n  }\n\n  return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n  var evt = prefix ? prefix + event : event\n    , listeners = this._events[evt];\n\n  if (!listeners) return 0;\n  if (listeners.fn) return 1;\n  return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n  var evt = prefix ? prefix + event : event;\n\n  if (!this._events[evt]) return false;\n\n  var listeners = this._events[evt]\n    , len = arguments.length\n    , args\n    , i;\n\n  if (listeners.fn) {\n    if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n    switch (len) {\n      case 1: return listeners.fn.call(listeners.context), true;\n      case 2: return listeners.fn.call(listeners.context, a1), true;\n      case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n      case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n      case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n      case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n    }\n\n    for (i = 1, args = new Array(len -1); i < len; i++) {\n      args[i - 1] = arguments[i];\n    }\n\n    listeners.fn.apply(listeners.context, args);\n  } else {\n    var length = listeners.length\n      , j;\n\n    for (i = 0; i < length; i++) {\n      if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n      switch (len) {\n        case 1: listeners[i].fn.call(listeners[i].context); break;\n        case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n        case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n        case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n        default:\n          if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n            args[j - 1] = arguments[j];\n          }\n\n          listeners[i].fn.apply(listeners[i].context, args);\n      }\n    }\n  }\n\n  return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n  return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n  return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n  var evt = prefix ? prefix + event : event;\n\n  if (!this._events[evt]) return this;\n  if (!fn) {\n    clearEvent(this, evt);\n    return this;\n  }\n\n  var listeners = this._events[evt];\n\n  if (listeners.fn) {\n    if (\n      listeners.fn === fn &&\n      (!once || listeners.once) &&\n      (!context || listeners.context === context)\n    ) {\n      clearEvent(this, evt);\n    }\n  } else {\n    for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n      if (\n        listeners[i].fn !== fn ||\n        (once && !listeners[i].once) ||\n        (context && listeners[i].context !== context)\n      ) {\n        events.push(listeners[i]);\n      }\n    }\n\n    //\n    // Reset the array, or remove it completely if we have no more listeners.\n    //\n    if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n    else clearEvent(this, evt);\n  }\n\n  return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n  var evt;\n\n  if (event) {\n    evt = prefix ? prefix + event : event;\n    if (this._events[evt]) clearEvent(this, evt);\n  } else {\n    this._events = new Events();\n    this._eventsCount = 0;\n  }\n\n  return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n  module.exports = EventEmitter;\n}\n","/**\n * @copyright Copyright (c) 2024 Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { createPinia } from 'pinia';\nexport const pinia = createPinia();\n","const token = '%[a-f0-9]{2}';\nconst singleMatcher = new RegExp('(' + token + ')|([^%]+?)', 'gi');\nconst multiMatcher = new RegExp('(' + token + ')+', 'gi');\n\nfunction decodeComponents(components, split) {\n\ttry {\n\t\t// Try to decode the entire string first\n\t\treturn [decodeURIComponent(components.join(''))];\n\t} catch {\n\t\t// Do nothing\n\t}\n\n\tif (components.length === 1) {\n\t\treturn components;\n\t}\n\n\tsplit = split || 1;\n\n\t// Split the array in 2 parts\n\tconst left = components.slice(0, split);\n\tconst right = components.slice(split);\n\n\treturn Array.prototype.concat.call([], decodeComponents(left), decodeComponents(right));\n}\n\nfunction decode(input) {\n\ttry {\n\t\treturn decodeURIComponent(input);\n\t} catch {\n\t\tlet tokens = input.match(singleMatcher) || [];\n\n\t\tfor (let i = 1; i < tokens.length; i++) {\n\t\t\tinput = decodeComponents(tokens, i).join('');\n\n\t\t\ttokens = input.match(singleMatcher) || [];\n\t\t}\n\n\t\treturn input;\n\t}\n}\n\nfunction customDecodeURIComponent(input) {\n\t// Keep track of all the replacements and prefill the map with the `BOM`\n\tconst replaceMap = {\n\t\t'%FE%FF': '\\uFFFD\\uFFFD',\n\t\t'%FF%FE': '\\uFFFD\\uFFFD',\n\t};\n\n\tlet match = multiMatcher.exec(input);\n\twhile (match) {\n\t\ttry {\n\t\t\t// Decode as big chunks as possible\n\t\t\treplaceMap[match[0]] = decodeURIComponent(match[0]);\n\t\t} catch {\n\t\t\tconst result = decode(match[0]);\n\n\t\t\tif (result !== match[0]) {\n\t\t\t\treplaceMap[match[0]] = result;\n\t\t\t}\n\t\t}\n\n\t\tmatch = multiMatcher.exec(input);\n\t}\n\n\t// Add `%C2` at the end of the map to make sure it does not replace the combinator before everything else\n\treplaceMap['%C2'] = '\\uFFFD';\n\n\tconst entries = Object.keys(replaceMap);\n\n\tfor (const key of entries) {\n\t\t// Replace all decoded components\n\t\tinput = input.replace(new RegExp(key, 'g'), replaceMap[key]);\n\t}\n\n\treturn input;\n}\n\nexport default function decodeUriComponent(encodedURI) {\n\tif (typeof encodedURI !== 'string') {\n\t\tthrow new TypeError('Expected `encodedURI` to be of type `string`, got `' + typeof encodedURI + '`');\n\t}\n\n\ttry {\n\t\t// Try the built in decoder first\n\t\treturn decodeURIComponent(encodedURI);\n\t} catch {\n\t\t// Fallback to a more advanced decoder\n\t\treturn customDecodeURIComponent(encodedURI);\n\t}\n}\n","export default function splitOnFirst(string, separator) {\n\tif (!(typeof string === 'string' && typeof separator === 'string')) {\n\t\tthrow new TypeError('Expected the arguments to be of type `string`');\n\t}\n\n\tif (string === '' || separator === '') {\n\t\treturn [];\n\t}\n\n\tconst separatorIndex = string.indexOf(separator);\n\n\tif (separatorIndex === -1) {\n\t\treturn [];\n\t}\n\n\treturn [\n\t\tstring.slice(0, separatorIndex),\n\t\tstring.slice(separatorIndex + separator.length)\n\t];\n}\n","export function includeKeys(object, predicate) {\n\tconst result = {};\n\n\tif (Array.isArray(predicate)) {\n\t\tfor (const key of predicate) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor?.enumerable) {\n\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// `Reflect.ownKeys()` is required to retrieve symbol properties\n\t\tfor (const key of Reflect.ownKeys(object)) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor.enumerable) {\n\t\t\t\tconst value = object[key];\n\t\t\t\tif (predicate(key, value, object)) {\n\t\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n\nexport function excludeKeys(object, predicate) {\n\tif (Array.isArray(predicate)) {\n\t\tconst set = new Set(predicate);\n\t\treturn includeKeys(object, key => !set.has(key));\n\t}\n\n\treturn includeKeys(object, (key, value, object) => !predicate(key, value, object));\n}\n","import decodeComponent from 'decode-uri-component';\nimport splitOnFirst from 'split-on-first';\nimport {includeKeys} from 'filter-obj';\n\nconst isNullOrUndefined = value => value === null || value === undefined;\n\n// eslint-disable-next-line unicorn/prefer-code-point\nconst strictUriEncode = string => encodeURIComponent(string).replaceAll(/[!'()*]/g, x => `%${x.charCodeAt(0).toString(16).toUpperCase()}`);\n\nconst encodeFragmentIdentifier = Symbol('encodeFragmentIdentifier');\n\nfunction encoderForArrayFormat(options) {\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tconst index = result.length;\n\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result, [encode(key, options), '[', index, ']'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[', encode(index, options), ']=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), '[]'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[]=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), ':list='].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), ':list=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator':\n\t\tcase 'bracket-separator': {\n\t\t\tconst keyValueSeparator = options.arrayFormat === 'bracket-separator'\n\t\t\t\t? '[]='\n\t\t\t\t: '=';\n\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\t// Translate null to an empty string so that it doesn't serialize as 'null'\n\t\t\t\tvalue = value === null ? '' : value;\n\n\t\t\t\tif (result.length === 0) {\n\t\t\t\t\treturn [[encode(key, options), keyValueSeparator, encode(value, options)].join('')];\n\t\t\t\t}\n\n\t\t\t\treturn [[result, encode(value, options)].join(options.arrayFormatSeparator)];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\tencode(key, options),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction parserForArrayFormat(options) {\n\tlet result;\n\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /\\[(\\d*)]$/.exec(key);\n\n\t\t\t\tkey = key.replace(/\\[\\d*]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = {};\n\t\t\t\t}\n\n\t\t\t\taccumulator[key][result[1]] = value;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(\\[])$/.exec(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(:list)$/.exec(key);\n\t\t\t\tkey = key.replace(/:list$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = typeof value === 'string' && value.includes(options.arrayFormatSeparator);\n\t\t\t\tconst isEncodedArray = (typeof value === 'string' && !isArray && decode(value, options).includes(options.arrayFormatSeparator));\n\t\t\t\tvalue = isEncodedArray ? decode(value, options) : value;\n\t\t\t\tconst newValue = isArray || isEncodedArray ? value.split(options.arrayFormatSeparator).map(item => decode(item, options)) : (value === null ? value : decode(value, options));\n\t\t\t\taccumulator[key] = newValue;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = /(\\[])$/.test(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!isArray) {\n\t\t\t\t\taccumulator[key] = value ? decode(value, options) : value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tconst arrayValue = value === null\n\t\t\t\t\t? []\n\t\t\t\t\t: value.split(options.arrayFormatSeparator).map(item => decode(item, options));\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = arrayValue;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], ...arrayValue];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...[accumulator[key]].flat(), value];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction validateArrayFormatSeparator(value) {\n\tif (typeof value !== 'string' || value.length !== 1) {\n\t\tthrow new TypeError('arrayFormatSeparator must be single character string');\n\t}\n}\n\nfunction encode(value, options) {\n\tif (options.encode) {\n\t\treturn options.strict ? strictUriEncode(value) : encodeURIComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction decode(value, options) {\n\tif (options.decode) {\n\t\treturn decodeComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction keysSorter(input) {\n\tif (Array.isArray(input)) {\n\t\treturn input.sort();\n\t}\n\n\tif (typeof input === 'object') {\n\t\treturn keysSorter(Object.keys(input))\n\t\t\t.sort((a, b) => Number(a) - Number(b))\n\t\t\t.map(key => input[key]);\n\t}\n\n\treturn input;\n}\n\nfunction removeHash(input) {\n\tconst hashStart = input.indexOf('#');\n\tif (hashStart !== -1) {\n\t\tinput = input.slice(0, hashStart);\n\t}\n\n\treturn input;\n}\n\nfunction getHash(url) {\n\tlet hash = '';\n\tconst hashStart = url.indexOf('#');\n\tif (hashStart !== -1) {\n\t\thash = url.slice(hashStart);\n\t}\n\n\treturn hash;\n}\n\nfunction parseValue(value, options) {\n\tif (options.parseNumbers && !Number.isNaN(Number(value)) && (typeof value === 'string' && value.trim() !== '')) {\n\t\tvalue = Number(value);\n\t} else if (options.parseBooleans && value !== null && (value.toLowerCase() === 'true' || value.toLowerCase() === 'false')) {\n\t\tvalue = value.toLowerCase() === 'true';\n\t}\n\n\treturn value;\n}\n\nexport function extract(input) {\n\tinput = removeHash(input);\n\tconst queryStart = input.indexOf('?');\n\tif (queryStart === -1) {\n\t\treturn '';\n\t}\n\n\treturn input.slice(queryStart + 1);\n}\n\nexport function parse(query, options) {\n\toptions = {\n\t\tdecode: true,\n\t\tsort: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',',\n\t\tparseNumbers: false,\n\t\tparseBooleans: false,\n\t\t...options,\n\t};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst formatter = parserForArrayFormat(options);\n\n\t// Create an object with no prototype\n\tconst returnValue = Object.create(null);\n\n\tif (typeof query !== 'string') {\n\t\treturn returnValue;\n\t}\n\n\tquery = query.trim().replace(/^[?#&]/, '');\n\n\tif (!query) {\n\t\treturn returnValue;\n\t}\n\n\tfor (const parameter of query.split('&')) {\n\t\tif (parameter === '') {\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst parameter_ = options.decode ? parameter.replaceAll('+', ' ') : parameter;\n\n\t\tlet [key, value] = splitOnFirst(parameter_, '=');\n\n\t\tif (key === undefined) {\n\t\t\tkey = parameter_;\n\t\t}\n\n\t\t// Missing `=` should be `null`:\n\t\t// http://w3.org/TR/2012/WD-url-20120524/#collect-url-parameters\n\t\tvalue = value === undefined ? null : (['comma', 'separator', 'bracket-separator'].includes(options.arrayFormat) ? value : decode(value, options));\n\t\tformatter(decode(key, options), value, returnValue);\n\t}\n\n\tfor (const [key, value] of Object.entries(returnValue)) {\n\t\tif (typeof value === 'object' && value !== null) {\n\t\t\tfor (const [key2, value2] of Object.entries(value)) {\n\t\t\t\tvalue[key2] = parseValue(value2, options);\n\t\t\t}\n\t\t} else {\n\t\t\treturnValue[key] = parseValue(value, options);\n\t\t}\n\t}\n\n\tif (options.sort === false) {\n\t\treturn returnValue;\n\t}\n\n\t// TODO: Remove the use of `reduce`.\n\t// eslint-disable-next-line unicorn/no-array-reduce\n\treturn (options.sort === true ? Object.keys(returnValue).sort() : Object.keys(returnValue).sort(options.sort)).reduce((result, key) => {\n\t\tconst value = returnValue[key];\n\t\tresult[key] = Boolean(value) && typeof value === 'object' && !Array.isArray(value) ? keysSorter(value) : value;\n\t\treturn result;\n\t}, Object.create(null));\n}\n\nexport function stringify(object, options) {\n\tif (!object) {\n\t\treturn '';\n\t}\n\n\toptions = {\n\t\tencode: true,\n\t\tstrict: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',',\n\t\t...options,\n\t};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst shouldFilter = key => (\n\t\t(options.skipNull && isNullOrUndefined(object[key]))\n\t\t|| (options.skipEmptyString && object[key] === '')\n\t);\n\n\tconst formatter = encoderForArrayFormat(options);\n\n\tconst objectCopy = {};\n\n\tfor (const [key, value] of Object.entries(object)) {\n\t\tif (!shouldFilter(key)) {\n\t\t\tobjectCopy[key] = value;\n\t\t}\n\t}\n\n\tconst keys = Object.keys(objectCopy);\n\n\tif (options.sort !== false) {\n\t\tkeys.sort(options.sort);\n\t}\n\n\treturn keys.map(key => {\n\t\tconst value = object[key];\n\n\t\tif (value === undefined) {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (value === null) {\n\t\t\treturn encode(key, options);\n\t\t}\n\n\t\tif (Array.isArray(value)) {\n\t\t\tif (value.length === 0 && options.arrayFormat === 'bracket-separator') {\n\t\t\t\treturn encode(key, options) + '[]';\n\t\t\t}\n\n\t\t\treturn value\n\t\t\t\t.reduce(formatter(key), [])\n\t\t\t\t.join('&');\n\t\t}\n\n\t\treturn encode(key, options) + '=' + encode(value, options);\n\t}).filter(x => x.length > 0).join('&');\n}\n\nexport function parseUrl(url, options) {\n\toptions = {\n\t\tdecode: true,\n\t\t...options,\n\t};\n\n\tlet [url_, hash] = splitOnFirst(url, '#');\n\n\tif (url_ === undefined) {\n\t\turl_ = url;\n\t}\n\n\treturn {\n\t\turl: url_?.split('?')?.[0] ?? '',\n\t\tquery: parse(extract(url), options),\n\t\t...(options && options.parseFragmentIdentifier && hash ? {fragmentIdentifier: decode(hash, options)} : {}),\n\t};\n}\n\nexport function stringifyUrl(object, options) {\n\toptions = {\n\t\tencode: true,\n\t\tstrict: true,\n\t\t[encodeFragmentIdentifier]: true,\n\t\t...options,\n\t};\n\n\tconst url = removeHash(object.url).split('?')[0] || '';\n\tconst queryFromUrl = extract(object.url);\n\n\tconst query = {\n\t\t...parse(queryFromUrl, {sort: false}),\n\t\t...object.query,\n\t};\n\n\tlet queryString = stringify(query, options);\n\tqueryString &&= `?${queryString}`;\n\n\tlet hash = getHash(object.url);\n\tif (typeof object.fragmentIdentifier === 'string') {\n\t\tconst urlObjectForFragmentEncode = new URL(url);\n\t\turlObjectForFragmentEncode.hash = object.fragmentIdentifier;\n\t\thash = options[encodeFragmentIdentifier] ? urlObjectForFragmentEncode.hash : `#${object.fragmentIdentifier}`;\n\t}\n\n\treturn `${url}${queryString}${hash}`;\n}\n\nexport function pick(input, filter, options) {\n\toptions = {\n\t\tparseFragmentIdentifier: true,\n\t\t[encodeFragmentIdentifier]: false,\n\t\t...options,\n\t};\n\n\tconst {url, query, fragmentIdentifier} = parseUrl(input, options);\n\n\treturn stringifyUrl({\n\t\turl,\n\t\tquery: includeKeys(query, filter),\n\t\tfragmentIdentifier,\n\t}, options);\n}\n\nexport function exclude(input, filter, options) {\n\tconst exclusionFilter = Array.isArray(filter) ? key => !filter.includes(key) : (key, value) => !filter(key, value);\n\n\treturn pick(input, exclusionFilter, options);\n}\n","import * as queryString from './base.js';\n\nexport default queryString;\n","/*!\n  * vue-router v3.6.5\n  * (c) 2022 Evan You\n  * @license MIT\n  */\n/*  */\n\nfunction assert (condition, message) {\n  if (!condition) {\n    throw new Error((\"[vue-router] \" + message))\n  }\n}\n\nfunction warn (condition, message) {\n  if (!condition) {\n    typeof console !== 'undefined' && console.warn((\"[vue-router] \" + message));\n  }\n}\n\nfunction extend (a, b) {\n  for (var key in b) {\n    a[key] = b[key];\n  }\n  return a\n}\n\n/*  */\n\nvar encodeReserveRE = /[!'()*]/g;\nvar encodeReserveReplacer = function (c) { return '%' + c.charCodeAt(0).toString(16); };\nvar commaRE = /%2C/g;\n\n// fixed encodeURIComponent which is more conformant to RFC3986:\n// - escapes [!'()*]\n// - preserve commas\nvar encode = function (str) { return encodeURIComponent(str)\n    .replace(encodeReserveRE, encodeReserveReplacer)\n    .replace(commaRE, ','); };\n\nfunction decode (str) {\n  try {\n    return decodeURIComponent(str)\n  } catch (err) {\n    if (process.env.NODE_ENV !== 'production') {\n      warn(false, (\"Error decoding \\\"\" + str + \"\\\". Leaving it intact.\"));\n    }\n  }\n  return str\n}\n\nfunction resolveQuery (\n  query,\n  extraQuery,\n  _parseQuery\n) {\n  if ( extraQuery === void 0 ) extraQuery = {};\n\n  var parse = _parseQuery || parseQuery;\n  var parsedQuery;\n  try {\n    parsedQuery = parse(query || '');\n  } catch (e) {\n    process.env.NODE_ENV !== 'production' && warn(false, e.message);\n    parsedQuery = {};\n  }\n  for (var key in extraQuery) {\n    var value = extraQuery[key];\n    parsedQuery[key] = Array.isArray(value)\n      ? value.map(castQueryParamValue)\n      : castQueryParamValue(value);\n  }\n  return parsedQuery\n}\n\nvar castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };\n\nfunction parseQuery (query) {\n  var res = {};\n\n  query = query.trim().replace(/^(\\?|#|&)/, '');\n\n  if (!query) {\n    return res\n  }\n\n  query.split('&').forEach(function (param) {\n    var parts = param.replace(/\\+/g, ' ').split('=');\n    var key = decode(parts.shift());\n    var val = parts.length > 0 ? decode(parts.join('=')) : null;\n\n    if (res[key] === undefined) {\n      res[key] = val;\n    } else if (Array.isArray(res[key])) {\n      res[key].push(val);\n    } else {\n      res[key] = [res[key], val];\n    }\n  });\n\n  return res\n}\n\nfunction stringifyQuery (obj) {\n  var res = obj\n    ? Object.keys(obj)\n      .map(function (key) {\n        var val = obj[key];\n\n        if (val === undefined) {\n          return ''\n        }\n\n        if (val === null) {\n          return encode(key)\n        }\n\n        if (Array.isArray(val)) {\n          var result = [];\n          val.forEach(function (val2) {\n            if (val2 === undefined) {\n              return\n            }\n            if (val2 === null) {\n              result.push(encode(key));\n            } else {\n              result.push(encode(key) + '=' + encode(val2));\n            }\n          });\n          return result.join('&')\n        }\n\n        return encode(key) + '=' + encode(val)\n      })\n      .filter(function (x) { return x.length > 0; })\n      .join('&')\n    : null;\n  return res ? (\"?\" + res) : ''\n}\n\n/*  */\n\nvar trailingSlashRE = /\\/?$/;\n\nfunction createRoute (\n  record,\n  location,\n  redirectedFrom,\n  router\n) {\n  var stringifyQuery = router && router.options.stringifyQuery;\n\n  var query = location.query || {};\n  try {\n    query = clone(query);\n  } catch (e) {}\n\n  var route = {\n    name: location.name || (record && record.name),\n    meta: (record && record.meta) || {},\n    path: location.path || '/',\n    hash: location.hash || '',\n    query: query,\n    params: location.params || {},\n    fullPath: getFullPath(location, stringifyQuery),\n    matched: record ? formatMatch(record) : []\n  };\n  if (redirectedFrom) {\n    route.redirectedFrom = getFullPath(redirectedFrom, stringifyQuery);\n  }\n  return Object.freeze(route)\n}\n\nfunction clone (value) {\n  if (Array.isArray(value)) {\n    return value.map(clone)\n  } else if (value && typeof value === 'object') {\n    var res = {};\n    for (var key in value) {\n      res[key] = clone(value[key]);\n    }\n    return res\n  } else {\n    return value\n  }\n}\n\n// the starting route that represents the initial state\nvar START = createRoute(null, {\n  path: '/'\n});\n\nfunction formatMatch (record) {\n  var res = [];\n  while (record) {\n    res.unshift(record);\n    record = record.parent;\n  }\n  return res\n}\n\nfunction getFullPath (\n  ref,\n  _stringifyQuery\n) {\n  var path = ref.path;\n  var query = ref.query; if ( query === void 0 ) query = {};\n  var hash = ref.hash; if ( hash === void 0 ) hash = '';\n\n  var stringify = _stringifyQuery || stringifyQuery;\n  return (path || '/') + stringify(query) + hash\n}\n\nfunction isSameRoute (a, b, onlyPath) {\n  if (b === START) {\n    return a === b\n  } else if (!b) {\n    return false\n  } else if (a.path && b.path) {\n    return a.path.replace(trailingSlashRE, '') === b.path.replace(trailingSlashRE, '') && (onlyPath ||\n      a.hash === b.hash &&\n      isObjectEqual(a.query, b.query))\n  } else if (a.name && b.name) {\n    return (\n      a.name === b.name &&\n      (onlyPath || (\n        a.hash === b.hash &&\n      isObjectEqual(a.query, b.query) &&\n      isObjectEqual(a.params, b.params))\n      )\n    )\n  } else {\n    return false\n  }\n}\n\nfunction isObjectEqual (a, b) {\n  if ( a === void 0 ) a = {};\n  if ( b === void 0 ) b = {};\n\n  // handle null value #1566\n  if (!a || !b) { return a === b }\n  var aKeys = Object.keys(a).sort();\n  var bKeys = Object.keys(b).sort();\n  if (aKeys.length !== bKeys.length) {\n    return false\n  }\n  return aKeys.every(function (key, i) {\n    var aVal = a[key];\n    var bKey = bKeys[i];\n    if (bKey !== key) { return false }\n    var bVal = b[key];\n    // query values can be null and undefined\n    if (aVal == null || bVal == null) { return aVal === bVal }\n    // check nested equality\n    if (typeof aVal === 'object' && typeof bVal === 'object') {\n      return isObjectEqual(aVal, bVal)\n    }\n    return String(aVal) === String(bVal)\n  })\n}\n\nfunction isIncludedRoute (current, target) {\n  return (\n    current.path.replace(trailingSlashRE, '/').indexOf(\n      target.path.replace(trailingSlashRE, '/')\n    ) === 0 &&\n    (!target.hash || current.hash === target.hash) &&\n    queryIncludes(current.query, target.query)\n  )\n}\n\nfunction queryIncludes (current, target) {\n  for (var key in target) {\n    if (!(key in current)) {\n      return false\n    }\n  }\n  return true\n}\n\nfunction handleRouteEntered (route) {\n  for (var i = 0; i < route.matched.length; i++) {\n    var record = route.matched[i];\n    for (var name in record.instances) {\n      var instance = record.instances[name];\n      var cbs = record.enteredCbs[name];\n      if (!instance || !cbs) { continue }\n      delete record.enteredCbs[name];\n      for (var i$1 = 0; i$1 < cbs.length; i$1++) {\n        if (!instance._isBeingDestroyed) { cbs[i$1](instance); }\n      }\n    }\n  }\n}\n\nvar View = {\n  name: 'RouterView',\n  functional: true,\n  props: {\n    name: {\n      type: String,\n      default: 'default'\n    }\n  },\n  render: function render (_, ref) {\n    var props = ref.props;\n    var children = ref.children;\n    var parent = ref.parent;\n    var data = ref.data;\n\n    // used by devtools to display a router-view badge\n    data.routerView = true;\n\n    // directly use parent context's createElement() function\n    // so that components rendered by router-view can resolve named slots\n    var h = parent.$createElement;\n    var name = props.name;\n    var route = parent.$route;\n    var cache = parent._routerViewCache || (parent._routerViewCache = {});\n\n    // determine current view depth, also check to see if the tree\n    // has been toggled inactive but kept-alive.\n    var depth = 0;\n    var inactive = false;\n    while (parent && parent._routerRoot !== parent) {\n      var vnodeData = parent.$vnode ? parent.$vnode.data : {};\n      if (vnodeData.routerView) {\n        depth++;\n      }\n      if (vnodeData.keepAlive && parent._directInactive && parent._inactive) {\n        inactive = true;\n      }\n      parent = parent.$parent;\n    }\n    data.routerViewDepth = depth;\n\n    // render previous view if the tree is inactive and kept-alive\n    if (inactive) {\n      var cachedData = cache[name];\n      var cachedComponent = cachedData && cachedData.component;\n      if (cachedComponent) {\n        // #2301\n        // pass props\n        if (cachedData.configProps) {\n          fillPropsinData(cachedComponent, data, cachedData.route, cachedData.configProps);\n        }\n        return h(cachedComponent, data, children)\n      } else {\n        // render previous empty view\n        return h()\n      }\n    }\n\n    var matched = route.matched[depth];\n    var component = matched && matched.components[name];\n\n    // render empty node if no matched route or no config component\n    if (!matched || !component) {\n      cache[name] = null;\n      return h()\n    }\n\n    // cache component\n    cache[name] = { component: component };\n\n    // attach instance registration hook\n    // this will be called in the instance's injected lifecycle hooks\n    data.registerRouteInstance = function (vm, val) {\n      // val could be undefined for unregistration\n      var current = matched.instances[name];\n      if (\n        (val && current !== vm) ||\n        (!val && current === vm)\n      ) {\n        matched.instances[name] = val;\n      }\n    }\n\n    // also register instance in prepatch hook\n    // in case the same component instance is reused across different routes\n    ;(data.hook || (data.hook = {})).prepatch = function (_, vnode) {\n      matched.instances[name] = vnode.componentInstance;\n    };\n\n    // register instance in init hook\n    // in case kept-alive component be actived when routes changed\n    data.hook.init = function (vnode) {\n      if (vnode.data.keepAlive &&\n        vnode.componentInstance &&\n        vnode.componentInstance !== matched.instances[name]\n      ) {\n        matched.instances[name] = vnode.componentInstance;\n      }\n\n      // if the route transition has already been confirmed then we weren't\n      // able to call the cbs during confirmation as the component was not\n      // registered yet, so we call it here.\n      handleRouteEntered(route);\n    };\n\n    var configProps = matched.props && matched.props[name];\n    // save route and configProps in cache\n    if (configProps) {\n      extend(cache[name], {\n        route: route,\n        configProps: configProps\n      });\n      fillPropsinData(component, data, route, configProps);\n    }\n\n    return h(component, data, children)\n  }\n};\n\nfunction fillPropsinData (component, data, route, configProps) {\n  // resolve props\n  var propsToPass = data.props = resolveProps(route, configProps);\n  if (propsToPass) {\n    // clone to prevent mutation\n    propsToPass = data.props = extend({}, propsToPass);\n    // pass non-declared props as attrs\n    var attrs = data.attrs = data.attrs || {};\n    for (var key in propsToPass) {\n      if (!component.props || !(key in component.props)) {\n        attrs[key] = propsToPass[key];\n        delete propsToPass[key];\n      }\n    }\n  }\n}\n\nfunction resolveProps (route, config) {\n  switch (typeof config) {\n    case 'undefined':\n      return\n    case 'object':\n      return config\n    case 'function':\n      return config(route)\n    case 'boolean':\n      return config ? route.params : undefined\n    default:\n      if (process.env.NODE_ENV !== 'production') {\n        warn(\n          false,\n          \"props in \\\"\" + (route.path) + \"\\\" is a \" + (typeof config) + \", \" +\n          \"expecting an object, function or boolean.\"\n        );\n      }\n  }\n}\n\n/*  */\n\nfunction resolvePath (\n  relative,\n  base,\n  append\n) {\n  var firstChar = relative.charAt(0);\n  if (firstChar === '/') {\n    return relative\n  }\n\n  if (firstChar === '?' || firstChar === '#') {\n    return base + relative\n  }\n\n  var stack = base.split('/');\n\n  // remove trailing segment if:\n  // - not appending\n  // - appending to trailing slash (last segment is empty)\n  if (!append || !stack[stack.length - 1]) {\n    stack.pop();\n  }\n\n  // resolve relative path\n  var segments = relative.replace(/^\\//, '').split('/');\n  for (var i = 0; i < segments.length; i++) {\n    var segment = segments[i];\n    if (segment === '..') {\n      stack.pop();\n    } else if (segment !== '.') {\n      stack.push(segment);\n    }\n  }\n\n  // ensure leading slash\n  if (stack[0] !== '') {\n    stack.unshift('');\n  }\n\n  return stack.join('/')\n}\n\nfunction parsePath (path) {\n  var hash = '';\n  var query = '';\n\n  var hashIndex = path.indexOf('#');\n  if (hashIndex >= 0) {\n    hash = path.slice(hashIndex);\n    path = path.slice(0, hashIndex);\n  }\n\n  var queryIndex = path.indexOf('?');\n  if (queryIndex >= 0) {\n    query = path.slice(queryIndex + 1);\n    path = path.slice(0, queryIndex);\n  }\n\n  return {\n    path: path,\n    query: query,\n    hash: hash\n  }\n}\n\nfunction cleanPath (path) {\n  return path.replace(/\\/(?:\\s*\\/)+/g, '/')\n}\n\nvar isarray = Array.isArray || function (arr) {\n  return Object.prototype.toString.call(arr) == '[object Array]';\n};\n\n/**\n * Expose `pathToRegexp`.\n */\nvar pathToRegexp_1 = pathToRegexp;\nvar parse_1 = parse;\nvar compile_1 = compile;\nvar tokensToFunction_1 = tokensToFunction;\nvar tokensToRegExp_1 = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n  // Match escaped characters that would otherwise appear in future matches.\n  // This allows the user to escape special characters that won't transform.\n  '(\\\\\\\\.)',\n  // Match Express-style parameters and un-named parameters with a prefix\n  // and optional suffixes. Matches appear as:\n  //\n  // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n  // \"/route(\\\\d+)\"  => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n  // \"/*\"            => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n  '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param  {string}  str\n * @param  {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n  var tokens = [];\n  var key = 0;\n  var index = 0;\n  var path = '';\n  var defaultDelimiter = options && options.delimiter || '/';\n  var res;\n\n  while ((res = PATH_REGEXP.exec(str)) != null) {\n    var m = res[0];\n    var escaped = res[1];\n    var offset = res.index;\n    path += str.slice(index, offset);\n    index = offset + m.length;\n\n    // Ignore already escaped sequences.\n    if (escaped) {\n      path += escaped[1];\n      continue\n    }\n\n    var next = str[index];\n    var prefix = res[2];\n    var name = res[3];\n    var capture = res[4];\n    var group = res[5];\n    var modifier = res[6];\n    var asterisk = res[7];\n\n    // Push the current path onto the tokens.\n    if (path) {\n      tokens.push(path);\n      path = '';\n    }\n\n    var partial = prefix != null && next != null && next !== prefix;\n    var repeat = modifier === '+' || modifier === '*';\n    var optional = modifier === '?' || modifier === '*';\n    var delimiter = res[2] || defaultDelimiter;\n    var pattern = capture || group;\n\n    tokens.push({\n      name: name || key++,\n      prefix: prefix || '',\n      delimiter: delimiter,\n      optional: optional,\n      repeat: repeat,\n      partial: partial,\n      asterisk: !!asterisk,\n      pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n    });\n  }\n\n  // Match any characters still remaining.\n  if (index < str.length) {\n    path += str.substr(index);\n  }\n\n  // If the path exists, push it onto the end.\n  if (path) {\n    tokens.push(path);\n  }\n\n  return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param  {string}             str\n * @param  {Object=}            options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n  return tokensToFunction(parse(str, options), options)\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param  {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n  return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n    return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n  })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param  {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n  return encodeURI(str).replace(/[?#]/g, function (c) {\n    return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n  })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens, options) {\n  // Compile all the tokens into regexps.\n  var matches = new Array(tokens.length);\n\n  // Compile all the patterns before compilation.\n  for (var i = 0; i < tokens.length; i++) {\n    if (typeof tokens[i] === 'object') {\n      matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options));\n    }\n  }\n\n  return function (obj, opts) {\n    var path = '';\n    var data = obj || {};\n    var options = opts || {};\n    var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n\n    for (var i = 0; i < tokens.length; i++) {\n      var token = tokens[i];\n\n      if (typeof token === 'string') {\n        path += token;\n\n        continue\n      }\n\n      var value = data[token.name];\n      var segment;\n\n      if (value == null) {\n        if (token.optional) {\n          // Prepend partial segment prefixes.\n          if (token.partial) {\n            path += token.prefix;\n          }\n\n          continue\n        } else {\n          throw new TypeError('Expected \"' + token.name + '\" to be defined')\n        }\n      }\n\n      if (isarray(value)) {\n        if (!token.repeat) {\n          throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n        }\n\n        if (value.length === 0) {\n          if (token.optional) {\n            continue\n          } else {\n            throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n          }\n        }\n\n        for (var j = 0; j < value.length; j++) {\n          segment = encode(value[j]);\n\n          if (!matches[i].test(segment)) {\n            throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n          }\n\n          path += (j === 0 ? token.prefix : token.delimiter) + segment;\n        }\n\n        continue\n      }\n\n      segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n\n      if (!matches[i].test(segment)) {\n        throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n      }\n\n      path += token.prefix + segment;\n    }\n\n    return path\n  }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param  {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n  return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param  {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n  return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param  {!RegExp} re\n * @param  {Array}   keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n  re.keys = keys;\n  return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param  {Object} options\n * @return {string}\n */\nfunction flags (options) {\n  return options && options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param  {!RegExp} path\n * @param  {!Array}  keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n  // Use a negative lookahead to match only capturing groups.\n  var groups = path.source.match(/\\((?!\\?)/g);\n\n  if (groups) {\n    for (var i = 0; i < groups.length; i++) {\n      keys.push({\n        name: i,\n        prefix: null,\n        delimiter: null,\n        optional: false,\n        repeat: false,\n        partial: false,\n        asterisk: false,\n        pattern: null\n      });\n    }\n  }\n\n  return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param  {!Array}  path\n * @param  {Array}   keys\n * @param  {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n  var parts = [];\n\n  for (var i = 0; i < path.length; i++) {\n    parts.push(pathToRegexp(path[i], keys, options).source);\n  }\n\n  var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n\n  return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param  {string}  path\n * @param  {!Array}  keys\n * @param  {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n  return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param  {!Array}          tokens\n * @param  {(Array|Object)=} keys\n * @param  {Object=}         options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n  if (!isarray(keys)) {\n    options = /** @type {!Object} */ (keys || options);\n    keys = [];\n  }\n\n  options = options || {};\n\n  var strict = options.strict;\n  var end = options.end !== false;\n  var route = '';\n\n  // Iterate over the tokens and create our regexp string.\n  for (var i = 0; i < tokens.length; i++) {\n    var token = tokens[i];\n\n    if (typeof token === 'string') {\n      route += escapeString(token);\n    } else {\n      var prefix = escapeString(token.prefix);\n      var capture = '(?:' + token.pattern + ')';\n\n      keys.push(token);\n\n      if (token.repeat) {\n        capture += '(?:' + prefix + capture + ')*';\n      }\n\n      if (token.optional) {\n        if (!token.partial) {\n          capture = '(?:' + prefix + '(' + capture + '))?';\n        } else {\n          capture = prefix + '(' + capture + ')?';\n        }\n      } else {\n        capture = prefix + '(' + capture + ')';\n      }\n\n      route += capture;\n    }\n  }\n\n  var delimiter = escapeString(options.delimiter || '/');\n  var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n  // In non-strict mode we allow a slash at the end of match. If the path to\n  // match already ends with a slash, we remove it for consistency. The slash\n  // is valid at the end of a path match, not in the middle. This is important\n  // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n  if (!strict) {\n    route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n  }\n\n  if (end) {\n    route += '$';\n  } else {\n    // In non-ending mode, we need the capturing groups to match as much as\n    // possible by using a positive lookahead to the end or next path segment.\n    route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n  }\n\n  return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param  {(string|RegExp|Array)} path\n * @param  {(Array|Object)=}       keys\n * @param  {Object=}               options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n  if (!isarray(keys)) {\n    options = /** @type {!Object} */ (keys || options);\n    keys = [];\n  }\n\n  options = options || {};\n\n  if (path instanceof RegExp) {\n    return regexpToRegexp(path, /** @type {!Array} */ (keys))\n  }\n\n  if (isarray(path)) {\n    return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n  }\n\n  return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\npathToRegexp_1.parse = parse_1;\npathToRegexp_1.compile = compile_1;\npathToRegexp_1.tokensToFunction = tokensToFunction_1;\npathToRegexp_1.tokensToRegExp = tokensToRegExp_1;\n\n/*  */\n\n// $flow-disable-line\nvar regexpCompileCache = Object.create(null);\n\nfunction fillParams (\n  path,\n  params,\n  routeMsg\n) {\n  params = params || {};\n  try {\n    var filler =\n      regexpCompileCache[path] ||\n      (regexpCompileCache[path] = pathToRegexp_1.compile(path));\n\n    // Fix #2505 resolving asterisk routes { name: 'not-found', params: { pathMatch: '/not-found' }}\n    // and fix #3106 so that you can work with location descriptor object having params.pathMatch equal to empty string\n    if (typeof params.pathMatch === 'string') { params[0] = params.pathMatch; }\n\n    return filler(params, { pretty: true })\n  } catch (e) {\n    if (process.env.NODE_ENV !== 'production') {\n      // Fix #3072 no warn if `pathMatch` is string\n      warn(typeof params.pathMatch === 'string', (\"missing param for \" + routeMsg + \": \" + (e.message)));\n    }\n    return ''\n  } finally {\n    // delete the 0 if it was added\n    delete params[0];\n  }\n}\n\n/*  */\n\nfunction normalizeLocation (\n  raw,\n  current,\n  append,\n  router\n) {\n  var next = typeof raw === 'string' ? { path: raw } : raw;\n  // named target\n  if (next._normalized) {\n    return next\n  } else if (next.name) {\n    next = extend({}, raw);\n    var params = next.params;\n    if (params && typeof params === 'object') {\n      next.params = extend({}, params);\n    }\n    return next\n  }\n\n  // relative params\n  if (!next.path && next.params && current) {\n    next = extend({}, next);\n    next._normalized = true;\n    var params$1 = extend(extend({}, current.params), next.params);\n    if (current.name) {\n      next.name = current.name;\n      next.params = params$1;\n    } else if (current.matched.length) {\n      var rawPath = current.matched[current.matched.length - 1].path;\n      next.path = fillParams(rawPath, params$1, (\"path \" + (current.path)));\n    } else if (process.env.NODE_ENV !== 'production') {\n      warn(false, \"relative params navigation requires a current route.\");\n    }\n    return next\n  }\n\n  var parsedPath = parsePath(next.path || '');\n  var basePath = (current && current.path) || '/';\n  var path = parsedPath.path\n    ? resolvePath(parsedPath.path, basePath, append || next.append)\n    : basePath;\n\n  var query = resolveQuery(\n    parsedPath.query,\n    next.query,\n    router && router.options.parseQuery\n  );\n\n  var hash = next.hash || parsedPath.hash;\n  if (hash && hash.charAt(0) !== '#') {\n    hash = \"#\" + hash;\n  }\n\n  return {\n    _normalized: true,\n    path: path,\n    query: query,\n    hash: hash\n  }\n}\n\n/*  */\n\n// work around weird flow bug\nvar toTypes = [String, Object];\nvar eventTypes = [String, Array];\n\nvar noop = function () {};\n\nvar warnedCustomSlot;\nvar warnedTagProp;\nvar warnedEventProp;\n\nvar Link = {\n  name: 'RouterLink',\n  props: {\n    to: {\n      type: toTypes,\n      required: true\n    },\n    tag: {\n      type: String,\n      default: 'a'\n    },\n    custom: Boolean,\n    exact: Boolean,\n    exactPath: Boolean,\n    append: Boolean,\n    replace: Boolean,\n    activeClass: String,\n    exactActiveClass: String,\n    ariaCurrentValue: {\n      type: String,\n      default: 'page'\n    },\n    event: {\n      type: eventTypes,\n      default: 'click'\n    }\n  },\n  render: function render (h) {\n    var this$1$1 = this;\n\n    var router = this.$router;\n    var current = this.$route;\n    var ref = router.resolve(\n      this.to,\n      current,\n      this.append\n    );\n    var location = ref.location;\n    var route = ref.route;\n    var href = ref.href;\n\n    var classes = {};\n    var globalActiveClass = router.options.linkActiveClass;\n    var globalExactActiveClass = router.options.linkExactActiveClass;\n    // Support global empty active class\n    var activeClassFallback =\n      globalActiveClass == null ? 'router-link-active' : globalActiveClass;\n    var exactActiveClassFallback =\n      globalExactActiveClass == null\n        ? 'router-link-exact-active'\n        : globalExactActiveClass;\n    var activeClass =\n      this.activeClass == null ? activeClassFallback : this.activeClass;\n    var exactActiveClass =\n      this.exactActiveClass == null\n        ? exactActiveClassFallback\n        : this.exactActiveClass;\n\n    var compareTarget = route.redirectedFrom\n      ? createRoute(null, normalizeLocation(route.redirectedFrom), null, router)\n      : route;\n\n    classes[exactActiveClass] = isSameRoute(current, compareTarget, this.exactPath);\n    classes[activeClass] = this.exact || this.exactPath\n      ? classes[exactActiveClass]\n      : isIncludedRoute(current, compareTarget);\n\n    var ariaCurrentValue = classes[exactActiveClass] ? this.ariaCurrentValue : null;\n\n    var handler = function (e) {\n      if (guardEvent(e)) {\n        if (this$1$1.replace) {\n          router.replace(location, noop);\n        } else {\n          router.push(location, noop);\n        }\n      }\n    };\n\n    var on = { click: guardEvent };\n    if (Array.isArray(this.event)) {\n      this.event.forEach(function (e) {\n        on[e] = handler;\n      });\n    } else {\n      on[this.event] = handler;\n    }\n\n    var data = { class: classes };\n\n    var scopedSlot =\n      !this.$scopedSlots.$hasNormal &&\n      this.$scopedSlots.default &&\n      this.$scopedSlots.default({\n        href: href,\n        route: route,\n        navigate: handler,\n        isActive: classes[activeClass],\n        isExactActive: classes[exactActiveClass]\n      });\n\n    if (scopedSlot) {\n      if (process.env.NODE_ENV !== 'production' && !this.custom) {\n        !warnedCustomSlot && warn(false, 'In Vue Router 4, the v-slot API will by default wrap its content with an <a> element. Use the custom prop to remove this warning:\\n<router-link v-slot=\"{ navigate, href }\" custom></router-link>\\n');\n        warnedCustomSlot = true;\n      }\n      if (scopedSlot.length === 1) {\n        return scopedSlot[0]\n      } else if (scopedSlot.length > 1 || !scopedSlot.length) {\n        if (process.env.NODE_ENV !== 'production') {\n          warn(\n            false,\n            (\"<router-link> with to=\\\"\" + (this.to) + \"\\\" is trying to use a scoped slot but it didn't provide exactly one child. Wrapping the content with a span element.\")\n          );\n        }\n        return scopedSlot.length === 0 ? h() : h('span', {}, scopedSlot)\n      }\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      if ('tag' in this.$options.propsData && !warnedTagProp) {\n        warn(\n          false,\n          \"<router-link>'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n        );\n        warnedTagProp = true;\n      }\n      if ('event' in this.$options.propsData && !warnedEventProp) {\n        warn(\n          false,\n          \"<router-link>'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n        );\n        warnedEventProp = true;\n      }\n    }\n\n    if (this.tag === 'a') {\n      data.on = on;\n      data.attrs = { href: href, 'aria-current': ariaCurrentValue };\n    } else {\n      // find the first <a> child and apply listener and href\n      var a = findAnchor(this.$slots.default);\n      if (a) {\n        // in case the <a> is a static node\n        a.isStatic = false;\n        var aData = (a.data = extend({}, a.data));\n        aData.on = aData.on || {};\n        // transform existing events in both objects into arrays so we can push later\n        for (var event in aData.on) {\n          var handler$1 = aData.on[event];\n          if (event in on) {\n            aData.on[event] = Array.isArray(handler$1) ? handler$1 : [handler$1];\n          }\n        }\n        // append new listeners for router-link\n        for (var event$1 in on) {\n          if (event$1 in aData.on) {\n            // on[event] is always a function\n            aData.on[event$1].push(on[event$1]);\n          } else {\n            aData.on[event$1] = handler;\n          }\n        }\n\n        var aAttrs = (a.data.attrs = extend({}, a.data.attrs));\n        aAttrs.href = href;\n        aAttrs['aria-current'] = ariaCurrentValue;\n      } else {\n        // doesn't have <a> child, apply listener to self\n        data.on = on;\n      }\n    }\n\n    return h(this.tag, data, this.$slots.default)\n  }\n};\n\nfunction guardEvent (e) {\n  // don't redirect with control keys\n  if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) { return }\n  // don't redirect when preventDefault called\n  if (e.defaultPrevented) { return }\n  // don't redirect on right click\n  if (e.button !== undefined && e.button !== 0) { return }\n  // don't redirect if `target=\"_blank\"`\n  if (e.currentTarget && e.currentTarget.getAttribute) {\n    var target = e.currentTarget.getAttribute('target');\n    if (/\\b_blank\\b/i.test(target)) { return }\n  }\n  // this may be a Weex event which doesn't have this method\n  if (e.preventDefault) {\n    e.preventDefault();\n  }\n  return true\n}\n\nfunction findAnchor (children) {\n  if (children) {\n    var child;\n    for (var i = 0; i < children.length; i++) {\n      child = children[i];\n      if (child.tag === 'a') {\n        return child\n      }\n      if (child.children && (child = findAnchor(child.children))) {\n        return child\n      }\n    }\n  }\n}\n\nvar _Vue;\n\nfunction install (Vue) {\n  if (install.installed && _Vue === Vue) { return }\n  install.installed = true;\n\n  _Vue = Vue;\n\n  var isDef = function (v) { return v !== undefined; };\n\n  var registerInstance = function (vm, callVal) {\n    var i = vm.$options._parentVnode;\n    if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {\n      i(vm, callVal);\n    }\n  };\n\n  Vue.mixin({\n    beforeCreate: function beforeCreate () {\n      if (isDef(this.$options.router)) {\n        this._routerRoot = this;\n        this._router = this.$options.router;\n        this._router.init(this);\n        Vue.util.defineReactive(this, '_route', this._router.history.current);\n      } else {\n        this._routerRoot = (this.$parent && this.$parent._routerRoot) || this;\n      }\n      registerInstance(this, this);\n    },\n    destroyed: function destroyed () {\n      registerInstance(this);\n    }\n  });\n\n  Object.defineProperty(Vue.prototype, '$router', {\n    get: function get () { return this._routerRoot._router }\n  });\n\n  Object.defineProperty(Vue.prototype, '$route', {\n    get: function get () { return this._routerRoot._route }\n  });\n\n  Vue.component('RouterView', View);\n  Vue.component('RouterLink', Link);\n\n  var strats = Vue.config.optionMergeStrategies;\n  // use the same hook merging strategy for route hooks\n  strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created;\n}\n\n/*  */\n\nvar inBrowser = typeof window !== 'undefined';\n\n/*  */\n\nfunction createRouteMap (\n  routes,\n  oldPathList,\n  oldPathMap,\n  oldNameMap,\n  parentRoute\n) {\n  // the path list is used to control path matching priority\n  var pathList = oldPathList || [];\n  // $flow-disable-line\n  var pathMap = oldPathMap || Object.create(null);\n  // $flow-disable-line\n  var nameMap = oldNameMap || Object.create(null);\n\n  routes.forEach(function (route) {\n    addRouteRecord(pathList, pathMap, nameMap, route, parentRoute);\n  });\n\n  // ensure wildcard routes are always at the end\n  for (var i = 0, l = pathList.length; i < l; i++) {\n    if (pathList[i] === '*') {\n      pathList.push(pathList.splice(i, 1)[0]);\n      l--;\n      i--;\n    }\n  }\n\n  if (process.env.NODE_ENV === 'development') {\n    // warn if routes do not include leading slashes\n    var found = pathList\n    // check for missing leading slash\n      .filter(function (path) { return path && path.charAt(0) !== '*' && path.charAt(0) !== '/'; });\n\n    if (found.length > 0) {\n      var pathNames = found.map(function (path) { return (\"- \" + path); }).join('\\n');\n      warn(false, (\"Non-nested routes must include a leading slash character. Fix the following routes: \\n\" + pathNames));\n    }\n  }\n\n  return {\n    pathList: pathList,\n    pathMap: pathMap,\n    nameMap: nameMap\n  }\n}\n\nfunction addRouteRecord (\n  pathList,\n  pathMap,\n  nameMap,\n  route,\n  parent,\n  matchAs\n) {\n  var path = route.path;\n  var name = route.name;\n  if (process.env.NODE_ENV !== 'production') {\n    assert(path != null, \"\\\"path\\\" is required in a route configuration.\");\n    assert(\n      typeof route.component !== 'string',\n      \"route config \\\"component\\\" for path: \" + (String(\n        path || name\n      )) + \" cannot be a \" + \"string id. Use an actual component instead.\"\n    );\n\n    warn(\n      // eslint-disable-next-line no-control-regex\n      !/[^\\u0000-\\u007F]+/.test(path),\n      \"Route with path \\\"\" + path + \"\\\" contains unencoded characters, make sure \" +\n        \"your path is correctly encoded before passing it to the router. Use \" +\n        \"encodeURI to encode static segments of your path.\"\n    );\n  }\n\n  var pathToRegexpOptions =\n    route.pathToRegexpOptions || {};\n  var normalizedPath = normalizePath(path, parent, pathToRegexpOptions.strict);\n\n  if (typeof route.caseSensitive === 'boolean') {\n    pathToRegexpOptions.sensitive = route.caseSensitive;\n  }\n\n  var record = {\n    path: normalizedPath,\n    regex: compileRouteRegex(normalizedPath, pathToRegexpOptions),\n    components: route.components || { default: route.component },\n    alias: route.alias\n      ? typeof route.alias === 'string'\n        ? [route.alias]\n        : route.alias\n      : [],\n    instances: {},\n    enteredCbs: {},\n    name: name,\n    parent: parent,\n    matchAs: matchAs,\n    redirect: route.redirect,\n    beforeEnter: route.beforeEnter,\n    meta: route.meta || {},\n    props:\n      route.props == null\n        ? {}\n        : route.components\n          ? route.props\n          : { default: route.props }\n  };\n\n  if (route.children) {\n    // Warn if route is named, does not redirect and has a default child route.\n    // If users navigate to this route by name, the default child will\n    // not be rendered (GH Issue #629)\n    if (process.env.NODE_ENV !== 'production') {\n      if (\n        route.name &&\n        !route.redirect &&\n        route.children.some(function (child) { return /^\\/?$/.test(child.path); })\n      ) {\n        warn(\n          false,\n          \"Named Route '\" + (route.name) + \"' has a default child route. \" +\n            \"When navigating to this named route (:to=\\\"{name: '\" + (route.name) + \"'}\\\"), \" +\n            \"the default child route will not be rendered. Remove the name from \" +\n            \"this route and use the name of the default child route for named \" +\n            \"links instead.\"\n        );\n      }\n    }\n    route.children.forEach(function (child) {\n      var childMatchAs = matchAs\n        ? cleanPath((matchAs + \"/\" + (child.path)))\n        : undefined;\n      addRouteRecord(pathList, pathMap, nameMap, child, record, childMatchAs);\n    });\n  }\n\n  if (!pathMap[record.path]) {\n    pathList.push(record.path);\n    pathMap[record.path] = record;\n  }\n\n  if (route.alias !== undefined) {\n    var aliases = Array.isArray(route.alias) ? route.alias : [route.alias];\n    for (var i = 0; i < aliases.length; ++i) {\n      var alias = aliases[i];\n      if (process.env.NODE_ENV !== 'production' && alias === path) {\n        warn(\n          false,\n          (\"Found an alias with the same value as the path: \\\"\" + path + \"\\\". You have to remove that alias. It will be ignored in development.\")\n        );\n        // skip in dev to make it work\n        continue\n      }\n\n      var aliasRoute = {\n        path: alias,\n        children: route.children\n      };\n      addRouteRecord(\n        pathList,\n        pathMap,\n        nameMap,\n        aliasRoute,\n        parent,\n        record.path || '/' // matchAs\n      );\n    }\n  }\n\n  if (name) {\n    if (!nameMap[name]) {\n      nameMap[name] = record;\n    } else if (process.env.NODE_ENV !== 'production' && !matchAs) {\n      warn(\n        false,\n        \"Duplicate named routes definition: \" +\n          \"{ name: \\\"\" + name + \"\\\", path: \\\"\" + (record.path) + \"\\\" }\"\n      );\n    }\n  }\n}\n\nfunction compileRouteRegex (\n  path,\n  pathToRegexpOptions\n) {\n  var regex = pathToRegexp_1(path, [], pathToRegexpOptions);\n  if (process.env.NODE_ENV !== 'production') {\n    var keys = Object.create(null);\n    regex.keys.forEach(function (key) {\n      warn(\n        !keys[key.name],\n        (\"Duplicate param keys in route with path: \\\"\" + path + \"\\\"\")\n      );\n      keys[key.name] = true;\n    });\n  }\n  return regex\n}\n\nfunction normalizePath (\n  path,\n  parent,\n  strict\n) {\n  if (!strict) { path = path.replace(/\\/$/, ''); }\n  if (path[0] === '/') { return path }\n  if (parent == null) { return path }\n  return cleanPath(((parent.path) + \"/\" + path))\n}\n\n/*  */\n\n\n\nfunction createMatcher (\n  routes,\n  router\n) {\n  var ref = createRouteMap(routes);\n  var pathList = ref.pathList;\n  var pathMap = ref.pathMap;\n  var nameMap = ref.nameMap;\n\n  function addRoutes (routes) {\n    createRouteMap(routes, pathList, pathMap, nameMap);\n  }\n\n  function addRoute (parentOrRoute, route) {\n    var parent = (typeof parentOrRoute !== 'object') ? nameMap[parentOrRoute] : undefined;\n    // $flow-disable-line\n    createRouteMap([route || parentOrRoute], pathList, pathMap, nameMap, parent);\n\n    // add aliases of parent\n    if (parent && parent.alias.length) {\n      createRouteMap(\n        // $flow-disable-line route is defined if parent is\n        parent.alias.map(function (alias) { return ({ path: alias, children: [route] }); }),\n        pathList,\n        pathMap,\n        nameMap,\n        parent\n      );\n    }\n  }\n\n  function getRoutes () {\n    return pathList.map(function (path) { return pathMap[path]; })\n  }\n\n  function match (\n    raw,\n    currentRoute,\n    redirectedFrom\n  ) {\n    var location = normalizeLocation(raw, currentRoute, false, router);\n    var name = location.name;\n\n    if (name) {\n      var record = nameMap[name];\n      if (process.env.NODE_ENV !== 'production') {\n        warn(record, (\"Route with name '\" + name + \"' does not exist\"));\n      }\n      if (!record) { return _createRoute(null, location) }\n      var paramNames = record.regex.keys\n        .filter(function (key) { return !key.optional; })\n        .map(function (key) { return key.name; });\n\n      if (typeof location.params !== 'object') {\n        location.params = {};\n      }\n\n      if (currentRoute && typeof currentRoute.params === 'object') {\n        for (var key in currentRoute.params) {\n          if (!(key in location.params) && paramNames.indexOf(key) > -1) {\n            location.params[key] = currentRoute.params[key];\n          }\n        }\n      }\n\n      location.path = fillParams(record.path, location.params, (\"named route \\\"\" + name + \"\\\"\"));\n      return _createRoute(record, location, redirectedFrom)\n    } else if (location.path) {\n      location.params = {};\n      for (var i = 0; i < pathList.length; i++) {\n        var path = pathList[i];\n        var record$1 = pathMap[path];\n        if (matchRoute(record$1.regex, location.path, location.params)) {\n          return _createRoute(record$1, location, redirectedFrom)\n        }\n      }\n    }\n    // no match\n    return _createRoute(null, location)\n  }\n\n  function redirect (\n    record,\n    location\n  ) {\n    var originalRedirect = record.redirect;\n    var redirect = typeof originalRedirect === 'function'\n      ? originalRedirect(createRoute(record, location, null, router))\n      : originalRedirect;\n\n    if (typeof redirect === 'string') {\n      redirect = { path: redirect };\n    }\n\n    if (!redirect || typeof redirect !== 'object') {\n      if (process.env.NODE_ENV !== 'production') {\n        warn(\n          false, (\"invalid redirect option: \" + (JSON.stringify(redirect)))\n        );\n      }\n      return _createRoute(null, location)\n    }\n\n    var re = redirect;\n    var name = re.name;\n    var path = re.path;\n    var query = location.query;\n    var hash = location.hash;\n    var params = location.params;\n    query = re.hasOwnProperty('query') ? re.query : query;\n    hash = re.hasOwnProperty('hash') ? re.hash : hash;\n    params = re.hasOwnProperty('params') ? re.params : params;\n\n    if (name) {\n      // resolved named direct\n      var targetRecord = nameMap[name];\n      if (process.env.NODE_ENV !== 'production') {\n        assert(targetRecord, (\"redirect failed: named route \\\"\" + name + \"\\\" not found.\"));\n      }\n      return match({\n        _normalized: true,\n        name: name,\n        query: query,\n        hash: hash,\n        params: params\n      }, undefined, location)\n    } else if (path) {\n      // 1. resolve relative redirect\n      var rawPath = resolveRecordPath(path, record);\n      // 2. resolve params\n      var resolvedPath = fillParams(rawPath, params, (\"redirect route with path \\\"\" + rawPath + \"\\\"\"));\n      // 3. rematch with existing query and hash\n      return match({\n        _normalized: true,\n        path: resolvedPath,\n        query: query,\n        hash: hash\n      }, undefined, location)\n    } else {\n      if (process.env.NODE_ENV !== 'production') {\n        warn(false, (\"invalid redirect option: \" + (JSON.stringify(redirect))));\n      }\n      return _createRoute(null, location)\n    }\n  }\n\n  function alias (\n    record,\n    location,\n    matchAs\n  ) {\n    var aliasedPath = fillParams(matchAs, location.params, (\"aliased route with path \\\"\" + matchAs + \"\\\"\"));\n    var aliasedMatch = match({\n      _normalized: true,\n      path: aliasedPath\n    });\n    if (aliasedMatch) {\n      var matched = aliasedMatch.matched;\n      var aliasedRecord = matched[matched.length - 1];\n      location.params = aliasedMatch.params;\n      return _createRoute(aliasedRecord, location)\n    }\n    return _createRoute(null, location)\n  }\n\n  function _createRoute (\n    record,\n    location,\n    redirectedFrom\n  ) {\n    if (record && record.redirect) {\n      return redirect(record, redirectedFrom || location)\n    }\n    if (record && record.matchAs) {\n      return alias(record, location, record.matchAs)\n    }\n    return createRoute(record, location, redirectedFrom, router)\n  }\n\n  return {\n    match: match,\n    addRoute: addRoute,\n    getRoutes: getRoutes,\n    addRoutes: addRoutes\n  }\n}\n\nfunction matchRoute (\n  regex,\n  path,\n  params\n) {\n  var m = path.match(regex);\n\n  if (!m) {\n    return false\n  } else if (!params) {\n    return true\n  }\n\n  for (var i = 1, len = m.length; i < len; ++i) {\n    var key = regex.keys[i - 1];\n    if (key) {\n      // Fix #1994: using * with props: true generates a param named 0\n      params[key.name || 'pathMatch'] = typeof m[i] === 'string' ? decode(m[i]) : m[i];\n    }\n  }\n\n  return true\n}\n\nfunction resolveRecordPath (path, record) {\n  return resolvePath(path, record.parent ? record.parent.path : '/', true)\n}\n\n/*  */\n\n// use User Timing api (if present) for more accurate key precision\nvar Time =\n  inBrowser && window.performance && window.performance.now\n    ? window.performance\n    : Date;\n\nfunction genStateKey () {\n  return Time.now().toFixed(3)\n}\n\nvar _key = genStateKey();\n\nfunction getStateKey () {\n  return _key\n}\n\nfunction setStateKey (key) {\n  return (_key = key)\n}\n\n/*  */\n\nvar positionStore = Object.create(null);\n\nfunction setupScroll () {\n  // Prevent browser scroll behavior on History popstate\n  if ('scrollRestoration' in window.history) {\n    window.history.scrollRestoration = 'manual';\n  }\n  // Fix for #1585 for Firefox\n  // Fix for #2195 Add optional third attribute to workaround a bug in safari https://bugs.webkit.org/show_bug.cgi?id=182678\n  // Fix for #2774 Support for apps loaded from Windows file shares not mapped to network drives: replaced location.origin with\n  // window.location.protocol + '//' + window.location.host\n  // location.host contains the port and location.hostname doesn't\n  var protocolAndPath = window.location.protocol + '//' + window.location.host;\n  var absolutePath = window.location.href.replace(protocolAndPath, '');\n  // preserve existing history state as it could be overriden by the user\n  var stateCopy = extend({}, window.history.state);\n  stateCopy.key = getStateKey();\n  window.history.replaceState(stateCopy, '', absolutePath);\n  window.addEventListener('popstate', handlePopState);\n  return function () {\n    window.removeEventListener('popstate', handlePopState);\n  }\n}\n\nfunction handleScroll (\n  router,\n  to,\n  from,\n  isPop\n) {\n  if (!router.app) {\n    return\n  }\n\n  var behavior = router.options.scrollBehavior;\n  if (!behavior) {\n    return\n  }\n\n  if (process.env.NODE_ENV !== 'production') {\n    assert(typeof behavior === 'function', \"scrollBehavior must be a function\");\n  }\n\n  // wait until re-render finishes before scrolling\n  router.app.$nextTick(function () {\n    var position = getScrollPosition();\n    var shouldScroll = behavior.call(\n      router,\n      to,\n      from,\n      isPop ? position : null\n    );\n\n    if (!shouldScroll) {\n      return\n    }\n\n    if (typeof shouldScroll.then === 'function') {\n      shouldScroll\n        .then(function (shouldScroll) {\n          scrollToPosition((shouldScroll), position);\n        })\n        .catch(function (err) {\n          if (process.env.NODE_ENV !== 'production') {\n            assert(false, err.toString());\n          }\n        });\n    } else {\n      scrollToPosition(shouldScroll, position);\n    }\n  });\n}\n\nfunction saveScrollPosition () {\n  var key = getStateKey();\n  if (key) {\n    positionStore[key] = {\n      x: window.pageXOffset,\n      y: window.pageYOffset\n    };\n  }\n}\n\nfunction handlePopState (e) {\n  saveScrollPosition();\n  if (e.state && e.state.key) {\n    setStateKey(e.state.key);\n  }\n}\n\nfunction getScrollPosition () {\n  var key = getStateKey();\n  if (key) {\n    return positionStore[key]\n  }\n}\n\nfunction getElementPosition (el, offset) {\n  var docEl = document.documentElement;\n  var docRect = docEl.getBoundingClientRect();\n  var elRect = el.getBoundingClientRect();\n  return {\n    x: elRect.left - docRect.left - offset.x,\n    y: elRect.top - docRect.top - offset.y\n  }\n}\n\nfunction isValidPosition (obj) {\n  return isNumber(obj.x) || isNumber(obj.y)\n}\n\nfunction normalizePosition (obj) {\n  return {\n    x: isNumber(obj.x) ? obj.x : window.pageXOffset,\n    y: isNumber(obj.y) ? obj.y : window.pageYOffset\n  }\n}\n\nfunction normalizeOffset (obj) {\n  return {\n    x: isNumber(obj.x) ? obj.x : 0,\n    y: isNumber(obj.y) ? obj.y : 0\n  }\n}\n\nfunction isNumber (v) {\n  return typeof v === 'number'\n}\n\nvar hashStartsWithNumberRE = /^#\\d/;\n\nfunction scrollToPosition (shouldScroll, position) {\n  var isObject = typeof shouldScroll === 'object';\n  if (isObject && typeof shouldScroll.selector === 'string') {\n    // getElementById would still fail if the selector contains a more complicated query like #main[data-attr]\n    // but at the same time, it doesn't make much sense to select an element with an id and an extra selector\n    var el = hashStartsWithNumberRE.test(shouldScroll.selector) // $flow-disable-line\n      ? document.getElementById(shouldScroll.selector.slice(1)) // $flow-disable-line\n      : document.querySelector(shouldScroll.selector);\n\n    if (el) {\n      var offset =\n        shouldScroll.offset && typeof shouldScroll.offset === 'object'\n          ? shouldScroll.offset\n          : {};\n      offset = normalizeOffset(offset);\n      position = getElementPosition(el, offset);\n    } else if (isValidPosition(shouldScroll)) {\n      position = normalizePosition(shouldScroll);\n    }\n  } else if (isObject && isValidPosition(shouldScroll)) {\n    position = normalizePosition(shouldScroll);\n  }\n\n  if (position) {\n    // $flow-disable-line\n    if ('scrollBehavior' in document.documentElement.style) {\n      window.scrollTo({\n        left: position.x,\n        top: position.y,\n        // $flow-disable-line\n        behavior: shouldScroll.behavior\n      });\n    } else {\n      window.scrollTo(position.x, position.y);\n    }\n  }\n}\n\n/*  */\n\nvar supportsPushState =\n  inBrowser &&\n  (function () {\n    var ua = window.navigator.userAgent;\n\n    if (\n      (ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) &&\n      ua.indexOf('Mobile Safari') !== -1 &&\n      ua.indexOf('Chrome') === -1 &&\n      ua.indexOf('Windows Phone') === -1\n    ) {\n      return false\n    }\n\n    return window.history && typeof window.history.pushState === 'function'\n  })();\n\nfunction pushState (url, replace) {\n  saveScrollPosition();\n  // try...catch the pushState call to get around Safari\n  // DOM Exception 18 where it limits to 100 pushState calls\n  var history = window.history;\n  try {\n    if (replace) {\n      // preserve existing history state as it could be overriden by the user\n      var stateCopy = extend({}, history.state);\n      stateCopy.key = getStateKey();\n      history.replaceState(stateCopy, '', url);\n    } else {\n      history.pushState({ key: setStateKey(genStateKey()) }, '', url);\n    }\n  } catch (e) {\n    window.location[replace ? 'replace' : 'assign'](url);\n  }\n}\n\nfunction replaceState (url) {\n  pushState(url, true);\n}\n\n// When changing thing, also edit router.d.ts\nvar NavigationFailureType = {\n  redirected: 2,\n  aborted: 4,\n  cancelled: 8,\n  duplicated: 16\n};\n\nfunction createNavigationRedirectedError (from, to) {\n  return createRouterError(\n    from,\n    to,\n    NavigationFailureType.redirected,\n    (\"Redirected when going from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (stringifyRoute(\n      to\n    )) + \"\\\" via a navigation guard.\")\n  )\n}\n\nfunction createNavigationDuplicatedError (from, to) {\n  var error = createRouterError(\n    from,\n    to,\n    NavigationFailureType.duplicated,\n    (\"Avoided redundant navigation to current location: \\\"\" + (from.fullPath) + \"\\\".\")\n  );\n  // backwards compatible with the first introduction of Errors\n  error.name = 'NavigationDuplicated';\n  return error\n}\n\nfunction createNavigationCancelledError (from, to) {\n  return createRouterError(\n    from,\n    to,\n    NavigationFailureType.cancelled,\n    (\"Navigation cancelled from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" with a new navigation.\")\n  )\n}\n\nfunction createNavigationAbortedError (from, to) {\n  return createRouterError(\n    from,\n    to,\n    NavigationFailureType.aborted,\n    (\"Navigation aborted from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" via a navigation guard.\")\n  )\n}\n\nfunction createRouterError (from, to, type, message) {\n  var error = new Error(message);\n  error._isRouter = true;\n  error.from = from;\n  error.to = to;\n  error.type = type;\n\n  return error\n}\n\nvar propertiesToLog = ['params', 'query', 'hash'];\n\nfunction stringifyRoute (to) {\n  if (typeof to === 'string') { return to }\n  if ('path' in to) { return to.path }\n  var location = {};\n  propertiesToLog.forEach(function (key) {\n    if (key in to) { location[key] = to[key]; }\n  });\n  return JSON.stringify(location, null, 2)\n}\n\nfunction isError (err) {\n  return Object.prototype.toString.call(err).indexOf('Error') > -1\n}\n\nfunction isNavigationFailure (err, errorType) {\n  return (\n    isError(err) &&\n    err._isRouter &&\n    (errorType == null || err.type === errorType)\n  )\n}\n\n/*  */\n\nfunction runQueue (queue, fn, cb) {\n  var step = function (index) {\n    if (index >= queue.length) {\n      cb();\n    } else {\n      if (queue[index]) {\n        fn(queue[index], function () {\n          step(index + 1);\n        });\n      } else {\n        step(index + 1);\n      }\n    }\n  };\n  step(0);\n}\n\n/*  */\n\nfunction resolveAsyncComponents (matched) {\n  return function (to, from, next) {\n    var hasAsync = false;\n    var pending = 0;\n    var error = null;\n\n    flatMapComponents(matched, function (def, _, match, key) {\n      // if it's a function and doesn't have cid attached,\n      // assume it's an async component resolve function.\n      // we are not using Vue's default async resolving mechanism because\n      // we want to halt the navigation until the incoming component has been\n      // resolved.\n      if (typeof def === 'function' && def.cid === undefined) {\n        hasAsync = true;\n        pending++;\n\n        var resolve = once(function (resolvedDef) {\n          if (isESModule(resolvedDef)) {\n            resolvedDef = resolvedDef.default;\n          }\n          // save resolved on async factory in case it's used elsewhere\n          def.resolved = typeof resolvedDef === 'function'\n            ? resolvedDef\n            : _Vue.extend(resolvedDef);\n          match.components[key] = resolvedDef;\n          pending--;\n          if (pending <= 0) {\n            next();\n          }\n        });\n\n        var reject = once(function (reason) {\n          var msg = \"Failed to resolve async component \" + key + \": \" + reason;\n          process.env.NODE_ENV !== 'production' && warn(false, msg);\n          if (!error) {\n            error = isError(reason)\n              ? reason\n              : new Error(msg);\n            next(error);\n          }\n        });\n\n        var res;\n        try {\n          res = def(resolve, reject);\n        } catch (e) {\n          reject(e);\n        }\n        if (res) {\n          if (typeof res.then === 'function') {\n            res.then(resolve, reject);\n          } else {\n            // new syntax in Vue 2.3\n            var comp = res.component;\n            if (comp && typeof comp.then === 'function') {\n              comp.then(resolve, reject);\n            }\n          }\n        }\n      }\n    });\n\n    if (!hasAsync) { next(); }\n  }\n}\n\nfunction flatMapComponents (\n  matched,\n  fn\n) {\n  return flatten(matched.map(function (m) {\n    return Object.keys(m.components).map(function (key) { return fn(\n      m.components[key],\n      m.instances[key],\n      m, key\n    ); })\n  }))\n}\n\nfunction flatten (arr) {\n  return Array.prototype.concat.apply([], arr)\n}\n\nvar hasSymbol =\n  typeof Symbol === 'function' &&\n  typeof Symbol.toStringTag === 'symbol';\n\nfunction isESModule (obj) {\n  return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module')\n}\n\n// in Webpack 2, require.ensure now also returns a Promise\n// so the resolve/reject functions may get called an extra time\n// if the user uses an arrow function shorthand that happens to\n// return that Promise.\nfunction once (fn) {\n  var called = false;\n  return function () {\n    var args = [], len = arguments.length;\n    while ( len-- ) args[ len ] = arguments[ len ];\n\n    if (called) { return }\n    called = true;\n    return fn.apply(this, args)\n  }\n}\n\n/*  */\n\nvar History = function History (router, base) {\n  this.router = router;\n  this.base = normalizeBase(base);\n  // start with a route object that stands for \"nowhere\"\n  this.current = START;\n  this.pending = null;\n  this.ready = false;\n  this.readyCbs = [];\n  this.readyErrorCbs = [];\n  this.errorCbs = [];\n  this.listeners = [];\n};\n\nHistory.prototype.listen = function listen (cb) {\n  this.cb = cb;\n};\n\nHistory.prototype.onReady = function onReady (cb, errorCb) {\n  if (this.ready) {\n    cb();\n  } else {\n    this.readyCbs.push(cb);\n    if (errorCb) {\n      this.readyErrorCbs.push(errorCb);\n    }\n  }\n};\n\nHistory.prototype.onError = function onError (errorCb) {\n  this.errorCbs.push(errorCb);\n};\n\nHistory.prototype.transitionTo = function transitionTo (\n  location,\n  onComplete,\n  onAbort\n) {\n    var this$1$1 = this;\n\n  var route;\n  // catch redirect option https://github.com/vuejs/vue-router/issues/3201\n  try {\n    route = this.router.match(location, this.current);\n  } catch (e) {\n    this.errorCbs.forEach(function (cb) {\n      cb(e);\n    });\n    // Exception should still be thrown\n    throw e\n  }\n  var prev = this.current;\n  this.confirmTransition(\n    route,\n    function () {\n      this$1$1.updateRoute(route);\n      onComplete && onComplete(route);\n      this$1$1.ensureURL();\n      this$1$1.router.afterHooks.forEach(function (hook) {\n        hook && hook(route, prev);\n      });\n\n      // fire ready cbs once\n      if (!this$1$1.ready) {\n        this$1$1.ready = true;\n        this$1$1.readyCbs.forEach(function (cb) {\n          cb(route);\n        });\n      }\n    },\n    function (err) {\n      if (onAbort) {\n        onAbort(err);\n      }\n      if (err && !this$1$1.ready) {\n        // Initial redirection should not mark the history as ready yet\n        // because it's triggered by the redirection instead\n        // https://github.com/vuejs/vue-router/issues/3225\n        // https://github.com/vuejs/vue-router/issues/3331\n        if (!isNavigationFailure(err, NavigationFailureType.redirected) || prev !== START) {\n          this$1$1.ready = true;\n          this$1$1.readyErrorCbs.forEach(function (cb) {\n            cb(err);\n          });\n        }\n      }\n    }\n  );\n};\n\nHistory.prototype.confirmTransition = function confirmTransition (route, onComplete, onAbort) {\n    var this$1$1 = this;\n\n  var current = this.current;\n  this.pending = route;\n  var abort = function (err) {\n    // changed after adding errors with\n    // https://github.com/vuejs/vue-router/pull/3047 before that change,\n    // redirect and aborted navigation would produce an err == null\n    if (!isNavigationFailure(err) && isError(err)) {\n      if (this$1$1.errorCbs.length) {\n        this$1$1.errorCbs.forEach(function (cb) {\n          cb(err);\n        });\n      } else {\n        if (process.env.NODE_ENV !== 'production') {\n          warn(false, 'uncaught error during route navigation:');\n        }\n        console.error(err);\n      }\n    }\n    onAbort && onAbort(err);\n  };\n  var lastRouteIndex = route.matched.length - 1;\n  var lastCurrentIndex = current.matched.length - 1;\n  if (\n    isSameRoute(route, current) &&\n    // in the case the route map has been dynamically appended to\n    lastRouteIndex === lastCurrentIndex &&\n    route.matched[lastRouteIndex] === current.matched[lastCurrentIndex]\n  ) {\n    this.ensureURL();\n    if (route.hash) {\n      handleScroll(this.router, current, route, false);\n    }\n    return abort(createNavigationDuplicatedError(current, route))\n  }\n\n  var ref = resolveQueue(\n    this.current.matched,\n    route.matched\n  );\n    var updated = ref.updated;\n    var deactivated = ref.deactivated;\n    var activated = ref.activated;\n\n  var queue = [].concat(\n    // in-component leave guards\n    extractLeaveGuards(deactivated),\n    // global before hooks\n    this.router.beforeHooks,\n    // in-component update hooks\n    extractUpdateHooks(updated),\n    // in-config enter guards\n    activated.map(function (m) { return m.beforeEnter; }),\n    // async components\n    resolveAsyncComponents(activated)\n  );\n\n  var iterator = function (hook, next) {\n    if (this$1$1.pending !== route) {\n      return abort(createNavigationCancelledError(current, route))\n    }\n    try {\n      hook(route, current, function (to) {\n        if (to === false) {\n          // next(false) -> abort navigation, ensure current URL\n          this$1$1.ensureURL(true);\n          abort(createNavigationAbortedError(current, route));\n        } else if (isError(to)) {\n          this$1$1.ensureURL(true);\n          abort(to);\n        } else if (\n          typeof to === 'string' ||\n          (typeof to === 'object' &&\n            (typeof to.path === 'string' || typeof to.name === 'string'))\n        ) {\n          // next('/') or next({ path: '/' }) -> redirect\n          abort(createNavigationRedirectedError(current, route));\n          if (typeof to === 'object' && to.replace) {\n            this$1$1.replace(to);\n          } else {\n            this$1$1.push(to);\n          }\n        } else {\n          // confirm transition and pass on the value\n          next(to);\n        }\n      });\n    } catch (e) {\n      abort(e);\n    }\n  };\n\n  runQueue(queue, iterator, function () {\n    // wait until async components are resolved before\n    // extracting in-component enter guards\n    var enterGuards = extractEnterGuards(activated);\n    var queue = enterGuards.concat(this$1$1.router.resolveHooks);\n    runQueue(queue, iterator, function () {\n      if (this$1$1.pending !== route) {\n        return abort(createNavigationCancelledError(current, route))\n      }\n      this$1$1.pending = null;\n      onComplete(route);\n      if (this$1$1.router.app) {\n        this$1$1.router.app.$nextTick(function () {\n          handleRouteEntered(route);\n        });\n      }\n    });\n  });\n};\n\nHistory.prototype.updateRoute = function updateRoute (route) {\n  this.current = route;\n  this.cb && this.cb(route);\n};\n\nHistory.prototype.setupListeners = function setupListeners () {\n  // Default implementation is empty\n};\n\nHistory.prototype.teardown = function teardown () {\n  // clean up event listeners\n  // https://github.com/vuejs/vue-router/issues/2341\n  this.listeners.forEach(function (cleanupListener) {\n    cleanupListener();\n  });\n  this.listeners = [];\n\n  // reset current history route\n  // https://github.com/vuejs/vue-router/issues/3294\n  this.current = START;\n  this.pending = null;\n};\n\nfunction normalizeBase (base) {\n  if (!base) {\n    if (inBrowser) {\n      // respect <base> tag\n      var baseEl = document.querySelector('base');\n      base = (baseEl && baseEl.getAttribute('href')) || '/';\n      // strip full URL origin\n      base = base.replace(/^https?:\\/\\/[^\\/]+/, '');\n    } else {\n      base = '/';\n    }\n  }\n  // make sure there's the starting slash\n  if (base.charAt(0) !== '/') {\n    base = '/' + base;\n  }\n  // remove trailing slash\n  return base.replace(/\\/$/, '')\n}\n\nfunction resolveQueue (\n  current,\n  next\n) {\n  var i;\n  var max = Math.max(current.length, next.length);\n  for (i = 0; i < max; i++) {\n    if (current[i] !== next[i]) {\n      break\n    }\n  }\n  return {\n    updated: next.slice(0, i),\n    activated: next.slice(i),\n    deactivated: current.slice(i)\n  }\n}\n\nfunction extractGuards (\n  records,\n  name,\n  bind,\n  reverse\n) {\n  var guards = flatMapComponents(records, function (def, instance, match, key) {\n    var guard = extractGuard(def, name);\n    if (guard) {\n      return Array.isArray(guard)\n        ? guard.map(function (guard) { return bind(guard, instance, match, key); })\n        : bind(guard, instance, match, key)\n    }\n  });\n  return flatten(reverse ? guards.reverse() : guards)\n}\n\nfunction extractGuard (\n  def,\n  key\n) {\n  if (typeof def !== 'function') {\n    // extend now so that global mixins are applied.\n    def = _Vue.extend(def);\n  }\n  return def.options[key]\n}\n\nfunction extractLeaveGuards (deactivated) {\n  return extractGuards(deactivated, 'beforeRouteLeave', bindGuard, true)\n}\n\nfunction extractUpdateHooks (updated) {\n  return extractGuards(updated, 'beforeRouteUpdate', bindGuard)\n}\n\nfunction bindGuard (guard, instance) {\n  if (instance) {\n    return function boundRouteGuard () {\n      return guard.apply(instance, arguments)\n    }\n  }\n}\n\nfunction extractEnterGuards (\n  activated\n) {\n  return extractGuards(\n    activated,\n    'beforeRouteEnter',\n    function (guard, _, match, key) {\n      return bindEnterGuard(guard, match, key)\n    }\n  )\n}\n\nfunction bindEnterGuard (\n  guard,\n  match,\n  key\n) {\n  return function routeEnterGuard (to, from, next) {\n    return guard(to, from, function (cb) {\n      if (typeof cb === 'function') {\n        if (!match.enteredCbs[key]) {\n          match.enteredCbs[key] = [];\n        }\n        match.enteredCbs[key].push(cb);\n      }\n      next(cb);\n    })\n  }\n}\n\n/*  */\n\nvar HTML5History = /*@__PURE__*/(function (History) {\n  function HTML5History (router, base) {\n    History.call(this, router, base);\n\n    this._startLocation = getLocation(this.base);\n  }\n\n  if ( History ) HTML5History.__proto__ = History;\n  HTML5History.prototype = Object.create( History && History.prototype );\n  HTML5History.prototype.constructor = HTML5History;\n\n  HTML5History.prototype.setupListeners = function setupListeners () {\n    var this$1$1 = this;\n\n    if (this.listeners.length > 0) {\n      return\n    }\n\n    var router = this.router;\n    var expectScroll = router.options.scrollBehavior;\n    var supportsScroll = supportsPushState && expectScroll;\n\n    if (supportsScroll) {\n      this.listeners.push(setupScroll());\n    }\n\n    var handleRoutingEvent = function () {\n      var current = this$1$1.current;\n\n      // Avoiding first `popstate` event dispatched in some browsers but first\n      // history route not updated since async guard at the same time.\n      var location = getLocation(this$1$1.base);\n      if (this$1$1.current === START && location === this$1$1._startLocation) {\n        return\n      }\n\n      this$1$1.transitionTo(location, function (route) {\n        if (supportsScroll) {\n          handleScroll(router, route, current, true);\n        }\n      });\n    };\n    window.addEventListener('popstate', handleRoutingEvent);\n    this.listeners.push(function () {\n      window.removeEventListener('popstate', handleRoutingEvent);\n    });\n  };\n\n  HTML5History.prototype.go = function go (n) {\n    window.history.go(n);\n  };\n\n  HTML5History.prototype.push = function push (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    var ref = this;\n    var fromRoute = ref.current;\n    this.transitionTo(location, function (route) {\n      pushState(cleanPath(this$1$1.base + route.fullPath));\n      handleScroll(this$1$1.router, route, fromRoute, false);\n      onComplete && onComplete(route);\n    }, onAbort);\n  };\n\n  HTML5History.prototype.replace = function replace (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    var ref = this;\n    var fromRoute = ref.current;\n    this.transitionTo(location, function (route) {\n      replaceState(cleanPath(this$1$1.base + route.fullPath));\n      handleScroll(this$1$1.router, route, fromRoute, false);\n      onComplete && onComplete(route);\n    }, onAbort);\n  };\n\n  HTML5History.prototype.ensureURL = function ensureURL (push) {\n    if (getLocation(this.base) !== this.current.fullPath) {\n      var current = cleanPath(this.base + this.current.fullPath);\n      push ? pushState(current) : replaceState(current);\n    }\n  };\n\n  HTML5History.prototype.getCurrentLocation = function getCurrentLocation () {\n    return getLocation(this.base)\n  };\n\n  return HTML5History;\n}(History));\n\nfunction getLocation (base) {\n  var path = window.location.pathname;\n  var pathLowerCase = path.toLowerCase();\n  var baseLowerCase = base.toLowerCase();\n  // base=\"/a\" shouldn't turn path=\"/app\" into \"/a/pp\"\n  // https://github.com/vuejs/vue-router/issues/3555\n  // so we ensure the trailing slash in the base\n  if (base && ((pathLowerCase === baseLowerCase) ||\n    (pathLowerCase.indexOf(cleanPath(baseLowerCase + '/')) === 0))) {\n    path = path.slice(base.length);\n  }\n  return (path || '/') + window.location.search + window.location.hash\n}\n\n/*  */\n\nvar HashHistory = /*@__PURE__*/(function (History) {\n  function HashHistory (router, base, fallback) {\n    History.call(this, router, base);\n    // check history fallback deeplinking\n    if (fallback && checkFallback(this.base)) {\n      return\n    }\n    ensureSlash();\n  }\n\n  if ( History ) HashHistory.__proto__ = History;\n  HashHistory.prototype = Object.create( History && History.prototype );\n  HashHistory.prototype.constructor = HashHistory;\n\n  // this is delayed until the app mounts\n  // to avoid the hashchange listener being fired too early\n  HashHistory.prototype.setupListeners = function setupListeners () {\n    var this$1$1 = this;\n\n    if (this.listeners.length > 0) {\n      return\n    }\n\n    var router = this.router;\n    var expectScroll = router.options.scrollBehavior;\n    var supportsScroll = supportsPushState && expectScroll;\n\n    if (supportsScroll) {\n      this.listeners.push(setupScroll());\n    }\n\n    var handleRoutingEvent = function () {\n      var current = this$1$1.current;\n      if (!ensureSlash()) {\n        return\n      }\n      this$1$1.transitionTo(getHash(), function (route) {\n        if (supportsScroll) {\n          handleScroll(this$1$1.router, route, current, true);\n        }\n        if (!supportsPushState) {\n          replaceHash(route.fullPath);\n        }\n      });\n    };\n    var eventType = supportsPushState ? 'popstate' : 'hashchange';\n    window.addEventListener(\n      eventType,\n      handleRoutingEvent\n    );\n    this.listeners.push(function () {\n      window.removeEventListener(eventType, handleRoutingEvent);\n    });\n  };\n\n  HashHistory.prototype.push = function push (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    var ref = this;\n    var fromRoute = ref.current;\n    this.transitionTo(\n      location,\n      function (route) {\n        pushHash(route.fullPath);\n        handleScroll(this$1$1.router, route, fromRoute, false);\n        onComplete && onComplete(route);\n      },\n      onAbort\n    );\n  };\n\n  HashHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    var ref = this;\n    var fromRoute = ref.current;\n    this.transitionTo(\n      location,\n      function (route) {\n        replaceHash(route.fullPath);\n        handleScroll(this$1$1.router, route, fromRoute, false);\n        onComplete && onComplete(route);\n      },\n      onAbort\n    );\n  };\n\n  HashHistory.prototype.go = function go (n) {\n    window.history.go(n);\n  };\n\n  HashHistory.prototype.ensureURL = function ensureURL (push) {\n    var current = this.current.fullPath;\n    if (getHash() !== current) {\n      push ? pushHash(current) : replaceHash(current);\n    }\n  };\n\n  HashHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n    return getHash()\n  };\n\n  return HashHistory;\n}(History));\n\nfunction checkFallback (base) {\n  var location = getLocation(base);\n  if (!/^\\/#/.test(location)) {\n    window.location.replace(cleanPath(base + '/#' + location));\n    return true\n  }\n}\n\nfunction ensureSlash () {\n  var path = getHash();\n  if (path.charAt(0) === '/') {\n    return true\n  }\n  replaceHash('/' + path);\n  return false\n}\n\nfunction getHash () {\n  // We can't use window.location.hash here because it's not\n  // consistent across browsers - Firefox will pre-decode it!\n  var href = window.location.href;\n  var index = href.indexOf('#');\n  // empty path\n  if (index < 0) { return '' }\n\n  href = href.slice(index + 1);\n\n  return href\n}\n\nfunction getUrl (path) {\n  var href = window.location.href;\n  var i = href.indexOf('#');\n  var base = i >= 0 ? href.slice(0, i) : href;\n  return (base + \"#\" + path)\n}\n\nfunction pushHash (path) {\n  if (supportsPushState) {\n    pushState(getUrl(path));\n  } else {\n    window.location.hash = path;\n  }\n}\n\nfunction replaceHash (path) {\n  if (supportsPushState) {\n    replaceState(getUrl(path));\n  } else {\n    window.location.replace(getUrl(path));\n  }\n}\n\n/*  */\n\nvar AbstractHistory = /*@__PURE__*/(function (History) {\n  function AbstractHistory (router, base) {\n    History.call(this, router, base);\n    this.stack = [];\n    this.index = -1;\n  }\n\n  if ( History ) AbstractHistory.__proto__ = History;\n  AbstractHistory.prototype = Object.create( History && History.prototype );\n  AbstractHistory.prototype.constructor = AbstractHistory;\n\n  AbstractHistory.prototype.push = function push (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    this.transitionTo(\n      location,\n      function (route) {\n        this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index + 1).concat(route);\n        this$1$1.index++;\n        onComplete && onComplete(route);\n      },\n      onAbort\n    );\n  };\n\n  AbstractHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    this.transitionTo(\n      location,\n      function (route) {\n        this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index).concat(route);\n        onComplete && onComplete(route);\n      },\n      onAbort\n    );\n  };\n\n  AbstractHistory.prototype.go = function go (n) {\n    var this$1$1 = this;\n\n    var targetIndex = this.index + n;\n    if (targetIndex < 0 || targetIndex >= this.stack.length) {\n      return\n    }\n    var route = this.stack[targetIndex];\n    this.confirmTransition(\n      route,\n      function () {\n        var prev = this$1$1.current;\n        this$1$1.index = targetIndex;\n        this$1$1.updateRoute(route);\n        this$1$1.router.afterHooks.forEach(function (hook) {\n          hook && hook(route, prev);\n        });\n      },\n      function (err) {\n        if (isNavigationFailure(err, NavigationFailureType.duplicated)) {\n          this$1$1.index = targetIndex;\n        }\n      }\n    );\n  };\n\n  AbstractHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n    var current = this.stack[this.stack.length - 1];\n    return current ? current.fullPath : '/'\n  };\n\n  AbstractHistory.prototype.ensureURL = function ensureURL () {\n    // noop\n  };\n\n  return AbstractHistory;\n}(History));\n\n/*  */\n\n\n\nvar VueRouter = function VueRouter (options) {\n  if ( options === void 0 ) options = {};\n\n  if (process.env.NODE_ENV !== 'production') {\n    warn(this instanceof VueRouter, \"Router must be called with the new operator.\");\n  }\n  this.app = null;\n  this.apps = [];\n  this.options = options;\n  this.beforeHooks = [];\n  this.resolveHooks = [];\n  this.afterHooks = [];\n  this.matcher = createMatcher(options.routes || [], this);\n\n  var mode = options.mode || 'hash';\n  this.fallback =\n    mode === 'history' && !supportsPushState && options.fallback !== false;\n  if (this.fallback) {\n    mode = 'hash';\n  }\n  if (!inBrowser) {\n    mode = 'abstract';\n  }\n  this.mode = mode;\n\n  switch (mode) {\n    case 'history':\n      this.history = new HTML5History(this, options.base);\n      break\n    case 'hash':\n      this.history = new HashHistory(this, options.base, this.fallback);\n      break\n    case 'abstract':\n      this.history = new AbstractHistory(this, options.base);\n      break\n    default:\n      if (process.env.NODE_ENV !== 'production') {\n        assert(false, (\"invalid mode: \" + mode));\n      }\n  }\n};\n\nvar prototypeAccessors = { currentRoute: { configurable: true } };\n\nVueRouter.prototype.match = function match (raw, current, redirectedFrom) {\n  return this.matcher.match(raw, current, redirectedFrom)\n};\n\nprototypeAccessors.currentRoute.get = function () {\n  return this.history && this.history.current\n};\n\nVueRouter.prototype.init = function init (app /* Vue component instance */) {\n    var this$1$1 = this;\n\n  process.env.NODE_ENV !== 'production' &&\n    assert(\n      install.installed,\n      \"not installed. Make sure to call `Vue.use(VueRouter)` \" +\n        \"before creating root instance.\"\n    );\n\n  this.apps.push(app);\n\n  // set up app destroyed handler\n  // https://github.com/vuejs/vue-router/issues/2639\n  app.$once('hook:destroyed', function () {\n    // clean out app from this.apps array once destroyed\n    var index = this$1$1.apps.indexOf(app);\n    if (index > -1) { this$1$1.apps.splice(index, 1); }\n    // ensure we still have a main app or null if no apps\n    // we do not release the router so it can be reused\n    if (this$1$1.app === app) { this$1$1.app = this$1$1.apps[0] || null; }\n\n    if (!this$1$1.app) { this$1$1.history.teardown(); }\n  });\n\n  // main app previously initialized\n  // return as we don't need to set up new history listener\n  if (this.app) {\n    return\n  }\n\n  this.app = app;\n\n  var history = this.history;\n\n  if (history instanceof HTML5History || history instanceof HashHistory) {\n    var handleInitialScroll = function (routeOrError) {\n      var from = history.current;\n      var expectScroll = this$1$1.options.scrollBehavior;\n      var supportsScroll = supportsPushState && expectScroll;\n\n      if (supportsScroll && 'fullPath' in routeOrError) {\n        handleScroll(this$1$1, routeOrError, from, false);\n      }\n    };\n    var setupListeners = function (routeOrError) {\n      history.setupListeners();\n      handleInitialScroll(routeOrError);\n    };\n    history.transitionTo(\n      history.getCurrentLocation(),\n      setupListeners,\n      setupListeners\n    );\n  }\n\n  history.listen(function (route) {\n    this$1$1.apps.forEach(function (app) {\n      app._route = route;\n    });\n  });\n};\n\nVueRouter.prototype.beforeEach = function beforeEach (fn) {\n  return registerHook(this.beforeHooks, fn)\n};\n\nVueRouter.prototype.beforeResolve = function beforeResolve (fn) {\n  return registerHook(this.resolveHooks, fn)\n};\n\nVueRouter.prototype.afterEach = function afterEach (fn) {\n  return registerHook(this.afterHooks, fn)\n};\n\nVueRouter.prototype.onReady = function onReady (cb, errorCb) {\n  this.history.onReady(cb, errorCb);\n};\n\nVueRouter.prototype.onError = function onError (errorCb) {\n  this.history.onError(errorCb);\n};\n\nVueRouter.prototype.push = function push (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n  // $flow-disable-line\n  if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n    return new Promise(function (resolve, reject) {\n      this$1$1.history.push(location, resolve, reject);\n    })\n  } else {\n    this.history.push(location, onComplete, onAbort);\n  }\n};\n\nVueRouter.prototype.replace = function replace (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n  // $flow-disable-line\n  if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n    return new Promise(function (resolve, reject) {\n      this$1$1.history.replace(location, resolve, reject);\n    })\n  } else {\n    this.history.replace(location, onComplete, onAbort);\n  }\n};\n\nVueRouter.prototype.go = function go (n) {\n  this.history.go(n);\n};\n\nVueRouter.prototype.back = function back () {\n  this.go(-1);\n};\n\nVueRouter.prototype.forward = function forward () {\n  this.go(1);\n};\n\nVueRouter.prototype.getMatchedComponents = function getMatchedComponents (to) {\n  var route = to\n    ? to.matched\n      ? to\n      : this.resolve(to).route\n    : this.currentRoute;\n  if (!route) {\n    return []\n  }\n  return [].concat.apply(\n    [],\n    route.matched.map(function (m) {\n      return Object.keys(m.components).map(function (key) {\n        return m.components[key]\n      })\n    })\n  )\n};\n\nVueRouter.prototype.resolve = function resolve (\n  to,\n  current,\n  append\n) {\n  current = current || this.history.current;\n  var location = normalizeLocation(to, current, append, this);\n  var route = this.match(location, current);\n  var fullPath = route.redirectedFrom || route.fullPath;\n  var base = this.history.base;\n  var href = createHref(base, fullPath, this.mode);\n  return {\n    location: location,\n    route: route,\n    href: href,\n    // for backwards compat\n    normalizedTo: location,\n    resolved: route\n  }\n};\n\nVueRouter.prototype.getRoutes = function getRoutes () {\n  return this.matcher.getRoutes()\n};\n\nVueRouter.prototype.addRoute = function addRoute (parentOrRoute, route) {\n  this.matcher.addRoute(parentOrRoute, route);\n  if (this.history.current !== START) {\n    this.history.transitionTo(this.history.getCurrentLocation());\n  }\n};\n\nVueRouter.prototype.addRoutes = function addRoutes (routes) {\n  if (process.env.NODE_ENV !== 'production') {\n    warn(false, 'router.addRoutes() is deprecated and has been removed in Vue Router 4. Use router.addRoute() instead.');\n  }\n  this.matcher.addRoutes(routes);\n  if (this.history.current !== START) {\n    this.history.transitionTo(this.history.getCurrentLocation());\n  }\n};\n\nObject.defineProperties( VueRouter.prototype, prototypeAccessors );\n\nvar VueRouter$1 = VueRouter;\n\nfunction registerHook (list, fn) {\n  list.push(fn);\n  return function () {\n    var i = list.indexOf(fn);\n    if (i > -1) { list.splice(i, 1); }\n  }\n}\n\nfunction createHref (base, fullPath, mode) {\n  var path = mode === 'hash' ? '#' + fullPath : fullPath;\n  return base ? cleanPath(base + '/' + path) : path\n}\n\n// We cannot remove this as it would be a breaking change\nVueRouter.install = install;\nVueRouter.version = '3.6.5';\nVueRouter.isNavigationFailure = isNavigationFailure;\nVueRouter.NavigationFailureType = NavigationFailureType;\nVueRouter.START_LOCATION = START;\n\nif (inBrowser && window.Vue) {\n  window.Vue.use(VueRouter);\n}\n\nvar version = '3.6.5';\n\nexport { NavigationFailureType, Link as RouterLink, View as RouterView, START as START_LOCATION, VueRouter$1 as default, isNavigationFailure, version };\n","import { generateUrl } from '@nextcloud/router';\nimport queryString from 'query-string';\nimport Router from 'vue-router';\nimport Vue from 'vue';\nVue.use(Router);\n// Prevent router from throwing errors when we're already on the page we're trying to go to\nconst originalPush = Router.prototype.push;\nRouter.prototype.push = function push(to, onComplete, onAbort) {\n    if (onComplete || onAbort)\n        return originalPush.call(this, to, onComplete, onAbort);\n    return originalPush.call(this, to).catch(err => err);\n};\nconst router = new Router({\n    mode: 'history',\n    // if index.php is in the url AND we got this far, then it's working:\n    // let's keep using index.php in the url\n    base: generateUrl('/apps/files'),\n    linkActiveClass: 'active',\n    routes: [\n        {\n            path: '/',\n            // Pretending we're using the default view\n            redirect: { name: 'filelist', params: { view: 'files' } },\n        },\n        {\n            path: '/:view/:fileid(\\\\d+)?',\n            name: 'filelist',\n            props: true,\n        },\n    ],\n    // Custom stringifyQuery to prevent encoding of slashes in the url\n    stringifyQuery(query) {\n        const result = queryString.stringify(query).replace(/%2F/gmi, '/');\n        return result ? ('?' + result) : '';\n    },\n});\nexport default router;\n","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcContent',{attrs:{\"app-name\":\"files\"}},[_c('Navigation'),_vm._v(\" \"),_c('FilesList')],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon cog-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"CogIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Cog.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Cog.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Cog.vue?vue&type=template&id=89df8f2e\"\nimport script from \"./Cog.vue?vue&type=script&lang=js\"\nexport * from \"./Cog.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon cog-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst viewConfig = loadState('files', 'viewConfigs', {});\nexport const useViewConfigStore = function (...args) {\n    const store = defineStore('viewconfig', {\n        state: () => ({\n            viewConfig,\n        }),\n        getters: {\n            getConfig: (state) => (view) => state.viewConfig[view] || {},\n        },\n        actions: {\n            /**\n             * Update the view config local store\n             */\n            onUpdate(view, key, value) {\n                if (!this.viewConfig[view]) {\n                    Vue.set(this.viewConfig, view, {});\n                }\n                Vue.set(this.viewConfig[view], key, value);\n            },\n            /**\n             * Update the view config local store AND on server side\n             */\n            async update(view, key, value) {\n                axios.put(generateUrl(`/apps/files/api/v1/views/${view}/${key}`), {\n                    value,\n                });\n                emit('files:viewconfig:updated', { view, key, value });\n            },\n            /**\n             * Set the sorting key AND sort by ASC\n             * The key param must be a valid key of a File object\n             * If not found, will be searched within the File attributes\n             */\n            setSortingBy(key = 'basename', view = 'files') {\n                // Save new config\n                this.update(view, 'sorting_mode', key);\n                this.update(view, 'sorting_direction', 'asc');\n            },\n            /**\n             * Toggle the sorting direction\n             */\n            toggleSortingDirection(view = 'files') {\n                const config = this.getConfig(view) || { sorting_direction: 'asc' };\n                const newDirection = config.sorting_direction === 'asc' ? 'desc' : 'asc';\n                // Save new config\n                this.update(view, 'sorting_direction', newDirection);\n            },\n        },\n    });\n    const viewConfigStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!viewConfigStore._initialized) {\n        subscribe('files:viewconfig:updated', function ({ view, key, value }) {\n            viewConfigStore.onUpdate(view, key, value);\n        });\n        viewConfigStore._initialized = true;\n    }\n    return viewConfigStore;\n};\n","/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger'\n\nexport default getLoggerBuilder()\n\t.setApp('files')\n\t.detectUser()\n\t.build()\n","/* eslint-disable no-undefined,no-param-reassign,no-shadow */\n\n/**\n * Throttle execution of a function. Especially useful for rate limiting\n * execution of handlers on events like resize and scroll.\n *\n * @param {number} delay -                  A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher)\n *                                            are most useful.\n * @param {Function} callback -               A function to be executed after delay milliseconds. The `this` context and all arguments are passed through,\n *                                            as-is, to `callback` when the throttled-function is executed.\n * @param {object} [options] -              An object to configure options.\n * @param {boolean} [options.noTrailing] -   Optional, defaults to false. If noTrailing is true, callback will only execute every `delay` milliseconds\n *                                            while the throttled-function is being called. If noTrailing is false or unspecified, callback will be executed\n *                                            one final time after the last throttled-function call. (After the throttled-function has not been called for\n *                                            `delay` milliseconds, the internal counter is reset).\n * @param {boolean} [options.noLeading] -   Optional, defaults to false. If noLeading is false, the first throttled-function call will execute callback\n *                                            immediately. If noLeading is true, the first the callback execution will be skipped. It should be noted that\n *                                            callback will never executed if both noLeading = true and noTrailing = true.\n * @param {boolean} [options.debounceMode] - If `debounceMode` is true (at begin), schedule `clear` to execute after `delay` ms. If `debounceMode` is\n *                                            false (at end), schedule `callback` to execute after `delay` ms.\n *\n * @returns {Function} A new, throttled, function.\n */\nfunction throttle (delay, callback, options) {\n  var _ref = options || {},\n      _ref$noTrailing = _ref.noTrailing,\n      noTrailing = _ref$noTrailing === void 0 ? false : _ref$noTrailing,\n      _ref$noLeading = _ref.noLeading,\n      noLeading = _ref$noLeading === void 0 ? false : _ref$noLeading,\n      _ref$debounceMode = _ref.debounceMode,\n      debounceMode = _ref$debounceMode === void 0 ? undefined : _ref$debounceMode;\n  /*\n   * After wrapper has stopped being called, this timeout ensures that\n   * `callback` is executed at the proper times in `throttle` and `end`\n   * debounce modes.\n   */\n\n\n  var timeoutID;\n  var cancelled = false; // Keep track of the last time `callback` was executed.\n\n  var lastExec = 0; // Function to clear existing timeout\n\n  function clearExistingTimeout() {\n    if (timeoutID) {\n      clearTimeout(timeoutID);\n    }\n  } // Function to cancel next exec\n\n\n  function cancel(options) {\n    var _ref2 = options || {},\n        _ref2$upcomingOnly = _ref2.upcomingOnly,\n        upcomingOnly = _ref2$upcomingOnly === void 0 ? false : _ref2$upcomingOnly;\n\n    clearExistingTimeout();\n    cancelled = !upcomingOnly;\n  }\n  /*\n   * The `wrapper` function encapsulates all of the throttling / debouncing\n   * functionality and when executed will limit the rate at which `callback`\n   * is executed.\n   */\n\n\n  function wrapper() {\n    for (var _len = arguments.length, arguments_ = new Array(_len), _key = 0; _key < _len; _key++) {\n      arguments_[_key] = arguments[_key];\n    }\n\n    var self = this;\n    var elapsed = Date.now() - lastExec;\n\n    if (cancelled) {\n      return;\n    } // Execute `callback` and update the `lastExec` timestamp.\n\n\n    function exec() {\n      lastExec = Date.now();\n      callback.apply(self, arguments_);\n    }\n    /*\n     * If `debounceMode` is true (at begin) this is used to clear the flag\n     * to allow future `callback` executions.\n     */\n\n\n    function clear() {\n      timeoutID = undefined;\n    }\n\n    if (!noLeading && debounceMode && !timeoutID) {\n      /*\n       * Since `wrapper` is being called for the first time and\n       * `debounceMode` is true (at begin), execute `callback`\n       * and noLeading != true.\n       */\n      exec();\n    }\n\n    clearExistingTimeout();\n\n    if (debounceMode === undefined && elapsed > delay) {\n      if (noLeading) {\n        /*\n         * In throttle mode with noLeading, if `delay` time has\n         * been exceeded, update `lastExec` and schedule `callback`\n         * to execute after `delay` ms.\n         */\n        lastExec = Date.now();\n\n        if (!noTrailing) {\n          timeoutID = setTimeout(debounceMode ? clear : exec, delay);\n        }\n      } else {\n        /*\n         * In throttle mode without noLeading, if `delay` time has been exceeded, execute\n         * `callback`.\n         */\n        exec();\n      }\n    } else if (noTrailing !== true) {\n      /*\n       * In trailing throttle mode, since `delay` time has not been\n       * exceeded, schedule `callback` to execute `delay` ms after most\n       * recent execution.\n       *\n       * If `debounceMode` is true (at begin), schedule `clear` to execute\n       * after `delay` ms.\n       *\n       * If `debounceMode` is false (at end), schedule `callback` to\n       * execute after `delay` ms.\n       */\n      timeoutID = setTimeout(debounceMode ? clear : exec, debounceMode === undefined ? delay - elapsed : delay);\n    }\n  }\n\n  wrapper.cancel = cancel; // Return the wrapper function.\n\n  return wrapper;\n}\n\n/* eslint-disable no-undefined */\n/**\n * Debounce execution of a function. Debouncing, unlike throttling,\n * guarantees that a function is only executed a single time, either at the\n * very beginning of a series of calls, or at the very end.\n *\n * @param {number} delay -               A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher) are most useful.\n * @param {Function} callback -          A function to be executed after delay milliseconds. The `this` context and all arguments are passed through, as-is,\n *                                        to `callback` when the debounced-function is executed.\n * @param {object} [options] -           An object to configure options.\n * @param {boolean} [options.atBegin] -  Optional, defaults to false. If atBegin is false or unspecified, callback will only be executed `delay` milliseconds\n *                                        after the last debounced-function call. If atBegin is true, callback will be executed only at the first debounced-function call.\n *                                        (After the throttled-function has not been called for `delay` milliseconds, the internal counter is reset).\n *\n * @returns {Function} A new, debounced function.\n */\n\nfunction debounce (delay, callback, options) {\n  var _ref = options || {},\n      _ref$atBegin = _ref.atBegin,\n      atBegin = _ref$atBegin === void 0 ? false : _ref$atBegin;\n\n  return throttle(delay, callback, {\n    debounceMode: atBegin !== false\n  });\n}\n\nexport { debounce, throttle };\n//# sourceMappingURL=index.js.map\n","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon chart-pie-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"ChartPieIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./ChartPie.vue?vue&type=template&id=b117066e\"\nimport script from \"./ChartPie.vue?vue&type=script&lang=js\"\nexport * from \"./ChartPie.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon chart-pie-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n\t<NcAppNavigationItem v-if=\"storageStats\"\n\t\t:aria-label=\"t('files', 'Storage informations')\"\n\t\t:class=\"{ 'app-navigation-entry__settings-quota--not-unlimited': storageStats.quota >= 0}\"\n\t\t:loading=\"loadingStorageStats\"\n\t\t:name=\"storageStatsTitle\"\n\t\t:title=\"storageStatsTooltip\"\n\t\tclass=\"app-navigation-entry__settings-quota\"\n\t\tdata-cy-files-navigation-settings-quota\n\t\t@click.stop.prevent=\"debounceUpdateStorageStats\">\n\t\t<ChartPie slot=\"icon\" :size=\"20\" />\n\n\t\t<!-- Progress bar -->\n\t\t<NcProgressBar v-if=\"storageStats.quota >= 0\"\n\t\t\tslot=\"extra\"\n\t\t\t:error=\"storageStats.relative > 80\"\n\t\t\t:value=\"Math.min(storageStats.relative, 100)\" />\n\t</NcAppNavigationItem>\n</template>\n\n<script>\nimport { debounce, throttle } from 'throttle-debounce'\nimport { formatFileSize } from '@nextcloud/files'\nimport { generateUrl } from '@nextcloud/router'\nimport { loadState } from '@nextcloud/initial-state'\nimport { showError } from '@nextcloud/dialogs'\nimport { subscribe } from '@nextcloud/event-bus'\nimport { translate } from '@nextcloud/l10n'\nimport axios from '@nextcloud/axios'\n\nimport ChartPie from 'vue-material-design-icons/ChartPie.vue'\nimport NcAppNavigationItem from '@nextcloud/vue/dist/Components/NcAppNavigationItem.js'\nimport NcProgressBar from '@nextcloud/vue/dist/Components/NcProgressBar.js'\n\nimport logger from '../logger.js'\n\nexport default {\n\tname: 'NavigationQuota',\n\n\tcomponents: {\n\t\tChartPie,\n\t\tNcAppNavigationItem,\n\t\tNcProgressBar,\n\t},\n\n\tdata() {\n\t\treturn {\n\t\t\tloadingStorageStats: false,\n\t\t\tstorageStats: loadState('files', 'storageStats', null),\n\t\t}\n\t},\n\n\tcomputed: {\n\t\tstorageStatsTitle() {\n\t\t\tconst usedQuotaByte = formatFileSize(this.storageStats?.used, false, false)\n\t\t\tconst quotaByte = formatFileSize(this.storageStats?.quota, false, false)\n\n\t\t\t// If no quota set\n\t\t\tif (this.storageStats?.quota < 0) {\n\t\t\t\treturn this.t('files', '{usedQuotaByte} used', { usedQuotaByte })\n\t\t\t}\n\n\t\t\treturn this.t('files', '{used} of {quota} used', {\n\t\t\t\tused: usedQuotaByte,\n\t\t\t\tquota: quotaByte,\n\t\t\t})\n\t\t},\n\t\tstorageStatsTooltip() {\n\t\t\tif (!this.storageStats.relative) {\n\t\t\t\treturn ''\n\t\t\t}\n\n\t\t\treturn this.t('files', '{relative}% used', this.storageStats)\n\t\t},\n\t},\n\n\tbeforeMount() {\n\t\t/**\n\t\t * Update storage stats every minute\n\t\t * TODO: remove when all views are migrated to Vue\n\t\t */\n\t\tsetInterval(this.throttleUpdateStorageStats, 60 * 1000)\n\n\t\tsubscribe('files:node:created', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:deleted', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:moved', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:updated', this.throttleUpdateStorageStats)\n\t},\n\n\tmounted() {\n\t\t// If the user has a quota set, warn if the available account storage is <=0\n\t\t//\n\t\t// NOTE: This doesn't catch situations where actual *server* \n\t\t// disk (non-quota) space is low, but those should probably\n\t\t// be handled differently anyway since a regular user can't\n\t\t// can't do much about them (If we did want to indicate server disk \n\t\t// space matters to users, we'd probably want to use a warning\n\t\t// specific to that situation anyhow. So this covers warning covers \n\t\t// our primary day-to-day concern (individual account quota usage).\n\t\t//\n\t\tif (this.storageStats?.quota > 0 && this.storageStats?.free <= 0) {\n\t\t\tthis.showStorageFullWarning()\n\t\t}\n\t},\n\n\tmethods: {\n\t\t// From user input\n\t\tdebounceUpdateStorageStats: debounce(200, function(event) {\n\t\t\tthis.updateStorageStats(event)\n\t\t}),\n\t\t// From interval or event bus\n\t\tthrottleUpdateStorageStats: throttle(1000, function(event) {\n\t\t\tthis.updateStorageStats(event)\n\t\t}),\n\n\t\t/**\n\t\t * Update the storage stats\n\t\t * Throttled at max 1 refresh per minute\n\t\t *\n\t\t * @param {Event} [event = null] if user interaction\n\t\t */\n\t\tasync updateStorageStats(event = null) {\n\t\t\tif (this.loadingStorageStats) {\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tthis.loadingStorageStats = true\n\t\t\ttry {\n\t\t\t\tconst response = await axios.get(generateUrl('/apps/files/api/v1/stats'))\n\t\t\t\tif (!response?.data?.data) {\n\t\t\t\t\tthrow new Error('Invalid storage stats')\n\t\t\t\t}\n\n\t\t\t\t// Warn the user if the available account storage changed from > 0 to 0 \n\t\t\t\t// (unless only because quota was intentionally set to 0 by admin in the interim)\n\t\t\t\tif (this.storageStats?.free > 0 && response.data.data?.free <= 0 && response.data.data?.quota > 0) {\n\t\t\t\t\tthis.showStorageFullWarning()\n\t\t\t\t}\n\n\t\t\t\tthis.storageStats = response.data.data\n\t\t\t} catch (error) {\n\t\t\t\tlogger.error('Could not refresh storage stats', { error })\n\t\t\t\t// Only show to the user if it was manually triggered\n\t\t\t\tif (event) {\n\t\t\t\t\tshowError(t('files', 'Could not refresh storage stats'))\n\t\t\t\t}\n\t\t\t} finally {\n\t\t\t\tthis.loadingStorageStats = false\n\t\t\t}\n\t\t},\n\n\t\tshowStorageFullWarning() {\n\t\t\tshowError(this.t('files', 'Your storage is full, files can not be updated or synced anymore!'))\n\t\t},\n\n\t\tt: translate,\n\t},\n}\n</script>\n\n<style lang=\"scss\" scoped>\n// User storage stats display\n.app-navigation-entry__settings-quota {\n\t// Align title with progress and icon\n\t&--not-unlimited::v-deep .app-navigation-entry__name {\n\t\tmargin-top: -6px;\n\t}\n\n\tprogress {\n\t\tposition: absolute;\n\t\tbottom: 12px;\n\t\tmargin-left: 44px;\n\t\twidth: calc(100% - 44px - 22px);\n\t}\n}\n</style>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./NavigationQuota.vue?vue&type=template&id=063ed938&scoped=true\"\nimport script from \"./NavigationQuota.vue?vue&type=script&lang=js\"\nexport * from \"./NavigationQuota.vue?vue&type=script&lang=js\"\nimport style0 from \"./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"063ed938\",\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return (_vm.storageStats)?_c('NcAppNavigationItem',{staticClass:\"app-navigation-entry__settings-quota\",class:{ 'app-navigation-entry__settings-quota--not-unlimited': _vm.storageStats.quota >= 0},attrs:{\"aria-label\":_vm.t('files', 'Storage informations'),\"loading\":_vm.loadingStorageStats,\"name\":_vm.storageStatsTitle,\"title\":_vm.storageStatsTooltip,\"data-cy-files-navigation-settings-quota\":\"\"},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.debounceUpdateStorageStats.apply(null, arguments)}}},[_c('ChartPie',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"}),_vm._v(\" \"),(_vm.storageStats.quota >= 0)?_c('NcProgressBar',{attrs:{\"slot\":\"extra\",\"error\":_vm.storageStats.relative > 80,\"value\":Math.min(_vm.storageStats.relative, 100)},slot:\"extra\"}):_vm._e()],1):_vm._e()\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppSettingsDialog',{attrs:{\"open\":_vm.open,\"show-navigation\":true,\"name\":_vm.t('files', 'Files settings')},on:{\"update:open\":_vm.onClose}},[_c('NcAppSettingsSection',{attrs:{\"id\":\"settings\",\"name\":_vm.t('files', 'Files settings')}},[_c('NcCheckboxRadioSwitch',{attrs:{\"data-cy-files-settings-setting\":\"sort_favorites_first\",\"checked\":_vm.userConfig.sort_favorites_first},on:{\"update:checked\":function($event){return _vm.setConfig('sort_favorites_first', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Sort favorites first'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"data-cy-files-settings-setting\":\"sort_folders_first\",\"checked\":_vm.userConfig.sort_folders_first},on:{\"update:checked\":function($event){return _vm.setConfig('sort_folders_first', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Sort folders before files'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"data-cy-files-settings-setting\":\"show_hidden\",\"checked\":_vm.userConfig.show_hidden},on:{\"update:checked\":function($event){return _vm.setConfig('show_hidden', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Show hidden files'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"data-cy-files-settings-setting\":\"crop_image_previews\",\"checked\":_vm.userConfig.crop_image_previews},on:{\"update:checked\":function($event){return _vm.setConfig('crop_image_previews', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Crop image previews'))+\"\\n\\t\\t\")]),_vm._v(\" \"),(_vm.enableGridView)?_c('NcCheckboxRadioSwitch',{attrs:{\"data-cy-files-settings-setting\":\"grid_view\",\"checked\":_vm.userConfig.grid_view},on:{\"update:checked\":function($event){return _vm.setConfig('grid_view', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Enable the grid view'))+\"\\n\\t\\t\")]):_vm._e()],1),_vm._v(\" \"),(_vm.settings.length !== 0)?_c('NcAppSettingsSection',{attrs:{\"id\":\"more-settings\",\"name\":_vm.t('files', 'Additional settings')}},[_vm._l((_vm.settings),function(setting){return [_c('Setting',{key:setting.name,attrs:{\"el\":setting.el}})]})],2):_vm._e(),_vm._v(\" \"),_c('NcAppSettingsSection',{attrs:{\"id\":\"webdav\",\"name\":_vm.t('files', 'WebDAV')}},[_c('NcInputField',{attrs:{\"id\":\"webdav-url-input\",\"label\":_vm.t('files', 'WebDAV URL'),\"show-trailing-button\":true,\"success\":_vm.webdavUrlCopied,\"trailing-button-label\":_vm.t('files', 'Copy to clipboard'),\"value\":_vm.webdavUrl,\"readonly\":\"readonly\",\"type\":\"url\"},on:{\"focus\":function($event){return $event.target.select()},\"trailing-button-click\":_vm.copyCloudId},scopedSlots:_vm._u([{key:\"trailing-button-icon\",fn:function(){return [_c('Clipboard',{attrs:{\"size\":20}})]},proxy:true}])}),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.webdavDocs,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Use this address to access your Files via WebDAV'))+\" ↗\\n\\t\\t\\t\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.appPasswordUrl}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'If you have enabled 2FA, you must create and use a new app password by clicking here.'))+\" ↗\\n\\t\\t\\t\")])])],1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon clipboard-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"ClipboardIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Clipboard.vue?vue&type=template&id=0c133921\"\nimport script from \"./Clipboard.vue?vue&type=script&lang=js\"\nexport * from \"./Clipboard.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon clipboard-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<!--\n  - @copyright Copyright (c) 2020 Gary Kim <gary@garykim.dev>\n  -\n  - @author John Molakvoæ <skjnldsv@protonmail.com>\n  -\n  - @license GNU AGPL version 3 or any later version\n  -\n  - This program is free software: you can redistribute it and/or modify\n  - it under the terms of the GNU Affero General Public License as\n  - published by the Free Software Foundation, either version 3 of the\n  - License, or (at your option) any later version.\n  -\n  - This program is distributed in the hope that it will be useful,\n  - but WITHOUT ANY WARRANTY; without even the implied warranty of\n  - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  - GNU Affero General Public License for more details.\n  -\n  - You should have received a copy of the GNU Affero General Public License\n  - along with this program. If not, see <http://www.gnu.org/licenses/>.\n  -\n  -->\n\n<template>\n\t<div />\n</template>\n<script>\nexport default {\n\tname: 'Setting',\n\tprops: {\n\t\tel: {\n\t\t\ttype: Function,\n\t\t\trequired: true,\n\t\t},\n\t},\n\tmounted() {\n\t\tthis.$el.appendChild(this.el())\n\t},\n}\n</script>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Setting.vue?vue&type=template&id=61d69eae\"\nimport script from \"./Setting.vue?vue&type=script&lang=js\"\nexport * from \"./Setting.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst userConfig = loadState('files', 'config', {\n    show_hidden: false,\n    crop_image_previews: true,\n    sort_favorites_first: true,\n    sort_folders_first: true,\n    grid_view: false,\n});\nexport const useUserConfigStore = function (...args) {\n    const store = defineStore('userconfig', {\n        state: () => ({\n            userConfig,\n        }),\n        actions: {\n            /**\n             * Update the user config local store\n             */\n            onUpdate(key, value) {\n                Vue.set(this.userConfig, key, value);\n            },\n            /**\n             * Update the user config local store AND on server side\n             */\n            async update(key, value) {\n                await axios.put(generateUrl('/apps/files/api/v1/config/' + key), {\n                    value,\n                });\n                emit('files:config:updated', { key, value });\n            },\n        },\n    });\n    const userConfigStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!userConfigStore._initialized) {\n        subscribe('files:config:updated', function ({ key, value }) {\n            userConfigStore.onUpdate(key, value);\n        });\n        userConfigStore._initialized = true;\n    }\n    return userConfigStore;\n};\n","<!--\n  - @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n  -\n  - @author John Molakvoæ <skjnldsv@protonmail.com>\n  -\n  - @license GNU AGPL version 3 or any later version\n  -\n  - This program is free software: you can redistribute it and/or modify\n  - it under the terms of the GNU Affero General Public License as\n  - published by the Free Software Foundation, either version 3 of the\n  - License, or (at your option) any later version.\n  -\n  - This program is distributed in the hope that it will be useful,\n  - but WITHOUT ANY WARRANTY; without even the implied warranty of\n  - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  - GNU Affero General Public License for more details.\n  -\n  - You should have received a copy of the GNU Affero General Public License\n  - along with this program. If not, see <http://www.gnu.org/licenses/>.\n  -\n  -->\n<template>\n\t<NcAppSettingsDialog :open=\"open\"\n\t\t:show-navigation=\"true\"\n\t\t:name=\"t('files', 'Files settings')\"\n\t\t@update:open=\"onClose\">\n\t\t<!-- Settings API-->\n\t\t<NcAppSettingsSection id=\"settings\" :name=\"t('files', 'Files settings')\">\n\t\t\t<NcCheckboxRadioSwitch data-cy-files-settings-setting=\"sort_favorites_first\"\n\t\t\t\t:checked=\"userConfig.sort_favorites_first\"\n\t\t\t\t@update:checked=\"setConfig('sort_favorites_first', $event)\">\n\t\t\t\t{{ t('files', 'Sort favorites first') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch data-cy-files-settings-setting=\"sort_folders_first\"\n\t\t\t\t:checked=\"userConfig.sort_folders_first\"\n\t\t\t\t@update:checked=\"setConfig('sort_folders_first', $event)\">\n\t\t\t\t{{ t('files', 'Sort folders before files') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch data-cy-files-settings-setting=\"show_hidden\"\n\t\t\t\t:checked=\"userConfig.show_hidden\"\n\t\t\t\t@update:checked=\"setConfig('show_hidden', $event)\">\n\t\t\t\t{{ t('files', 'Show hidden files') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch data-cy-files-settings-setting=\"crop_image_previews\"\n\t\t\t\t:checked=\"userConfig.crop_image_previews\"\n\t\t\t\t@update:checked=\"setConfig('crop_image_previews', $event)\">\n\t\t\t\t{{ t('files', 'Crop image previews') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch v-if=\"enableGridView\"\n\t\t\t\tdata-cy-files-settings-setting=\"grid_view\"\n\t\t\t\t:checked=\"userConfig.grid_view\"\n\t\t\t\t@update:checked=\"setConfig('grid_view', $event)\">\n\t\t\t\t{{ t('files', 'Enable the grid view') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t</NcAppSettingsSection>\n\n\t\t<!-- Settings API-->\n\t\t<NcAppSettingsSection v-if=\"settings.length !== 0\"\n\t\t\tid=\"more-settings\"\n\t\t\t:name=\"t('files', 'Additional settings')\">\n\t\t\t<template v-for=\"setting in settings\">\n\t\t\t\t<Setting :key=\"setting.name\" :el=\"setting.el\" />\n\t\t\t</template>\n\t\t</NcAppSettingsSection>\n\n\t\t<!-- Webdav URL-->\n\t\t<NcAppSettingsSection id=\"webdav\" :name=\"t('files', 'WebDAV')\">\n\t\t\t<NcInputField id=\"webdav-url-input\"\n\t\t\t\t:label=\"t('files', 'WebDAV URL')\"\n\t\t\t\t:show-trailing-button=\"true\"\n\t\t\t\t:success=\"webdavUrlCopied\"\n\t\t\t\t:trailing-button-label=\"t('files', 'Copy to clipboard')\"\n\t\t\t\t:value=\"webdavUrl\"\n\t\t\t\treadonly=\"readonly\"\n\t\t\t\ttype=\"url\"\n\t\t\t\t@focus=\"$event.target.select()\"\n\t\t\t\t@trailing-button-click=\"copyCloudId\">\n\t\t\t\t<template #trailing-button-icon>\n\t\t\t\t\t<Clipboard :size=\"20\" />\n\t\t\t\t</template>\n\t\t\t</NcInputField>\n\t\t\t<em>\n\t\t\t\t<a class=\"setting-link\"\n\t\t\t\t\t:href=\"webdavDocs\"\n\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\trel=\"noreferrer noopener\">\n\t\t\t\t\t{{ t('files', 'Use this address to access your Files via WebDAV') }} ↗\n\t\t\t\t</a>\n\t\t\t</em>\n\t\t\t<br>\n\t\t\t<em>\n\t\t\t\t<a class=\"setting-link\" :href=\"appPasswordUrl\">\n\t\t\t\t\t{{ t('files', 'If you have enabled 2FA, you must create and use a new app password by clicking here.') }} ↗\n\t\t\t\t</a>\n\t\t\t</em>\n\t\t</NcAppSettingsSection>\n\t</NcAppSettingsDialog>\n</template>\n\n<script>\nimport NcAppSettingsDialog from '@nextcloud/vue/dist/Components/NcAppSettingsDialog.js'\nimport NcAppSettingsSection from '@nextcloud/vue/dist/Components/NcAppSettingsSection.js'\nimport NcCheckboxRadioSwitch from '@nextcloud/vue/dist/Components/NcCheckboxRadioSwitch.js'\nimport Clipboard from 'vue-material-design-icons/Clipboard.vue'\nimport NcInputField from '@nextcloud/vue/dist/Components/NcInputField.js'\nimport Setting from '../components/Setting.vue'\n\nimport { generateRemoteUrl, generateUrl } from '@nextcloud/router'\nimport { getCurrentUser } from '@nextcloud/auth'\nimport { showError, showSuccess } from '@nextcloud/dialogs'\nimport { translate } from '@nextcloud/l10n'\nimport { loadState } from '@nextcloud/initial-state'\nimport { useUserConfigStore } from '../store/userconfig.ts'\n\nexport default {\n\tname: 'Settings',\n\tcomponents: {\n\t\tClipboard,\n\t\tNcAppSettingsDialog,\n\t\tNcAppSettingsSection,\n\t\tNcCheckboxRadioSwitch,\n\t\tNcInputField,\n\t\tSetting,\n\t},\n\n\tprops: {\n\t\topen: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: false,\n\t\t},\n\t},\n\n\tsetup() {\n\t\tconst userConfigStore = useUserConfigStore()\n\t\treturn {\n\t\t\tuserConfigStore,\n\t\t}\n\t},\n\n\tdata() {\n\t\treturn {\n\t\t\t// Settings API\n\t\t\tsettings: window.OCA?.Files?.Settings?.settings || [],\n\n\t\t\t// Webdav infos\n\t\t\twebdavUrl: generateRemoteUrl('dav/files/' + encodeURIComponent(getCurrentUser()?.uid)),\n\t\t\twebdavDocs: 'https://docs.nextcloud.com/server/stable/go.php?to=user-webdav',\n\t\t\tappPasswordUrl: generateUrl('/settings/user/security#generate-app-token-section'),\n\t\t\twebdavUrlCopied: false,\n\t\t\tenableGridView: (loadState('core', 'config', [])['enable_non-accessible_features'] ?? true),\n\t\t}\n\t},\n\n\tcomputed: {\n\t\tuserConfig() {\n\t\t\treturn this.userConfigStore.userConfig\n\t\t},\n\t},\n\n\tbeforeMount() {\n\t\t// Update the settings API entries state\n\t\tthis.settings.forEach(setting => setting.open())\n\t},\n\n\tbeforeDestroy() {\n\t\t// Update the settings API entries state\n\t\tthis.settings.forEach(setting => setting.close())\n\t},\n\n\tmethods: {\n\t\tonClose() {\n\t\t\tthis.$emit('close')\n\t\t},\n\n\t\tsetConfig(key, value) {\n\t\t\tthis.userConfigStore.update(key, value)\n\t\t},\n\n\t\tasync copyCloudId() {\n\t\t\tdocument.querySelector('input#webdav-url-input').select()\n\n\t\t\tif (!navigator.clipboard) {\n\t\t\t\t// Clipboard API not available\n\t\t\t\tshowError(t('files', 'Clipboard is not available'))\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tawait navigator.clipboard.writeText(this.webdavUrl)\n\t\t\tthis.webdavUrlCopied = true\n\t\t\tshowSuccess(t('files', 'WebDAV URL copied to clipboard'))\n\t\t\tsetTimeout(() => {\n\t\t\t\tthis.webdavUrlCopied = false\n\t\t\t}, 5000)\n\t\t},\n\n\t\tt: translate,\n\t},\n}\n</script>\n\n<style lang=\"scss\" scoped>\n.setting-link:hover {\n\ttext-decoration: underline;\n}\n</style>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=00f09e69&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=00f09e69&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Settings.vue?vue&type=template&id=00f09e69&scoped=true\"\nimport script from \"./Settings.vue?vue&type=script&lang=js\"\nexport * from \"./Settings.vue?vue&type=script&lang=js\"\nimport style0 from \"./Settings.vue?vue&type=style&index=0&id=00f09e69&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"00f09e69\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppNavigation',{attrs:{\"data-cy-files-navigation\":\"\",\"aria-label\":_vm.t('files', 'Files')},scopedSlots:_vm._u([{key:\"list\",fn:function(){return _vm._l((_vm.parentViews),function(view){return _c('NcAppNavigationItem',{key:view.id,attrs:{\"allow-collapse\":true,\"data-cy-files-navigation-item\":view.id,\"exact\":_vm.useExactRouteMatching(view),\"icon\":view.iconClass,\"name\":view.name,\"open\":_vm.isExpanded(view),\"pinned\":view.sticky,\"to\":_vm.generateToNavigation(view)},on:{\"update:open\":function($event){return _vm.onToggleExpand(view)}}},[(view.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":view.icon},slot:\"icon\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.childViews[view.id]),function(child){return _c('NcAppNavigationItem',{key:child.id,attrs:{\"data-cy-files-navigation-item\":child.id,\"exact-path\":true,\"icon\":child.iconClass,\"name\":child.name,\"to\":_vm.generateToNavigation(child)}},[(child.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":child.icon},slot:\"icon\"}):_vm._e()],1)})],2)})},proxy:true},{key:\"footer\",fn:function(){return [_c('ul',{staticClass:\"app-navigation-entry__settings\"},[_c('NavigationQuota'),_vm._v(\" \"),_c('NcAppNavigationItem',{attrs:{\"aria-label\":_vm.t('files', 'Open the files app settings'),\"name\":_vm.t('files', 'Files settings'),\"data-cy-files-navigation-settings-button\":\"\"},on:{\"click\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.openSettings.apply(null, arguments)}}},[_c('Cog',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"})],1)],1)]},proxy:true}])},[_vm._v(\" \"),_vm._v(\" \"),_c('SettingsModal',{attrs:{\"open\":_vm.settingsOpened,\"data-cy-files-navigation-settings\":\"\"},on:{\"close\":_vm.onSettingsClose}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=476b6b93&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=476b6b93&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Navigation.vue?vue&type=template&id=476b6b93&scoped=true\"\nimport script from \"./Navigation.vue?vue&type=script&lang=ts\"\nexport * from \"./Navigation.vue?vue&type=script&lang=ts\"\nimport style0 from \"./Navigation.vue?vue&type=style&index=0&id=476b6b93&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"476b6b93\",\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcAppContent',{attrs:{\"page-heading\":_vm.pageHeading,\"data-cy-files-content\":\"\"}},[_c('div',{staticClass:\"files-list__header\"},[_c('BreadCrumbs',{attrs:{\"path\":_vm.dir},on:{\"reload\":_vm.fetchContent},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [(_vm.canShare && _vm.filesListWidth >= 512)?_c('NcButton',{staticClass:\"files-list__header-share-button\",class:{ 'files-list__header-share-button--shared': _vm.shareButtonType },attrs:{\"aria-label\":_vm.shareButtonLabel,\"title\":_vm.shareButtonLabel,\"type\":\"tertiary\"},on:{\"click\":_vm.openSharingSidebar},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.shareButtonType === _vm.Type.SHARE_TYPE_LINK)?_c('LinkIcon'):_c('AccountPlusIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,2969853559)}):_vm._e(),_vm._v(\" \"),(!_vm.canUpload || _vm.isQuotaExceeded)?_c('NcButton',{staticClass:\"files-list__header-upload-button--disabled\",attrs:{\"aria-label\":_vm.cantUploadLabel,\"title\":_vm.cantUploadLabel,\"disabled\":true,\"type\":\"secondary\"},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [_c('PlusIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,2953566425)},[_vm._v(\"\\n\\t\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'New'))+\"\\n\\t\\t\\t\\t\")]):(_vm.currentFolder)?_c('UploadPicker',{staticClass:\"files-list__header-upload-button\",attrs:{\"content\":_vm.dirContents,\"destination\":_vm.currentFolder,\"multiple\":true},on:{\"failed\":_vm.onUploadFail,\"uploaded\":_vm.onUpload}}):_vm._e()]},proxy:true}])}),_vm._v(\" \"),(_vm.filesListWidth >= 512 && _vm.enableGridView)?_c('NcButton',{staticClass:\"files-list__header-grid-button\",attrs:{\"aria-label\":_vm.gridViewButtonLabel,\"title\":_vm.gridViewButtonLabel,\"type\":\"tertiary\"},on:{\"click\":_vm.toggleGridView},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.userConfig.grid_view)?_c('ListViewIcon'):_c('ViewGridIcon')]},proxy:true}],null,false,1682960703)}):_vm._e(),_vm._v(\" \"),(_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__refresh-icon\"}):_vm._e()],1),_vm._v(\" \"),(!_vm.loading && _vm.canUpload)?_c('DragAndDropNotice',{attrs:{\"current-folder\":_vm.currentFolder}}):_vm._e(),_vm._v(\" \"),(_vm.loading && !_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__loading-icon\",attrs:{\"size\":38,\"name\":_vm.t('files', 'Loading current folder')}}):(!_vm.loading && _vm.isEmptyDir)?_c('NcEmptyContent',{attrs:{\"name\":_vm.currentView?.emptyTitle || _vm.t('files', 'No files in here'),\"description\":_vm.currentView?.emptyCaption || _vm.t('files', 'Upload some content or sync with your devices!'),\"data-cy-files-content-empty\":\"\"},scopedSlots:_vm._u([{key:\"action\",fn:function(){return [(_vm.dir !== '/')?_c('NcButton',{attrs:{\"aria-label\":_vm.t('files', 'Go to the previous folder'),\"type\":\"primary\",\"to\":_vm.toPreviousDir}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Go back'))+\"\\n\\t\\t\\t\")]):_vm._e()]},proxy:true},{key:\"icon\",fn:function(){return [_c('NcIconSvgWrapper',{attrs:{\"svg\":_vm.currentView.icon}})]},proxy:true}])}):_c('FilesListVirtual',{ref:\"filesListVirtual\",attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"nodes\":_vm.dirContentsSorted}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon format-list-bulleted-square-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"FormatListBulletedSquareIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FormatListBulletedSquare.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FormatListBulletedSquare.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./FormatListBulletedSquare.vue?vue&type=template&id=00aea13f\"\nimport script from \"./FormatListBulletedSquare.vue?vue&type=script&lang=js\"\nexport * from \"./FormatListBulletedSquare.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon format-list-bulleted-square-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon account-plus-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"AccountPlusIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./AccountPlus.vue?vue&type=template&id=a16afc28\"\nimport script from \"./AccountPlus.vue?vue&type=script&lang=js\"\nexport * from \"./AccountPlus.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon account-plus-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ViewGrid.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ViewGrid.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon view-grid-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"ViewGridIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./ViewGrid.vue?vue&type=template&id=7b96a104\"\nimport script from \"./ViewGrid.vue?vue&type=script&lang=js\"\nexport * from \"./ViewGrid.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon view-grid-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Permission, View, FileAction, FileType } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport InformationSvg from '@mdi/svg/svg/information-variant.svg?raw';\nimport logger from '../logger.js';\nexport const ACTION_DETAILS = 'details';\nexport const action = new FileAction({\n    id: ACTION_DETAILS,\n    displayName: () => t('files', 'Open details'),\n    iconSvgInline: () => InformationSvg,\n    // Sidebar currently supports user folder only, /files/USER\n    enabled: (nodes) => {\n        // Only works on single node\n        if (nodes.length !== 1) {\n            return false;\n        }\n        if (!nodes[0]) {\n            return false;\n        }\n        // Only work if the sidebar is available\n        if (!window?.OCA?.Files?.Sidebar) {\n            return false;\n        }\n        return (nodes[0].root?.startsWith('/files/') && nodes[0].permissions !== Permission.NONE) ?? false;\n    },\n    async exec(node, view, dir) {\n        try {\n            // TODO: migrate Sidebar to use a Node instead\n            await window.OCA.Files.Sidebar.open(node.path);\n            // Silently update current fileid\n            window.OCP.Files.Router.goToRoute(null, { view: view.id, fileid: node.fileid }, { dir }, true);\n            return null;\n        }\n        catch (error) {\n            logger.error('Error while opening sidebar', { error });\n            return false;\n        }\n    },\n    order: -50,\n});\n","import { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nimport logger from '../logger';\nimport Vue from 'vue';\nexport const useFilesStore = function (...args) {\n    const store = defineStore('files', {\n        state: () => ({\n            files: {},\n            roots: {},\n        }),\n        getters: {\n            /**\n             * Get a file or folder by id\n             */\n            getNode: (state) => (id) => state.files[id],\n            /**\n             * Get a list of files or folders by their IDs\n             * Does not return undefined values\n             */\n            getNodes: (state) => (ids) => ids\n                .map(id => state.files[id])\n                .filter(Boolean),\n            /**\n             * Get a file or folder by id\n             */\n            getRoot: (state) => (service) => state.roots[service],\n        },\n        actions: {\n            updateNodes(nodes) {\n                // Update the store all at once\n                const files = nodes.reduce((acc, node) => {\n                    if (!node.fileid) {\n                        logger.error('Trying to update/set a node without fileid', node);\n                        return acc;\n                    }\n                    acc[node.fileid] = node;\n                    return acc;\n                }, {});\n                Vue.set(this, 'files', { ...this.files, ...files });\n            },\n            deleteNodes(nodes) {\n                nodes.forEach(node => {\n                    if (node.fileid) {\n                        Vue.delete(this.files, node.fileid);\n                    }\n                });\n            },\n            setRoot({ service, root }) {\n                Vue.set(this.roots, service, root);\n            },\n            onDeletedNode(node) {\n                this.deleteNodes([node]);\n            },\n            onCreatedNode(node) {\n                this.updateNodes([node]);\n            },\n            onUpdatedNode(node) {\n                this.updateNodes([node]);\n            },\n        },\n    });\n    const fileStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!fileStore._initialized) {\n        subscribe('files:node:created', fileStore.onCreatedNode);\n        subscribe('files:node:deleted', fileStore.onDeletedNode);\n        subscribe('files:node:updated', fileStore.onUpdatedNode);\n        fileStore._initialized = true;\n    }\n    return fileStore;\n};\n","import { defineStore } from 'pinia';\nimport { FileType, Folder, Node, getNavigation } from '@nextcloud/files';\nimport { subscribe } from '@nextcloud/event-bus';\nimport Vue from 'vue';\nimport logger from '../logger';\nimport { useFilesStore } from './files';\nexport const usePathsStore = function (...args) {\n    const files = useFilesStore();\n    const store = defineStore('paths', {\n        state: () => ({\n            paths: {},\n        }),\n        getters: {\n            getPath: (state) => {\n                return (service, path) => {\n                    if (!state.paths[service]) {\n                        return undefined;\n                    }\n                    return state.paths[service][path];\n                };\n            },\n        },\n        actions: {\n            addPath(payload) {\n                // If it doesn't exists, init the service state\n                if (!this.paths[payload.service]) {\n                    Vue.set(this.paths, payload.service, {});\n                }\n                // Now we can set the provided path\n                Vue.set(this.paths[payload.service], payload.path, payload.fileid);\n            },\n            onCreatedNode(node) {\n                const service = getNavigation()?.active?.id || 'files';\n                if (!node.fileid) {\n                    logger.error('Node has no fileid', { node });\n                    return;\n                }\n                // Only add path if it's a folder\n                if (node.type === FileType.Folder) {\n                    this.addPath({\n                        service,\n                        path: node.path,\n                        fileid: node.fileid,\n                    });\n                }\n                // Update parent folder children if exists\n                // If the folder is the root, get it and update it\n                if (node.dirname === '/') {\n                    const root = files.getRoot(service);\n                    if (!root._children) {\n                        Vue.set(root, '_children', []);\n                    }\n                    root._children.push(node.fileid);\n                    return;\n                }\n                // If the folder doesn't exists yet, it will be\n                // fetched later and its children updated anyway.\n                if (this.paths[service][node.dirname]) {\n                    const parentId = this.paths[service][node.dirname];\n                    const parentFolder = files.getNode(parentId);\n                    logger.debug('Path already exists, updating children', { parentFolder, node });\n                    if (!parentFolder) {\n                        logger.error('Parent folder not found', { parentId });\n                        return;\n                    }\n                    if (!parentFolder._children) {\n                        Vue.set(parentFolder, '_children', []);\n                    }\n                    parentFolder._children.push(node.fileid);\n                    return;\n                }\n                logger.debug('Parent path does not exists, skipping children update', { node });\n            },\n        },\n    });\n    const pathsStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!pathsStore._initialized) {\n        // TODO: watch folders to update paths?\n        subscribe('files:node:created', pathsStore.onCreatedNode);\n        // subscribe('files:node:deleted', pathsStore.onDeletedNode)\n        // subscribe('files:node:moved', pathsStore.onMovedNode)\n        pathsStore._initialized = true;\n    }\n    return pathsStore;\n};\n","import { defineStore } from 'pinia';\nimport Vue from 'vue';\nexport const useSelectionStore = defineStore('selection', {\n    state: () => ({\n        selected: [],\n        lastSelection: [],\n        lastSelectedIndex: null,\n    }),\n    actions: {\n        /**\n         * Set the selection of fileIds\n         */\n        set(selection = []) {\n            Vue.set(this, 'selected', [...new Set(selection)]);\n        },\n        /**\n         * Set the last selected index\n         */\n        setLastIndex(lastSelectedIndex = null) {\n            // Update the last selection if we provided a new selection starting point\n            Vue.set(this, 'lastSelection', lastSelectedIndex ? this.selected : []);\n            Vue.set(this, 'lastSelectedIndex', lastSelectedIndex);\n        },\n        /**\n         * Reset the selection\n         */\n        reset() {\n            Vue.set(this, 'selected', []);\n            Vue.set(this, 'lastSelection', []);\n            Vue.set(this, 'lastSelectedIndex', null);\n        },\n    },\n});\n","import { defineStore } from 'pinia';\nimport { getUploader } from '@nextcloud/upload';\nlet uploader;\nexport const useUploaderStore = function (...args) {\n    // Only init on runtime\n    uploader = getUploader();\n    const store = defineStore('uploader', {\n        state: () => ({\n            queue: uploader.queue,\n        }),\n    });\n    return store(...args);\n};\n","/**\n * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\nimport { getCanonicalLocale, getLanguage } from '@nextcloud/l10n';\n/**\n * Helper to create string representation\n * @param value Value to stringify\n */\nfunction stringify(value) {\n    // The default representation of Date is not sortable because of the weekday names in front of it\n    if (value instanceof Date) {\n        return value.toISOString();\n    }\n    return String(value);\n}\n/**\n * Natural order a collection\n * You can define identifiers as callback functions, that get the element and return the value to sort.\n *\n * @param collection The collection to order\n * @param identifiers An array of identifiers to use, by default the identity of the element is used\n * @param orders Array of orders, by default all identifiers are sorted ascening\n */\nexport function orderBy(collection, identifiers, orders) {\n    // If not identifiers are set we use the identity of the value\n    identifiers = identifiers ?? [(value) => value];\n    // By default sort the collection ascending\n    orders = orders ?? [];\n    const sorting = identifiers.map((_, index) => (orders[index] ?? 'asc') === 'asc' ? 1 : -1);\n    const collator = Intl.Collator([getLanguage(), getCanonicalLocale()], {\n        // handle 10 as ten and not as one-zero\n        numeric: true,\n        usage: 'sort',\n    });\n    return [...collection].sort((a, b) => {\n        for (const [index, identifier] of identifiers.entries()) {\n            // Get the local compare of stringified value a and b\n            const value = collator.compare(stringify(identifier(a)), stringify(identifier(b)));\n            // If they do not match return the order\n            if (value !== 0) {\n                return value * sorting[index];\n            }\n            // If they match we need to continue with the next identifier\n        }\n        // If all are equal we need to return equality\n        return 0;\n    });\n}\n","import { emit } from '@nextcloud/event-bus';\nimport { Folder, Node, davGetClient, davGetDefaultPropfind, davResultToNode } from '@nextcloud/files';\nimport { openConflictPicker } from '@nextcloud/upload';\nimport { showError, showInfo } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport logger from '../logger.js';\n/**\n * This represents a Directory in the file tree\n * We extend the File class to better handling uploading\n * and stay as close as possible as the Filesystem API.\n * This also allow us to hijack the size or lastModified\n * properties to compute them dynamically.\n */\nexport class Directory extends File {\n    /* eslint-disable no-use-before-define */\n    _contents;\n    constructor(name, contents = []) {\n        super([], name, { type: 'httpd/unix-directory' });\n        this._contents = contents;\n    }\n    set contents(contents) {\n        this._contents = contents;\n    }\n    get contents() {\n        return this._contents;\n    }\n    get size() {\n        return this._computeDirectorySize(this);\n    }\n    get lastModified() {\n        if (this._contents.length === 0) {\n            return Date.now();\n        }\n        return this._computeDirectoryMtime(this);\n    }\n    /**\n     * Get the last modification time of a file tree\n     * This is not perfect, but will get us a pretty good approximation\n     * @param directory the directory to traverse\n     */\n    _computeDirectoryMtime(directory) {\n        return directory.contents.reduce((acc, file) => {\n            return file.lastModified > acc\n                // If the file is a directory, the lastModified will\n                // also return the results of its _computeDirectoryMtime method\n                // Fancy recursion, huh?\n                ? file.lastModified\n                : acc;\n        }, 0);\n    }\n    /**\n     * Get the size of a file tree\n     * @param directory the directory to traverse\n     */\n    _computeDirectorySize(directory) {\n        return directory.contents.reduce((acc, entry) => {\n            // If the file is a directory, the size will\n            // also return the results of its _computeDirectorySize method\n            // Fancy recursion, huh?\n            return acc + entry.size;\n        }, 0);\n    }\n}\n/**\n * Traverse a file tree using the Filesystem API\n * @param entry the entry to traverse\n */\nexport const traverseTree = async (entry) => {\n    // Handle file\n    if (entry.isFile) {\n        return new Promise((resolve, reject) => {\n            entry.file(resolve, reject);\n        });\n    }\n    // Handle directory\n    logger.debug('Handling recursive file tree', { entry: entry.name });\n    const directory = entry;\n    const entries = await readDirectory(directory);\n    const contents = (await Promise.all(entries.map(traverseTree))).flat();\n    return new Directory(directory.name, contents);\n};\n/**\n * Read a directory using Filesystem API\n * @param directory the directory to read\n */\nconst readDirectory = (directory) => {\n    const dirReader = directory.createReader();\n    return new Promise((resolve, reject) => {\n        const entries = [];\n        const getEntries = () => {\n            dirReader.readEntries((results) => {\n                if (results.length) {\n                    entries.push(...results);\n                    getEntries();\n                }\n                else {\n                    resolve(entries);\n                }\n            }, (error) => {\n                reject(error);\n            });\n        };\n        getEntries();\n    });\n};\nexport const createDirectoryIfNotExists = async (absolutePath) => {\n    const davClient = davGetClient();\n    const dirExists = await davClient.exists(absolutePath);\n    if (!dirExists) {\n        logger.debug('Directory does not exist, creating it', { absolutePath });\n        await davClient.createDirectory(absolutePath, { recursive: true });\n        const stat = await davClient.stat(absolutePath, { details: true, data: davGetDefaultPropfind() });\n        emit('files:node:created', davResultToNode(stat.data));\n    }\n};\nexport const resolveConflict = async (files, destination, contents) => {\n    try {\n        // List all conflicting files\n        const conflicts = files.filter((file) => {\n            return contents.find((node) => node.basename === (file instanceof File ? file.name : file.basename));\n        }).filter(Boolean);\n        // List of incoming files that are NOT in conflict\n        const uploads = files.filter((file) => {\n            return !conflicts.includes(file);\n        });\n        // Let the user choose what to do with the conflicting files\n        const { selected, renamed } = await openConflictPicker(destination.path, conflicts, contents);\n        logger.debug('Conflict resolution', { uploads, selected, renamed });\n        // If the user selected nothing, we cancel the upload\n        if (selected.length === 0 && renamed.length === 0) {\n            // User skipped\n            showInfo(t('files', 'Conflicts resolution skipped'));\n            logger.info('User skipped the conflict resolution');\n            return [];\n        }\n        // Update the list of files to upload\n        return [...uploads, ...selected, ...renamed];\n    }\n    catch (error) {\n        console.error(error);\n        // User cancelled\n        showError(t('files', 'Upload cancelled'));\n        logger.error('User cancelled the upload');\n    }\n    return [];\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport '@nextcloud/dialogs/style.css';\nimport { Permission } from '@nextcloud/files';\nimport PQueue from 'p-queue';\n// This is the processing queue. We only want to allow 3 concurrent requests\nlet queue;\n/**\n * Get the processing queue\n */\nexport const getQueue = () => {\n    if (!queue) {\n        queue = new PQueue({ concurrency: 3 });\n    }\n    return queue;\n};\nexport var MoveCopyAction;\n(function (MoveCopyAction) {\n    MoveCopyAction[\"MOVE\"] = \"Move\";\n    MoveCopyAction[\"COPY\"] = \"Copy\";\n    MoveCopyAction[\"MOVE_OR_COPY\"] = \"move-or-copy\";\n})(MoveCopyAction || (MoveCopyAction = {}));\nexport const canMove = (nodes) => {\n    const minPermission = nodes.reduce((min, node) => Math.min(min, node.permissions), Permission.ALL);\n    return (minPermission & Permission.UPDATE) !== 0;\n};\nexport const canDownload = (nodes) => {\n    return nodes.every(node => {\n        const shareAttributes = JSON.parse(node.attributes?.['share-attributes'] ?? '[]');\n        return !shareAttributes.some(attribute => attribute.scope === 'permissions' && attribute.enabled === false && attribute.key === 'download');\n    });\n};\nexport const canCopy = (nodes) => {\n    // For now the only restriction is that a shared file\n    // cannot be copied if the download is disabled\n    return canDownload(nodes);\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { createClient, getPatcher } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser, getRequestToken, onRequestTokenUpdate } from '@nextcloud/auth';\nexport const rootPath = `/files/${getCurrentUser()?.uid}`;\nexport const defaultRootUrl = generateRemoteUrl('dav' + rootPath);\nexport const getClient = (rootUrl = defaultRootUrl) => {\n    const client = createClient(rootUrl);\n    // set CSRF token header\n    const setHeaders = (token) => {\n        client?.setHeaders({\n            // Add this so the server knows it is an request from the browser\n            'X-Requested-With': 'XMLHttpRequest',\n            // Inject user auth\n            requesttoken: token ?? '',\n        });\n    };\n    // refresh headers when request token changes\n    onRequestTokenUpdate(setHeaders);\n    setHeaders(getRequestToken());\n    /**\n     * Allow to override the METHOD to support dav REPORT\n     *\n     * @see https://github.com/perry-mitchell/webdav-client/blob/8d9694613c978ce7404e26a401c39a41f125f87f/source/request.ts\n     */\n    const patcher = getPatcher();\n    // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n    // @ts-ignore\n    // https://github.com/perry-mitchell/hot-patcher/issues/6\n    patcher.patch('fetch', (url, options) => {\n        const headers = options.headers;\n        if (headers?.method) {\n            options.method = headers.method;\n            delete headers.method;\n        }\n        return fetch(url, options);\n    });\n    return client;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nexport const hashCode = function (str) {\n    return str.split('').reduce(function (a, b) {\n        a = ((a << 5) - a) + b.charCodeAt(0);\n        return a & a;\n    }, 0);\n};\n","import { CancelablePromise } from 'cancelable-promise';\nimport { File, Folder, davParsePermissions, davGetDefaultPropfind } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { hashCode } from '../utils/hashUtils';\nimport logger from '../logger';\nconst client = getClient();\nexport const resultToNode = function (node) {\n    const userId = getCurrentUser()?.uid;\n    if (!userId) {\n        throw new Error('No user id found');\n    }\n    const props = node.props;\n    const permissions = davParsePermissions(props?.permissions);\n    const owner = (props['owner-id'] || userId).toString();\n    const source = generateRemoteUrl('dav' + rootPath + node.filename);\n    const id = props?.fileid < 0\n        ? hashCode(source)\n        : props?.fileid || 0;\n    const nodeData = {\n        id,\n        source,\n        mtime: new Date(node.lastmod),\n        mime: node.mime || 'application/octet-stream',\n        size: props?.size || 0,\n        permissions,\n        owner,\n        root: rootPath,\n        attributes: {\n            ...node,\n            ...props,\n            hasPreview: props?.['has-preview'],\n            failed: props?.fileid < 0,\n        },\n    };\n    delete nodeData.attributes.props;\n    return node.type === 'file'\n        ? new File(nodeData)\n        : new Folder(nodeData);\n};\nexport const getContents = (path = '/') => {\n    const controller = new AbortController();\n    const propfindPayload = davGetDefaultPropfind();\n    return new CancelablePromise(async (resolve, reject, onCancel) => {\n        onCancel(() => controller.abort());\n        try {\n            const contentsResponse = await client.getDirectoryContents(path, {\n                details: true,\n                data: propfindPayload,\n                includeSelf: true,\n                signal: controller.signal,\n            });\n            const root = contentsResponse.data[0];\n            const contents = contentsResponse.data.slice(1);\n            if (root.filename !== path) {\n                throw new Error('Root node does not match requested path');\n            }\n            resolve({\n                folder: resultToNode(root),\n                contents: contents.map(result => {\n                    try {\n                        return resultToNode(result);\n                    }\n                    catch (error) {\n                        logger.error(`Invalid node detected '${result.basename}'`, { error });\n                        return null;\n                    }\n                }).filter(Boolean),\n            });\n        }\n        catch (error) {\n            reject(error);\n        }\n    });\n};\n","/**\n * @copyright Copyright (c) 2021 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { basename, extname } from 'path';\nimport { FileType } from '@nextcloud/files';\nimport { translate as t, translatePlural as n } from '@nextcloud/l10n';\n// TODO: move to @nextcloud/files\n/**\n * Create an unique file name\n * @param name The initial name to use\n * @param otherNames Other names that are already used\n * @param options Optional parameters for tuning the behavior\n * @param options.suffix A function that takes an index and returns a suffix to add to the file name, defaults to '(index)'\n * @param options.ignoreFileExtension Set to true to ignore the file extension when adding the suffix (when getting a unique directory name)\n * @return Either the initial name, if unique, or the name with the suffix so that the name is unique\n */\nexport const getUniqueName = (name, otherNames, options = {}) => {\n    const opts = {\n        suffix: (n) => `(${n})`,\n        ignoreFileExtension: false,\n        ...options,\n    };\n    let newName = name;\n    let i = 1;\n    while (otherNames.includes(newName)) {\n        const ext = opts.ignoreFileExtension ? '' : extname(name);\n        const base = basename(name, ext);\n        newName = `${base} ${opts.suffix(i++)}${ext}`;\n    }\n    return newName;\n};\n/**\n * Extract dir and name from file path\n *\n * @param {string} path the full path\n * @return {string[]} [dirPath, fileName]\n */\nexport const extractFilePaths = function (path) {\n    const pathSections = path.split('/');\n    const fileName = pathSections[pathSections.length - 1];\n    const dirPath = pathSections.slice(0, pathSections.length - 1).join('/');\n    return [dirPath, fileName];\n};\n/**\n * Generate a translated summary of an array of nodes\n * @param {Node[]} nodes the nodes to summarize\n * @return {string}\n */\nexport const getSummaryFor = (nodes) => {\n    const fileCount = nodes.filter(node => node.type === FileType.File).length;\n    const folderCount = nodes.filter(node => node.type === FileType.Folder).length;\n    if (fileCount === 0) {\n        return n('files', '{folderCount} folder', '{folderCount} folders', folderCount, { folderCount });\n    }\n    else if (folderCount === 0) {\n        return n('files', '{fileCount} file', '{fileCount} files', fileCount, { fileCount });\n    }\n    if (fileCount === 1) {\n        return n('files', '1 file and {folderCount} folder', '1 file and {folderCount} folders', folderCount, { folderCount });\n    }\n    if (folderCount === 1) {\n        return n('files', '{fileCount} file and 1 folder', '{fileCount} files and 1 folder', fileCount, { fileCount });\n    }\n    return t('files', '{fileCount} files and {folderCount} folders', { fileCount, folderCount });\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport '@nextcloud/dialogs/style.css';\n// eslint-disable-next-line n/no-extraneous-import\nimport { AxiosError } from 'axios';\nimport { basename, join } from 'path';\nimport { emit } from '@nextcloud/event-bus';\nimport { FilePickerClosed, getFilePickerBuilder, showError } from '@nextcloud/dialogs';\nimport { Permission, FileAction, FileType, NodeStatus, davGetClient, davRootPath, davResultToNode, davGetDefaultPropfind } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport { openConflictPicker, hasConflict } from '@nextcloud/upload';\nimport Vue from 'vue';\nimport CopyIconSvg from '@mdi/svg/svg/folder-multiple.svg?raw';\nimport FolderMoveSvg from '@mdi/svg/svg/folder-move.svg?raw';\nimport { MoveCopyAction, canCopy, canMove, getQueue } from './moveOrCopyActionUtils';\nimport { getContents } from '../services/Files';\nimport logger from '../logger';\nimport { getUniqueName } from '../utils/fileUtils';\n/**\n * Return the action that is possible for the given nodes\n * @param {Node[]} nodes The nodes to check against\n * @return {MoveCopyAction} The action that is possible for the given nodes\n */\nconst getActionForNodes = (nodes) => {\n    if (canMove(nodes)) {\n        if (canCopy(nodes)) {\n            return MoveCopyAction.MOVE_OR_COPY;\n        }\n        return MoveCopyAction.MOVE;\n    }\n    // Assuming we can copy as the enabled checks for copy permissions\n    return MoveCopyAction.COPY;\n};\n/**\n * Handle the copy/move of a node to a destination\n * This can be imported and used by other scripts/components on server\n * @param {Node} node The node to copy/move\n * @param {Folder} destination The destination to copy/move the node to\n * @param {MoveCopyAction} method The method to use for the copy/move\n * @param {boolean} overwrite Whether to overwrite the destination if it exists\n * @return {Promise<void>} A promise that resolves when the copy/move is done\n */\nexport const handleCopyMoveNodeTo = async (node, destination, method, overwrite = false) => {\n    if (!destination) {\n        return;\n    }\n    if (destination.type !== FileType.Folder) {\n        throw new Error(t('files', 'Destination is not a folder'));\n    }\n    // Do not allow to MOVE a node to the same folder it is already located\n    if (method === MoveCopyAction.MOVE && node.dirname === destination.path) {\n        throw new Error(t('files', 'This file/folder is already in that directory'));\n    }\n    /**\n     * Example:\n     * - node: /foo/bar/file.txt -> path = /foo/bar/file.txt, destination: /foo\n     *   Allow move of /foo does not start with /foo/bar/file.txt so allow\n     * - node: /foo , destination: /foo/bar\n     *   Do not allow as it would copy foo within itself\n     * - node: /foo/bar.txt, destination: /foo\n     *   Allow copy a file to the same directory\n     * - node: \"/foo/bar\", destination: \"/foo/bar 1\"\n     *   Allow to move or copy but we need to check with trailing / otherwise it would report false positive\n     */\n    if (`${destination.path}/`.startsWith(`${node.path}/`)) {\n        throw new Error(t('files', 'You cannot move a file/folder onto itself or into a subfolder of itself'));\n    }\n    // Set loading state\n    Vue.set(node, 'status', NodeStatus.LOADING);\n    const queue = getQueue();\n    return await queue.add(async () => {\n        const copySuffix = (index) => {\n            if (index === 1) {\n                return t('files', '(copy)'); // TRANSLATORS: Mark a file as a copy of another file\n            }\n            return t('files', '(copy %n)', undefined, index); // TRANSLATORS: Meaning it is the n'th copy of a file\n        };\n        try {\n            const client = davGetClient();\n            const currentPath = join(davRootPath, node.path);\n            const destinationPath = join(davRootPath, destination.path);\n            if (method === MoveCopyAction.COPY) {\n                let target = node.basename;\n                // If we do not allow overwriting then find an unique name\n                if (!overwrite) {\n                    const otherNodes = await client.getDirectoryContents(destinationPath);\n                    target = getUniqueName(node.basename, otherNodes.map((n) => n.basename), {\n                        suffix: copySuffix,\n                        ignoreFileExtension: node.type === FileType.Folder,\n                    });\n                }\n                await client.copyFile(currentPath, join(destinationPath, target));\n                // If the node is copied into current directory the view needs to be updated\n                if (node.dirname === destination.path) {\n                    const { data } = await client.stat(join(destinationPath, target), {\n                        details: true,\n                        data: davGetDefaultPropfind(),\n                    });\n                    emit('files:node:created', davResultToNode(data));\n                }\n            }\n            else {\n                // show conflict file popup if we do not allow overwriting\n                const otherNodes = await getContents(destination.path);\n                if (hasConflict([node], otherNodes.contents)) {\n                    try {\n                        // Let the user choose what to do with the conflicting files\n                        const { selected, renamed } = await openConflictPicker(destination.path, [node], otherNodes.contents);\n                        // if the user selected to keep the old file, and did not select the new file\n                        // that means they opted to delete the current node\n                        if (!selected.length && !renamed.length) {\n                            await client.deleteFile(currentPath);\n                            emit('files:node:deleted', node);\n                            return;\n                        }\n                    }\n                    catch (error) {\n                        // User cancelled\n                        showError(t('files', 'Move cancelled'));\n                        return;\n                    }\n                }\n                // getting here means either no conflict, file was renamed to keep both files\n                // in a conflict, or the selected file was chosen to be kept during the conflict\n                await client.moveFile(currentPath, join(destinationPath, node.basename));\n                // Delete the node as it will be fetched again\n                // when navigating to the destination folder\n                emit('files:node:deleted', node);\n            }\n        }\n        catch (error) {\n            if (error instanceof AxiosError) {\n                if (error?.response?.status === 412) {\n                    throw new Error(t('files', 'A file or folder with that name already exists in this folder'));\n                }\n                else if (error?.response?.status === 423) {\n                    throw new Error(t('files', 'The files are locked'));\n                }\n                else if (error?.response?.status === 404) {\n                    throw new Error(t('files', 'The file does not exist anymore'));\n                }\n                else if (error.message) {\n                    throw new Error(error.message);\n                }\n            }\n            logger.debug(error);\n            throw new Error();\n        }\n        finally {\n            Vue.set(node, 'status', undefined);\n        }\n    });\n};\n/**\n * Open a file picker for the given action\n * @param {MoveCopyAction} action The action to open the file picker for\n * @param {string} dir The directory to start the file picker in\n * @param {Node[]} nodes The nodes to move/copy\n * @return {Promise<MoveCopyResult>} The picked destination\n */\nconst openFilePickerForAction = async (action, dir = '/', nodes) => {\n    const fileIDs = nodes.map(node => node.fileid).filter(Boolean);\n    const filePicker = getFilePickerBuilder(t('files', 'Choose destination'))\n        .allowDirectories(true)\n        .setFilter((n) => {\n        // We only want to show folders that we can create nodes in\n        return (n.permissions & Permission.CREATE) !== 0\n            // We don't want to show the current nodes in the file picker\n            && !fileIDs.includes(n.fileid);\n    })\n        .setMimeTypeFilter([])\n        .setMultiSelect(false)\n        .startAt(dir);\n    return new Promise((resolve, reject) => {\n        filePicker.setButtonFactory((_selection, path) => {\n            const buttons = [];\n            const target = basename(path);\n            const dirnames = nodes.map(node => node.dirname);\n            const paths = nodes.map(node => node.path);\n            if (action === MoveCopyAction.COPY || action === MoveCopyAction.MOVE_OR_COPY) {\n                buttons.push({\n                    label: target ? t('files', 'Copy to {target}', { target }, undefined, { escape: false, sanitize: false }) : t('files', 'Copy'),\n                    type: 'primary',\n                    icon: CopyIconSvg,\n                    async callback(destination) {\n                        resolve({\n                            destination: destination[0],\n                            action: MoveCopyAction.COPY,\n                        });\n                    },\n                });\n            }\n            // Invalid MOVE targets (but valid copy targets)\n            if (dirnames.includes(path)) {\n                // This file/folder is already in that directory\n                return buttons;\n            }\n            if (paths.includes(path)) {\n                // You cannot move a file/folder onto itself\n                return buttons;\n            }\n            if (action === MoveCopyAction.MOVE || action === MoveCopyAction.MOVE_OR_COPY) {\n                buttons.push({\n                    label: target ? t('files', 'Move to {target}', { target }, undefined, { escape: false, sanitize: false }) : t('files', 'Move'),\n                    type: action === MoveCopyAction.MOVE ? 'primary' : 'secondary',\n                    icon: FolderMoveSvg,\n                    async callback(destination) {\n                        resolve({\n                            destination: destination[0],\n                            action: MoveCopyAction.MOVE,\n                        });\n                    },\n                });\n            }\n            return buttons;\n        });\n        const picker = filePicker.build();\n        picker.pick().catch((error) => {\n            logger.debug(error);\n            if (error instanceof FilePickerClosed) {\n                reject(new Error(t('files', 'Cancelled move or copy operation')));\n            }\n            else {\n                reject(new Error(t('files', 'Move or copy operation failed')));\n            }\n        });\n    });\n};\nexport const action = new FileAction({\n    id: 'move-copy',\n    displayName(nodes) {\n        switch (getActionForNodes(nodes)) {\n            case MoveCopyAction.MOVE:\n                return t('files', 'Move');\n            case MoveCopyAction.COPY:\n                return t('files', 'Copy');\n            case MoveCopyAction.MOVE_OR_COPY:\n                return t('files', 'Move or copy');\n        }\n    },\n    iconSvgInline: () => FolderMoveSvg,\n    enabled(nodes) {\n        // We only support moving/copying files within the user folder\n        if (!nodes.every(node => node.root?.startsWith('/files/'))) {\n            return false;\n        }\n        return nodes.length > 0 && (canMove(nodes) || canCopy(nodes));\n    },\n    async exec(node, view, dir) {\n        const action = getActionForNodes([node]);\n        let result;\n        try {\n            result = await openFilePickerForAction(action, dir, [node]);\n        }\n        catch (e) {\n            logger.error(e);\n            return false;\n        }\n        try {\n            await handleCopyMoveNodeTo(node, result.destination, result.action);\n            return true;\n        }\n        catch (error) {\n            if (error instanceof Error && !!error.message) {\n                showError(error.message);\n                // Silent action as we handle the toast\n                return null;\n            }\n            return false;\n        }\n    },\n    async execBatch(nodes, view, dir) {\n        const action = getActionForNodes(nodes);\n        const result = await openFilePickerForAction(action, dir, nodes);\n        const promises = nodes.map(async (node) => {\n            try {\n                await handleCopyMoveNodeTo(node, result.destination, result.action);\n                return true;\n            }\n            catch (error) {\n                logger.error(`Failed to ${result.action} node`, { node, error });\n                return false;\n            }\n        });\n        // We need to keep the selection on error!\n        // So we do not return null, and for batch action\n        // we let the front handle the error.\n        return await Promise.all(promises);\n    },\n    order: 15,\n});\n","/**\n * @copyright Copyright (c) 2023 Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Folder, Node, NodeStatus, davRootPath } from '@nextcloud/files';\nimport { getUploader, hasConflict } from '@nextcloud/upload';\nimport { join } from 'path';\nimport { joinPaths } from '@nextcloud/paths';\nimport { showError, showInfo, showSuccess, showWarning } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport Vue from 'vue';\nimport { Directory, traverseTree, resolveConflict, createDirectoryIfNotExists } from './DropServiceUtils';\nimport { handleCopyMoveNodeTo } from '../actions/moveOrCopyAction';\nimport { MoveCopyAction } from '../actions/moveOrCopyActionUtils';\nimport logger from '../logger.js';\n/**\n * This function converts a list of DataTransferItems to a file tree.\n * It uses the Filesystem API if available, otherwise it falls back to the File API.\n * The File API will NOT be available if the browser is not in a secure context (e.g. HTTP).\n * ⚠️ When using this method, you need to use it as fast as possible, as the DataTransferItems\n * will be cleared after the first access to the props of one of the entries.\n *\n * @param items the list of DataTransferItems\n */\nexport const dataTransferToFileTree = async (items) => {\n    // Check if the browser supports the Filesystem API\n    // We need to cache the entries to prevent Blink engine bug that clears\n    // the list (`data.items`) after first access props of one of the entries\n    const entries = items\n        .filter((item) => {\n        if (item.kind !== 'file') {\n            logger.debug('Skipping dropped item', { kind: item.kind, type: item.type });\n            return false;\n        }\n        return true;\n    }).map((item) => {\n        // MDN recommends to try both, as it might be renamed in the future\n        return item?.getAsEntry?.()\n            ?? item?.webkitGetAsEntry?.()\n            ?? item;\n    });\n    let warned = false;\n    const fileTree = new Directory('root');\n    // Traverse the file tree\n    for (const entry of entries) {\n        // Handle browser issues if Filesystem API is not available. Fallback to File API\n        if (entry instanceof DataTransferItem) {\n            logger.warn('Could not get FilesystemEntry of item, falling back to file');\n            const file = entry.getAsFile();\n            if (file === null) {\n                logger.warn('Could not process DataTransferItem', { type: entry.type, kind: entry.kind });\n                showError(t('files', 'One of the dropped files could not be processed'));\n                continue;\n            }\n            // Warn the user that the browser does not support the Filesystem API\n            // we therefore cannot upload directories recursively.\n            if (file.type === 'httpd/unix-directory' || !file.type) {\n                if (!warned) {\n                    logger.warn('Browser does not support Filesystem API. Directories will not be uploaded');\n                    showWarning(t('files', 'Your browser does not support the Filesystem API. Directories will not be uploaded'));\n                    warned = true;\n                }\n                continue;\n            }\n            fileTree.contents.push(file);\n            continue;\n        }\n        // Use Filesystem API\n        try {\n            fileTree.contents.push(await traverseTree(entry));\n        }\n        catch (error) {\n            // Do not throw, as we want to continue with the other files\n            logger.error('Error while traversing file tree', { error });\n        }\n    }\n    return fileTree;\n};\nexport const onDropExternalFiles = async (root, destination, contents) => {\n    const uploader = getUploader();\n    // Check for conflicts on root elements\n    if (await hasConflict(root.contents, contents)) {\n        root.contents = await resolveConflict(root.contents, destination, contents);\n    }\n    if (root.contents.length === 0) {\n        logger.info('No files to upload', { root });\n        showInfo(t('files', 'No files to upload'));\n        return [];\n    }\n    // Let's process the files\n    logger.debug(`Uploading files to ${destination.path}`, { root, contents: root.contents });\n    const queue = [];\n    const uploadDirectoryContents = async (directory, path) => {\n        for (const file of directory.contents) {\n            // This is the relative path to the resource\n            // from the current uploader destination\n            const relativePath = join(path, file.name);\n            // If the file is a directory, we need to create it first\n            // then browse its tree and upload its contents.\n            if (file instanceof Directory) {\n                const absolutePath = joinPaths(davRootPath, destination.path, relativePath);\n                try {\n                    console.debug('Processing directory', { relativePath });\n                    await createDirectoryIfNotExists(absolutePath);\n                    await uploadDirectoryContents(file, relativePath);\n                }\n                catch (error) {\n                    showError(t('files', 'Unable to create the directory {directory}', { directory: file.name }));\n                    logger.error('', { error, absolutePath, directory: file });\n                }\n                continue;\n            }\n            // If we've reached a file, we can upload it\n            logger.debug('Uploading file to ' + join(destination.path, relativePath), { file });\n            // Overriding the root to avoid changing the current uploader context\n            queue.push(uploader.upload(relativePath, file, destination.source));\n        }\n    };\n    // Pause the uploader to prevent it from starting\n    // while we compute the queue\n    uploader.pause();\n    // Upload the files. Using '/' as the starting point\n    // as we already adjusted the uploader destination\n    await uploadDirectoryContents(root, '/');\n    uploader.start();\n    // Wait for all promises to settle\n    const results = await Promise.allSettled(queue);\n    // Check for errors\n    const errors = results.filter(result => result.status === 'rejected');\n    if (errors.length > 0) {\n        logger.error('Error while uploading files', { errors });\n        showError(t('files', 'Some files could not be uploaded'));\n        return [];\n    }\n    logger.debug('Files uploaded successfully');\n    showSuccess(t('files', 'Files uploaded successfully'));\n    return Promise.all(queue);\n};\nexport const onDropInternalFiles = async (nodes, destination, contents, isCopy = false) => {\n    const queue = [];\n    // Check for conflicts on root elements\n    if (await hasConflict(nodes, contents)) {\n        nodes = await resolveConflict(nodes, destination, contents);\n    }\n    if (nodes.length === 0) {\n        logger.info('No files to process', { nodes });\n        showInfo(t('files', 'No files to process'));\n        return;\n    }\n    for (const node of nodes) {\n        Vue.set(node, 'status', NodeStatus.LOADING);\n        // TODO: resolve potential conflicts prior and force overwrite\n        queue.push(handleCopyMoveNodeTo(node, destination, isCopy ? MoveCopyAction.COPY : MoveCopyAction.MOVE));\n    }\n    // Wait for all promises to settle\n    const results = await Promise.allSettled(queue);\n    nodes.forEach(node => Vue.set(node, 'status', undefined));\n    // Check for errors\n    const errors = results.filter(result => result.status === 'rejected');\n    if (errors.length > 0) {\n        logger.error('Error while copying or moving files', { errors });\n        showError(isCopy ? t('files', 'Some files could not be copied') : t('files', 'Some files could not be moved'));\n        return;\n    }\n    logger.debug('Files copy/move successful');\n    showSuccess(isCopy ? t('files', 'Files copied successfully') : t('files', 'Files moved successfully'));\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\nexport const useDragAndDropStore = defineStore('dragging', {\n    state: () => ({\n        dragging: [],\n    }),\n    actions: {\n        /**\n         * Set the selection of fileIds\n         */\n        set(selection = []) {\n            Vue.set(this, 'dragging', selection);\n        },\n        /**\n         * Reset the selection\n         */\n        reset() {\n            Vue.set(this, 'dragging', []);\n        },\n    },\n});\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport Vue from 'vue';\nexport default Vue.extend({\n    data() {\n        return {\n            filesListWidth: null,\n        };\n    },\n    mounted() {\n        const fileListEl = document.querySelector('#app-content-vue');\n        this.filesListWidth = fileListEl?.clientWidth ?? null;\n        this.$resizeObserver = new ResizeObserver((entries) => {\n            if (entries.length > 0 && entries[0].target === fileListEl) {\n                this.filesListWidth = entries[0].contentRect.width;\n            }\n        });\n        this.$resizeObserver.observe(fileListEl);\n    },\n    beforeDestroy() {\n        this.$resizeObserver.disconnect();\n    },\n});\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcBreadcrumbs',{staticClass:\"files-list__breadcrumbs\",class:{ 'files-list__breadcrumbs--with-progress': _vm.wrapUploadProgressBar },attrs:{\"data-cy-files-content-breadcrumbs\":\"\",\"aria-label\":_vm.t('files', 'Current directory path')},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [_vm._t(\"actions\")]},proxy:true}],null,true)},_vm._l((_vm.sections),function(section,index){return _c('NcBreadcrumb',_vm._b({key:section.dir,attrs:{\"dir\":\"auto\",\"to\":section.to,\"force-icon-text\":index === 0 && _vm.filesListWidth >= 486,\"title\":_vm.titleForSection(index, section),\"aria-description\":_vm.ariaForSection(section)},on:{\"drop\":function($event){return _vm.onDrop($event, section.dir)}},nativeOn:{\"click\":function($event){return _vm.onClick(section.to)},\"dragover\":function($event){return _vm.onDragOver($event, section.dir)}},scopedSlots:_vm._u([(index === 0)?{key:\"icon\",fn:function(){return [_c('NcIconSvgWrapper',{attrs:{\"size\":20,\"svg\":_vm.viewIcon}})]},proxy:true}:null],null,true)},'NcBreadcrumb',section,false))}),1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=499e1525&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=499e1525&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./BreadCrumbs.vue?vue&type=template&id=499e1525&scoped=true\"\nimport script from \"./BreadCrumbs.vue?vue&type=script&lang=ts\"\nexport * from \"./BreadCrumbs.vue?vue&type=script&lang=ts\"\nimport style0 from \"./BreadCrumbs.vue?vue&type=style&index=0&id=499e1525&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"499e1525\",\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('VirtualList',{ref:\"table\",attrs:{\"data-component\":_vm.userConfig.grid_view ? _vm.FileEntryGrid : _vm.FileEntry,\"data-key\":'source',\"data-sources\":_vm.nodes,\"grid-mode\":_vm.userConfig.grid_view,\"extra-props\":{\n\t\tisMtimeAvailable: _vm.isMtimeAvailable,\n\t\tisSizeAvailable: _vm.isSizeAvailable,\n\t\tnodes: _vm.nodes,\n\t\tfilesListWidth: _vm.filesListWidth,\n\t},\"scroll-to-index\":_vm.scrollToIndex,\"caption\":_vm.caption},scopedSlots:_vm._u([(!_vm.isNoneSelected)?{key:\"header-overlay\",fn:function(){return [_c('span',{staticClass:\"files-list__selected\"},[_vm._v(_vm._s(_vm.t('files', '{count} selected', { count: _vm.selectedNodes.length })))]),_vm._v(\" \"),_c('FilesListTableHeaderActions',{attrs:{\"current-view\":_vm.currentView,\"selected-nodes\":_vm.selectedNodes}})]},proxy:true}:null,{key:\"before\",fn:function(){return _vm._l((_vm.sortedHeaders),function(header){return _c('FilesListHeader',{key:header.id,attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"header\":header}})})},proxy:true},{key:\"header\",fn:function(){return [_c('FilesListTableHeader',{ref:\"thead\",attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes}})]},proxy:true},{key:\"footer\",fn:function(){return [_c('FilesListTableFooter',{attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes,\"summary\":_vm.summary}})]},proxy:true}],null,true)})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nexport const useActionsMenuStore = defineStore('actionsmenu', {\n    state: () => ({\n        opened: null,\n    }),\n});\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nexport const useRenamingStore = function (...args) {\n    const store = defineStore('renaming', {\n        state: () => ({\n            renamingNode: undefined,\n            newName: '',\n        }),\n    });\n    const renamingStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!renamingStore._initialized) {\n        subscribe('files:node:rename', function (node) {\n            renamingStore.renamingNode = node;\n            renamingStore.newName = node.basename;\n        });\n        renamingStore._initialized = true;\n    }\n    return renamingStore;\n};\n","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon file-multiple-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"FileMultipleIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FileMultiple.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FileMultiple.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./FileMultiple.vue?vue&type=template&id=27b46e04\"\nimport script from \"./FileMultiple.vue?vue&type=script&lang=js\"\nexport * from \"./FileMultiple.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon file-multiple-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list-drag-image\"},[_c('span',{staticClass:\"files-list-drag-image__icon\"},[_c('span',{ref:\"previewImg\"}),_vm._v(\" \"),(_vm.isSingleFolder)?_c('FolderIcon'):_c('FileMultipleIcon')],1),_vm._v(\" \"),_c('span',{staticClass:\"files-list-drag-image__name\"},[_vm._v(_vm._s(_vm.name))])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./DragAndDropPreview.vue?vue&type=template&id=578d5cf6\"\nimport script from \"./DragAndDropPreview.vue?vue&type=script&lang=ts\"\nexport * from \"./DragAndDropPreview.vue?vue&type=script&lang=ts\"\nimport style0 from \"./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","import DragAndDropPreview from '../components/DragAndDropPreview.vue';\nimport Vue from 'vue';\nconst Preview = Vue.extend(DragAndDropPreview);\nlet preview;\nexport const getDragAndDropPreview = async (nodes) => {\n    return new Promise((resolve) => {\n        if (!preview) {\n            preview = new Preview().$mount();\n            document.body.appendChild(preview.$el);\n        }\n        preview.update(nodes);\n        preview.$on('loaded', () => {\n            resolve(preview.$el);\n            preview.$off('loaded');\n        });\n    });\n};\n","/**\n * @copyright Copyright (c) 2024 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { extname } from 'path';\nimport { FileType, Permission, Folder, File as NcFile, NodeStatus, Node, View } from '@nextcloud/files';\nimport { generateUrl } from '@nextcloud/router';\nimport { translate as t } from '@nextcloud/l10n';\nimport { vOnClickOutside } from '@vueuse/components';\nimport Vue, { defineComponent } from 'vue';\nimport { action as sidebarAction } from '../actions/sidebarAction.ts';\nimport { getDragAndDropPreview } from '../utils/dragUtils.ts';\nimport { hashCode } from '../utils/hashUtils.ts';\nimport { dataTransferToFileTree, onDropExternalFiles, onDropInternalFiles } from '../services/DropService.ts';\nimport logger from '../logger.js';\nimport { showError } from '@nextcloud/dialogs';\nVue.directive('onClickOutside', vOnClickOutside);\nexport default defineComponent({\n    props: {\n        source: {\n            type: [Folder, NcFile, Node],\n            required: true,\n        },\n        nodes: {\n            type: Array,\n            required: true,\n        },\n        filesListWidth: {\n            type: Number,\n            default: 0,\n        },\n    },\n    data() {\n        return {\n            loading: '',\n            dragover: false,\n            gridMode: false,\n        };\n    },\n    computed: {\n        currentView() {\n            return this.$navigation.active;\n        },\n        currentDir() {\n            // Remove any trailing slash but leave root slash\n            return (this.$route?.query?.dir?.toString() || '/').replace(/^(.+)\\/$/, '$1');\n        },\n        currentFileId() {\n            return this.$route.params?.fileid || this.$route.query?.fileid || null;\n        },\n        fileid() {\n            return this.source?.fileid;\n        },\n        uniqueId() {\n            return hashCode(this.source.source);\n        },\n        isLoading() {\n            return this.source.status === NodeStatus.LOADING;\n        },\n        extension() {\n            if (this.source.attributes?.displayName) {\n                return extname(this.source.attributes.displayName);\n            }\n            return this.source.extension || '';\n        },\n        displayName() {\n            const ext = this.extension;\n            const name = (this.source.attributes.displayName\n                || this.source.basename);\n            // Strip extension from name if defined\n            return !ext ? name : name.slice(0, 0 - ext.length);\n        },\n        draggingFiles() {\n            return this.draggingStore.dragging;\n        },\n        selectedFiles() {\n            return this.selectionStore.selected;\n        },\n        isSelected() {\n            return this.fileid && this.selectedFiles.includes(this.fileid);\n        },\n        isRenaming() {\n            return this.renamingStore.renamingNode === this.source;\n        },\n        isRenamingSmallScreen() {\n            return this.isRenaming && this.filesListWidth < 512;\n        },\n        isActive() {\n            return this.fileid?.toString?.() === this.currentFileId?.toString?.();\n        },\n        canDrag() {\n            if (this.isRenaming) {\n                return false;\n            }\n            const canDrag = (node) => {\n                return (node?.permissions & Permission.UPDATE) !== 0;\n            };\n            // If we're dragging a selection, we need to check all files\n            if (this.selectedFiles.length > 0) {\n                const nodes = this.selectedFiles.map(fileid => this.filesStore.getNode(fileid));\n                return nodes.every(canDrag);\n            }\n            return canDrag(this.source);\n        },\n        canDrop() {\n            if (this.source.type !== FileType.Folder) {\n                return false;\n            }\n            // If the current folder is also being dragged, we can't drop it on itself\n            if (this.fileid && this.draggingFiles.includes(this.fileid)) {\n                return false;\n            }\n            return (this.source.permissions & Permission.CREATE) !== 0;\n        },\n        openedMenu: {\n            get() {\n                return this.actionsMenuStore.opened === this.uniqueId.toString();\n            },\n            set(opened) {\n                // Only reset when opening a new menu\n                if (opened) {\n                    // Reset any right click position override on close\n                    // Wait for css animation to be done\n                    const root = this.$el?.closest('main.app-content');\n                    root.style.removeProperty('--mouse-pos-x');\n                    root.style.removeProperty('--mouse-pos-y');\n                }\n                this.actionsMenuStore.opened = opened ? this.uniqueId.toString() : null;\n            },\n        },\n    },\n    watch: {\n        /**\n         * When the source changes, reset the preview\n         * and fetch the new one.\n         */\n        source(a, b) {\n            if (a.source !== b.source) {\n                this.resetState();\n            }\n        },\n    },\n    beforeDestroy() {\n        this.resetState();\n    },\n    methods: {\n        resetState() {\n            // Reset loading state\n            this.loading = '';\n            // Reset the preview state\n            this.$refs?.preview?.reset?.();\n            // Close menu\n            this.openedMenu = false;\n        },\n        // Open the actions menu on right click\n        onRightClick(event) {\n            // If already opened, fallback to default browser\n            if (this.openedMenu) {\n                return;\n            }\n            // The grid mode is compact enough to not care about\n            // the actions menu mouse position\n            if (!this.gridMode) {\n                // Actions menu is contained within the app content\n                const root = this.$el?.closest('main.app-content');\n                const contentRect = root.getBoundingClientRect();\n                // Using Math.min/max to prevent the menu from going out of the AppContent\n                // 200 = max width of the menu\n                root.style.setProperty('--mouse-pos-x', Math.max(0, event.clientX - contentRect.left - 200) + 'px');\n                root.style.setProperty('--mouse-pos-y', Math.max(0, event.clientY - contentRect.top) + 'px');\n            }\n            // If the clicked row is in the selection, open global menu\n            const isMoreThanOneSelected = this.selectedFiles.length > 1;\n            this.actionsMenuStore.opened = this.isSelected && isMoreThanOneSelected ? 'global' : this.uniqueId.toString();\n            // Prevent any browser defaults\n            event.preventDefault();\n            event.stopPropagation();\n        },\n        execDefaultAction(event) {\n            if (event.ctrlKey || event.metaKey) {\n                event.preventDefault();\n                window.open(generateUrl('/f/{fileId}', { fileId: this.fileid }));\n                return false;\n            }\n            this.$refs.actions.execDefaultAction(event);\n        },\n        openDetailsIfAvailable(event) {\n            event.preventDefault();\n            event.stopPropagation();\n            if (sidebarAction?.enabled?.([this.source], this.currentView)) {\n                sidebarAction.exec(this.source, this.currentView, this.currentDir);\n            }\n        },\n        onDragOver(event) {\n            this.dragover = this.canDrop;\n            if (!this.canDrop) {\n                event.dataTransfer.dropEffect = 'none';\n                return;\n            }\n            // Handle copy/move drag and drop\n            if (event.ctrlKey) {\n                event.dataTransfer.dropEffect = 'copy';\n            }\n            else {\n                event.dataTransfer.dropEffect = 'move';\n            }\n        },\n        onDragLeave(event) {\n            // Counter bubbling, make sure we're ending the drag\n            // only when we're leaving the current element\n            const currentTarget = event.currentTarget;\n            if (currentTarget?.contains(event.relatedTarget)) {\n                return;\n            }\n            this.dragover = false;\n        },\n        async onDragStart(event) {\n            event.stopPropagation();\n            if (!this.canDrag || !this.fileid) {\n                event.preventDefault();\n                event.stopPropagation();\n                return;\n            }\n            logger.debug('Drag started', { event });\n            // Make sure that we're not dragging a file like the preview\n            event.dataTransfer?.clearData?.();\n            // Reset any renaming\n            this.renamingStore.$reset();\n            // Dragging set of files, if we're dragging a file\n            // that is already selected, we use the entire selection\n            if (this.selectedFiles.includes(this.fileid)) {\n                this.draggingStore.set(this.selectedFiles);\n            }\n            else {\n                this.draggingStore.set([this.fileid]);\n            }\n            const nodes = this.draggingStore.dragging\n                .map(fileid => this.filesStore.getNode(fileid));\n            const image = await getDragAndDropPreview(nodes);\n            event.dataTransfer?.setDragImage(image, -10, -10);\n        },\n        onDragEnd() {\n            this.draggingStore.reset();\n            this.dragover = false;\n            logger.debug('Drag ended');\n        },\n        async onDrop(event) {\n            // skip if native drop like text drag and drop from files names\n            if (!this.draggingFiles && !event.dataTransfer?.items?.length) {\n                return;\n            }\n            event.preventDefault();\n            event.stopPropagation();\n            // Caching the selection\n            const selection = this.draggingFiles;\n            const items = [...event.dataTransfer?.items || []];\n            // We need to process the dataTransfer ASAP before the\n            // browser clears it. This is why we cache the items too.\n            const fileTree = await dataTransferToFileTree(items);\n            // We might not have the target directory fetched yet\n            const contents = await this.currentView?.getContents(this.source.path);\n            const folder = contents?.folder;\n            if (!folder) {\n                showError(this.t('files', 'Target folder does not exist any more'));\n                return;\n            }\n            // If another button is pressed, cancel it. This\n            // allows cancelling the drag with the right click.\n            if (!this.canDrop || event.button) {\n                return;\n            }\n            const isCopy = event.ctrlKey;\n            this.dragover = false;\n            logger.debug('Dropped', { event, folder, selection, fileTree });\n            // Check whether we're uploading files\n            if (fileTree.contents.length > 0) {\n                await onDropExternalFiles(fileTree, folder, contents.contents);\n                return;\n            }\n            // Else we're moving/copying files\n            const nodes = selection.map(fileid => this.filesStore.getNode(fileid));\n            await onDropInternalFiles(nodes, folder, contents.contents, isCopy);\n            // Reset selection after we dropped the files\n            // if the dropped files are within the selection\n            if (selection.some(fileid => this.selectedFiles.includes(fileid))) {\n                logger.debug('Dropped selection, resetting select store...');\n                this.selectionStore.reset();\n            }\n        },\n        t,\n    },\n});\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./CustomElementRender.vue?vue&type=template&id=08a118c6\"\nimport script from \"./CustomElementRender.vue?vue&type=script&lang=ts\"\nexport * from \"./CustomElementRender.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('td',{staticClass:\"files-list__row-actions\",attrs:{\"data-cy-files-list-row-actions\":\"\"}},[_vm._l((_vm.enabledRenderActions),function(action){return _c('CustomElementRender',{key:action.id,staticClass:\"files-list__row-action--inline\",class:'files-list__row-action-' + action.id,attrs:{\"current-view\":_vm.currentView,\"render\":action.renderInline,\"source\":_vm.source}})}),_vm._v(\" \"),_c('NcActions',{ref:\"actionsMenu\",attrs:{\"boundaries-element\":_vm.getBoundariesElement,\"container\":_vm.getBoundariesElement,\"force-name\":true,\"type\":\"tertiary\",\"force-menu\":_vm.enabledInlineActions.length === 0 /* forceMenu only if no inline actions */,\"inline\":_vm.enabledInlineActions.length,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event},\"close\":function($event){_vm.openedSubmenu = null}}},[_vm._l((_vm.enabledMenuActions),function(action){return _c('NcActionButton',{key:action.id,ref:`action-${action.id}`,refInFor:true,class:{\n\t\t\t\t[`files-list__row-action-${action.id}`]: true,\n\t\t\t\t[`files-list__row-action--menu`]: _vm.isMenu(action.id)\n\t\t\t},attrs:{\"close-after-click\":!_vm.isMenu(action.id),\"data-cy-files-list-row-action\":action.id,\"is-menu\":_vm.isMenu(action.id),\"title\":action.title?.([_vm.source], _vm.currentView)},on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline([_vm.source], _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.mountType === 'shared' && action.id === 'sharing-status' ? '' : _vm.actionDisplayName(action))+\"\\n\\t\\t\")])}),_vm._v(\" \"),(_vm.openedSubmenu && _vm.enabledSubmenuActions[_vm.openedSubmenu?.id])?[_c('NcActionButton',{staticClass:\"files-list__row-action-back\",on:{\"click\":function($event){return _vm.onBackToMenuClick(_vm.openedSubmenu)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [_c('ArrowLeftIcon')]},proxy:true}],null,false,3001860362)},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.actionDisplayName(_vm.openedSubmenu))+\"\\n\\t\\t\\t\")]),_vm._v(\" \"),_c('NcActionSeparator'),_vm._v(\" \"),_vm._l((_vm.enabledSubmenuActions[_vm.openedSubmenu?.id]),function(action){return _c('NcActionButton',{key:action.id,staticClass:\"files-list__row-action--submenu\",class:`files-list__row-action-${action.id}`,attrs:{\"close-after-click\":\"\",\"data-cy-files-list-row-action\":action.id,\"title\":action.title?.([_vm.source], _vm.currentView)},on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline([_vm.source], _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.actionDisplayName(action))+\"\\n\\t\\t\\t\")])})]:_vm._e()],2)],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon arrow-left-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"ArrowLeftIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ArrowLeft.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ArrowLeft.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./ArrowLeft.vue?vue&type=template&id=214c9a86\"\nimport script from \"./ArrowLeft.vue?vue&type=script&lang=js\"\nexport * from \"./ArrowLeft.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon arrow-left-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=0&id=5edd44ea&prod&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=0&id=5edd44ea&prod&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","\n      import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=1&id=5edd44ea&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=1&id=5edd44ea&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FileEntryActions.vue?vue&type=template&id=5edd44ea&scoped=true\"\nimport script from \"./FileEntryActions.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryActions.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FileEntryActions.vue?vue&type=style&index=0&id=5edd44ea&prod&lang=scss\"\nimport style1 from \"./FileEntryActions.vue?vue&type=style&index=1&id=5edd44ea&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"5edd44ea\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryCheckbox.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryCheckbox.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('td',{staticClass:\"files-list__row-checkbox\",on:{\"keyup\":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey)return null;return _vm.resetSelection.apply(null, arguments)}}},[(_vm.isLoading)?_c('NcLoadingIcon'):_c('NcCheckboxRadioSwitch',{attrs:{\"aria-label\":_vm.ariaLabel,\"checked\":_vm.isSelected},on:{\"update:checked\":_vm.onSelectionChange}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\n/**\n * Observe various events and save the current\n * special keys states. Useful for checking the\n * current status of a key when executing a method.\n */\nexport const useKeyboardStore = function (...args) {\n    const store = defineStore('keyboard', {\n        state: () => ({\n            altKey: false,\n            ctrlKey: false,\n            metaKey: false,\n            shiftKey: false,\n        }),\n        actions: {\n            onEvent(event) {\n                if (!event) {\n                    event = window.event;\n                }\n                Vue.set(this, 'altKey', !!event.altKey);\n                Vue.set(this, 'ctrlKey', !!event.ctrlKey);\n                Vue.set(this, 'metaKey', !!event.metaKey);\n                Vue.set(this, 'shiftKey', !!event.shiftKey);\n            },\n        },\n    });\n    const keyboardStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!keyboardStore._initialized) {\n        window.addEventListener('keydown', keyboardStore.onEvent);\n        window.addEventListener('keyup', keyboardStore.onEvent);\n        window.addEventListener('mousemove', keyboardStore.onEvent);\n        keyboardStore._initialized = true;\n    }\n    return keyboardStore;\n};\n","import { render, staticRenderFns } from \"./FileEntryCheckbox.vue?vue&type=template&id=6992c304\"\nimport script from \"./FileEntryCheckbox.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryCheckbox.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return (_vm.isRenaming)?_c('form',{directives:[{name:\"on-click-outside\",rawName:\"v-on-click-outside\",value:(_vm.stopRenaming),expression:\"stopRenaming\"}],staticClass:\"files-list__row-rename\",attrs:{\"aria-label\":_vm.t('files', 'Rename file')},on:{\"submit\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.onRename.apply(null, arguments)}}},[_c('NcTextField',{ref:\"renameInput\",attrs:{\"label\":_vm.renameLabel,\"autofocus\":true,\"minlength\":1,\"required\":true,\"value\":_vm.newName,\"enterkeyhint\":\"done\"},on:{\"update:value\":function($event){_vm.newName=$event},\"keyup\":[_vm.checkInputValidity,function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;return _vm.stopRenaming.apply(null, arguments)}]}})],1):_c(_vm.linkTo.is,_vm._b({ref:\"basename\",tag:\"component\",staticClass:\"files-list__row-name-link\",attrs:{\"aria-hidden\":_vm.isRenaming,\"data-cy-files-list-row-name-link\":\"\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'component',_vm.linkTo.params,false),[_c('span',{staticClass:\"files-list__row-name-text\"},[_c('span',{staticClass:\"files-list__row-name-\",domProps:{\"textContent\":_vm._s(_vm.displayName)}}),_vm._v(\" \"),_c('span',{staticClass:\"files-list__row-name-ext\",domProps:{\"textContent\":_vm._s(_vm.extension)}})])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryName.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryName.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FileEntryName.vue?vue&type=template&id=637facfc\"\nimport script from \"./FileEntryName.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryName.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('span',{staticClass:\"files-list__row-icon\"},[(_vm.source.type === 'folder')?[(_vm.dragover)?_vm._m(0):[_vm._m(1),_vm._v(\" \"),(_vm.folderOverlay)?_c(_vm.folderOverlay,{tag:\"OverlayIcon\",staticClass:\"files-list__row-icon-overlay\"}):_vm._e()]]:(_vm.previewUrl && _vm.backgroundFailed !== true)?_c('img',{ref:\"previewImg\",staticClass:\"files-list__row-icon-preview\",class:{'files-list__row-icon-preview--loaded': _vm.backgroundFailed === false},attrs:{\"alt\":\"\",\"loading\":\"lazy\",\"src\":_vm.previewUrl},on:{\"error\":_vm.onBackgroundError,\"load\":function($event){_vm.backgroundFailed = false}}}):_vm._m(2),_vm._v(\" \"),(_vm.isFavorite)?_c('span',{staticClass:\"files-list__row-icon-favorite\"},[_vm._m(3)],1):_vm._e(),_vm._v(\" \"),(_vm.fileOverlay)?_c(_vm.fileOverlay,{tag:\"OverlayIcon\",staticClass:\"files-list__row-icon-overlay files-list__row-icon-overlay--file\"}):_vm._e()],2)\n}\nvar staticRenderFns = [function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FolderOpenIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FolderIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FileIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FavoriteIcon')\n}]\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon file-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"FileIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./File.vue?vue&type=template&id=e3c8d598\"\nimport script from \"./File.vue?vue&type=script&lang=js\"\nexport * from \"./File.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon file-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FolderOpen.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FolderOpen.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon folder-open-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"FolderOpenIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./FolderOpen.vue?vue&type=template&id=79cee0a4\"\nimport script from \"./FolderOpen.vue?vue&type=script&lang=js\"\nexport * from \"./FolderOpen.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon folder-open-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon key-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"KeyIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./Key.vue?vue&type=template&id=01a06d54\"\nimport script from \"./Key.vue?vue&type=script&lang=js\"\nexport * from \"./Key.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon key-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon network-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"NetworkIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./Network.vue?vue&type=template&id=29f8873c\"\nimport script from \"./Network.vue?vue&type=script&lang=js\"\nexport * from \"./Network.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon network-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon tag-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"TagIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./Tag.vue?vue&type=template&id=75dd05e4\"\nimport script from \"./Tag.vue?vue&type=script&lang=js\"\nexport * from \"./Tag.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon tag-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./PlayCircle.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./PlayCircle.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon play-circle-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"PlayCircleIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./PlayCircle.vue?vue&type=template&id=6901b3e6\"\nimport script from \"./PlayCircle.vue?vue&type=script&lang=js\"\nexport * from \"./PlayCircle.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon play-circle-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CollectivesIcon.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CollectivesIcon.vue?vue&type=script&lang=js\"","<template>\n\t<span :aria-hidden=\"!title\"\n\t\t:aria-label=\"title\"\n\t\tclass=\"material-design-icon collectives-icon\"\n\t\trole=\"img\"\n\t\tv-bind=\"$attrs\"\n\t\t@click=\"$emit('click', $event)\">\n\t\t<svg :fill=\"fillColor\"\n\t\t\tclass=\"material-design-icon__svg\"\n\t\t\t:width=\"size\"\n\t\t\t:height=\"size\"\n\t\t\tviewBox=\"0 0 16 16\">\n\t\t\t<path d=\"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z\" />\n\t\t\t<path d=\"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z\" />\n\t\t\t<path d=\"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z\" />\n\t\t\t<path d=\"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z\" />\n\t\t\t<path d=\"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z\" />\n\t\t\t<path d=\"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z\" />\n\t\t</svg>\n\t</span>\n</template>\n\n<script>\nexport default {\n\tname: 'CollectivesIcon',\n\tprops: {\n\t\ttitle: {\n\t\t\ttype: String,\n\t\t\tdefault: '',\n\t\t},\n\t\tfillColor: {\n\t\t\ttype: String,\n\t\t\tdefault: 'currentColor',\n\t\t},\n\t\tsize: {\n\t\t\ttype: Number,\n\t\t\tdefault: 24,\n\t\t},\n\t},\n}\n</script>\n","import { render, staticRenderFns } from \"./CollectivesIcon.vue?vue&type=template&id=18541dcc\"\nimport script from \"./CollectivesIcon.vue?vue&type=script&lang=js\"\nexport * from \"./CollectivesIcon.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon collectives-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 16 16\"}},[_c('path',{attrs:{\"d\":\"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z\"}})])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcIconSvgWrapper',{staticClass:\"favorite-marker-icon\",attrs:{\"name\":_vm.t('files', 'Favorite'),\"svg\":_vm.StarSvg}})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=42ea6dd4&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=42ea6dd4&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FavoriteIcon.vue?vue&type=template&id=42ea6dd4&scoped=true\"\nimport script from \"./FavoriteIcon.vue?vue&type=script&lang=ts\"\nexport * from \"./FavoriteIcon.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FavoriteIcon.vue?vue&type=style&index=0&id=42ea6dd4&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"42ea6dd4\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryPreview.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryPreview.vue?vue&type=script&lang=ts\"","/**\n * @copyright Copyright (c) 2023 Louis Chmn <louis@chmn.me>\n *\n * @author Louis Chmn <louis@chmn.me>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Node, registerDavProperty } from '@nextcloud/files';\nexport function initLivePhotos() {\n    registerDavProperty('nc:metadata-files-live-photo', { nc: 'http://nextcloud.org/ns' });\n}\n/**\n * @param {Node} node - The node\n */\nexport function isLivePhoto(node) {\n    return node.attributes['metadata-files-live-photo'] !== undefined;\n}\n","import { render, staticRenderFns } from \"./FileEntryPreview.vue?vue&type=template&id=29810d15\"\nimport script from \"./FileEntryPreview.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryPreview.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',_vm._g({staticClass:\"files-list__row\",class:{\n\t\t'files-list__row--dragover': _vm.dragover,\n\t\t'files-list__row--loading': _vm.isLoading,\n\t\t'files-list__row--active': _vm.isActive,\n\t},attrs:{\"data-cy-files-list-row\":\"\",\"data-cy-files-list-row-fileid\":_vm.fileid,\"data-cy-files-list-row-name\":_vm.source.basename,\"draggable\":_vm.canDrag}},_vm.rowListeners),[(_vm.source.attributes.failed)?_c('span',{staticClass:\"files-list__row--failed\"}):_vm._e(),_vm._v(\" \"),_c('FileEntryCheckbox',{attrs:{\"fileid\":_vm.fileid,\"is-loading\":_vm.isLoading,\"nodes\":_vm.nodes,\"source\":_vm.source}}),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\",attrs:{\"data-cy-files-list-row-name\":\"\"}},[_c('FileEntryPreview',{ref:\"preview\",attrs:{\"source\":_vm.source,\"dragover\":_vm.dragover},nativeOn:{\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}}),_vm._v(\" \"),_c('FileEntryName',{ref:\"name\",attrs:{\"display-name\":_vm.displayName,\"extension\":_vm.extension,\"files-list-width\":_vm.filesListWidth,\"nodes\":_vm.nodes,\"source\":_vm.source},on:{\"click\":_vm.execDefaultAction}})],1),_vm._v(\" \"),_c('FileEntryActions',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.isRenamingSmallScreen),expression:\"!isRenamingSmallScreen\"}],ref:\"actions\",class:`files-list__row-actions-${_vm.uniqueId}`,attrs:{\"files-list-width\":_vm.filesListWidth,\"loading\":_vm.loading,\"opened\":_vm.openedMenu,\"source\":_vm.source},on:{\"update:loading\":function($event){_vm.loading=$event},\"update:opened\":function($event){_vm.openedMenu=$event}}}),_vm._v(\" \"),(!_vm.compact && _vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__row-size\",style:(_vm.sizeOpacity),attrs:{\"data-cy-files-list-row-size\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('span',[_vm._v(_vm._s(_vm.size))])]):_vm._e(),_vm._v(\" \"),(!_vm.compact && _vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__row-mtime\",style:(_vm.mtimeOpacity),attrs:{\"data-cy-files-list-row-mtime\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('NcDateTime',{attrs:{\"timestamp\":_vm.source.mtime,\"ignore-seconds\":true}})],1):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('td',{key:column.id,staticClass:\"files-list__row-column-custom\",class:`files-list__row-${_vm.currentView?.id}-${column.id}`,attrs:{\"data-cy-files-list-row-column-custom\":column.id},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('CustomElementRender',{attrs:{\"current-view\":_vm.currentView,\"render\":column.render,\"source\":_vm.source}})],1)})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./FileEntry.vue?vue&type=template&id=6ae0d517\"\nimport script from \"./FileEntry.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntry.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryGrid.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryGrid.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row\",class:{'files-list__row--active': _vm.isActive, 'files-list__row--dragover': _vm.dragover, 'files-list__row--loading': _vm.isLoading},attrs:{\"data-cy-files-list-row\":\"\",\"data-cy-files-list-row-fileid\":_vm.fileid,\"data-cy-files-list-row-name\":_vm.source.basename,\"draggable\":_vm.canDrag},on:{\"contextmenu\":_vm.onRightClick,\"dragover\":_vm.onDragOver,\"dragleave\":_vm.onDragLeave,\"dragstart\":_vm.onDragStart,\"dragend\":_vm.onDragEnd,\"drop\":_vm.onDrop}},[(_vm.source.attributes.failed)?_c('span',{staticClass:\"files-list__row--failed\"}):_vm._e(),_vm._v(\" \"),_c('FileEntryCheckbox',{attrs:{\"fileid\":_vm.fileid,\"is-loading\":_vm.isLoading,\"nodes\":_vm.nodes,\"source\":_vm.source}}),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\",attrs:{\"data-cy-files-list-row-name\":\"\"}},[_c('FileEntryPreview',{ref:\"preview\",attrs:{\"dragover\":_vm.dragover,\"grid-mode\":true,\"source\":_vm.source},nativeOn:{\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}}),_vm._v(\" \"),_c('FileEntryName',{ref:\"name\",attrs:{\"display-name\":_vm.displayName,\"extension\":_vm.extension,\"files-list-width\":_vm.filesListWidth,\"grid-mode\":true,\"nodes\":_vm.nodes,\"source\":_vm.source},on:{\"click\":_vm.execDefaultAction}})],1),_vm._v(\" \"),_c('FileEntryActions',{ref:\"actions\",class:`files-list__row-actions-${_vm.uniqueId}`,attrs:{\"files-list-width\":_vm.filesListWidth,\"grid-mode\":true,\"loading\":_vm.loading,\"opened\":_vm.openedMenu,\"source\":_vm.source},on:{\"update:loading\":function($event){_vm.loading=$event},\"update:opened\":function($event){_vm.openedMenu=$event}}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./FileEntryGrid.vue?vue&type=template&id=337076f0\"\nimport script from \"./FileEntryGrid.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryGrid.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.enabled),expression:\"enabled\"}],class:`files-list__header-${_vm.header.id}`},[_c('span',{ref:\"mount\"})])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FilesListHeader.vue?vue&type=template&id=0434f153\"\nimport script from \"./FilesListHeader.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListHeader.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',[_c('th',{staticClass:\"files-list__row-checkbox\"},[_c('span',{staticClass:\"hidden-visually\"},[_vm._v(_vm._s(_vm.t('files', 'Total rows summary')))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\"},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('span',[_vm._v(_vm._s(_vm.summary))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-size\"},[_c('span',[_vm._v(_vm._s(_vm.totalSize))])]):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-mtime\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column)},[_c('span',[_vm._v(_vm._s(column.summary?.(_vm.nodes, _vm.currentView)))])])})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableFooter.vue?vue&type=template&id=a85bde20&scoped=true\"\nimport script from \"./FilesListTableFooter.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableFooter.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"a85bde20\",\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row-head\"},[_c('th',{staticClass:\"files-list__column files-list__row-checkbox\",on:{\"keyup\":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey)return null;return _vm.resetSelection.apply(null, arguments)}}},[_c('NcCheckboxRadioSwitch',_vm._b({on:{\"update:checked\":_vm.onToggleAll}},'NcCheckboxRadioSwitch',_vm.selectAllBind,false))],1),_vm._v(\" \"),_c('th',{staticClass:\"files-list__column files-list__row-name files-list__column--sortable\",attrs:{\"aria-sort\":_vm.ariaSortForMode('basename')}},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Name'),\"mode\":\"basename\"}})],1),_vm._v(\" \"),_c('th',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-size\",class:{ 'files-list__column--sortable': _vm.isSizeAvailable },attrs:{\"aria-sort\":_vm.ariaSortForMode('size')}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Size'),\"mode\":\"size\"}})],1):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-mtime\",class:{ 'files-list__column--sortable': _vm.isMtimeAvailable },attrs:{\"aria-sort\":_vm.ariaSortForMode('mtime')}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Modified'),\"mode\":\"mtime\"}})],1):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column),attrs:{\"aria-sort\":_vm.ariaSortForMode(column.id)}},[(!!column.sort)?_c('FilesListTableHeaderButton',{attrs:{\"name\":column.title,\"mode\":column.id}}):_c('span',[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(column.title)+\"\\n\\t\\t\")])],1)})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport Vue from 'vue';\nimport { mapState } from 'pinia';\nimport { useViewConfigStore } from '../store/viewConfig';\nimport { Navigation, View } from '@nextcloud/files';\nexport default Vue.extend({\n    computed: {\n        ...mapState(useViewConfigStore, ['getConfig', 'setSortingBy', 'toggleSortingDirection']),\n        currentView() {\n            return this.$navigation.active;\n        },\n        /**\n         * Get the sorting mode for the current view\n         */\n        sortingMode() {\n            return this.getConfig(this.currentView.id)?.sorting_mode\n                || this.currentView?.defaultSortKey\n                || 'basename';\n        },\n        /**\n         * Get the sorting direction for the current view\n         */\n        isAscSorting() {\n            const sortingDirection = this.getConfig(this.currentView.id)?.sorting_direction;\n            return sortingDirection !== 'desc';\n        },\n    },\n    methods: {\n        toggleSortBy(key) {\n            // If we're already sorting by this key, flip the direction\n            if (this.sortingMode === key) {\n                this.toggleSortingDirection(this.currentView.id);\n                return;\n            }\n            // else sort ASC by this new key\n            this.setSortingBy(key, this.currentView.id);\n        },\n    },\n});\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcButton',{class:['files-list__column-sort-button', {\n\t\t'files-list__column-sort-button--active': _vm.sortingMode === _vm.mode,\n\t\t'files-list__column-sort-button--size': _vm.sortingMode === 'size',\n\t}],attrs:{\"alignment\":_vm.mode === 'size' ? 'end' : 'start-reverse',\"type\":\"tertiary\"},on:{\"click\":function($event){return _vm.toggleSortBy(_vm.mode)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.sortingMode !== _vm.mode || _vm.isAscSorting)?_c('MenuUp',{staticClass:\"files-list__column-sort-button-icon\"}):_c('MenuDown',{staticClass:\"files-list__column-sort-button-icon\"})]},proxy:true}])},[_vm._v(\" \"),_c('span',{staticClass:\"files-list__column-sort-button-text\"},[_vm._v(_vm._s(_vm.name))])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=2dd1845e&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=2dd1845e&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderButton.vue?vue&type=template&id=2dd1845e&scoped=true\"\nimport script from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=2dd1845e&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"2dd1845e\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeader.vue?vue&type=template&id=952162c2&scoped=true\"\nimport script from \"./FilesListTableHeader.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeader.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"952162c2\",\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list\",attrs:{\"data-cy-files-list\":\"\"}},[_c('div',{ref:\"before\",staticClass:\"files-list__before\"},[_vm._t(\"before\")],2),_vm._v(\" \"),(!!_vm.$scopedSlots['header-overlay'])?_c('div',{staticClass:\"files-list__thead-overlay\"},[_vm._t(\"header-overlay\")],2):_vm._e(),_vm._v(\" \"),_c('table',{staticClass:\"files-list__table\",class:{ 'files-list__table--with-thead-overlay': !!_vm.$scopedSlots['header-overlay'] }},[(_vm.caption)?_c('caption',{staticClass:\"hidden-visually\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.caption)+\"\\n\\t\\t\")]):_vm._e(),_vm._v(\" \"),_c('thead',{ref:\"thead\",staticClass:\"files-list__thead\",attrs:{\"data-cy-files-list-thead\":\"\"}},[_vm._t(\"header\")],2),_vm._v(\" \"),_c('tbody',{staticClass:\"files-list__tbody\",class:_vm.gridMode ? 'files-list__tbody--grid' : 'files-list__tbody--list',style:(_vm.tbodyStyle),attrs:{\"data-cy-files-list-tbody\":\"\"}},_vm._l((_vm.renderedItems),function({key, item},i){return _c(_vm.dataComponent,_vm._b({key:key,tag:\"component\",attrs:{\"source\":item,\"index\":i}},'component',_vm.extraProps,false))}),1),_vm._v(\" \"),_c('tfoot',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.isReady),expression:\"isReady\"}],staticClass:\"files-list__tfoot\",attrs:{\"data-cy-files-list-tfoot\":\"\"}},[_vm._t(\"footer\")],2)])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./VirtualList.vue?vue&type=template&id=6932388d\"\nimport script from \"./VirtualList.vue?vue&type=script&lang=ts\"\nexport * from \"./VirtualList.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list__column files-list__row-actions-batch\"},[_c('NcActions',{ref:\"actionsMenu\",attrs:{\"disabled\":!!_vm.loading || _vm.areSomeNodesLoading,\"force-name\":true,\"inline\":_vm.inlineActions,\"menu-name\":_vm.inlineActions <= 1 ? _vm.t('files', 'Actions') : null,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event}}},_vm._l((_vm.enabledActions),function(action){return _c('NcActionButton',{key:action.id,class:'files-list__row-actions-batch-' + action.id,on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline(_vm.nodes, _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(action.displayName(_vm.nodes, _vm.currentView))+\"\\n\\t\\t\")])}),1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderActions.vue?vue&type=template&id=d939292c&scoped=true\"\nimport script from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"d939292c\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=d5a5c156&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=d5a5c156&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=1&id=d5a5c156&prod&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=1&id=d5a5c156&prod&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListVirtual.vue?vue&type=template&id=d5a5c156&scoped=true\"\nimport script from \"./FilesListVirtual.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListVirtual.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListVirtual.vue?vue&type=style&index=0&id=d5a5c156&prod&scoped=true&lang=scss\"\nimport style1 from \"./FilesListVirtual.vue?vue&type=style&index=1&id=d5a5c156&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"d5a5c156\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./TrayArrowDown.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./TrayArrowDown.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon tray-arrow-down-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"TrayArrowDownIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./TrayArrowDown.vue?vue&type=template&id=447c2cd4\"\nimport script from \"./TrayArrowDown.vue?vue&type=script&lang=js\"\nexport * from \"./TrayArrowDown.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon tray-arrow-down-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.dragover),expression:\"dragover\"}],staticClass:\"files-list__drag-drop-notice\",attrs:{\"data-cy-files-drag-drop-area\":\"\"},on:{\"drop\":_vm.onDrop}},[_c('div',{staticClass:\"files-list__drag-drop-notice-wrapper\"},[(_vm.canUpload && !_vm.isQuotaExceeded)?[_c('TrayArrowDownIcon',{attrs:{\"size\":48}}),_vm._v(\" \"),_c('h3',{staticClass:\"files-list-drag-drop-notice__title\"},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Drag and drop files here to upload'))+\"\\n\\t\\t\\t\")])]:[_c('h3',{staticClass:\"files-list-drag-drop-notice__title\"},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.cantUploadLabel)+\"\\n\\t\\t\\t\")])]],2)])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./DragAndDropNotice.vue?vue&type=template&id=02c943a6&scoped=true\"\nimport script from \"./DragAndDropNotice.vue?vue&type=script&lang=ts\"\nexport * from \"./DragAndDropNotice.vue?vue&type=script&lang=ts\"\nimport style0 from \"./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"02c943a6\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=5c37291f&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=5c37291f&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesList.vue?vue&type=template&id=5c37291f&scoped=true\"\nimport script from \"./FilesList.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesList.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesList.vue?vue&type=style&index=0&id=5c37291f&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"5c37291f\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesApp.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesApp.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FilesApp.vue?vue&type=template&id=11e0f2dd\"\nimport script from \"./FilesApp.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesApp.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","import { PiniaVuePlugin } from 'pinia';\nimport { getNavigation } from '@nextcloud/files';\nimport { getRequestToken } from '@nextcloud/auth';\nimport Vue from 'vue';\nimport { pinia } from './store/index.ts';\nimport router from './router/router';\nimport RouterService from './services/RouterService';\nimport SettingsModel from './models/Setting.js';\nimport SettingsService from './services/Settings.js';\nimport FilesApp from './FilesApp.vue';\n// @ts-expect-error __webpack_nonce__ is injected by webpack\n__webpack_nonce__ = btoa(getRequestToken());\n// Init private and public Files namespace\nwindow.OCA.Files = window.OCA.Files ?? {};\nwindow.OCP.Files = window.OCP.Files ?? {};\n// Expose router\nconst Router = new RouterService(router);\nObject.assign(window.OCP.Files, { Router });\n// Init Pinia store\nVue.use(PiniaVuePlugin);\n// Init Navigation Service\n// This only works with Vue 2 - with Vue 3 this will not modify the source but return just a oberserver\nconst Navigation = Vue.observable(getNavigation());\nVue.prototype.$navigation = Navigation;\n// Init Files App Settings Service\nconst Settings = new SettingsService();\nObject.assign(window.OCA.Files, { Settings });\nObject.assign(window.OCA.Files.Settings, { Setting: SettingsModel });\nconst FilesAppVue = Vue.extend(FilesApp);\nnew FilesAppVue({\n    router,\n    pinia,\n}).$mount('#content');\n","export default class RouterService {\n    _router;\n    constructor(router) {\n        this._router = router;\n    }\n    get name() {\n        return this._router.currentRoute.name;\n    }\n    get query() {\n        return this._router.currentRoute.query || {};\n    }\n    get params() {\n        return this._router.currentRoute.params || {};\n    }\n    /**\n     * Trigger a route change on the files app\n     *\n     * @param path the url path, eg: '/trashbin?dir=/Deleted'\n     * @param replace replace the current history\n     * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n     */\n    goTo(path, replace = false) {\n        return this._router.push({\n            path,\n            replace,\n        });\n    }\n    /**\n     * Trigger a route change on the files App\n     *\n     * @param name the route name\n     * @param params the route parameters\n     * @param query the url query parameters\n     * @param replace replace the current history\n     * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n     */\n    goToRoute(name, params, query, replace) {\n        return this._router.push({\n            name,\n            query,\n            params,\n            replace,\n        });\n    }\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim <gary@garykim.dev>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nexport default class Settings {\n\n\t_settings\n\n\tconstructor() {\n\t\tthis._settings = []\n\t\tconsole.debug('OCA.Files.Settings initialized')\n\t}\n\n\t/**\n\t * Register a new setting\n\t *\n\t * @since 19.0.0\n\t * @param {OCA.Files.Settings.Setting} view element to add to settings\n\t * @return {boolean} whether registering was successful\n\t */\n\tregister(view) {\n\t\tif (this._settings.filter(e => e.name === view.name).length > 0) {\n\t\t\tconsole.error('A setting with the same name is already registered')\n\t\t\treturn false\n\t\t}\n\t\tthis._settings.push(view)\n\t\treturn true\n\t}\n\n\t/**\n\t * All settings elements\n\t *\n\t * @return {OCA.Files.Settings.Setting[]} All currently registered settings\n\t */\n\tget settings() {\n\t\treturn this._settings\n\t}\n\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim <gary@garykim.dev>\n * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nexport default class Setting {\n\n\t_close\n\t_el\n\t_name\n\t_open\n\n\t/**\n\t * Create a new files app setting\n\t *\n\t * @since 19.0.0\n\t * @param {string} name the name of this setting\n\t * @param {object} component the component\n\t * @param {Function} component.el function that returns an unmounted dom element to be added\n\t * @param {Function} [component.open] callback for when setting is added\n\t * @param {Function} [component.close] callback for when setting is closed\n\t */\n\tconstructor(name, { el, open, close }) {\n\t\tthis._name = name\n\t\tthis._el = el\n\t\tthis._open = open\n\t\tthis._close = close\n\n\t\tif (typeof this._open !== 'function') {\n\t\t\tthis._open = () => {}\n\t\t}\n\n\t\tif (typeof this._close !== 'function') {\n\t\t\tthis._close = () => {}\n\t\t}\n\t}\n\n\tget name() {\n\t\treturn this._name\n\t}\n\n\tget el() {\n\t\treturn this._el\n\t}\n\n\tget open() {\n\t\treturn this._open\n\t}\n\n\tget close() {\n\t\treturn this._close\n\t}\n\n}\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.upload-picker[data-v-eca9500a] {\n  display: inline-flex;\n  align-items: center;\n  height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n  width: 200px;\n  max-width: 0;\n  transition: max-width var(--animation-quick) ease-in-out;\n  margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n  max-width: 200px;\n  margin-right: 20px;\n  margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n  animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n  0% {\n    opacity: .5;\n  }\n  25% {\n    opacity: 1;\n  }\n  60% {\n    opacity: .5;\n  }\n  to {\n    opacity: .5;\n  }\n}\n`, \"\",{\"version\":3,\"sources\":[\"webpack://./node_modules/@nextcloud/upload/dist/assets/index-Ussc_ol3.css\"],\"names\":[],\"mappings\":\"AAAA;EACE,oBAAoB;EACpB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,YAAY;EACZ,YAAY;EACZ,wDAAwD;EACxD,eAAe;AACjB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,gBAAgB;EAChB,kBAAkB;EAClB,gBAAgB;AAClB;AACA;EACE,yDAAyD;AAC3D;AACA;EACE;IACE,WAAW;EACb;EACA;IACE,UAAU;EACZ;EACA;IACE,WAAW;EACb;EACA;IACE,WAAW;EACb;AACF\",\"sourcesContent\":[\".upload-picker[data-v-eca9500a] {\\n  display: inline-flex;\\n  align-items: center;\\n  height: 44px;\\n}\\n.upload-picker__progress[data-v-eca9500a] {\\n  width: 200px;\\n  max-width: 0;\\n  transition: max-width var(--animation-quick) ease-in-out;\\n  margin-top: 8px;\\n}\\n.upload-picker__progress p[data-v-eca9500a] {\\n  overflow: hidden;\\n  white-space: nowrap;\\n  text-overflow: ellipsis;\\n}\\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\\n  max-width: 200px;\\n  margin-right: 20px;\\n  margin-left: 8px;\\n}\\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\\n  animation: breathing-eca9500a 3s ease-out infinite normal;\\n}\\n@keyframes breathing-eca9500a {\\n  0% {\\n    opacity: .5;\\n  }\\n  25% {\\n    opacity: 1;\\n  }\\n  60% {\\n    opacity: .5;\\n  }\\n  to {\\n    opacity: .5;\\n  }\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__breadcrumbs[data-v-499e1525]{flex:1 1 100% !important;width:100%;height:100%;margin-block:0;margin-inline:10px}.files-list__breadcrumbs[data-v-499e1525]  a{cursor:pointer !important}.files-list__breadcrumbs--with-progress[data-v-499e1525]{flex-direction:column !important;align-items:flex-start !important}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/BreadCrumbs.vue\"],\"names\":[],\"mappings\":\"AACA,0CAEC,wBAAA,CACA,UAAA,CACA,WAAA,CACA,cAAA,CACA,kBAAA,CAGC,6CACC,yBAAA,CAIF,yDACC,gCAAA,CACA,iCAAA\",\"sourcesContent\":[\"\\n.files-list__breadcrumbs {\\n\\t// Take as much space as possible\\n\\tflex: 1 1 100% !important;\\n\\twidth: 100%;\\n\\theight: 100%;\\n\\tmargin-block: 0;\\n\\tmargin-inline: 10px;\\n\\n\\t:deep() {\\n\\t\\ta {\\n\\t\\t\\tcursor: pointer !important;\\n\\t\\t}\\n\\t}\\n\\n\\t&--with-progress {\\n\\t\\tflex-direction: column !important;\\n\\t\\talign-items: flex-start !important;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__drag-drop-notice[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;width:100%;min-height:113px;margin:0;user-select:none;color:var(--color-text-maxcontrast);background-color:var(--color-main-background);border-color:#000}.files-list__drag-drop-notice h3[data-v-02c943a6]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;height:15vh;max-height:70%;padding:0 5vw;border:2px var(--color-border-dark) dashed;border-radius:var(--border-radius-large)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/DragAndDropNotice.vue\"],\"names\":[],\"mappings\":\"AACA,+CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAEA,gBAAA,CACA,QAAA,CACA,gBAAA,CACA,mCAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kDACC,gBAAA,CACA,aAAA,CAGD,uDACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,WAAA,CACA,cAAA,CACA,aAAA,CACA,0CAAA,CACA,wCAAA\",\"sourcesContent\":[\"\\n.files-list__drag-drop-notice {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\twidth: 100%;\\n\\t// Breadcrumbs height + row thead height\\n\\tmin-height: calc(58px + 55px);\\n\\tmargin: 0;\\n\\tuser-select: none;\\n\\tcolor: var(--color-text-maxcontrast);\\n\\tbackground-color: var(--color-main-background);\\n\\tborder-color: black;\\n\\n\\th3 {\\n\\t\\tmargin-left: 16px;\\n\\t\\tcolor: inherit;\\n\\t}\\n\\n\\t&-wrapper {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\theight: 15vh;\\n\\t\\tmax-height: 70%;\\n\\t\\tpadding: 0 5vw;\\n\\t\\tborder: 2px var(--color-border-dark) dashed;\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list-drag-image{position:absolute;top:-9999px;left:-9999px;display:flex;overflow:hidden;align-items:center;height:44px;padding:6px 12px;background:var(--color-main-background)}.files-list-drag-image__icon,.files-list-drag-image .files-list__row-icon{display:flex;overflow:hidden;align-items:center;justify-content:center;width:32px;height:32px;border-radius:var(--border-radius)}.files-list-drag-image__icon{overflow:visible;margin-right:12px}.files-list-drag-image__icon img{max-width:100%;max-height:100%}.files-list-drag-image__icon .material-design-icon{color:var(--color-text-maxcontrast)}.files-list-drag-image__icon .material-design-icon.folder-icon{color:var(--color-primary-element)}.files-list-drag-image__icon>span{display:flex}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon{margin-top:6px;margin-left:-26px}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon+.files-list__row-icon{margin-top:12px}.files-list-drag-image__icon>span:not(:empty)+*{display:none}.files-list-drag-image__name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/DragAndDropPreview.vue\"],\"names\":[],\"mappings\":\"AAIA,uBACC,iBAAA,CACA,WAAA,CACA,YAAA,CACA,YAAA,CACA,eAAA,CACA,kBAAA,CACA,WAAA,CACA,gBAAA,CACA,uCAAA,CAEA,0EAEC,YAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kCAAA,CAGD,6BACC,gBAAA,CACA,iBAAA,CAEA,iCACC,cAAA,CACA,eAAA,CAGD,mDACC,mCAAA,CACA,+DACC,kCAAA,CAKF,kCACC,YAAA,CAGA,8EACC,cA9CU,CA+CV,iBAAA,CACA,oGACC,eAAA,CAKF,gDACC,YAAA,CAKH,6BACC,eAAA,CACA,kBAAA,CACA,sBAAA\",\"sourcesContent\":[\"\\n$size: 32px;\\n$stack-shift: 6px;\\n\\n.files-list-drag-image {\\n\\tposition: absolute;\\n\\ttop: -9999px;\\n\\tleft: -9999px;\\n\\tdisplay: flex;\\n\\toverflow: hidden;\\n\\talign-items: center;\\n\\theight: 44px;\\n\\tpadding: 6px 12px;\\n\\tbackground: var(--color-main-background);\\n\\n\\t&__icon,\\n\\t.files-list__row-icon {\\n\\t\\tdisplay: flex;\\n\\t\\toverflow: hidden;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 32px;\\n\\t\\theight: 32px;\\n\\t\\tborder-radius: var(--border-radius);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\toverflow: visible;\\n\\t\\tmargin-right: 12px;\\n\\n\\t\\timg {\\n\\t\\t\\tmax-width: 100%;\\n\\t\\t\\tmax-height: 100%;\\n\\t\\t}\\n\\n\\t\\t.material-design-icon {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t&.folder-icon {\\n\\t\\t\\t\\tcolor: var(--color-primary-element);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Previews container\\n\\t\\t> span {\\n\\t\\t\\tdisplay: flex;\\n\\n\\t\\t\\t// Stack effect if more than one element\\n\\t\\t\\t.files-list__row-icon + .files-list__row-icon {\\n\\t\\t\\t\\tmargin-top: $stack-shift;\\n\\t\\t\\t\\tmargin-left: $stack-shift - $size;\\n\\t\\t\\t\\t& + .files-list__row-icon {\\n\\t\\t\\t\\t\\tmargin-top: $stack-shift * 2;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t\\t// If we have manually clone the preview,\\n\\t\\t\\t// let's hide any fallback icons\\n\\t\\t\\t&:not(:empty) + * {\\n\\t\\t\\t\\tdisplay: none;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&__name {\\n\\t\\toverflow: hidden;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.favorite-marker-icon[data-v-42ea6dd4]{color:var(--color-favorite);min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-42ea6dd4]  svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-42ea6dd4]  svg path{stroke:var(--color-main-background);stroke-width:8px;stroke-linejoin:round;paint-order:stroke}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FavoriteIcon.vue\"],\"names\":[],\"mappings\":\"AACA,uCACC,2BAAA,CAEA,0BAAA,CACG,2BAAA,CAGF,4CAEC,qBAAA,CACA,sBAAA,CAGA,0BAAA,CACA,2BAAA,CAGA,iDACC,mCAAA,CACA,gBAAA,CACA,qBAAA,CACA,kBAAA\",\"sourcesContent\":[\"\\n.favorite-marker-icon {\\n\\tcolor: var(--color-favorite);\\n\\t// Override NcIconSvgWrapper defaults (clickable area)\\n\\tmin-width: unset !important;\\n    min-height: unset !important;\\n\\n\\t:deep() {\\n\\t\\tsvg {\\n\\t\\t\\t// We added a stroke for a11y so we must increase the size to include the stroke\\n\\t\\t\\twidth: 26px !important;\\n\\t\\t\\theight: 26px !important;\\n\\n\\t\\t\\t// Override NcIconSvgWrapper defaults of 20px\\n\\t\\t\\tmax-width: unset !important;\\n\\t\\t\\tmax-height: unset !important;\\n\\n\\t\\t\\t// Sow a border around the icon for better contrast\\n\\t\\t\\tpath {\\n\\t\\t\\t\\tstroke: var(--color-main-background);\\n\\t\\t\\t\\tstroke-width: 8px;\\n\\t\\t\\t\\tstroke-linejoin: round;\\n\\t\\t\\t\\tpaint-order: stroke;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `main.app-content[style*=mouse-pos-x] .v-popper__popper{transform:translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper[data-popper-placement=top]{transform:translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper .v-popper__arrow-container{display:none}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue\"],\"names\":[],\"mappings\":\"AAGA,uDACC,6EAAA,CAGA,kFAEC,iGAAA,CAGD,kFACC,YAAA\",\"sourcesContent\":[\"\\n// Allow right click to define the position of the menu\\n// only if defined\\nmain.app-content[style*=\\\"mouse-pos-x\\\"] .v-popper__popper {\\n\\ttransform: translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important;\\n\\n\\t// If the menu is too close to the bottom, we move it up\\n\\t&[data-popper-placement=\\\"top\\\"] {\\n\\t\\t// 34px added to align with the top of the cursor\\n\\t\\ttransform: translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important;\\n\\t}\\n\\t// Hide arrow if floating\\n\\t.v-popper__arrow-container {\\n\\t\\tdisplay: none;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `[data-v-5edd44ea] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-5edd44ea] .button-vue--icon-and-text .button-vue__icon{color:var(--color-primary-element)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue\"],\"names\":[],\"mappings\":\"AAEC,+DACC,kCAAA,CAED,+DACC,kCAAA\",\"sourcesContent\":[\"\\n:deep(.button-vue--icon-and-text, .files-list__row-action-sharing-status) {\\n\\t.button-vue__text {\\n\\t\\tcolor: var(--color-primary-element);\\n\\t}\\n\\t.button-vue__icon {\\n\\t\\tcolor: var(--color-primary-element);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `tr[data-v-a85bde20]{margin-bottom:300px;border-top:1px solid var(--color-border);background-color:rgba(0,0,0,0) !important;border-bottom:none !important}tr td[data-v-a85bde20]{user-select:none;color:var(--color-text-maxcontrast) !important}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableFooter.vue\"],\"names\":[],\"mappings\":\"AAEA,oBACC,mBAAA,CACA,wCAAA,CAEA,yCAAA,CACA,6BAAA,CAEA,uBACC,gBAAA,CAEA,8CAAA\",\"sourcesContent\":[\"\\n// Scoped row\\ntr {\\n\\tmargin-bottom: 300px;\\n\\tborder-top: 1px solid var(--color-border);\\n\\t// Prevent hover effect on the whole row\\n\\tbackground-color: transparent !important;\\n\\tborder-bottom: none !important;\\n\\n\\ttd {\\n\\t\\tuser-select: none;\\n\\t\\t// Make sure the cell colors don't apply to column headers\\n\\t\\tcolor: var(--color-text-maxcontrast) !important;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__column[data-v-952162c2]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-952162c2]{cursor:pointer}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeader.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,gBAAA,CAEA,8CAAA,CAEA,+CACC,cAAA\",\"sourcesContent\":[\"\\n.files-list__column {\\n\\tuser-select: none;\\n\\t// Make sure the cell colors don't apply to column headers\\n\\tcolor: var(--color-text-maxcontrast) !important;\\n\\n\\t&--sortable {\\n\\t\\tcursor: pointer;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__row-actions-batch[data-v-d939292c]{flex:1 1 100% !important;max-width:100%}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderActions.vue\"],\"names\":[],\"mappings\":\"AACA,gDACC,wBAAA,CACA,cAAA\",\"sourcesContent\":[\"\\n.files-list__row-actions-batch {\\n\\tflex: 1 1 100% !important;\\n\\tmax-width: 100%;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__column-sort-button[data-v-2dd1845e]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-2dd1845e]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-2dd1845e]{color:var(--color-text-maxcontrast);opacity:0;transition:opacity var(--animation-quick);inset-inline-start:-10px}.files-list__column-sort-button--size .files-list__column-sort-button-icon[data-v-2dd1845e]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-2dd1845e]{opacity:1}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderButton.vue\"],\"names\":[],\"mappings\":\"AACA,iDAEC,oCAAA,CACA,sDAAA,CAEA,sDACC,mCAAA,CACA,kBAAA,CAGD,sDACC,mCAAA,CACA,SAAA,CACA,yCAAA,CACA,wBAAA,CAGD,4FACC,uBAAA,CAGD,mXAIC,SAAA\",\"sourcesContent\":[\"\\n.files-list__column-sort-button {\\n\\t// Compensate for cells margin\\n\\tmargin: 0 calc(var(--cell-margin) * -1);\\n\\tmin-width: calc(100% - 3 * var(--cell-margin))!important;\\n\\n\\t&-text {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\tfont-weight: normal;\\n\\t}\\n\\n\\t&-icon {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\topacity: 0;\\n\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\tinset-inline-start: -10px;\\n\\t}\\n\\n\\t&--size &-icon {\\n\\t\\tinset-inline-start: 10px;\\n\\t}\\n\\n\\t&--active &-icon,\\n\\t&:hover &-icon,\\n\\t&:focus &-icon,\\n\\t&:active &-icon {\\n\\t\\topacity: 1;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list[data-v-d5a5c156]{--row-height: 55px;--cell-margin: 14px;--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);--checkbox-size: 24px;--clickable-area: 44px;--icon-preview-size: 32px;overflow:auto;height:100%;will-change:scroll-position}.files-list[data-v-d5a5c156]  tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-d5a5c156]  tbody tr{contain:strict}.files-list[data-v-d5a5c156]  tbody tr:hover,.files-list[data-v-d5a5c156]  tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-d5a5c156]  .files-list__before{display:flex;flex-direction:column}.files-list[data-v-d5a5c156]  .files-list__selected{padding-right:12px;white-space:nowrap}.files-list[data-v-d5a5c156]  .files-list__table{display:block}.files-list[data-v-d5a5c156]  .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-d5a5c156]  .files-list__thead-overlay{position:sticky;top:0;margin-left:var(--row-height);z-index:20;display:flex;align-items:center;background-color:var(--color-main-background);border-bottom:1px solid var(--color-border);height:var(--row-height)}.files-list[data-v-d5a5c156]  .files-list__thead,.files-list[data-v-d5a5c156]  .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-d5a5c156]  .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-d5a5c156]  .files-list__tfoot{min-height:300px}.files-list[data-v-d5a5c156]  tr{position:relative;display:flex;align-items:center;width:100%;user-select:none;border-bottom:1px solid var(--color-border);box-sizing:border-box;user-select:none;height:var(--row-height)}.files-list[data-v-d5a5c156]  td,.files-list[data-v-d5a5c156]  th{display:flex;align-items:center;flex:0 0 auto;justify-content:left;width:var(--row-height);height:var(--row-height);margin:0;padding:0;color:var(--color-text-maxcontrast);border:none}.files-list[data-v-d5a5c156]  td span,.files-list[data-v-d5a5c156]  th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-d5a5c156]  .files-list__row--failed{position:absolute;display:block;top:0;left:0;right:0;bottom:0;opacity:.1;z-index:-1;background:var(--color-error)}.files-list[data-v-d5a5c156]  .files-list__row-checkbox{justify-content:center}.files-list[data-v-d5a5c156]  .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-d5a5c156]  .files-list__row-checkbox .checkbox-radio-switch label.checkbox-radio-switch__label{width:var(--clickable-area);height:var(--clickable-area);margin:0;padding:calc((var(--clickable-area) - var(--checkbox-size))/2)}.files-list[data-v-d5a5c156]  .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-d5a5c156]  .files-list__row:hover,.files-list[data-v-d5a5c156]  .files-list__row:focus,.files-list[data-v-d5a5c156]  .files-list__row:active,.files-list[data-v-d5a5c156]  .files-list__row--active,.files-list[data-v-d5a5c156]  .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-d5a5c156]  .files-list__row:hover>*,.files-list[data-v-d5a5c156]  .files-list__row:focus>*,.files-list[data-v-d5a5c156]  .files-list__row:active>*,.files-list[data-v-d5a5c156]  .files-list__row--active>*,.files-list[data-v-d5a5c156]  .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-d5a5c156]  .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-d5a5c156]  .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-d5a5c156]  .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-d5a5c156]  .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-d5a5c156]  .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-d5a5c156]  .files-list__row--dragover *{pointer-events:none}.files-list[data-v-d5a5c156]  .files-list__row-icon{position:relative;display:flex;overflow:visible;align-items:center;flex:0 0 var(--icon-preview-size);justify-content:center;width:var(--icon-preview-size);height:100%;margin-right:var(--checkbox-padding);color:var(--color-primary-element)}.files-list[data-v-d5a5c156]  .files-list__row-icon *{cursor:pointer}.files-list[data-v-d5a5c156]  .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-d5a5c156]  .files-list__row-icon>span:not(.files-list__row-icon-favorite) svg{width:var(--icon-preview-size);height:var(--icon-preview-size)}.files-list[data-v-d5a5c156]  .files-list__row-icon>span.folder-icon,.files-list[data-v-d5a5c156]  .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-d5a5c156]  .files-list__row-icon>span.folder-icon svg,.files-list[data-v-d5a5c156]  .files-list__row-icon>span.folder-open-icon svg{width:calc(var(--icon-preview-size) + 6px);height:calc(var(--icon-preview-size) + 6px)}.files-list[data-v-d5a5c156]  .files-list__row-icon-preview{overflow:hidden;width:var(--icon-preview-size);height:var(--icon-preview-size);border-radius:var(--border-radius);object-fit:contain;object-position:center}.files-list[data-v-d5a5c156]  .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-d5a5c156]  .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-d5a5c156]  .files-list__row-icon-overlay{position:absolute;max-height:calc(var(--icon-preview-size)*.5);max-width:calc(var(--icon-preview-size)*.5);color:var(--color-primary-element-text);margin-top:2px}.files-list[data-v-d5a5c156]  .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-d5a5c156]  .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-d5a5c156]  .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-d5a5c156]  .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-d5a5c156]  .files-list__row-name a:focus .files-list__row-name-text{outline:2px solid var(--color-main-text) !important;border-radius:20px}.files-list[data-v-d5a5c156]  .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-d5a5c156]  .files-list__row-name .files-list__row-name-text{color:var(--color-main-text);padding:5px 10px;margin-left:-10px;display:inline-flex}.files-list[data-v-d5a5c156]  .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-d5a5c156]  .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-d5a5c156]  .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-d5a5c156]  .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-d5a5c156]  .files-list__row-actions{width:auto}.files-list[data-v-d5a5c156]  .files-list__row-actions~td,.files-list[data-v-d5a5c156]  .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-d5a5c156]  .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-d5a5c156]  .files-list__row-action--inline{margin-right:7px}.files-list[data-v-d5a5c156]  .files-list__row-mtime,.files-list[data-v-d5a5c156]  .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-d5a5c156]  .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-d5a5c156]  .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-d5a5c156]  .files-list__row-column-custom{width:calc(var(--row-height)*2)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListVirtual.vue\"],\"names\":[],\"mappings\":\"AACA,6BACC,kBAAA,CACA,mBAAA,CAEA,wEAAA,CACA,qBAAA,CACA,sBAAA,CACA,yBAAA,CAEA,aAAA,CACA,WAAA,CACA,2BAAA,CAIC,oCACC,mBAAA,CACA,0BAAA,CACA,YAAA,CACA,qBAAA,CACA,UAAA,CAEA,iBAAA,CAGA,uCACC,cAAA,CACA,0FAEC,6CAAA,CAMH,kDACC,YAAA,CACA,qBAAA,CAGD,oDACC,kBAAA,CACA,kBAAA,CAGD,iDACC,aAAA,CAEA,uFAEC,qCAAA,CAIF,yDAEC,eAAA,CACA,KAAA,CAEA,6BAAA,CAEA,UAAA,CAEA,YAAA,CACA,kBAAA,CAGA,6CAAA,CACA,2CAAA,CACA,wBAAA,CAGD,kGAEC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,6CAAA,CAKD,iDAEC,eAAA,CACA,UAAA,CACA,KAAA,CAID,iDACC,gBAAA,CAGD,iCACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CACA,2CAAA,CACA,qBAAA,CACA,gBAAA,CACA,wBAAA,CAGD,kEACC,YAAA,CACA,kBAAA,CACA,aAAA,CACA,oBAAA,CACA,uBAAA,CACA,wBAAA,CACA,QAAA,CACA,SAAA,CACA,mCAAA,CACA,WAAA,CAKA,4EACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAIF,uDACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAAA,CACA,UAAA,CACA,6BAAA,CAGD,wDACC,sBAAA,CAEA,+EACC,YAAA,CACA,sBAAA,CAEA,iCAAA,CAEA,kHACC,2BAAA,CACA,4BAAA,CACA,QAAA,CACA,8DAAA,CAGD,4GACC,mBAAA,CAMF,gRAEC,8CAAA,CAGA,gDAAA,CACA,0RACC,wCAAA,CAID,2aACC,oCAAA,CAIF,2DAEC,mBAAA,CAKF,oDACC,iBAAA,CACA,YAAA,CACA,gBAAA,CACA,kBAAA,CAEA,iCAAA,CACA,sBAAA,CACA,8BAAA,CACA,WAAA,CAEA,oCAAA,CACA,kCAAA,CAGA,sDACC,cAAA,CAGD,yDACC,0BAAA,CAEA,iGACC,8BAAA,CACA,+BAAA,CAID,+IAEC,WAAA,CACA,uJACC,0CAAA,CACA,2CAAA,CAKH,4DACC,eAAA,CACA,8BAAA,CACA,+BAAA,CACA,kCAAA,CAEA,kBAAA,CACA,sBAAA,CAGA,uGACC,oCAAA,CAKF,6DACC,iBAAA,CACA,OAAA,CACA,WAAA,CAID,4DACC,iBAAA,CACA,4CAAA,CACA,2CAAA,CACA,uCAAA,CAEA,cAAA,CAGA,kEACC,4BAAA,CACA,uCAAA,CACA,kBAAA,CAMH,oDAEC,eAAA,CAEA,aAAA,CAEA,sDACC,YAAA,CACA,kBAAA,CAEA,UAAA,CACA,WAAA,CAEA,WAAA,CAGA,oEACC,YAAA,CAID,uFACC,mDAAA,CACA,kBAAA,CAED,2GACC,uBAAA,CAIF,+EACC,4BAAA,CAEA,gBAAA,CACA,iBAAA,CAEA,mBAAA,CAGD,8EACC,mCAAA,CAEA,gBAAA,CAKF,sDACC,UAAA,CACA,eAAA,CACA,4DACC,UAAA,CAEA,gBAAA,CACA,eAAA,CACA,gBAAA,CAEA,oEAEC,+BAAA,CACA,SAAA,CAKH,uDAEC,UAAA,CAGA,oHAEC,2BAAA,CAIA,gFAEC,kBAAA,CAKH,8DACC,gBAAA,CAGD,yGAEC,mCAAA,CAED,oDACC,iCAAA,CAEA,wBAAA,CAGD,qDACC,+BAAA,CAGD,6DACC,+BAAA\",\"sourcesContent\":[\"\\n.files-list {\\n\\t--row-height: 55px;\\n\\t--cell-margin: 14px;\\n\\n\\t--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);\\n\\t--checkbox-size: 24px;\\n\\t--clickable-area: 44px;\\n\\t--icon-preview-size: 32px;\\n\\n\\toverflow: auto;\\n\\theight: 100%;\\n\\twill-change: scroll-position;\\n\\n\\t& :deep() {\\n\\t\\t// Table head, body and footer\\n\\t\\ttbody {\\n\\t\\t\\twill-change: padding;\\n\\t\\t\\tcontain: layout paint style;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\t// Necessary for virtual scrolling absolute\\n\\t\\t\\tposition: relative;\\n\\n\\t\\t\\t/* Hover effect on tbody lines only */\\n\\t\\t\\ttr {\\n\\t\\t\\t\\tcontain: strict;\\n\\t\\t\\t\\t&:hover,\\n\\t\\t\\t\\t&:focus {\\n\\t\\t\\t\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Before table and thead\\n\\t\\t.files-list__before {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t}\\n\\n\\t\\t.files-list__selected {\\n\\t\\t\\tpadding-right: 12px;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t}\\n\\n\\t\\t.files-list__table {\\n\\t\\t\\tdisplay: block;\\n\\n\\t\\t\\t&.files-list__table--with-thead-overlay {\\n\\t\\t\\t\\t// Hide the table header below the overlay\\n\\t\\t\\t\\tmargin-top: calc(-1 * var(--row-height));\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__thead-overlay {\\n\\t\\t\\t// Pinned on top when scrolling\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\t// Save space for a row checkbox\\n\\t\\t\\tmargin-left: var(--row-height);\\n\\t\\t\\t// More than .files-list__thead\\n\\t\\t\\tz-index: 20;\\n\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\n\\t\\t\\t// Reuse row styles\\n\\t\\t\\tbackground-color: var(--color-main-background);\\n\\t\\t\\tborder-bottom: 1px solid var(--color-border);\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t}\\n\\n\\t\\t.files-list__thead,\\n\\t\\t.files-list__tfoot {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tbackground-color: var(--color-main-background);\\n\\n\\t\\t}\\n\\n\\t\\t// Table header\\n\\t\\t.files-list__thead {\\n\\t\\t\\t// Pinned on top when scrolling\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\tz-index: 10;\\n\\t\\t\\ttop: 0;\\n\\t\\t}\\n\\n\\t\\t// Table footer\\n\\t\\t.files-list__tfoot {\\n\\t\\t\\tmin-height: 300px;\\n\\t\\t}\\n\\n\\t\\ttr {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tuser-select: none;\\n\\t\\t\\tborder-bottom: 1px solid var(--color-border);\\n\\t\\t\\tbox-sizing: border-box;\\n\\t\\t\\tuser-select: none;\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t}\\n\\n\\t\\ttd, th {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tflex: 0 0 auto;\\n\\t\\t\\tjustify-content: left;\\n\\t\\t\\twidth: var(--row-height);\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t\\tmargin: 0;\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\tborder: none;\\n\\n\\t\\t\\t// Columns should try to add any text\\n\\t\\t\\t// node wrapped in a span. That should help\\n\\t\\t\\t// with the ellipsis on overflow.\\n\\t\\t\\tspan {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row--failed {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tdisplay: block;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\tleft: 0;\\n\\t\\t\\tright: 0;\\n\\t\\t\\tbottom: 0;\\n\\t\\t\\topacity: .1;\\n\\t\\t\\tz-index: -1;\\n\\t\\t\\tbackground: var(--color-error);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-checkbox {\\n\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t.checkbox-radio-switch {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t\\t--icon-size: var(--checkbox-size);\\n\\n\\t\\t\\t\\tlabel.checkbox-radio-switch__label {\\n\\t\\t\\t\\t\\twidth: var(--clickable-area);\\n\\t\\t\\t\\t\\theight: var(--clickable-area);\\n\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\tpadding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t.checkbox-radio-switch__icon {\\n\\t\\t\\t\\t\\tmargin: 0 !important;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row {\\n\\t\\t\\t&:hover, &:focus, &:active, &--active, &--dragover {\\n\\t\\t\\t\\t// WCAG AA compliant\\n\\t\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t\\t\\t// text-maxcontrast have been designed to pass WCAG AA over\\n\\t\\t\\t\\t// a white background, we need to adjust then.\\n\\t\\t\\t\\t--color-text-maxcontrast: var(--color-main-text);\\n\\t\\t\\t\\t> * {\\n\\t\\t\\t\\t\\t--color-border: var(--color-border-dark);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Hover state of the row should also change the favorite markers background\\n\\t\\t\\t\\t.favorite-marker-icon svg path {\\n\\t\\t\\t\\t\\tstroke: var(--color-background-hover);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&--dragover * {\\n\\t\\t\\t\\t// Prevent dropping on row children\\n\\t\\t\\t\\tpointer-events: none;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry preview or mime icon\\n\\t\\t.files-list__row-icon {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\toverflow: visible;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\t// No shrinking or growing allowed\\n\\t\\t\\tflex: 0 0 var(--icon-preview-size);\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\theight: 100%;\\n\\t\\t\\t// Show same padding as the checkbox right padding for visual balance\\n\\t\\t\\tmargin-right: var(--checkbox-padding);\\n\\t\\t\\tcolor: var(--color-primary-element);\\n\\n\\t\\t\\t// Icon is also clickable\\n\\t\\t\\t* {\\n\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t}\\n\\n\\t\\t\\t& > span {\\n\\t\\t\\t\\tjustify-content: flex-start;\\n\\n\\t\\t\\t\\t&:not(.files-list__row-icon-favorite) svg {\\n\\t\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Slightly increase the size of the folder icon\\n\\t\\t\\t\\t&.folder-icon,\\n\\t\\t\\t\\t&.folder-open-icon {\\n\\t\\t\\t\\t\\tmargin: -3px;\\n\\t\\t\\t\\t\\tsvg {\\n\\t\\t\\t\\t\\t\\twidth: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t\\theight: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-preview {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\t\\t// Center and contain the preview\\n\\t\\t\\t\\tobject-fit: contain;\\n\\t\\t\\t\\tobject-position: center;\\n\\n\\t\\t\\t\\t/* Preview not loaded animation effect */\\n\\t\\t\\t\\t&:not(.files-list__row-icon-preview--loaded) {\\n\\t\\t\\t\\t\\tbackground: var(--color-loading-dark);\\n\\t\\t\\t\\t\\t// animation: preview-gradient-fade 1.2s ease-in-out infinite;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-favorite {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\ttop: 0px;\\n\\t\\t\\t\\tright: -10px;\\n\\t\\t\\t}\\n\\n\\t\\t\\t// File and folder overlay\\n\\t\\t\\t&-overlay {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\tmax-height: calc(var(--icon-preview-size) * 0.5);\\n\\t\\t\\t\\tmax-width: calc(var(--icon-preview-size) * 0.5);\\n\\t\\t\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t\\t\\t// better alignment with the folder icon\\n\\t\\t\\t\\tmargin-top: 2px;\\n\\n\\t\\t\\t\\t// Improve icon contrast with a background for files\\n\\t\\t\\t\\t&--file {\\n\\t\\t\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\t\\t\\tbackground: var(--color-main-background);\\n\\t\\t\\t\\t\\tborder-radius: 100%;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry link\\n\\t\\t.files-list__row-name {\\n\\t\\t\\t// Prevent link from overflowing\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\t// Take as much space as possible\\n\\t\\t\\tflex: 1 1 auto;\\n\\n\\t\\t\\ta {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\talign-items: center;\\n\\t\\t\\t\\t// Fill cell height and width\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\theight: 100%;\\n\\t\\t\\t\\t// Necessary for flex grow to work\\n\\t\\t\\t\\tmin-width: 0;\\n\\n\\t\\t\\t\\t// Already added to the inner text, see rule below\\n\\t\\t\\t\\t&:focus-visible {\\n\\t\\t\\t\\t\\toutline: none;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Keyboard indicator a11y\\n\\t\\t\\t\\t&:focus .files-list__row-name-text {\\n\\t\\t\\t\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\t\\t\\t\\tborder-radius: 20px;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t&:focus:not(:focus-visible) .files-list__row-name-text {\\n\\t\\t\\t\\t\\toutline: none !important;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-text {\\n\\t\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\t\\t// Make some space for the outline\\n\\t\\t\\t\\tpadding: 5px 10px;\\n\\t\\t\\t\\tmargin-left: -10px;\\n\\t\\t\\t\\t// Align two name and ext\\n\\t\\t\\t\\tdisplay: inline-flex;\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-ext {\\n\\t\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t\\t// always show the extension\\n\\t\\t\\t\\toverflow: visible;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Rename form\\n\\t\\t.files-list__row-rename {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tmax-width: 600px;\\n\\t\\t\\tinput {\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\t// Align with text, 0 - padding - border\\n\\t\\t\\t\\tmargin-left: -8px;\\n\\t\\t\\t\\tpadding: 2px 6px;\\n\\t\\t\\t\\tborder-width: 2px;\\n\\n\\t\\t\\t\\t&:invalid {\\n\\t\\t\\t\\t\\t// Show red border on invalid input\\n\\t\\t\\t\\t\\tborder-color: var(--color-error);\\n\\t\\t\\t\\t\\tcolor: red;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-actions {\\n\\t\\t\\t// take as much space as necessary\\n\\t\\t\\twidth: auto;\\n\\n\\t\\t\\t// Add margin to all cells after the actions\\n\\t\\t\\t& ~ td,\\n\\t\\t\\t& ~ th {\\n\\t\\t\\t\\tmargin: 0 var(--cell-margin);\\n\\t\\t\\t}\\n\\n\\t\\t\\tbutton {\\n\\t\\t\\t\\t.button-vue__text {\\n\\t\\t\\t\\t\\t// Remove bold from default button styling\\n\\t\\t\\t\\t\\tfont-weight: normal;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-action--inline {\\n\\t\\t\\tmargin-right: 7px;\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime,\\n\\t\\t.files-list__row-size {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t}\\n\\t\\t.files-list__row-size {\\n\\t\\t\\twidth: calc(var(--row-height) * 1.5);\\n\\t\\t\\t// Right align content/text\\n\\t\\t\\tjustify-content: flex-end;\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-column-custom {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `tbody.files-list__tbody.files-list__tbody--grid{--half-clickable-area: calc(var(--clickable-area) / 2);--row-width: 160px;--row-height: calc(var(--row-width) - var(--half-clickable-area));--icon-preview-size: calc(var(--row-width) - var(--clickable-area));--checkbox-padding: 0px;display:grid;grid-template-columns:repeat(auto-fill, var(--row-width));grid-gap:15px;row-gap:15px;align-content:center;align-items:center;justify-content:space-around;justify-items:center}tbody.files-list__tbody.files-list__tbody--grid tr{width:var(--row-width);height:calc(var(--row-height) + var(--clickable-area));border:none;border-radius:var(--border-radius)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-checkbox{position:absolute;z-index:9;top:0;left:0;overflow:hidden;width:var(--clickable-area);height:var(--clickable-area);border-radius:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-icon-favorite{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;width:var(--clickable-area);height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name{display:grid;justify-content:stretch;width:100%;height:100%;grid-auto-rows:var(--row-height) var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name span.files-list__row-icon{width:100%;height:100%;padding-top:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name a.files-list__row-name-link{width:calc(100% - var(--clickable-area));height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name .files-list__row-name-text{margin:0;padding-right:0}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-actions{position:absolute;right:0;bottom:0;width:var(--clickable-area);height:var(--clickable-area)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListVirtual.vue\"],\"names\":[],\"mappings\":\"AAEA,gDACC,sDAAA,CACA,kBAAA,CAEA,iEAAA,CACA,mEAAA,CACA,uBAAA,CAEA,YAAA,CACA,yDAAA,CACA,aAAA,CACA,YAAA,CAEA,oBAAA,CACA,kBAAA,CACA,4BAAA,CACA,oBAAA,CAEA,mDACC,sBAAA,CACA,sDAAA,CACA,WAAA,CACA,kCAAA,CAID,0EACC,iBAAA,CACA,SAAA,CACA,KAAA,CACA,MAAA,CACA,eAAA,CACA,2BAAA,CACA,4BAAA,CACA,wCAAA,CAID,+EACC,iBAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,2BAAA,CACA,4BAAA,CAGD,sEACC,YAAA,CACA,uBAAA,CACA,UAAA,CACA,WAAA,CACA,sDAAA,CAEA,gGACC,UAAA,CACA,WAAA,CAGA,sCAAA,CAGD,kGAEC,wCAAA,CACA,4BAAA,CAGD,iGACC,QAAA,CACA,eAAA,CAIF,yEACC,iBAAA,CACA,OAAA,CACA,QAAA,CACA,2BAAA,CACA,4BAAA\",\"sourcesContent\":[\"\\n// Grid mode\\ntbody.files-list__tbody.files-list__tbody--grid {\\n\\t--half-clickable-area: calc(var(--clickable-area) / 2);\\n\\t--row-width: 160px;\\n\\t// We use half of the clickable area as visual balance margin\\n\\t--row-height: calc(var(--row-width) - var(--half-clickable-area));\\n\\t--icon-preview-size: calc(var(--row-width) - var(--clickable-area));\\n\\t--checkbox-padding: 0px;\\n\\n\\tdisplay: grid;\\n\\tgrid-template-columns: repeat(auto-fill, var(--row-width));\\n\\tgrid-gap: 15px;\\n\\trow-gap: 15px;\\n\\n\\talign-content: center;\\n\\talign-items: center;\\n\\tjustify-content: space-around;\\n\\tjustify-items: center;\\n\\n\\ttr {\\n\\t\\twidth: var(--row-width);\\n\\t\\theight: calc(var(--row-height) + var(--clickable-area));\\n\\t\\tborder: none;\\n\\t\\tborder-radius: var(--border-radius);\\n\\t}\\n\\n\\t// Checkbox in the top left\\n\\t.files-list__row-checkbox {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: 9;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\toverflow: hidden;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t\\tborder-radius: var(--half-clickable-area);\\n\\t}\\n\\n\\t// Star icon in the top right\\n\\t.files-list__row-icon-favorite {\\n\\t\\tposition: absolute;\\n\\t\\ttop: 0;\\n\\t\\tright: 0;\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t}\\n\\n\\t.files-list__row-name {\\n\\t\\tdisplay: grid;\\n\\t\\tjustify-content: stretch;\\n\\t\\twidth: 100%;\\n\\t\\theight: 100%;\\n\\t\\tgrid-auto-rows: var(--row-height) var(--clickable-area);\\n\\n\\t\\tspan.files-list__row-icon {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\theight: 100%;\\n\\t\\t\\t// Visual balance, we use half of the clickable area\\n\\t\\t\\t// as a margin around the preview\\n\\t\\t\\tpadding-top: var(--half-clickable-area);\\n\\t\\t}\\n\\n\\t\\ta.files-list__row-name-link {\\n\\t\\t\\t// Minus action menu\\n\\t\\t\\twidth: calc(100% - var(--clickable-area));\\n\\t\\t\\theight: var(--clickable-area);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-name-text {\\n\\t\\t\\tmargin: 0;\\n\\t\\t\\tpadding-right: 0;\\n\\t\\t}\\n\\t}\\n\\n\\t.files-list__row-actions {\\n\\t\\tposition: absolute;\\n\\t\\tright: 0;\\n\\t\\tbottom: 0;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-navigation-entry__settings-quota--not-unlimited[data-v-063ed938] .app-navigation-entry__name{margin-top:-6px}.app-navigation-entry__settings-quota progress[data-v-063ed938]{position:absolute;bottom:12px;margin-left:44px;width:calc(100% - 44px - 22px)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/NavigationQuota.vue\"],\"names\":[],\"mappings\":\"AAIC,kGACC,eAAA,CAGD,gEACC,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,8BAAA\",\"sourcesContent\":[\"\\n// User storage stats display\\n.app-navigation-entry__settings-quota {\\n\\t// Align title with progress and icon\\n\\t&--not-unlimited::v-deep .app-navigation-entry__name {\\n\\t\\tmargin-top: -6px;\\n\\t}\\n\\n\\tprogress {\\n\\t\\tposition: absolute;\\n\\t\\tbottom: 12px;\\n\\t\\tmargin-left: 44px;\\n\\t\\twidth: calc(100% - 44px - 22px);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-content[data-v-5c37291f]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-5c37291f]{display:flex;align-items:center;flex:0 0;max-width:100%;margin-block:var(--app-navigation-padding, 4px);margin-inline:calc(var(--default-clickable-area, 44px) + 2*var(--app-navigation-padding, 4px)) var(--app-navigation-padding, 4px)}.files-list__header>*[data-v-5c37291f]{flex:0 0}.files-list__header-share-button[data-v-5c37291f]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-5c37291f]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-5c37291f]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-5c37291f]{margin:auto}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/FilesList.vue\"],\"names\":[],\"mappings\":\"AACA,8BAEC,YAAA,CACA,eAAA,CACA,qBAAA,CACA,eAAA,CACA,4BAAA,CAIA,qCACC,YAAA,CACA,kBAAA,CAEA,QAAA,CACA,cAAA,CAEA,+CAAA,CACA,iIAAA,CAEA,uCAGC,QAAA,CAGD,kDACC,8CAAA,CAEA,0DACC,uCAAA,CAKH,2CACC,aAAA,CACA,UAAA,CACA,WAAA,CAGD,2CACC,WAAA\",\"sourcesContent\":[\"\\n.app-content {\\n\\t// Virtual list needs to be full height and is scrollable\\n\\tdisplay: flex;\\n\\toverflow: hidden;\\n\\tflex-direction: column;\\n\\tmax-height: 100%;\\n\\tposition: relative !important;\\n}\\n\\n.files-list {\\n\\t&__header {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\t// Do not grow or shrink (vertically)\\n\\t\\tflex: 0 0;\\n\\t\\tmax-width: 100%;\\n\\t\\t// Align with the navigation toggle icon\\n\\t\\tmargin-block: var(--app-navigation-padding, 4px);\\n\\t\\tmargin-inline: calc(var(--default-clickable-area, 44px) + 2 * var(--app-navigation-padding, 4px)) var(--app-navigation-padding, 4px);\\n\\n\\t\\t>* {\\n\\t\\t\\t// Do not grow or shrink (horizontally)\\n\\t\\t\\t// Only the breadcrumbs shrinks\\n\\t\\t\\tflex: 0 0;\\n\\t\\t}\\n\\n\\t\\t&-share-button {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast) !important;\\n\\n\\t\\t\\t&--shared {\\n\\t\\t\\t\\tcolor: var(--color-main-text) !important;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&__refresh-icon {\\n\\t\\tflex: 0 0 44px;\\n\\t\\twidth: 44px;\\n\\t\\theight: 44px;\\n\\t}\\n\\n\\t&__loading-icon {\\n\\t\\tmargin: auto;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-navigation[data-v-476b6b93] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-476b6b93] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-476b6b93]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-476b6b93]{height:auto !important;overflow:hidden !important;padding-top:0 !important;flex:0 0 auto}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Navigation.vue\"],\"names\":[],\"mappings\":\"AAEA,4DACC,2BAAA,CACA,0BAAA,CAGD,oGACC,uCAAA,CAGD,yDAEC,gDAAA,CAGD,iDACC,sBAAA,CACA,0BAAA,CACA,wBAAA,CAEA,aAAA\",\"sourcesContent\":[\"\\n// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in\\n.app-navigation::v-deep .app-navigation-entry-icon {\\n\\tbackground-repeat: no-repeat;\\n\\tbackground-position: center;\\n}\\n\\n.app-navigation::v-deep .app-navigation-entry.active .button-vue.icon-collapse:not(:hover) {\\n\\tcolor: var(--color-primary-element-text);\\n}\\n\\n.app-navigation > ul.app-navigation__list {\\n\\t// Use flex gap value for more elegant spacing\\n\\tpadding-bottom: var(--default-grid-baseline, 4px);\\n}\\n\\n.app-navigation-entry__settings {\\n\\theight: auto !important;\\n\\toverflow: hidden !important;\\n\\tpadding-top: 0 !important;\\n\\t// Prevent shrinking or growing\\n\\tflex: 0 0 auto;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.setting-link[data-v-00f09e69]:hover{text-decoration:underline}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Settings.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,yBAAA\",\"sourcesContent\":[\"\\n.setting-link:hover {\\n\\ttext-decoration: underline;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n'use strict';\n\nvar R = typeof Reflect === 'object' ? Reflect : null\nvar ReflectApply = R && typeof R.apply === 'function'\n  ? R.apply\n  : function ReflectApply(target, receiver, args) {\n    return Function.prototype.apply.call(target, receiver, args);\n  }\n\nvar ReflectOwnKeys\nif (R && typeof R.ownKeys === 'function') {\n  ReflectOwnKeys = R.ownKeys\n} else if (Object.getOwnPropertySymbols) {\n  ReflectOwnKeys = function ReflectOwnKeys(target) {\n    return Object.getOwnPropertyNames(target)\n      .concat(Object.getOwnPropertySymbols(target));\n  };\n} else {\n  ReflectOwnKeys = function ReflectOwnKeys(target) {\n    return Object.getOwnPropertyNames(target);\n  };\n}\n\nfunction ProcessEmitWarning(warning) {\n  if (console && console.warn) console.warn(warning);\n}\n\nvar NumberIsNaN = Number.isNaN || function NumberIsNaN(value) {\n  return value !== value;\n}\n\nfunction EventEmitter() {\n  EventEmitter.init.call(this);\n}\nmodule.exports = EventEmitter;\nmodule.exports.once = once;\n\n// Backwards-compat with node 0.10.x\nEventEmitter.EventEmitter = EventEmitter;\n\nEventEmitter.prototype._events = undefined;\nEventEmitter.prototype._eventsCount = 0;\nEventEmitter.prototype._maxListeners = undefined;\n\n// By default EventEmitters will print a warning if more than 10 listeners are\n// added to it. This is a useful default which helps finding memory leaks.\nvar defaultMaxListeners = 10;\n\nfunction checkListener(listener) {\n  if (typeof listener !== 'function') {\n    throw new TypeError('The \"listener\" argument must be of type Function. Received type ' + typeof listener);\n  }\n}\n\nObject.defineProperty(EventEmitter, 'defaultMaxListeners', {\n  enumerable: true,\n  get: function() {\n    return defaultMaxListeners;\n  },\n  set: function(arg) {\n    if (typeof arg !== 'number' || arg < 0 || NumberIsNaN(arg)) {\n      throw new RangeError('The value of \"defaultMaxListeners\" is out of range. It must be a non-negative number. Received ' + arg + '.');\n    }\n    defaultMaxListeners = arg;\n  }\n});\n\nEventEmitter.init = function() {\n\n  if (this._events === undefined ||\n      this._events === Object.getPrototypeOf(this)._events) {\n    this._events = Object.create(null);\n    this._eventsCount = 0;\n  }\n\n  this._maxListeners = this._maxListeners || undefined;\n};\n\n// Obviously not all Emitters should be limited to 10. This function allows\n// that to be increased. Set to zero for unlimited.\nEventEmitter.prototype.setMaxListeners = function setMaxListeners(n) {\n  if (typeof n !== 'number' || n < 0 || NumberIsNaN(n)) {\n    throw new RangeError('The value of \"n\" is out of range. It must be a non-negative number. Received ' + n + '.');\n  }\n  this._maxListeners = n;\n  return this;\n};\n\nfunction _getMaxListeners(that) {\n  if (that._maxListeners === undefined)\n    return EventEmitter.defaultMaxListeners;\n  return that._maxListeners;\n}\n\nEventEmitter.prototype.getMaxListeners = function getMaxListeners() {\n  return _getMaxListeners(this);\n};\n\nEventEmitter.prototype.emit = function emit(type) {\n  var args = [];\n  for (var i = 1; i < arguments.length; i++) args.push(arguments[i]);\n  var doError = (type === 'error');\n\n  var events = this._events;\n  if (events !== undefined)\n    doError = (doError && events.error === undefined);\n  else if (!doError)\n    return false;\n\n  // If there is no 'error' event listener then throw.\n  if (doError) {\n    var er;\n    if (args.length > 0)\n      er = args[0];\n    if (er instanceof Error) {\n      // Note: The comments on the `throw` lines are intentional, they show\n      // up in Node's output if this results in an unhandled exception.\n      throw er; // Unhandled 'error' event\n    }\n    // At least give some kind of context to the user\n    var err = new Error('Unhandled error.' + (er ? ' (' + er.message + ')' : ''));\n    err.context = er;\n    throw err; // Unhandled 'error' event\n  }\n\n  var handler = events[type];\n\n  if (handler === undefined)\n    return false;\n\n  if (typeof handler === 'function') {\n    ReflectApply(handler, this, args);\n  } else {\n    var len = handler.length;\n    var listeners = arrayClone(handler, len);\n    for (var i = 0; i < len; ++i)\n      ReflectApply(listeners[i], this, args);\n  }\n\n  return true;\n};\n\nfunction _addListener(target, type, listener, prepend) {\n  var m;\n  var events;\n  var existing;\n\n  checkListener(listener);\n\n  events = target._events;\n  if (events === undefined) {\n    events = target._events = Object.create(null);\n    target._eventsCount = 0;\n  } else {\n    // To avoid recursion in the case that type === \"newListener\"! Before\n    // adding it to the listeners, first emit \"newListener\".\n    if (events.newListener !== undefined) {\n      target.emit('newListener', type,\n                  listener.listener ? listener.listener : listener);\n\n      // Re-assign `events` because a newListener handler could have caused the\n      // this._events to be assigned to a new object\n      events = target._events;\n    }\n    existing = events[type];\n  }\n\n  if (existing === undefined) {\n    // Optimize the case of one listener. Don't need the extra array object.\n    existing = events[type] = listener;\n    ++target._eventsCount;\n  } else {\n    if (typeof existing === 'function') {\n      // Adding the second element, need to change to array.\n      existing = events[type] =\n        prepend ? [listener, existing] : [existing, listener];\n      // If we've already got an array, just append.\n    } else if (prepend) {\n      existing.unshift(listener);\n    } else {\n      existing.push(listener);\n    }\n\n    // Check for listener leak\n    m = _getMaxListeners(target);\n    if (m > 0 && existing.length > m && !existing.warned) {\n      existing.warned = true;\n      // No error code for this since it is a Warning\n      // eslint-disable-next-line no-restricted-syntax\n      var w = new Error('Possible EventEmitter memory leak detected. ' +\n                          existing.length + ' ' + String(type) + ' listeners ' +\n                          'added. Use emitter.setMaxListeners() to ' +\n                          'increase limit');\n      w.name = 'MaxListenersExceededWarning';\n      w.emitter = target;\n      w.type = type;\n      w.count = existing.length;\n      ProcessEmitWarning(w);\n    }\n  }\n\n  return target;\n}\n\nEventEmitter.prototype.addListener = function addListener(type, listener) {\n  return _addListener(this, type, listener, false);\n};\n\nEventEmitter.prototype.on = EventEmitter.prototype.addListener;\n\nEventEmitter.prototype.prependListener =\n    function prependListener(type, listener) {\n      return _addListener(this, type, listener, true);\n    };\n\nfunction onceWrapper() {\n  if (!this.fired) {\n    this.target.removeListener(this.type, this.wrapFn);\n    this.fired = true;\n    if (arguments.length === 0)\n      return this.listener.call(this.target);\n    return this.listener.apply(this.target, arguments);\n  }\n}\n\nfunction _onceWrap(target, type, listener) {\n  var state = { fired: false, wrapFn: undefined, target: target, type: type, listener: listener };\n  var wrapped = onceWrapper.bind(state);\n  wrapped.listener = listener;\n  state.wrapFn = wrapped;\n  return wrapped;\n}\n\nEventEmitter.prototype.once = function once(type, listener) {\n  checkListener(listener);\n  this.on(type, _onceWrap(this, type, listener));\n  return this;\n};\n\nEventEmitter.prototype.prependOnceListener =\n    function prependOnceListener(type, listener) {\n      checkListener(listener);\n      this.prependListener(type, _onceWrap(this, type, listener));\n      return this;\n    };\n\n// Emits a 'removeListener' event if and only if the listener was removed.\nEventEmitter.prototype.removeListener =\n    function removeListener(type, listener) {\n      var list, events, position, i, originalListener;\n\n      checkListener(listener);\n\n      events = this._events;\n      if (events === undefined)\n        return this;\n\n      list = events[type];\n      if (list === undefined)\n        return this;\n\n      if (list === listener || list.listener === listener) {\n        if (--this._eventsCount === 0)\n          this._events = Object.create(null);\n        else {\n          delete events[type];\n          if (events.removeListener)\n            this.emit('removeListener', type, list.listener || listener);\n        }\n      } else if (typeof list !== 'function') {\n        position = -1;\n\n        for (i = list.length - 1; i >= 0; i--) {\n          if (list[i] === listener || list[i].listener === listener) {\n            originalListener = list[i].listener;\n            position = i;\n            break;\n          }\n        }\n\n        if (position < 0)\n          return this;\n\n        if (position === 0)\n          list.shift();\n        else {\n          spliceOne(list, position);\n        }\n\n        if (list.length === 1)\n          events[type] = list[0];\n\n        if (events.removeListener !== undefined)\n          this.emit('removeListener', type, originalListener || listener);\n      }\n\n      return this;\n    };\n\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\n\nEventEmitter.prototype.removeAllListeners =\n    function removeAllListeners(type) {\n      var listeners, events, i;\n\n      events = this._events;\n      if (events === undefined)\n        return this;\n\n      // not listening for removeListener, no need to emit\n      if (events.removeListener === undefined) {\n        if (arguments.length === 0) {\n          this._events = Object.create(null);\n          this._eventsCount = 0;\n        } else if (events[type] !== undefined) {\n          if (--this._eventsCount === 0)\n            this._events = Object.create(null);\n          else\n            delete events[type];\n        }\n        return this;\n      }\n\n      // emit removeListener for all listeners on all events\n      if (arguments.length === 0) {\n        var keys = Object.keys(events);\n        var key;\n        for (i = 0; i < keys.length; ++i) {\n          key = keys[i];\n          if (key === 'removeListener') continue;\n          this.removeAllListeners(key);\n        }\n        this.removeAllListeners('removeListener');\n        this._events = Object.create(null);\n        this._eventsCount = 0;\n        return this;\n      }\n\n      listeners = events[type];\n\n      if (typeof listeners === 'function') {\n        this.removeListener(type, listeners);\n      } else if (listeners !== undefined) {\n        // LIFO order\n        for (i = listeners.length - 1; i >= 0; i--) {\n          this.removeListener(type, listeners[i]);\n        }\n      }\n\n      return this;\n    };\n\nfunction _listeners(target, type, unwrap) {\n  var events = target._events;\n\n  if (events === undefined)\n    return [];\n\n  var evlistener = events[type];\n  if (evlistener === undefined)\n    return [];\n\n  if (typeof evlistener === 'function')\n    return unwrap ? [evlistener.listener || evlistener] : [evlistener];\n\n  return unwrap ?\n    unwrapListeners(evlistener) : arrayClone(evlistener, evlistener.length);\n}\n\nEventEmitter.prototype.listeners = function listeners(type) {\n  return _listeners(this, type, true);\n};\n\nEventEmitter.prototype.rawListeners = function rawListeners(type) {\n  return _listeners(this, type, false);\n};\n\nEventEmitter.listenerCount = function(emitter, type) {\n  if (typeof emitter.listenerCount === 'function') {\n    return emitter.listenerCount(type);\n  } else {\n    return listenerCount.call(emitter, type);\n  }\n};\n\nEventEmitter.prototype.listenerCount = listenerCount;\nfunction listenerCount(type) {\n  var events = this._events;\n\n  if (events !== undefined) {\n    var evlistener = events[type];\n\n    if (typeof evlistener === 'function') {\n      return 1;\n    } else if (evlistener !== undefined) {\n      return evlistener.length;\n    }\n  }\n\n  return 0;\n}\n\nEventEmitter.prototype.eventNames = function eventNames() {\n  return this._eventsCount > 0 ? ReflectOwnKeys(this._events) : [];\n};\n\nfunction arrayClone(arr, n) {\n  var copy = new Array(n);\n  for (var i = 0; i < n; ++i)\n    copy[i] = arr[i];\n  return copy;\n}\n\nfunction spliceOne(list, index) {\n  for (; index + 1 < list.length; index++)\n    list[index] = list[index + 1];\n  list.pop();\n}\n\nfunction unwrapListeners(arr) {\n  var ret = new Array(arr.length);\n  for (var i = 0; i < ret.length; ++i) {\n    ret[i] = arr[i].listener || arr[i];\n  }\n  return ret;\n}\n\nfunction once(emitter, name) {\n  return new Promise(function (resolve, reject) {\n    function errorListener(err) {\n      emitter.removeListener(name, resolver);\n      reject(err);\n    }\n\n    function resolver() {\n      if (typeof emitter.removeListener === 'function') {\n        emitter.removeListener('error', errorListener);\n      }\n      resolve([].slice.call(arguments));\n    };\n\n    eventTargetAgnosticAddListener(emitter, name, resolver, { once: true });\n    if (name !== 'error') {\n      addErrorHandlerIfEventEmitter(emitter, errorListener, { once: true });\n    }\n  });\n}\n\nfunction addErrorHandlerIfEventEmitter(emitter, handler, flags) {\n  if (typeof emitter.on === 'function') {\n    eventTargetAgnosticAddListener(emitter, 'error', handler, flags);\n  }\n}\n\nfunction eventTargetAgnosticAddListener(emitter, name, listener, flags) {\n  if (typeof emitter.on === 'function') {\n    if (flags.once) {\n      emitter.once(name, listener);\n    } else {\n      emitter.on(name, listener);\n    }\n  } else if (typeof emitter.addEventListener === 'function') {\n    // EventTarget does not have `error` event semantics like Node\n    // EventEmitters, we do not listen for `error` events here.\n    emitter.addEventListener(name, function wrapListener(arg) {\n      // IE does not have builtin `{ once: true }` support so we\n      // have to do it manually.\n      if (flags.once) {\n        emitter.removeEventListener(name, wrapListener);\n      }\n      listener(arg);\n    });\n  } else {\n    throw new TypeError('The \"emitter\" argument must be of type EventEmitter. Received type ' + typeof emitter);\n  }\n}\n","'use strict';\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\nvar codes = {};\n\nfunction createErrorType(code, message, Base) {\n  if (!Base) {\n    Base = Error;\n  }\n\n  function getMessage(arg1, arg2, arg3) {\n    if (typeof message === 'string') {\n      return message;\n    } else {\n      return message(arg1, arg2, arg3);\n    }\n  }\n\n  var NodeError =\n  /*#__PURE__*/\n  function (_Base) {\n    _inheritsLoose(NodeError, _Base);\n\n    function NodeError(arg1, arg2, arg3) {\n      return _Base.call(this, getMessage(arg1, arg2, arg3)) || this;\n    }\n\n    return NodeError;\n  }(Base);\n\n  NodeError.prototype.name = Base.name;\n  NodeError.prototype.code = code;\n  codes[code] = NodeError;\n} // https://github.com/nodejs/node/blob/v10.8.0/lib/internal/errors.js\n\n\nfunction oneOf(expected, thing) {\n  if (Array.isArray(expected)) {\n    var len = expected.length;\n    expected = expected.map(function (i) {\n      return String(i);\n    });\n\n    if (len > 2) {\n      return \"one of \".concat(thing, \" \").concat(expected.slice(0, len - 1).join(', '), \", or \") + expected[len - 1];\n    } else if (len === 2) {\n      return \"one of \".concat(thing, \" \").concat(expected[0], \" or \").concat(expected[1]);\n    } else {\n      return \"of \".concat(thing, \" \").concat(expected[0]);\n    }\n  } else {\n    return \"of \".concat(thing, \" \").concat(String(expected));\n  }\n} // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith\n\n\nfunction startsWith(str, search, pos) {\n  return str.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search;\n} // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith\n\n\nfunction endsWith(str, search, this_len) {\n  if (this_len === undefined || this_len > str.length) {\n    this_len = str.length;\n  }\n\n  return str.substring(this_len - search.length, this_len) === search;\n} // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes\n\n\nfunction includes(str, search, start) {\n  if (typeof start !== 'number') {\n    start = 0;\n  }\n\n  if (start + search.length > str.length) {\n    return false;\n  } else {\n    return str.indexOf(search, start) !== -1;\n  }\n}\n\ncreateErrorType('ERR_INVALID_OPT_VALUE', function (name, value) {\n  return 'The value \"' + value + '\" is invalid for option \"' + name + '\"';\n}, TypeError);\ncreateErrorType('ERR_INVALID_ARG_TYPE', function (name, expected, actual) {\n  // determiner: 'must be' or 'must not be'\n  var determiner;\n\n  if (typeof expected === 'string' && startsWith(expected, 'not ')) {\n    determiner = 'must not be';\n    expected = expected.replace(/^not /, '');\n  } else {\n    determiner = 'must be';\n  }\n\n  var msg;\n\n  if (endsWith(name, ' argument')) {\n    // For cases like 'first argument'\n    msg = \"The \".concat(name, \" \").concat(determiner, \" \").concat(oneOf(expected, 'type'));\n  } else {\n    var type = includes(name, '.') ? 'property' : 'argument';\n    msg = \"The \\\"\".concat(name, \"\\\" \").concat(type, \" \").concat(determiner, \" \").concat(oneOf(expected, 'type'));\n  }\n\n  msg += \". Received type \".concat(typeof actual);\n  return msg;\n}, TypeError);\ncreateErrorType('ERR_STREAM_PUSH_AFTER_EOF', 'stream.push() after EOF');\ncreateErrorType('ERR_METHOD_NOT_IMPLEMENTED', function (name) {\n  return 'The ' + name + ' method is not implemented';\n});\ncreateErrorType('ERR_STREAM_PREMATURE_CLOSE', 'Premature close');\ncreateErrorType('ERR_STREAM_DESTROYED', function (name) {\n  return 'Cannot call ' + name + ' after a stream was destroyed';\n});\ncreateErrorType('ERR_MULTIPLE_CALLBACK', 'Callback called multiple times');\ncreateErrorType('ERR_STREAM_CANNOT_PIPE', 'Cannot pipe, not readable');\ncreateErrorType('ERR_STREAM_WRITE_AFTER_END', 'write after end');\ncreateErrorType('ERR_STREAM_NULL_VALUES', 'May not write null values to stream', TypeError);\ncreateErrorType('ERR_UNKNOWN_ENCODING', function (arg) {\n  return 'Unknown encoding: ' + arg;\n}, TypeError);\ncreateErrorType('ERR_STREAM_UNSHIFT_AFTER_END_EVENT', 'stream.unshift() after end event');\nmodule.exports.codes = codes;\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// a duplex stream is just a stream that is both readable and writable.\n// Since JS doesn't have multiple prototypal inheritance, this class\n// prototypally inherits from Readable, and then parasitically from\n// Writable.\n\n'use strict';\n\n/*<replacement>*/\nvar objectKeys = Object.keys || function (obj) {\n  var keys = [];\n  for (var key in obj) keys.push(key);\n  return keys;\n};\n/*</replacement>*/\n\nmodule.exports = Duplex;\nvar Readable = require('./_stream_readable');\nvar Writable = require('./_stream_writable');\nrequire('inherits')(Duplex, Readable);\n{\n  // Allow the keys array to be GC'ed.\n  var keys = objectKeys(Writable.prototype);\n  for (var v = 0; v < keys.length; v++) {\n    var method = keys[v];\n    if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method];\n  }\n}\nfunction Duplex(options) {\n  if (!(this instanceof Duplex)) return new Duplex(options);\n  Readable.call(this, options);\n  Writable.call(this, options);\n  this.allowHalfOpen = true;\n  if (options) {\n    if (options.readable === false) this.readable = false;\n    if (options.writable === false) this.writable = false;\n    if (options.allowHalfOpen === false) {\n      this.allowHalfOpen = false;\n      this.once('end', onend);\n    }\n  }\n}\nObject.defineProperty(Duplex.prototype, 'writableHighWaterMark', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState.highWaterMark;\n  }\n});\nObject.defineProperty(Duplex.prototype, 'writableBuffer', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState && this._writableState.getBuffer();\n  }\n});\nObject.defineProperty(Duplex.prototype, 'writableLength', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState.length;\n  }\n});\n\n// the no-half-open enforcer\nfunction onend() {\n  // If the writable side ended, then we're ok.\n  if (this._writableState.ended) return;\n\n  // no more data can be written.\n  // But allow more writes to happen in this tick.\n  process.nextTick(onEndNT, this);\n}\nfunction onEndNT(self) {\n  self.end();\n}\nObject.defineProperty(Duplex.prototype, 'destroyed', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    if (this._readableState === undefined || this._writableState === undefined) {\n      return false;\n    }\n    return this._readableState.destroyed && this._writableState.destroyed;\n  },\n  set: function set(value) {\n    // we ignore the value if the stream\n    // has not been initialized yet\n    if (this._readableState === undefined || this._writableState === undefined) {\n      return;\n    }\n\n    // backward compatibility, the user is explicitly\n    // managing destroyed\n    this._readableState.destroyed = value;\n    this._writableState.destroyed = value;\n  }\n});","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// a passthrough stream.\n// basically just the most minimal sort of Transform stream.\n// Every written chunk gets output as-is.\n\n'use strict';\n\nmodule.exports = PassThrough;\nvar Transform = require('./_stream_transform');\nrequire('inherits')(PassThrough, Transform);\nfunction PassThrough(options) {\n  if (!(this instanceof PassThrough)) return new PassThrough(options);\n  Transform.call(this, options);\n}\nPassThrough.prototype._transform = function (chunk, encoding, cb) {\n  cb(null, chunk);\n};","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n'use strict';\n\nmodule.exports = Readable;\n\n/*<replacement>*/\nvar Duplex;\n/*</replacement>*/\n\nReadable.ReadableState = ReadableState;\n\n/*<replacement>*/\nvar EE = require('events').EventEmitter;\nvar EElistenerCount = function EElistenerCount(emitter, type) {\n  return emitter.listeners(type).length;\n};\n/*</replacement>*/\n\n/*<replacement>*/\nvar Stream = require('./internal/streams/stream');\n/*</replacement>*/\n\nvar Buffer = require('buffer').Buffer;\nvar OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};\nfunction _uint8ArrayToBuffer(chunk) {\n  return Buffer.from(chunk);\n}\nfunction _isUint8Array(obj) {\n  return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;\n}\n\n/*<replacement>*/\nvar debugUtil = require('util');\nvar debug;\nif (debugUtil && debugUtil.debuglog) {\n  debug = debugUtil.debuglog('stream');\n} else {\n  debug = function debug() {};\n}\n/*</replacement>*/\n\nvar BufferList = require('./internal/streams/buffer_list');\nvar destroyImpl = require('./internal/streams/destroy');\nvar _require = require('./internal/streams/state'),\n  getHighWaterMark = _require.getHighWaterMark;\nvar _require$codes = require('../errors').codes,\n  ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,\n  ERR_STREAM_PUSH_AFTER_EOF = _require$codes.ERR_STREAM_PUSH_AFTER_EOF,\n  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,\n  ERR_STREAM_UNSHIFT_AFTER_END_EVENT = _require$codes.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;\n\n// Lazy loaded to improve the startup performance.\nvar StringDecoder;\nvar createReadableStreamAsyncIterator;\nvar from;\nrequire('inherits')(Readable, Stream);\nvar errorOrDestroy = destroyImpl.errorOrDestroy;\nvar kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume'];\nfunction prependListener(emitter, event, fn) {\n  // Sadly this is not cacheable as some libraries bundle their own\n  // event emitter implementation with them.\n  if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn);\n\n  // This is a hack to make sure that our error handler is attached before any\n  // userland ones.  NEVER DO THIS. This is here only because this code needs\n  // to continue to work with older versions of Node.js that do not include\n  // the prependListener() method. The goal is to eventually remove this hack.\n  if (!emitter._events || !emitter._events[event]) emitter.on(event, fn);else if (Array.isArray(emitter._events[event])) emitter._events[event].unshift(fn);else emitter._events[event] = [fn, emitter._events[event]];\n}\nfunction ReadableState(options, stream, isDuplex) {\n  Duplex = Duplex || require('./_stream_duplex');\n  options = options || {};\n\n  // Duplex streams are both readable and writable, but share\n  // the same options object.\n  // However, some cases require setting options to different\n  // values for the readable and the writable sides of the duplex stream.\n  // These options can be provided separately as readableXXX and writableXXX.\n  if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof Duplex;\n\n  // object stream flag. Used to make read(n) ignore n and to\n  // make all the buffer merging and length checks go away\n  this.objectMode = !!options.objectMode;\n  if (isDuplex) this.objectMode = this.objectMode || !!options.readableObjectMode;\n\n  // the point at which it stops calling _read() to fill the buffer\n  // Note: 0 is a valid value, means \"don't call _read preemptively ever\"\n  this.highWaterMark = getHighWaterMark(this, options, 'readableHighWaterMark', isDuplex);\n\n  // A linked list is used to store data chunks instead of an array because the\n  // linked list can remove elements from the beginning faster than\n  // array.shift()\n  this.buffer = new BufferList();\n  this.length = 0;\n  this.pipes = null;\n  this.pipesCount = 0;\n  this.flowing = null;\n  this.ended = false;\n  this.endEmitted = false;\n  this.reading = false;\n\n  // a flag to be able to tell if the event 'readable'/'data' is emitted\n  // immediately, or on a later tick.  We set this to true at first, because\n  // any actions that shouldn't happen until \"later\" should generally also\n  // not happen before the first read call.\n  this.sync = true;\n\n  // whenever we return null, then we set a flag to say\n  // that we're awaiting a 'readable' event emission.\n  this.needReadable = false;\n  this.emittedReadable = false;\n  this.readableListening = false;\n  this.resumeScheduled = false;\n  this.paused = true;\n\n  // Should close be emitted on destroy. Defaults to true.\n  this.emitClose = options.emitClose !== false;\n\n  // Should .destroy() be called after 'end' (and potentially 'finish')\n  this.autoDestroy = !!options.autoDestroy;\n\n  // has it been destroyed\n  this.destroyed = false;\n\n  // Crypto is kind of old and crusty.  Historically, its default string\n  // encoding is 'binary' so we have to make this configurable.\n  // Everything else in the universe uses 'utf8', though.\n  this.defaultEncoding = options.defaultEncoding || 'utf8';\n\n  // the number of writers that are awaiting a drain event in .pipe()s\n  this.awaitDrain = 0;\n\n  // if true, a maybeReadMore has been scheduled\n  this.readingMore = false;\n  this.decoder = null;\n  this.encoding = null;\n  if (options.encoding) {\n    if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;\n    this.decoder = new StringDecoder(options.encoding);\n    this.encoding = options.encoding;\n  }\n}\nfunction Readable(options) {\n  Duplex = Duplex || require('./_stream_duplex');\n  if (!(this instanceof Readable)) return new Readable(options);\n\n  // Checking for a Stream.Duplex instance is faster here instead of inside\n  // the ReadableState constructor, at least with V8 6.5\n  var isDuplex = this instanceof Duplex;\n  this._readableState = new ReadableState(options, this, isDuplex);\n\n  // legacy\n  this.readable = true;\n  if (options) {\n    if (typeof options.read === 'function') this._read = options.read;\n    if (typeof options.destroy === 'function') this._destroy = options.destroy;\n  }\n  Stream.call(this);\n}\nObject.defineProperty(Readable.prototype, 'destroyed', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    if (this._readableState === undefined) {\n      return false;\n    }\n    return this._readableState.destroyed;\n  },\n  set: function set(value) {\n    // we ignore the value if the stream\n    // has not been initialized yet\n    if (!this._readableState) {\n      return;\n    }\n\n    // backward compatibility, the user is explicitly\n    // managing destroyed\n    this._readableState.destroyed = value;\n  }\n});\nReadable.prototype.destroy = destroyImpl.destroy;\nReadable.prototype._undestroy = destroyImpl.undestroy;\nReadable.prototype._destroy = function (err, cb) {\n  cb(err);\n};\n\n// Manually shove something into the read() buffer.\n// This returns true if the highWaterMark has not been hit yet,\n// similar to how Writable.write() returns true if you should\n// write() some more.\nReadable.prototype.push = function (chunk, encoding) {\n  var state = this._readableState;\n  var skipChunkCheck;\n  if (!state.objectMode) {\n    if (typeof chunk === 'string') {\n      encoding = encoding || state.defaultEncoding;\n      if (encoding !== state.encoding) {\n        chunk = Buffer.from(chunk, encoding);\n        encoding = '';\n      }\n      skipChunkCheck = true;\n    }\n  } else {\n    skipChunkCheck = true;\n  }\n  return readableAddChunk(this, chunk, encoding, false, skipChunkCheck);\n};\n\n// Unshift should *always* be something directly out of read()\nReadable.prototype.unshift = function (chunk) {\n  return readableAddChunk(this, chunk, null, true, false);\n};\nfunction readableAddChunk(stream, chunk, encoding, addToFront, skipChunkCheck) {\n  debug('readableAddChunk', chunk);\n  var state = stream._readableState;\n  if (chunk === null) {\n    state.reading = false;\n    onEofChunk(stream, state);\n  } else {\n    var er;\n    if (!skipChunkCheck) er = chunkInvalid(state, chunk);\n    if (er) {\n      errorOrDestroy(stream, er);\n    } else if (state.objectMode || chunk && chunk.length > 0) {\n      if (typeof chunk !== 'string' && !state.objectMode && Object.getPrototypeOf(chunk) !== Buffer.prototype) {\n        chunk = _uint8ArrayToBuffer(chunk);\n      }\n      if (addToFront) {\n        if (state.endEmitted) errorOrDestroy(stream, new ERR_STREAM_UNSHIFT_AFTER_END_EVENT());else addChunk(stream, state, chunk, true);\n      } else if (state.ended) {\n        errorOrDestroy(stream, new ERR_STREAM_PUSH_AFTER_EOF());\n      } else if (state.destroyed) {\n        return false;\n      } else {\n        state.reading = false;\n        if (state.decoder && !encoding) {\n          chunk = state.decoder.write(chunk);\n          if (state.objectMode || chunk.length !== 0) addChunk(stream, state, chunk, false);else maybeReadMore(stream, state);\n        } else {\n          addChunk(stream, state, chunk, false);\n        }\n      }\n    } else if (!addToFront) {\n      state.reading = false;\n      maybeReadMore(stream, state);\n    }\n  }\n\n  // We can push more data if we are below the highWaterMark.\n  // Also, if we have no data yet, we can stand some more bytes.\n  // This is to work around cases where hwm=0, such as the repl.\n  return !state.ended && (state.length < state.highWaterMark || state.length === 0);\n}\nfunction addChunk(stream, state, chunk, addToFront) {\n  if (state.flowing && state.length === 0 && !state.sync) {\n    state.awaitDrain = 0;\n    stream.emit('data', chunk);\n  } else {\n    // update the buffer info.\n    state.length += state.objectMode ? 1 : chunk.length;\n    if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk);\n    if (state.needReadable) emitReadable(stream);\n  }\n  maybeReadMore(stream, state);\n}\nfunction chunkInvalid(state, chunk) {\n  var er;\n  if (!_isUint8Array(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) {\n    er = new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer', 'Uint8Array'], chunk);\n  }\n  return er;\n}\nReadable.prototype.isPaused = function () {\n  return this._readableState.flowing === false;\n};\n\n// backwards compatibility.\nReadable.prototype.setEncoding = function (enc) {\n  if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;\n  var decoder = new StringDecoder(enc);\n  this._readableState.decoder = decoder;\n  // If setEncoding(null), decoder.encoding equals utf8\n  this._readableState.encoding = this._readableState.decoder.encoding;\n\n  // Iterate over current buffer to convert already stored Buffers:\n  var p = this._readableState.buffer.head;\n  var content = '';\n  while (p !== null) {\n    content += decoder.write(p.data);\n    p = p.next;\n  }\n  this._readableState.buffer.clear();\n  if (content !== '') this._readableState.buffer.push(content);\n  this._readableState.length = content.length;\n  return this;\n};\n\n// Don't raise the hwm > 1GB\nvar MAX_HWM = 0x40000000;\nfunction computeNewHighWaterMark(n) {\n  if (n >= MAX_HWM) {\n    // TODO(ronag): Throw ERR_VALUE_OUT_OF_RANGE.\n    n = MAX_HWM;\n  } else {\n    // Get the next highest power of 2 to prevent increasing hwm excessively in\n    // tiny amounts\n    n--;\n    n |= n >>> 1;\n    n |= n >>> 2;\n    n |= n >>> 4;\n    n |= n >>> 8;\n    n |= n >>> 16;\n    n++;\n  }\n  return n;\n}\n\n// This function is designed to be inlinable, so please take care when making\n// changes to the function body.\nfunction howMuchToRead(n, state) {\n  if (n <= 0 || state.length === 0 && state.ended) return 0;\n  if (state.objectMode) return 1;\n  if (n !== n) {\n    // Only flow one buffer at a time\n    if (state.flowing && state.length) return state.buffer.head.data.length;else return state.length;\n  }\n  // If we're asking for more than the current hwm, then raise the hwm.\n  if (n > state.highWaterMark) state.highWaterMark = computeNewHighWaterMark(n);\n  if (n <= state.length) return n;\n  // Don't have enough\n  if (!state.ended) {\n    state.needReadable = true;\n    return 0;\n  }\n  return state.length;\n}\n\n// you can override either this method, or the async _read(n) below.\nReadable.prototype.read = function (n) {\n  debug('read', n);\n  n = parseInt(n, 10);\n  var state = this._readableState;\n  var nOrig = n;\n  if (n !== 0) state.emittedReadable = false;\n\n  // if we're doing read(0) to trigger a readable event, but we\n  // already have a bunch of data in the buffer, then just trigger\n  // the 'readable' event and move on.\n  if (n === 0 && state.needReadable && ((state.highWaterMark !== 0 ? state.length >= state.highWaterMark : state.length > 0) || state.ended)) {\n    debug('read: emitReadable', state.length, state.ended);\n    if (state.length === 0 && state.ended) endReadable(this);else emitReadable(this);\n    return null;\n  }\n  n = howMuchToRead(n, state);\n\n  // if we've ended, and we're now clear, then finish it up.\n  if (n === 0 && state.ended) {\n    if (state.length === 0) endReadable(this);\n    return null;\n  }\n\n  // All the actual chunk generation logic needs to be\n  // *below* the call to _read.  The reason is that in certain\n  // synthetic stream cases, such as passthrough streams, _read\n  // may be a completely synchronous operation which may change\n  // the state of the read buffer, providing enough data when\n  // before there was *not* enough.\n  //\n  // So, the steps are:\n  // 1. Figure out what the state of things will be after we do\n  // a read from the buffer.\n  //\n  // 2. If that resulting state will trigger a _read, then call _read.\n  // Note that this may be asynchronous, or synchronous.  Yes, it is\n  // deeply ugly to write APIs this way, but that still doesn't mean\n  // that the Readable class should behave improperly, as streams are\n  // designed to be sync/async agnostic.\n  // Take note if the _read call is sync or async (ie, if the read call\n  // has returned yet), so that we know whether or not it's safe to emit\n  // 'readable' etc.\n  //\n  // 3. Actually pull the requested chunks out of the buffer and return.\n\n  // if we need a readable event, then we need to do some reading.\n  var doRead = state.needReadable;\n  debug('need readable', doRead);\n\n  // if we currently have less than the highWaterMark, then also read some\n  if (state.length === 0 || state.length - n < state.highWaterMark) {\n    doRead = true;\n    debug('length less than watermark', doRead);\n  }\n\n  // however, if we've ended, then there's no point, and if we're already\n  // reading, then it's unnecessary.\n  if (state.ended || state.reading) {\n    doRead = false;\n    debug('reading or ended', doRead);\n  } else if (doRead) {\n    debug('do read');\n    state.reading = true;\n    state.sync = true;\n    // if the length is currently zero, then we *need* a readable event.\n    if (state.length === 0) state.needReadable = true;\n    // call internal read method\n    this._read(state.highWaterMark);\n    state.sync = false;\n    // If _read pushed data synchronously, then `reading` will be false,\n    // and we need to re-evaluate how much data we can return to the user.\n    if (!state.reading) n = howMuchToRead(nOrig, state);\n  }\n  var ret;\n  if (n > 0) ret = fromList(n, state);else ret = null;\n  if (ret === null) {\n    state.needReadable = state.length <= state.highWaterMark;\n    n = 0;\n  } else {\n    state.length -= n;\n    state.awaitDrain = 0;\n  }\n  if (state.length === 0) {\n    // If we have nothing in the buffer, then we want to know\n    // as soon as we *do* get something into the buffer.\n    if (!state.ended) state.needReadable = true;\n\n    // If we tried to read() past the EOF, then emit end on the next tick.\n    if (nOrig !== n && state.ended) endReadable(this);\n  }\n  if (ret !== null) this.emit('data', ret);\n  return ret;\n};\nfunction onEofChunk(stream, state) {\n  debug('onEofChunk');\n  if (state.ended) return;\n  if (state.decoder) {\n    var chunk = state.decoder.end();\n    if (chunk && chunk.length) {\n      state.buffer.push(chunk);\n      state.length += state.objectMode ? 1 : chunk.length;\n    }\n  }\n  state.ended = true;\n  if (state.sync) {\n    // if we are sync, wait until next tick to emit the data.\n    // Otherwise we risk emitting data in the flow()\n    // the readable code triggers during a read() call\n    emitReadable(stream);\n  } else {\n    // emit 'readable' now to make sure it gets picked up.\n    state.needReadable = false;\n    if (!state.emittedReadable) {\n      state.emittedReadable = true;\n      emitReadable_(stream);\n    }\n  }\n}\n\n// Don't emit readable right away in sync mode, because this can trigger\n// another read() call => stack overflow.  This way, it might trigger\n// a nextTick recursion warning, but that's not so bad.\nfunction emitReadable(stream) {\n  var state = stream._readableState;\n  debug('emitReadable', state.needReadable, state.emittedReadable);\n  state.needReadable = false;\n  if (!state.emittedReadable) {\n    debug('emitReadable', state.flowing);\n    state.emittedReadable = true;\n    process.nextTick(emitReadable_, stream);\n  }\n}\nfunction emitReadable_(stream) {\n  var state = stream._readableState;\n  debug('emitReadable_', state.destroyed, state.length, state.ended);\n  if (!state.destroyed && (state.length || state.ended)) {\n    stream.emit('readable');\n    state.emittedReadable = false;\n  }\n\n  // The stream needs another readable event if\n  // 1. It is not flowing, as the flow mechanism will take\n  //    care of it.\n  // 2. It is not ended.\n  // 3. It is below the highWaterMark, so we can schedule\n  //    another readable later.\n  state.needReadable = !state.flowing && !state.ended && state.length <= state.highWaterMark;\n  flow(stream);\n}\n\n// at this point, the user has presumably seen the 'readable' event,\n// and called read() to consume some data.  that may have triggered\n// in turn another _read(n) call, in which case reading = true if\n// it's in progress.\n// However, if we're not ended, or reading, and the length < hwm,\n// then go ahead and try to read some more preemptively.\nfunction maybeReadMore(stream, state) {\n  if (!state.readingMore) {\n    state.readingMore = true;\n    process.nextTick(maybeReadMore_, stream, state);\n  }\n}\nfunction maybeReadMore_(stream, state) {\n  // Attempt to read more data if we should.\n  //\n  // The conditions for reading more data are (one of):\n  // - Not enough data buffered (state.length < state.highWaterMark). The loop\n  //   is responsible for filling the buffer with enough data if such data\n  //   is available. If highWaterMark is 0 and we are not in the flowing mode\n  //   we should _not_ attempt to buffer any extra data. We'll get more data\n  //   when the stream consumer calls read() instead.\n  // - No data in the buffer, and the stream is in flowing mode. In this mode\n  //   the loop below is responsible for ensuring read() is called. Failing to\n  //   call read here would abort the flow and there's no other mechanism for\n  //   continuing the flow if the stream consumer has just subscribed to the\n  //   'data' event.\n  //\n  // In addition to the above conditions to keep reading data, the following\n  // conditions prevent the data from being read:\n  // - The stream has ended (state.ended).\n  // - There is already a pending 'read' operation (state.reading). This is a\n  //   case where the the stream has called the implementation defined _read()\n  //   method, but they are processing the call asynchronously and have _not_\n  //   called push() with new data. In this case we skip performing more\n  //   read()s. The execution ends in this method again after the _read() ends\n  //   up calling push() with more data.\n  while (!state.reading && !state.ended && (state.length < state.highWaterMark || state.flowing && state.length === 0)) {\n    var len = state.length;\n    debug('maybeReadMore read 0');\n    stream.read(0);\n    if (len === state.length)\n      // didn't get any data, stop spinning.\n      break;\n  }\n  state.readingMore = false;\n}\n\n// abstract method.  to be overridden in specific implementation classes.\n// call cb(er, data) where data is <= n in length.\n// for virtual (non-string, non-buffer) streams, \"length\" is somewhat\n// arbitrary, and perhaps not very meaningful.\nReadable.prototype._read = function (n) {\n  errorOrDestroy(this, new ERR_METHOD_NOT_IMPLEMENTED('_read()'));\n};\nReadable.prototype.pipe = function (dest, pipeOpts) {\n  var src = this;\n  var state = this._readableState;\n  switch (state.pipesCount) {\n    case 0:\n      state.pipes = dest;\n      break;\n    case 1:\n      state.pipes = [state.pipes, dest];\n      break;\n    default:\n      state.pipes.push(dest);\n      break;\n  }\n  state.pipesCount += 1;\n  debug('pipe count=%d opts=%j', state.pipesCount, pipeOpts);\n  var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr;\n  var endFn = doEnd ? onend : unpipe;\n  if (state.endEmitted) process.nextTick(endFn);else src.once('end', endFn);\n  dest.on('unpipe', onunpipe);\n  function onunpipe(readable, unpipeInfo) {\n    debug('onunpipe');\n    if (readable === src) {\n      if (unpipeInfo && unpipeInfo.hasUnpiped === false) {\n        unpipeInfo.hasUnpiped = true;\n        cleanup();\n      }\n    }\n  }\n  function onend() {\n    debug('onend');\n    dest.end();\n  }\n\n  // when the dest drains, it reduces the awaitDrain counter\n  // on the source.  This would be more elegant with a .once()\n  // handler in flow(), but adding and removing repeatedly is\n  // too slow.\n  var ondrain = pipeOnDrain(src);\n  dest.on('drain', ondrain);\n  var cleanedUp = false;\n  function cleanup() {\n    debug('cleanup');\n    // cleanup event handlers once the pipe is broken\n    dest.removeListener('close', onclose);\n    dest.removeListener('finish', onfinish);\n    dest.removeListener('drain', ondrain);\n    dest.removeListener('error', onerror);\n    dest.removeListener('unpipe', onunpipe);\n    src.removeListener('end', onend);\n    src.removeListener('end', unpipe);\n    src.removeListener('data', ondata);\n    cleanedUp = true;\n\n    // if the reader is waiting for a drain event from this\n    // specific writer, then it would cause it to never start\n    // flowing again.\n    // So, if this is awaiting a drain, then we just call it now.\n    // If we don't know, then assume that we are waiting for one.\n    if (state.awaitDrain && (!dest._writableState || dest._writableState.needDrain)) ondrain();\n  }\n  src.on('data', ondata);\n  function ondata(chunk) {\n    debug('ondata');\n    var ret = dest.write(chunk);\n    debug('dest.write', ret);\n    if (ret === false) {\n      // If the user unpiped during `dest.write()`, it is possible\n      // to get stuck in a permanently paused state if that write\n      // also returned false.\n      // => Check whether `dest` is still a piping destination.\n      if ((state.pipesCount === 1 && state.pipes === dest || state.pipesCount > 1 && indexOf(state.pipes, dest) !== -1) && !cleanedUp) {\n        debug('false write response, pause', state.awaitDrain);\n        state.awaitDrain++;\n      }\n      src.pause();\n    }\n  }\n\n  // if the dest has an error, then stop piping into it.\n  // however, don't suppress the throwing behavior for this.\n  function onerror(er) {\n    debug('onerror', er);\n    unpipe();\n    dest.removeListener('error', onerror);\n    if (EElistenerCount(dest, 'error') === 0) errorOrDestroy(dest, er);\n  }\n\n  // Make sure our error handler is attached before userland ones.\n  prependListener(dest, 'error', onerror);\n\n  // Both close and finish should trigger unpipe, but only once.\n  function onclose() {\n    dest.removeListener('finish', onfinish);\n    unpipe();\n  }\n  dest.once('close', onclose);\n  function onfinish() {\n    debug('onfinish');\n    dest.removeListener('close', onclose);\n    unpipe();\n  }\n  dest.once('finish', onfinish);\n  function unpipe() {\n    debug('unpipe');\n    src.unpipe(dest);\n  }\n\n  // tell the dest that it's being piped to\n  dest.emit('pipe', src);\n\n  // start the flow if it hasn't been started already.\n  if (!state.flowing) {\n    debug('pipe resume');\n    src.resume();\n  }\n  return dest;\n};\nfunction pipeOnDrain(src) {\n  return function pipeOnDrainFunctionResult() {\n    var state = src._readableState;\n    debug('pipeOnDrain', state.awaitDrain);\n    if (state.awaitDrain) state.awaitDrain--;\n    if (state.awaitDrain === 0 && EElistenerCount(src, 'data')) {\n      state.flowing = true;\n      flow(src);\n    }\n  };\n}\nReadable.prototype.unpipe = function (dest) {\n  var state = this._readableState;\n  var unpipeInfo = {\n    hasUnpiped: false\n  };\n\n  // if we're not piping anywhere, then do nothing.\n  if (state.pipesCount === 0) return this;\n\n  // just one destination.  most common case.\n  if (state.pipesCount === 1) {\n    // passed in one, but it's not the right one.\n    if (dest && dest !== state.pipes) return this;\n    if (!dest) dest = state.pipes;\n\n    // got a match.\n    state.pipes = null;\n    state.pipesCount = 0;\n    state.flowing = false;\n    if (dest) dest.emit('unpipe', this, unpipeInfo);\n    return this;\n  }\n\n  // slow case. multiple pipe destinations.\n\n  if (!dest) {\n    // remove all.\n    var dests = state.pipes;\n    var len = state.pipesCount;\n    state.pipes = null;\n    state.pipesCount = 0;\n    state.flowing = false;\n    for (var i = 0; i < len; i++) dests[i].emit('unpipe', this, {\n      hasUnpiped: false\n    });\n    return this;\n  }\n\n  // try to find the right one.\n  var index = indexOf(state.pipes, dest);\n  if (index === -1) return this;\n  state.pipes.splice(index, 1);\n  state.pipesCount -= 1;\n  if (state.pipesCount === 1) state.pipes = state.pipes[0];\n  dest.emit('unpipe', this, unpipeInfo);\n  return this;\n};\n\n// set up data events if they are asked for\n// Ensure readable listeners eventually get something\nReadable.prototype.on = function (ev, fn) {\n  var res = Stream.prototype.on.call(this, ev, fn);\n  var state = this._readableState;\n  if (ev === 'data') {\n    // update readableListening so that resume() may be a no-op\n    // a few lines down. This is needed to support once('readable').\n    state.readableListening = this.listenerCount('readable') > 0;\n\n    // Try start flowing on next tick if stream isn't explicitly paused\n    if (state.flowing !== false) this.resume();\n  } else if (ev === 'readable') {\n    if (!state.endEmitted && !state.readableListening) {\n      state.readableListening = state.needReadable = true;\n      state.flowing = false;\n      state.emittedReadable = false;\n      debug('on readable', state.length, state.reading);\n      if (state.length) {\n        emitReadable(this);\n      } else if (!state.reading) {\n        process.nextTick(nReadingNextTick, this);\n      }\n    }\n  }\n  return res;\n};\nReadable.prototype.addListener = Readable.prototype.on;\nReadable.prototype.removeListener = function (ev, fn) {\n  var res = Stream.prototype.removeListener.call(this, ev, fn);\n  if (ev === 'readable') {\n    // We need to check if there is someone still listening to\n    // readable and reset the state. However this needs to happen\n    // after readable has been emitted but before I/O (nextTick) to\n    // support once('readable', fn) cycles. This means that calling\n    // resume within the same tick will have no\n    // effect.\n    process.nextTick(updateReadableListening, this);\n  }\n  return res;\n};\nReadable.prototype.removeAllListeners = function (ev) {\n  var res = Stream.prototype.removeAllListeners.apply(this, arguments);\n  if (ev === 'readable' || ev === undefined) {\n    // We need to check if there is someone still listening to\n    // readable and reset the state. However this needs to happen\n    // after readable has been emitted but before I/O (nextTick) to\n    // support once('readable', fn) cycles. This means that calling\n    // resume within the same tick will have no\n    // effect.\n    process.nextTick(updateReadableListening, this);\n  }\n  return res;\n};\nfunction updateReadableListening(self) {\n  var state = self._readableState;\n  state.readableListening = self.listenerCount('readable') > 0;\n  if (state.resumeScheduled && !state.paused) {\n    // flowing needs to be set to true now, otherwise\n    // the upcoming resume will not flow.\n    state.flowing = true;\n\n    // crude way to check if we should resume\n  } else if (self.listenerCount('data') > 0) {\n    self.resume();\n  }\n}\nfunction nReadingNextTick(self) {\n  debug('readable nexttick read 0');\n  self.read(0);\n}\n\n// pause() and resume() are remnants of the legacy readable stream API\n// If the user uses them, then switch into old mode.\nReadable.prototype.resume = function () {\n  var state = this._readableState;\n  if (!state.flowing) {\n    debug('resume');\n    // we flow only if there is no one listening\n    // for readable, but we still have to call\n    // resume()\n    state.flowing = !state.readableListening;\n    resume(this, state);\n  }\n  state.paused = false;\n  return this;\n};\nfunction resume(stream, state) {\n  if (!state.resumeScheduled) {\n    state.resumeScheduled = true;\n    process.nextTick(resume_, stream, state);\n  }\n}\nfunction resume_(stream, state) {\n  debug('resume', state.reading);\n  if (!state.reading) {\n    stream.read(0);\n  }\n  state.resumeScheduled = false;\n  stream.emit('resume');\n  flow(stream);\n  if (state.flowing && !state.reading) stream.read(0);\n}\nReadable.prototype.pause = function () {\n  debug('call pause flowing=%j', this._readableState.flowing);\n  if (this._readableState.flowing !== false) {\n    debug('pause');\n    this._readableState.flowing = false;\n    this.emit('pause');\n  }\n  this._readableState.paused = true;\n  return this;\n};\nfunction flow(stream) {\n  var state = stream._readableState;\n  debug('flow', state.flowing);\n  while (state.flowing && stream.read() !== null);\n}\n\n// wrap an old-style stream as the async data source.\n// This is *not* part of the readable stream interface.\n// It is an ugly unfortunate mess of history.\nReadable.prototype.wrap = function (stream) {\n  var _this = this;\n  var state = this._readableState;\n  var paused = false;\n  stream.on('end', function () {\n    debug('wrapped end');\n    if (state.decoder && !state.ended) {\n      var chunk = state.decoder.end();\n      if (chunk && chunk.length) _this.push(chunk);\n    }\n    _this.push(null);\n  });\n  stream.on('data', function (chunk) {\n    debug('wrapped data');\n    if (state.decoder) chunk = state.decoder.write(chunk);\n\n    // don't skip over falsy values in objectMode\n    if (state.objectMode && (chunk === null || chunk === undefined)) return;else if (!state.objectMode && (!chunk || !chunk.length)) return;\n    var ret = _this.push(chunk);\n    if (!ret) {\n      paused = true;\n      stream.pause();\n    }\n  });\n\n  // proxy all the other methods.\n  // important when wrapping filters and duplexes.\n  for (var i in stream) {\n    if (this[i] === undefined && typeof stream[i] === 'function') {\n      this[i] = function methodWrap(method) {\n        return function methodWrapReturnFunction() {\n          return stream[method].apply(stream, arguments);\n        };\n      }(i);\n    }\n  }\n\n  // proxy certain important events.\n  for (var n = 0; n < kProxyEvents.length; n++) {\n    stream.on(kProxyEvents[n], this.emit.bind(this, kProxyEvents[n]));\n  }\n\n  // when we try to consume some more bytes, simply unpause the\n  // underlying stream.\n  this._read = function (n) {\n    debug('wrapped _read', n);\n    if (paused) {\n      paused = false;\n      stream.resume();\n    }\n  };\n  return this;\n};\nif (typeof Symbol === 'function') {\n  Readable.prototype[Symbol.asyncIterator] = function () {\n    if (createReadableStreamAsyncIterator === undefined) {\n      createReadableStreamAsyncIterator = require('./internal/streams/async_iterator');\n    }\n    return createReadableStreamAsyncIterator(this);\n  };\n}\nObject.defineProperty(Readable.prototype, 'readableHighWaterMark', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._readableState.highWaterMark;\n  }\n});\nObject.defineProperty(Readable.prototype, 'readableBuffer', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._readableState && this._readableState.buffer;\n  }\n});\nObject.defineProperty(Readable.prototype, 'readableFlowing', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._readableState.flowing;\n  },\n  set: function set(state) {\n    if (this._readableState) {\n      this._readableState.flowing = state;\n    }\n  }\n});\n\n// exposed for testing purposes only.\nReadable._fromList = fromList;\nObject.defineProperty(Readable.prototype, 'readableLength', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._readableState.length;\n  }\n});\n\n// Pluck off n bytes from an array of buffers.\n// Length is the combined lengths of all the buffers in the list.\n// This function is designed to be inlinable, so please take care when making\n// changes to the function body.\nfunction fromList(n, state) {\n  // nothing buffered\n  if (state.length === 0) return null;\n  var ret;\n  if (state.objectMode) ret = state.buffer.shift();else if (!n || n >= state.length) {\n    // read it all, truncate the list\n    if (state.decoder) ret = state.buffer.join('');else if (state.buffer.length === 1) ret = state.buffer.first();else ret = state.buffer.concat(state.length);\n    state.buffer.clear();\n  } else {\n    // read part of list\n    ret = state.buffer.consume(n, state.decoder);\n  }\n  return ret;\n}\nfunction endReadable(stream) {\n  var state = stream._readableState;\n  debug('endReadable', state.endEmitted);\n  if (!state.endEmitted) {\n    state.ended = true;\n    process.nextTick(endReadableNT, state, stream);\n  }\n}\nfunction endReadableNT(state, stream) {\n  debug('endReadableNT', state.endEmitted, state.length);\n\n  // Check that we didn't get one last unshift.\n  if (!state.endEmitted && state.length === 0) {\n    state.endEmitted = true;\n    stream.readable = false;\n    stream.emit('end');\n    if (state.autoDestroy) {\n      // In case of duplex streams we need a way to detect\n      // if the writable side is ready for autoDestroy as well\n      var wState = stream._writableState;\n      if (!wState || wState.autoDestroy && wState.finished) {\n        stream.destroy();\n      }\n    }\n  }\n}\nif (typeof Symbol === 'function') {\n  Readable.from = function (iterable, opts) {\n    if (from === undefined) {\n      from = require('./internal/streams/from');\n    }\n    return from(Readable, iterable, opts);\n  };\n}\nfunction indexOf(xs, x) {\n  for (var i = 0, l = xs.length; i < l; i++) {\n    if (xs[i] === x) return i;\n  }\n  return -1;\n}","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// a transform stream is a readable/writable stream where you do\n// something with the data.  Sometimes it's called a \"filter\",\n// but that's not a great name for it, since that implies a thing where\n// some bits pass through, and others are simply ignored.  (That would\n// be a valid example of a transform, of course.)\n//\n// While the output is causally related to the input, it's not a\n// necessarily symmetric or synchronous transformation.  For example,\n// a zlib stream might take multiple plain-text writes(), and then\n// emit a single compressed chunk some time in the future.\n//\n// Here's how this works:\n//\n// The Transform stream has all the aspects of the readable and writable\n// stream classes.  When you write(chunk), that calls _write(chunk,cb)\n// internally, and returns false if there's a lot of pending writes\n// buffered up.  When you call read(), that calls _read(n) until\n// there's enough pending readable data buffered up.\n//\n// In a transform stream, the written data is placed in a buffer.  When\n// _read(n) is called, it transforms the queued up data, calling the\n// buffered _write cb's as it consumes chunks.  If consuming a single\n// written chunk would result in multiple output chunks, then the first\n// outputted bit calls the readcb, and subsequent chunks just go into\n// the read buffer, and will cause it to emit 'readable' if necessary.\n//\n// This way, back-pressure is actually determined by the reading side,\n// since _read has to be called to start processing a new chunk.  However,\n// a pathological inflate type of transform can cause excessive buffering\n// here.  For example, imagine a stream where every byte of input is\n// interpreted as an integer from 0-255, and then results in that many\n// bytes of output.  Writing the 4 bytes {ff,ff,ff,ff} would result in\n// 1kb of data being output.  In this case, you could write a very small\n// amount of input, and end up with a very large amount of output.  In\n// such a pathological inflating mechanism, there'd be no way to tell\n// the system to stop doing the transform.  A single 4MB write could\n// cause the system to run out of memory.\n//\n// However, even in such a pathological case, only a single written chunk\n// would be consumed, and then the rest would wait (un-transformed) until\n// the results of the previous transformed chunk were consumed.\n\n'use strict';\n\nmodule.exports = Transform;\nvar _require$codes = require('../errors').codes,\n  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,\n  ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,\n  ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING,\n  ERR_TRANSFORM_WITH_LENGTH_0 = _require$codes.ERR_TRANSFORM_WITH_LENGTH_0;\nvar Duplex = require('./_stream_duplex');\nrequire('inherits')(Transform, Duplex);\nfunction afterTransform(er, data) {\n  var ts = this._transformState;\n  ts.transforming = false;\n  var cb = ts.writecb;\n  if (cb === null) {\n    return this.emit('error', new ERR_MULTIPLE_CALLBACK());\n  }\n  ts.writechunk = null;\n  ts.writecb = null;\n  if (data != null)\n    // single equals check for both `null` and `undefined`\n    this.push(data);\n  cb(er);\n  var rs = this._readableState;\n  rs.reading = false;\n  if (rs.needReadable || rs.length < rs.highWaterMark) {\n    this._read(rs.highWaterMark);\n  }\n}\nfunction Transform(options) {\n  if (!(this instanceof Transform)) return new Transform(options);\n  Duplex.call(this, options);\n  this._transformState = {\n    afterTransform: afterTransform.bind(this),\n    needTransform: false,\n    transforming: false,\n    writecb: null,\n    writechunk: null,\n    writeencoding: null\n  };\n\n  // start out asking for a readable event once data is transformed.\n  this._readableState.needReadable = true;\n\n  // we have implemented the _read method, and done the other things\n  // that Readable wants before the first _read call, so unset the\n  // sync guard flag.\n  this._readableState.sync = false;\n  if (options) {\n    if (typeof options.transform === 'function') this._transform = options.transform;\n    if (typeof options.flush === 'function') this._flush = options.flush;\n  }\n\n  // When the writable side finishes, then flush out anything remaining.\n  this.on('prefinish', prefinish);\n}\nfunction prefinish() {\n  var _this = this;\n  if (typeof this._flush === 'function' && !this._readableState.destroyed) {\n    this._flush(function (er, data) {\n      done(_this, er, data);\n    });\n  } else {\n    done(this, null, null);\n  }\n}\nTransform.prototype.push = function (chunk, encoding) {\n  this._transformState.needTransform = false;\n  return Duplex.prototype.push.call(this, chunk, encoding);\n};\n\n// This is the part where you do stuff!\n// override this function in implementation classes.\n// 'chunk' is an input chunk.\n//\n// Call `push(newChunk)` to pass along transformed output\n// to the readable side.  You may call 'push' zero or more times.\n//\n// Call `cb(err)` when you are done with this chunk.  If you pass\n// an error, then that'll put the hurt on the whole operation.  If you\n// never call cb(), then you'll never get another chunk.\nTransform.prototype._transform = function (chunk, encoding, cb) {\n  cb(new ERR_METHOD_NOT_IMPLEMENTED('_transform()'));\n};\nTransform.prototype._write = function (chunk, encoding, cb) {\n  var ts = this._transformState;\n  ts.writecb = cb;\n  ts.writechunk = chunk;\n  ts.writeencoding = encoding;\n  if (!ts.transforming) {\n    var rs = this._readableState;\n    if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMark);\n  }\n};\n\n// Doesn't matter what the args are here.\n// _transform does all the work.\n// That we got here means that the readable side wants more data.\nTransform.prototype._read = function (n) {\n  var ts = this._transformState;\n  if (ts.writechunk !== null && !ts.transforming) {\n    ts.transforming = true;\n    this._transform(ts.writechunk, ts.writeencoding, ts.afterTransform);\n  } else {\n    // mark that we need a transform, so that any data that comes in\n    // will get processed, now that we've asked for it.\n    ts.needTransform = true;\n  }\n};\nTransform.prototype._destroy = function (err, cb) {\n  Duplex.prototype._destroy.call(this, err, function (err2) {\n    cb(err2);\n  });\n};\nfunction done(stream, er, data) {\n  if (er) return stream.emit('error', er);\n  if (data != null)\n    // single equals check for both `null` and `undefined`\n    stream.push(data);\n\n  // TODO(BridgeAR): Write a test for these two error cases\n  // if there's nothing in the write buffer, then that means\n  // that nothing more will ever be provided\n  if (stream._writableState.length) throw new ERR_TRANSFORM_WITH_LENGTH_0();\n  if (stream._transformState.transforming) throw new ERR_TRANSFORM_ALREADY_TRANSFORMING();\n  return stream.push(null);\n}","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// A bit simpler than readable streams.\n// Implement an async ._write(chunk, encoding, cb), and it'll handle all\n// the drain event emission and buffering.\n\n'use strict';\n\nmodule.exports = Writable;\n\n/* <replacement> */\nfunction WriteReq(chunk, encoding, cb) {\n  this.chunk = chunk;\n  this.encoding = encoding;\n  this.callback = cb;\n  this.next = null;\n}\n\n// It seems a linked list but it is not\n// there will be only 2 of these for each stream\nfunction CorkedRequest(state) {\n  var _this = this;\n  this.next = null;\n  this.entry = null;\n  this.finish = function () {\n    onCorkedFinish(_this, state);\n  };\n}\n/* </replacement> */\n\n/*<replacement>*/\nvar Duplex;\n/*</replacement>*/\n\nWritable.WritableState = WritableState;\n\n/*<replacement>*/\nvar internalUtil = {\n  deprecate: require('util-deprecate')\n};\n/*</replacement>*/\n\n/*<replacement>*/\nvar Stream = require('./internal/streams/stream');\n/*</replacement>*/\n\nvar Buffer = require('buffer').Buffer;\nvar OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};\nfunction _uint8ArrayToBuffer(chunk) {\n  return Buffer.from(chunk);\n}\nfunction _isUint8Array(obj) {\n  return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;\n}\nvar destroyImpl = require('./internal/streams/destroy');\nvar _require = require('./internal/streams/state'),\n  getHighWaterMark = _require.getHighWaterMark;\nvar _require$codes = require('../errors').codes,\n  ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,\n  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,\n  ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,\n  ERR_STREAM_CANNOT_PIPE = _require$codes.ERR_STREAM_CANNOT_PIPE,\n  ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED,\n  ERR_STREAM_NULL_VALUES = _require$codes.ERR_STREAM_NULL_VALUES,\n  ERR_STREAM_WRITE_AFTER_END = _require$codes.ERR_STREAM_WRITE_AFTER_END,\n  ERR_UNKNOWN_ENCODING = _require$codes.ERR_UNKNOWN_ENCODING;\nvar errorOrDestroy = destroyImpl.errorOrDestroy;\nrequire('inherits')(Writable, Stream);\nfunction nop() {}\nfunction WritableState(options, stream, isDuplex) {\n  Duplex = Duplex || require('./_stream_duplex');\n  options = options || {};\n\n  // Duplex streams are both readable and writable, but share\n  // the same options object.\n  // However, some cases require setting options to different\n  // values for the readable and the writable sides of the duplex stream,\n  // e.g. options.readableObjectMode vs. options.writableObjectMode, etc.\n  if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof Duplex;\n\n  // object stream flag to indicate whether or not this stream\n  // contains buffers or objects.\n  this.objectMode = !!options.objectMode;\n  if (isDuplex) this.objectMode = this.objectMode || !!options.writableObjectMode;\n\n  // the point at which write() starts returning false\n  // Note: 0 is a valid value, means that we always return false if\n  // the entire buffer is not flushed immediately on write()\n  this.highWaterMark = getHighWaterMark(this, options, 'writableHighWaterMark', isDuplex);\n\n  // if _final has been called\n  this.finalCalled = false;\n\n  // drain event flag.\n  this.needDrain = false;\n  // at the start of calling end()\n  this.ending = false;\n  // when end() has been called, and returned\n  this.ended = false;\n  // when 'finish' is emitted\n  this.finished = false;\n\n  // has it been destroyed\n  this.destroyed = false;\n\n  // should we decode strings into buffers before passing to _write?\n  // this is here so that some node-core streams can optimize string\n  // handling at a lower level.\n  var noDecode = options.decodeStrings === false;\n  this.decodeStrings = !noDecode;\n\n  // Crypto is kind of old and crusty.  Historically, its default string\n  // encoding is 'binary' so we have to make this configurable.\n  // Everything else in the universe uses 'utf8', though.\n  this.defaultEncoding = options.defaultEncoding || 'utf8';\n\n  // not an actual buffer we keep track of, but a measurement\n  // of how much we're waiting to get pushed to some underlying\n  // socket or file.\n  this.length = 0;\n\n  // a flag to see when we're in the middle of a write.\n  this.writing = false;\n\n  // when true all writes will be buffered until .uncork() call\n  this.corked = 0;\n\n  // a flag to be able to tell if the onwrite cb is called immediately,\n  // or on a later tick.  We set this to true at first, because any\n  // actions that shouldn't happen until \"later\" should generally also\n  // not happen before the first write call.\n  this.sync = true;\n\n  // a flag to know if we're processing previously buffered items, which\n  // may call the _write() callback in the same tick, so that we don't\n  // end up in an overlapped onwrite situation.\n  this.bufferProcessing = false;\n\n  // the callback that's passed to _write(chunk,cb)\n  this.onwrite = function (er) {\n    onwrite(stream, er);\n  };\n\n  // the callback that the user supplies to write(chunk,encoding,cb)\n  this.writecb = null;\n\n  // the amount that is being written when _write is called.\n  this.writelen = 0;\n  this.bufferedRequest = null;\n  this.lastBufferedRequest = null;\n\n  // number of pending user-supplied write callbacks\n  // this must be 0 before 'finish' can be emitted\n  this.pendingcb = 0;\n\n  // emit prefinish if the only thing we're waiting for is _write cbs\n  // This is relevant for synchronous Transform streams\n  this.prefinished = false;\n\n  // True if the error was already emitted and should not be thrown again\n  this.errorEmitted = false;\n\n  // Should close be emitted on destroy. Defaults to true.\n  this.emitClose = options.emitClose !== false;\n\n  // Should .destroy() be called after 'finish' (and potentially 'end')\n  this.autoDestroy = !!options.autoDestroy;\n\n  // count buffered requests\n  this.bufferedRequestCount = 0;\n\n  // allocate the first CorkedRequest, there is always\n  // one allocated and free to use, and we maintain at most two\n  this.corkedRequestsFree = new CorkedRequest(this);\n}\nWritableState.prototype.getBuffer = function getBuffer() {\n  var current = this.bufferedRequest;\n  var out = [];\n  while (current) {\n    out.push(current);\n    current = current.next;\n  }\n  return out;\n};\n(function () {\n  try {\n    Object.defineProperty(WritableState.prototype, 'buffer', {\n      get: internalUtil.deprecate(function writableStateBufferGetter() {\n        return this.getBuffer();\n      }, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.', 'DEP0003')\n    });\n  } catch (_) {}\n})();\n\n// Test _writableState for inheritance to account for Duplex streams,\n// whose prototype chain only points to Readable.\nvar realHasInstance;\nif (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.prototype[Symbol.hasInstance] === 'function') {\n  realHasInstance = Function.prototype[Symbol.hasInstance];\n  Object.defineProperty(Writable, Symbol.hasInstance, {\n    value: function value(object) {\n      if (realHasInstance.call(this, object)) return true;\n      if (this !== Writable) return false;\n      return object && object._writableState instanceof WritableState;\n    }\n  });\n} else {\n  realHasInstance = function realHasInstance(object) {\n    return object instanceof this;\n  };\n}\nfunction Writable(options) {\n  Duplex = Duplex || require('./_stream_duplex');\n\n  // Writable ctor is applied to Duplexes, too.\n  // `realHasInstance` is necessary because using plain `instanceof`\n  // would return false, as no `_writableState` property is attached.\n\n  // Trying to use the custom `instanceof` for Writable here will also break the\n  // Node.js LazyTransform implementation, which has a non-trivial getter for\n  // `_writableState` that would lead to infinite recursion.\n\n  // Checking for a Stream.Duplex instance is faster here instead of inside\n  // the WritableState constructor, at least with V8 6.5\n  var isDuplex = this instanceof Duplex;\n  if (!isDuplex && !realHasInstance.call(Writable, this)) return new Writable(options);\n  this._writableState = new WritableState(options, this, isDuplex);\n\n  // legacy.\n  this.writable = true;\n  if (options) {\n    if (typeof options.write === 'function') this._write = options.write;\n    if (typeof options.writev === 'function') this._writev = options.writev;\n    if (typeof options.destroy === 'function') this._destroy = options.destroy;\n    if (typeof options.final === 'function') this._final = options.final;\n  }\n  Stream.call(this);\n}\n\n// Otherwise people can pipe Writable streams, which is just wrong.\nWritable.prototype.pipe = function () {\n  errorOrDestroy(this, new ERR_STREAM_CANNOT_PIPE());\n};\nfunction writeAfterEnd(stream, cb) {\n  var er = new ERR_STREAM_WRITE_AFTER_END();\n  // TODO: defer error events consistently everywhere, not just the cb\n  errorOrDestroy(stream, er);\n  process.nextTick(cb, er);\n}\n\n// Checks that a user-supplied chunk is valid, especially for the particular\n// mode the stream is in. Currently this means that `null` is never accepted\n// and undefined/non-string values are only allowed in object mode.\nfunction validChunk(stream, state, chunk, cb) {\n  var er;\n  if (chunk === null) {\n    er = new ERR_STREAM_NULL_VALUES();\n  } else if (typeof chunk !== 'string' && !state.objectMode) {\n    er = new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer'], chunk);\n  }\n  if (er) {\n    errorOrDestroy(stream, er);\n    process.nextTick(cb, er);\n    return false;\n  }\n  return true;\n}\nWritable.prototype.write = function (chunk, encoding, cb) {\n  var state = this._writableState;\n  var ret = false;\n  var isBuf = !state.objectMode && _isUint8Array(chunk);\n  if (isBuf && !Buffer.isBuffer(chunk)) {\n    chunk = _uint8ArrayToBuffer(chunk);\n  }\n  if (typeof encoding === 'function') {\n    cb = encoding;\n    encoding = null;\n  }\n  if (isBuf) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding;\n  if (typeof cb !== 'function') cb = nop;\n  if (state.ending) writeAfterEnd(this, cb);else if (isBuf || validChunk(this, state, chunk, cb)) {\n    state.pendingcb++;\n    ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb);\n  }\n  return ret;\n};\nWritable.prototype.cork = function () {\n  this._writableState.corked++;\n};\nWritable.prototype.uncork = function () {\n  var state = this._writableState;\n  if (state.corked) {\n    state.corked--;\n    if (!state.writing && !state.corked && !state.bufferProcessing && state.bufferedRequest) clearBuffer(this, state);\n  }\n};\nWritable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) {\n  // node::ParseEncoding() requires lower case.\n  if (typeof encoding === 'string') encoding = encoding.toLowerCase();\n  if (!(['hex', 'utf8', 'utf-8', 'ascii', 'binary', 'base64', 'ucs2', 'ucs-2', 'utf16le', 'utf-16le', 'raw'].indexOf((encoding + '').toLowerCase()) > -1)) throw new ERR_UNKNOWN_ENCODING(encoding);\n  this._writableState.defaultEncoding = encoding;\n  return this;\n};\nObject.defineProperty(Writable.prototype, 'writableBuffer', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState && this._writableState.getBuffer();\n  }\n});\nfunction decodeChunk(state, chunk, encoding) {\n  if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') {\n    chunk = Buffer.from(chunk, encoding);\n  }\n  return chunk;\n}\nObject.defineProperty(Writable.prototype, 'writableHighWaterMark', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState.highWaterMark;\n  }\n});\n\n// if we're already writing something, then just put this\n// in the queue, and wait our turn.  Otherwise, call _write\n// If we return false, then we need a drain event, so set that flag.\nfunction writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) {\n  if (!isBuf) {\n    var newChunk = decodeChunk(state, chunk, encoding);\n    if (chunk !== newChunk) {\n      isBuf = true;\n      encoding = 'buffer';\n      chunk = newChunk;\n    }\n  }\n  var len = state.objectMode ? 1 : chunk.length;\n  state.length += len;\n  var ret = state.length < state.highWaterMark;\n  // we must ensure that previous needDrain will not be reset to false.\n  if (!ret) state.needDrain = true;\n  if (state.writing || state.corked) {\n    var last = state.lastBufferedRequest;\n    state.lastBufferedRequest = {\n      chunk: chunk,\n      encoding: encoding,\n      isBuf: isBuf,\n      callback: cb,\n      next: null\n    };\n    if (last) {\n      last.next = state.lastBufferedRequest;\n    } else {\n      state.bufferedRequest = state.lastBufferedRequest;\n    }\n    state.bufferedRequestCount += 1;\n  } else {\n    doWrite(stream, state, false, len, chunk, encoding, cb);\n  }\n  return ret;\n}\nfunction doWrite(stream, state, writev, len, chunk, encoding, cb) {\n  state.writelen = len;\n  state.writecb = cb;\n  state.writing = true;\n  state.sync = true;\n  if (state.destroyed) state.onwrite(new ERR_STREAM_DESTROYED('write'));else if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite);\n  state.sync = false;\n}\nfunction onwriteError(stream, state, sync, er, cb) {\n  --state.pendingcb;\n  if (sync) {\n    // defer the callback if we are being called synchronously\n    // to avoid piling up things on the stack\n    process.nextTick(cb, er);\n    // this can emit finish, and it will always happen\n    // after error\n    process.nextTick(finishMaybe, stream, state);\n    stream._writableState.errorEmitted = true;\n    errorOrDestroy(stream, er);\n  } else {\n    // the caller expect this to happen before if\n    // it is async\n    cb(er);\n    stream._writableState.errorEmitted = true;\n    errorOrDestroy(stream, er);\n    // this can emit finish, but finish must\n    // always follow error\n    finishMaybe(stream, state);\n  }\n}\nfunction onwriteStateUpdate(state) {\n  state.writing = false;\n  state.writecb = null;\n  state.length -= state.writelen;\n  state.writelen = 0;\n}\nfunction onwrite(stream, er) {\n  var state = stream._writableState;\n  var sync = state.sync;\n  var cb = state.writecb;\n  if (typeof cb !== 'function') throw new ERR_MULTIPLE_CALLBACK();\n  onwriteStateUpdate(state);\n  if (er) onwriteError(stream, state, sync, er, cb);else {\n    // Check if we're actually ready to finish, but don't emit yet\n    var finished = needFinish(state) || stream.destroyed;\n    if (!finished && !state.corked && !state.bufferProcessing && state.bufferedRequest) {\n      clearBuffer(stream, state);\n    }\n    if (sync) {\n      process.nextTick(afterWrite, stream, state, finished, cb);\n    } else {\n      afterWrite(stream, state, finished, cb);\n    }\n  }\n}\nfunction afterWrite(stream, state, finished, cb) {\n  if (!finished) onwriteDrain(stream, state);\n  state.pendingcb--;\n  cb();\n  finishMaybe(stream, state);\n}\n\n// Must force callback to be called on nextTick, so that we don't\n// emit 'drain' before the write() consumer gets the 'false' return\n// value, and has a chance to attach a 'drain' listener.\nfunction onwriteDrain(stream, state) {\n  if (state.length === 0 && state.needDrain) {\n    state.needDrain = false;\n    stream.emit('drain');\n  }\n}\n\n// if there's something in the buffer waiting, then process it\nfunction clearBuffer(stream, state) {\n  state.bufferProcessing = true;\n  var entry = state.bufferedRequest;\n  if (stream._writev && entry && entry.next) {\n    // Fast case, write everything using _writev()\n    var l = state.bufferedRequestCount;\n    var buffer = new Array(l);\n    var holder = state.corkedRequestsFree;\n    holder.entry = entry;\n    var count = 0;\n    var allBuffers = true;\n    while (entry) {\n      buffer[count] = entry;\n      if (!entry.isBuf) allBuffers = false;\n      entry = entry.next;\n      count += 1;\n    }\n    buffer.allBuffers = allBuffers;\n    doWrite(stream, state, true, state.length, buffer, '', holder.finish);\n\n    // doWrite is almost always async, defer these to save a bit of time\n    // as the hot path ends with doWrite\n    state.pendingcb++;\n    state.lastBufferedRequest = null;\n    if (holder.next) {\n      state.corkedRequestsFree = holder.next;\n      holder.next = null;\n    } else {\n      state.corkedRequestsFree = new CorkedRequest(state);\n    }\n    state.bufferedRequestCount = 0;\n  } else {\n    // Slow case, write chunks one-by-one\n    while (entry) {\n      var chunk = entry.chunk;\n      var encoding = entry.encoding;\n      var cb = entry.callback;\n      var len = state.objectMode ? 1 : chunk.length;\n      doWrite(stream, state, false, len, chunk, encoding, cb);\n      entry = entry.next;\n      state.bufferedRequestCount--;\n      // if we didn't call the onwrite immediately, then\n      // it means that we need to wait until it does.\n      // also, that means that the chunk and cb are currently\n      // being processed, so move the buffer counter past them.\n      if (state.writing) {\n        break;\n      }\n    }\n    if (entry === null) state.lastBufferedRequest = null;\n  }\n  state.bufferedRequest = entry;\n  state.bufferProcessing = false;\n}\nWritable.prototype._write = function (chunk, encoding, cb) {\n  cb(new ERR_METHOD_NOT_IMPLEMENTED('_write()'));\n};\nWritable.prototype._writev = null;\nWritable.prototype.end = function (chunk, encoding, cb) {\n  var state = this._writableState;\n  if (typeof chunk === 'function') {\n    cb = chunk;\n    chunk = null;\n    encoding = null;\n  } else if (typeof encoding === 'function') {\n    cb = encoding;\n    encoding = null;\n  }\n  if (chunk !== null && chunk !== undefined) this.write(chunk, encoding);\n\n  // .end() fully uncorks\n  if (state.corked) {\n    state.corked = 1;\n    this.uncork();\n  }\n\n  // ignore unnecessary end() calls.\n  if (!state.ending) endWritable(this, state, cb);\n  return this;\n};\nObject.defineProperty(Writable.prototype, 'writableLength', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState.length;\n  }\n});\nfunction needFinish(state) {\n  return state.ending && state.length === 0 && state.bufferedRequest === null && !state.finished && !state.writing;\n}\nfunction callFinal(stream, state) {\n  stream._final(function (err) {\n    state.pendingcb--;\n    if (err) {\n      errorOrDestroy(stream, err);\n    }\n    state.prefinished = true;\n    stream.emit('prefinish');\n    finishMaybe(stream, state);\n  });\n}\nfunction prefinish(stream, state) {\n  if (!state.prefinished && !state.finalCalled) {\n    if (typeof stream._final === 'function' && !state.destroyed) {\n      state.pendingcb++;\n      state.finalCalled = true;\n      process.nextTick(callFinal, stream, state);\n    } else {\n      state.prefinished = true;\n      stream.emit('prefinish');\n    }\n  }\n}\nfunction finishMaybe(stream, state) {\n  var need = needFinish(state);\n  if (need) {\n    prefinish(stream, state);\n    if (state.pendingcb === 0) {\n      state.finished = true;\n      stream.emit('finish');\n      if (state.autoDestroy) {\n        // In case of duplex streams we need a way to detect\n        // if the readable side is ready for autoDestroy as well\n        var rState = stream._readableState;\n        if (!rState || rState.autoDestroy && rState.endEmitted) {\n          stream.destroy();\n        }\n      }\n    }\n  }\n  return need;\n}\nfunction endWritable(stream, state, cb) {\n  state.ending = true;\n  finishMaybe(stream, state);\n  if (cb) {\n    if (state.finished) process.nextTick(cb);else stream.once('finish', cb);\n  }\n  state.ended = true;\n  stream.writable = false;\n}\nfunction onCorkedFinish(corkReq, state, err) {\n  var entry = corkReq.entry;\n  corkReq.entry = null;\n  while (entry) {\n    var cb = entry.callback;\n    state.pendingcb--;\n    cb(err);\n    entry = entry.next;\n  }\n\n  // reuse the free corkReq.\n  state.corkedRequestsFree.next = corkReq;\n}\nObject.defineProperty(Writable.prototype, 'destroyed', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    if (this._writableState === undefined) {\n      return false;\n    }\n    return this._writableState.destroyed;\n  },\n  set: function set(value) {\n    // we ignore the value if the stream\n    // has not been initialized yet\n    if (!this._writableState) {\n      return;\n    }\n\n    // backward compatibility, the user is explicitly\n    // managing destroyed\n    this._writableState.destroyed = value;\n  }\n});\nWritable.prototype.destroy = destroyImpl.destroy;\nWritable.prototype._undestroy = destroyImpl.undestroy;\nWritable.prototype._destroy = function (err, cb) {\n  cb(err);\n};","'use strict';\n\nvar _Object$setPrototypeO;\nfunction _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\nfunction _toPropertyKey(arg) { var key = _toPrimitive(arg, \"string\"); return typeof key === \"symbol\" ? key : String(key); }\nfunction _toPrimitive(input, hint) { if (typeof input !== \"object\" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || \"default\"); if (typeof res !== \"object\") return res; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (hint === \"string\" ? String : Number)(input); }\nvar finished = require('./end-of-stream');\nvar kLastResolve = Symbol('lastResolve');\nvar kLastReject = Symbol('lastReject');\nvar kError = Symbol('error');\nvar kEnded = Symbol('ended');\nvar kLastPromise = Symbol('lastPromise');\nvar kHandlePromise = Symbol('handlePromise');\nvar kStream = Symbol('stream');\nfunction createIterResult(value, done) {\n  return {\n    value: value,\n    done: done\n  };\n}\nfunction readAndResolve(iter) {\n  var resolve = iter[kLastResolve];\n  if (resolve !== null) {\n    var data = iter[kStream].read();\n    // we defer if data is null\n    // we can be expecting either 'end' or\n    // 'error'\n    if (data !== null) {\n      iter[kLastPromise] = null;\n      iter[kLastResolve] = null;\n      iter[kLastReject] = null;\n      resolve(createIterResult(data, false));\n    }\n  }\n}\nfunction onReadable(iter) {\n  // we wait for the next tick, because it might\n  // emit an error with process.nextTick\n  process.nextTick(readAndResolve, iter);\n}\nfunction wrapForNext(lastPromise, iter) {\n  return function (resolve, reject) {\n    lastPromise.then(function () {\n      if (iter[kEnded]) {\n        resolve(createIterResult(undefined, true));\n        return;\n      }\n      iter[kHandlePromise](resolve, reject);\n    }, reject);\n  };\n}\nvar AsyncIteratorPrototype = Object.getPrototypeOf(function () {});\nvar ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf((_Object$setPrototypeO = {\n  get stream() {\n    return this[kStream];\n  },\n  next: function next() {\n    var _this = this;\n    // if we have detected an error in the meanwhile\n    // reject straight away\n    var error = this[kError];\n    if (error !== null) {\n      return Promise.reject(error);\n    }\n    if (this[kEnded]) {\n      return Promise.resolve(createIterResult(undefined, true));\n    }\n    if (this[kStream].destroyed) {\n      // We need to defer via nextTick because if .destroy(err) is\n      // called, the error will be emitted via nextTick, and\n      // we cannot guarantee that there is no error lingering around\n      // waiting to be emitted.\n      return new Promise(function (resolve, reject) {\n        process.nextTick(function () {\n          if (_this[kError]) {\n            reject(_this[kError]);\n          } else {\n            resolve(createIterResult(undefined, true));\n          }\n        });\n      });\n    }\n\n    // if we have multiple next() calls\n    // we will wait for the previous Promise to finish\n    // this logic is optimized to support for await loops,\n    // where next() is only called once at a time\n    var lastPromise = this[kLastPromise];\n    var promise;\n    if (lastPromise) {\n      promise = new Promise(wrapForNext(lastPromise, this));\n    } else {\n      // fast path needed to support multiple this.push()\n      // without triggering the next() queue\n      var data = this[kStream].read();\n      if (data !== null) {\n        return Promise.resolve(createIterResult(data, false));\n      }\n      promise = new Promise(this[kHandlePromise]);\n    }\n    this[kLastPromise] = promise;\n    return promise;\n  }\n}, _defineProperty(_Object$setPrototypeO, Symbol.asyncIterator, function () {\n  return this;\n}), _defineProperty(_Object$setPrototypeO, \"return\", function _return() {\n  var _this2 = this;\n  // destroy(err, cb) is a private API\n  // we can guarantee we have that here, because we control the\n  // Readable class this is attached to\n  return new Promise(function (resolve, reject) {\n    _this2[kStream].destroy(null, function (err) {\n      if (err) {\n        reject(err);\n        return;\n      }\n      resolve(createIterResult(undefined, true));\n    });\n  });\n}), _Object$setPrototypeO), AsyncIteratorPrototype);\nvar createReadableStreamAsyncIterator = function createReadableStreamAsyncIterator(stream) {\n  var _Object$create;\n  var iterator = Object.create(ReadableStreamAsyncIteratorPrototype, (_Object$create = {}, _defineProperty(_Object$create, kStream, {\n    value: stream,\n    writable: true\n  }), _defineProperty(_Object$create, kLastResolve, {\n    value: null,\n    writable: true\n  }), _defineProperty(_Object$create, kLastReject, {\n    value: null,\n    writable: true\n  }), _defineProperty(_Object$create, kError, {\n    value: null,\n    writable: true\n  }), _defineProperty(_Object$create, kEnded, {\n    value: stream._readableState.endEmitted,\n    writable: true\n  }), _defineProperty(_Object$create, kHandlePromise, {\n    value: function value(resolve, reject) {\n      var data = iterator[kStream].read();\n      if (data) {\n        iterator[kLastPromise] = null;\n        iterator[kLastResolve] = null;\n        iterator[kLastReject] = null;\n        resolve(createIterResult(data, false));\n      } else {\n        iterator[kLastResolve] = resolve;\n        iterator[kLastReject] = reject;\n      }\n    },\n    writable: true\n  }), _Object$create));\n  iterator[kLastPromise] = null;\n  finished(stream, function (err) {\n    if (err && err.code !== 'ERR_STREAM_PREMATURE_CLOSE') {\n      var reject = iterator[kLastReject];\n      // reject if we are waiting for data in the Promise\n      // returned by next() and store the error\n      if (reject !== null) {\n        iterator[kLastPromise] = null;\n        iterator[kLastResolve] = null;\n        iterator[kLastReject] = null;\n        reject(err);\n      }\n      iterator[kError] = err;\n      return;\n    }\n    var resolve = iterator[kLastResolve];\n    if (resolve !== null) {\n      iterator[kLastPromise] = null;\n      iterator[kLastResolve] = null;\n      iterator[kLastReject] = null;\n      resolve(createIterResult(undefined, true));\n    }\n    iterator[kEnded] = true;\n  });\n  stream.on('readable', onReadable.bind(null, iterator));\n  return iterator;\n};\nmodule.exports = createReadableStreamAsyncIterator;","'use strict';\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\nfunction _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\nfunction _toPropertyKey(arg) { var key = _toPrimitive(arg, \"string\"); return typeof key === \"symbol\" ? key : String(key); }\nfunction _toPrimitive(input, hint) { if (typeof input !== \"object\" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || \"default\"); if (typeof res !== \"object\") return res; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (hint === \"string\" ? String : Number)(input); }\nvar _require = require('buffer'),\n  Buffer = _require.Buffer;\nvar _require2 = require('util'),\n  inspect = _require2.inspect;\nvar custom = inspect && inspect.custom || 'inspect';\nfunction copyBuffer(src, target, offset) {\n  Buffer.prototype.copy.call(src, target, offset);\n}\nmodule.exports = /*#__PURE__*/function () {\n  function BufferList() {\n    _classCallCheck(this, BufferList);\n    this.head = null;\n    this.tail = null;\n    this.length = 0;\n  }\n  _createClass(BufferList, [{\n    key: \"push\",\n    value: function push(v) {\n      var entry = {\n        data: v,\n        next: null\n      };\n      if (this.length > 0) this.tail.next = entry;else this.head = entry;\n      this.tail = entry;\n      ++this.length;\n    }\n  }, {\n    key: \"unshift\",\n    value: function unshift(v) {\n      var entry = {\n        data: v,\n        next: this.head\n      };\n      if (this.length === 0) this.tail = entry;\n      this.head = entry;\n      ++this.length;\n    }\n  }, {\n    key: \"shift\",\n    value: function shift() {\n      if (this.length === 0) return;\n      var ret = this.head.data;\n      if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next;\n      --this.length;\n      return ret;\n    }\n  }, {\n    key: \"clear\",\n    value: function clear() {\n      this.head = this.tail = null;\n      this.length = 0;\n    }\n  }, {\n    key: \"join\",\n    value: function join(s) {\n      if (this.length === 0) return '';\n      var p = this.head;\n      var ret = '' + p.data;\n      while (p = p.next) ret += s + p.data;\n      return ret;\n    }\n  }, {\n    key: \"concat\",\n    value: function concat(n) {\n      if (this.length === 0) return Buffer.alloc(0);\n      var ret = Buffer.allocUnsafe(n >>> 0);\n      var p = this.head;\n      var i = 0;\n      while (p) {\n        copyBuffer(p.data, ret, i);\n        i += p.data.length;\n        p = p.next;\n      }\n      return ret;\n    }\n\n    // Consumes a specified amount of bytes or characters from the buffered data.\n  }, {\n    key: \"consume\",\n    value: function consume(n, hasStrings) {\n      var ret;\n      if (n < this.head.data.length) {\n        // `slice` is the same for buffers and strings.\n        ret = this.head.data.slice(0, n);\n        this.head.data = this.head.data.slice(n);\n      } else if (n === this.head.data.length) {\n        // First chunk is a perfect match.\n        ret = this.shift();\n      } else {\n        // Result spans more than one buffer.\n        ret = hasStrings ? this._getString(n) : this._getBuffer(n);\n      }\n      return ret;\n    }\n  }, {\n    key: \"first\",\n    value: function first() {\n      return this.head.data;\n    }\n\n    // Consumes a specified amount of characters from the buffered data.\n  }, {\n    key: \"_getString\",\n    value: function _getString(n) {\n      var p = this.head;\n      var c = 1;\n      var ret = p.data;\n      n -= ret.length;\n      while (p = p.next) {\n        var str = p.data;\n        var nb = n > str.length ? str.length : n;\n        if (nb === str.length) ret += str;else ret += str.slice(0, n);\n        n -= nb;\n        if (n === 0) {\n          if (nb === str.length) {\n            ++c;\n            if (p.next) this.head = p.next;else this.head = this.tail = null;\n          } else {\n            this.head = p;\n            p.data = str.slice(nb);\n          }\n          break;\n        }\n        ++c;\n      }\n      this.length -= c;\n      return ret;\n    }\n\n    // Consumes a specified amount of bytes from the buffered data.\n  }, {\n    key: \"_getBuffer\",\n    value: function _getBuffer(n) {\n      var ret = Buffer.allocUnsafe(n);\n      var p = this.head;\n      var c = 1;\n      p.data.copy(ret);\n      n -= p.data.length;\n      while (p = p.next) {\n        var buf = p.data;\n        var nb = n > buf.length ? buf.length : n;\n        buf.copy(ret, ret.length - n, 0, nb);\n        n -= nb;\n        if (n === 0) {\n          if (nb === buf.length) {\n            ++c;\n            if (p.next) this.head = p.next;else this.head = this.tail = null;\n          } else {\n            this.head = p;\n            p.data = buf.slice(nb);\n          }\n          break;\n        }\n        ++c;\n      }\n      this.length -= c;\n      return ret;\n    }\n\n    // Make sure the linked list only shows the minimal necessary information.\n  }, {\n    key: custom,\n    value: function value(_, options) {\n      return inspect(this, _objectSpread(_objectSpread({}, options), {}, {\n        // Only inspect one level.\n        depth: 0,\n        // It should not recurse.\n        customInspect: false\n      }));\n    }\n  }]);\n  return BufferList;\n}();","'use strict';\n\n// undocumented cb() API, needed for core, not for public API\nfunction destroy(err, cb) {\n  var _this = this;\n  var readableDestroyed = this._readableState && this._readableState.destroyed;\n  var writableDestroyed = this._writableState && this._writableState.destroyed;\n  if (readableDestroyed || writableDestroyed) {\n    if (cb) {\n      cb(err);\n    } else if (err) {\n      if (!this._writableState) {\n        process.nextTick(emitErrorNT, this, err);\n      } else if (!this._writableState.errorEmitted) {\n        this._writableState.errorEmitted = true;\n        process.nextTick(emitErrorNT, this, err);\n      }\n    }\n    return this;\n  }\n\n  // we set destroyed to true before firing error callbacks in order\n  // to make it re-entrance safe in case destroy() is called within callbacks\n\n  if (this._readableState) {\n    this._readableState.destroyed = true;\n  }\n\n  // if this is a duplex stream mark the writable part as destroyed as well\n  if (this._writableState) {\n    this._writableState.destroyed = true;\n  }\n  this._destroy(err || null, function (err) {\n    if (!cb && err) {\n      if (!_this._writableState) {\n        process.nextTick(emitErrorAndCloseNT, _this, err);\n      } else if (!_this._writableState.errorEmitted) {\n        _this._writableState.errorEmitted = true;\n        process.nextTick(emitErrorAndCloseNT, _this, err);\n      } else {\n        process.nextTick(emitCloseNT, _this);\n      }\n    } else if (cb) {\n      process.nextTick(emitCloseNT, _this);\n      cb(err);\n    } else {\n      process.nextTick(emitCloseNT, _this);\n    }\n  });\n  return this;\n}\nfunction emitErrorAndCloseNT(self, err) {\n  emitErrorNT(self, err);\n  emitCloseNT(self);\n}\nfunction emitCloseNT(self) {\n  if (self._writableState && !self._writableState.emitClose) return;\n  if (self._readableState && !self._readableState.emitClose) return;\n  self.emit('close');\n}\nfunction undestroy() {\n  if (this._readableState) {\n    this._readableState.destroyed = false;\n    this._readableState.reading = false;\n    this._readableState.ended = false;\n    this._readableState.endEmitted = false;\n  }\n  if (this._writableState) {\n    this._writableState.destroyed = false;\n    this._writableState.ended = false;\n    this._writableState.ending = false;\n    this._writableState.finalCalled = false;\n    this._writableState.prefinished = false;\n    this._writableState.finished = false;\n    this._writableState.errorEmitted = false;\n  }\n}\nfunction emitErrorNT(self, err) {\n  self.emit('error', err);\n}\nfunction errorOrDestroy(stream, err) {\n  // We have tests that rely on errors being emitted\n  // in the same tick, so changing this is semver major.\n  // For now when you opt-in to autoDestroy we allow\n  // the error to be emitted nextTick. In a future\n  // semver major update we should change the default to this.\n\n  var rState = stream._readableState;\n  var wState = stream._writableState;\n  if (rState && rState.autoDestroy || wState && wState.autoDestroy) stream.destroy(err);else stream.emit('error', err);\n}\nmodule.exports = {\n  destroy: destroy,\n  undestroy: undestroy,\n  errorOrDestroy: errorOrDestroy\n};","// Ported from https://github.com/mafintosh/end-of-stream with\n// permission from the author, Mathias Buus (@mafintosh).\n\n'use strict';\n\nvar ERR_STREAM_PREMATURE_CLOSE = require('../../../errors').codes.ERR_STREAM_PREMATURE_CLOSE;\nfunction once(callback) {\n  var called = false;\n  return function () {\n    if (called) return;\n    called = true;\n    for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n      args[_key] = arguments[_key];\n    }\n    callback.apply(this, args);\n  };\n}\nfunction noop() {}\nfunction isRequest(stream) {\n  return stream.setHeader && typeof stream.abort === 'function';\n}\nfunction eos(stream, opts, callback) {\n  if (typeof opts === 'function') return eos(stream, null, opts);\n  if (!opts) opts = {};\n  callback = once(callback || noop);\n  var readable = opts.readable || opts.readable !== false && stream.readable;\n  var writable = opts.writable || opts.writable !== false && stream.writable;\n  var onlegacyfinish = function onlegacyfinish() {\n    if (!stream.writable) onfinish();\n  };\n  var writableEnded = stream._writableState && stream._writableState.finished;\n  var onfinish = function onfinish() {\n    writable = false;\n    writableEnded = true;\n    if (!readable) callback.call(stream);\n  };\n  var readableEnded = stream._readableState && stream._readableState.endEmitted;\n  var onend = function onend() {\n    readable = false;\n    readableEnded = true;\n    if (!writable) callback.call(stream);\n  };\n  var onerror = function onerror(err) {\n    callback.call(stream, err);\n  };\n  var onclose = function onclose() {\n    var err;\n    if (readable && !readableEnded) {\n      if (!stream._readableState || !stream._readableState.ended) err = new ERR_STREAM_PREMATURE_CLOSE();\n      return callback.call(stream, err);\n    }\n    if (writable && !writableEnded) {\n      if (!stream._writableState || !stream._writableState.ended) err = new ERR_STREAM_PREMATURE_CLOSE();\n      return callback.call(stream, err);\n    }\n  };\n  var onrequest = function onrequest() {\n    stream.req.on('finish', onfinish);\n  };\n  if (isRequest(stream)) {\n    stream.on('complete', onfinish);\n    stream.on('abort', onclose);\n    if (stream.req) onrequest();else stream.on('request', onrequest);\n  } else if (writable && !stream._writableState) {\n    // legacy streams\n    stream.on('end', onlegacyfinish);\n    stream.on('close', onlegacyfinish);\n  }\n  stream.on('end', onend);\n  stream.on('finish', onfinish);\n  if (opts.error !== false) stream.on('error', onerror);\n  stream.on('close', onclose);\n  return function () {\n    stream.removeListener('complete', onfinish);\n    stream.removeListener('abort', onclose);\n    stream.removeListener('request', onrequest);\n    if (stream.req) stream.req.removeListener('finish', onfinish);\n    stream.removeListener('end', onlegacyfinish);\n    stream.removeListener('close', onlegacyfinish);\n    stream.removeListener('finish', onfinish);\n    stream.removeListener('end', onend);\n    stream.removeListener('error', onerror);\n    stream.removeListener('close', onclose);\n  };\n}\nmodule.exports = eos;","module.exports = function () {\n  throw new Error('Readable.from is not available in the browser')\n};\n","// Ported from https://github.com/mafintosh/pump with\n// permission from the author, Mathias Buus (@mafintosh).\n\n'use strict';\n\nvar eos;\nfunction once(callback) {\n  var called = false;\n  return function () {\n    if (called) return;\n    called = true;\n    callback.apply(void 0, arguments);\n  };\n}\nvar _require$codes = require('../../../errors').codes,\n  ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS,\n  ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED;\nfunction noop(err) {\n  // Rethrow the error if it exists to avoid swallowing it\n  if (err) throw err;\n}\nfunction isRequest(stream) {\n  return stream.setHeader && typeof stream.abort === 'function';\n}\nfunction destroyer(stream, reading, writing, callback) {\n  callback = once(callback);\n  var closed = false;\n  stream.on('close', function () {\n    closed = true;\n  });\n  if (eos === undefined) eos = require('./end-of-stream');\n  eos(stream, {\n    readable: reading,\n    writable: writing\n  }, function (err) {\n    if (err) return callback(err);\n    closed = true;\n    callback();\n  });\n  var destroyed = false;\n  return function (err) {\n    if (closed) return;\n    if (destroyed) return;\n    destroyed = true;\n\n    // request.destroy just do .end - .abort is what we want\n    if (isRequest(stream)) return stream.abort();\n    if (typeof stream.destroy === 'function') return stream.destroy();\n    callback(err || new ERR_STREAM_DESTROYED('pipe'));\n  };\n}\nfunction call(fn) {\n  fn();\n}\nfunction pipe(from, to) {\n  return from.pipe(to);\n}\nfunction popCallback(streams) {\n  if (!streams.length) return noop;\n  if (typeof streams[streams.length - 1] !== 'function') return noop;\n  return streams.pop();\n}\nfunction pipeline() {\n  for (var _len = arguments.length, streams = new Array(_len), _key = 0; _key < _len; _key++) {\n    streams[_key] = arguments[_key];\n  }\n  var callback = popCallback(streams);\n  if (Array.isArray(streams[0])) streams = streams[0];\n  if (streams.length < 2) {\n    throw new ERR_MISSING_ARGS('streams');\n  }\n  var error;\n  var destroys = streams.map(function (stream, i) {\n    var reading = i < streams.length - 1;\n    var writing = i > 0;\n    return destroyer(stream, reading, writing, function (err) {\n      if (!error) error = err;\n      if (err) destroys.forEach(call);\n      if (reading) return;\n      destroys.forEach(call);\n      callback(error);\n    });\n  });\n  return streams.reduce(pipe);\n}\nmodule.exports = pipeline;","'use strict';\n\nvar ERR_INVALID_OPT_VALUE = require('../../../errors').codes.ERR_INVALID_OPT_VALUE;\nfunction highWaterMarkFrom(options, isDuplex, duplexKey) {\n  return options.highWaterMark != null ? options.highWaterMark : isDuplex ? options[duplexKey] : null;\n}\nfunction getHighWaterMark(state, options, duplexKey, isDuplex) {\n  var hwm = highWaterMarkFrom(options, isDuplex, duplexKey);\n  if (hwm != null) {\n    if (!(isFinite(hwm) && Math.floor(hwm) === hwm) || hwm < 0) {\n      var name = isDuplex ? duplexKey : 'highWaterMark';\n      throw new ERR_INVALID_OPT_VALUE(name, hwm);\n    }\n    return Math.floor(hwm);\n  }\n\n  // Default value\n  return state.objectMode ? 16 : 16 * 1024;\n}\nmodule.exports = {\n  getHighWaterMark: getHighWaterMark\n};","module.exports = require('events').EventEmitter;\n","/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */\n/* eslint-disable node/no-deprecated-api */\nvar buffer = require('buffer')\nvar Buffer = buffer.Buffer\n\n// alternative to using Object.keys for old browsers\nfunction copyProps (src, dst) {\n  for (var key in src) {\n    dst[key] = src[key]\n  }\n}\nif (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {\n  module.exports = buffer\n} else {\n  // Copy properties from require('buffer')\n  copyProps(buffer, exports)\n  exports.Buffer = SafeBuffer\n}\n\nfunction SafeBuffer (arg, encodingOrOffset, length) {\n  return Buffer(arg, encodingOrOffset, length)\n}\n\nSafeBuffer.prototype = Object.create(Buffer.prototype)\n\n// Copy static methods from Buffer\ncopyProps(Buffer, SafeBuffer)\n\nSafeBuffer.from = function (arg, encodingOrOffset, length) {\n  if (typeof arg === 'number') {\n    throw new TypeError('Argument must not be a number')\n  }\n  return Buffer(arg, encodingOrOffset, length)\n}\n\nSafeBuffer.alloc = function (size, fill, encoding) {\n  if (typeof size !== 'number') {\n    throw new TypeError('Argument must be a number')\n  }\n  var buf = Buffer(size)\n  if (fill !== undefined) {\n    if (typeof encoding === 'string') {\n      buf.fill(fill, encoding)\n    } else {\n      buf.fill(fill)\n    }\n  } else {\n    buf.fill(0)\n  }\n  return buf\n}\n\nSafeBuffer.allocUnsafe = function (size) {\n  if (typeof size !== 'number') {\n    throw new TypeError('Argument must be a number')\n  }\n  return Buffer(size)\n}\n\nSafeBuffer.allocUnsafeSlow = function (size) {\n  if (typeof size !== 'number') {\n    throw new TypeError('Argument must be a number')\n  }\n  return buffer.SlowBuffer(size)\n}\n",";(function (sax) { // wrapper for non-node envs\n  sax.parser = function (strict, opt) { return new SAXParser(strict, opt) }\n  sax.SAXParser = SAXParser\n  sax.SAXStream = SAXStream\n  sax.createStream = createStream\n\n  // When we pass the MAX_BUFFER_LENGTH position, start checking for buffer overruns.\n  // When we check, schedule the next check for MAX_BUFFER_LENGTH - (max(buffer lengths)),\n  // since that's the earliest that a buffer overrun could occur.  This way, checks are\n  // as rare as required, but as often as necessary to ensure never crossing this bound.\n  // Furthermore, buffers are only tested at most once per write(), so passing a very\n  // large string into write() might have undesirable effects, but this is manageable by\n  // the caller, so it is assumed to be safe.  Thus, a call to write() may, in the extreme\n  // edge case, result in creating at most one complete copy of the string passed in.\n  // Set to Infinity to have unlimited buffers.\n  sax.MAX_BUFFER_LENGTH = 64 * 1024\n\n  var buffers = [\n    'comment', 'sgmlDecl', 'textNode', 'tagName', 'doctype',\n    'procInstName', 'procInstBody', 'entity', 'attribName',\n    'attribValue', 'cdata', 'script'\n  ]\n\n  sax.EVENTS = [\n    'text',\n    'processinginstruction',\n    'sgmldeclaration',\n    'doctype',\n    'comment',\n    'opentagstart',\n    'attribute',\n    'opentag',\n    'closetag',\n    'opencdata',\n    'cdata',\n    'closecdata',\n    'error',\n    'end',\n    'ready',\n    'script',\n    'opennamespace',\n    'closenamespace'\n  ]\n\n  function SAXParser (strict, opt) {\n    if (!(this instanceof SAXParser)) {\n      return new SAXParser(strict, opt)\n    }\n\n    var parser = this\n    clearBuffers(parser)\n    parser.q = parser.c = ''\n    parser.bufferCheckPosition = sax.MAX_BUFFER_LENGTH\n    parser.opt = opt || {}\n    parser.opt.lowercase = parser.opt.lowercase || parser.opt.lowercasetags\n    parser.looseCase = parser.opt.lowercase ? 'toLowerCase' : 'toUpperCase'\n    parser.tags = []\n    parser.closed = parser.closedRoot = parser.sawRoot = false\n    parser.tag = parser.error = null\n    parser.strict = !!strict\n    parser.noscript = !!(strict || parser.opt.noscript)\n    parser.state = S.BEGIN\n    parser.strictEntities = parser.opt.strictEntities\n    parser.ENTITIES = parser.strictEntities ? Object.create(sax.XML_ENTITIES) : Object.create(sax.ENTITIES)\n    parser.attribList = []\n\n    // namespaces form a prototype chain.\n    // it always points at the current tag,\n    // which protos to its parent tag.\n    if (parser.opt.xmlns) {\n      parser.ns = Object.create(rootNS)\n    }\n\n    // mostly just for error reporting\n    parser.trackPosition = parser.opt.position !== false\n    if (parser.trackPosition) {\n      parser.position = parser.line = parser.column = 0\n    }\n    emit(parser, 'onready')\n  }\n\n  if (!Object.create) {\n    Object.create = function (o) {\n      function F () {}\n      F.prototype = o\n      var newf = new F()\n      return newf\n    }\n  }\n\n  if (!Object.keys) {\n    Object.keys = function (o) {\n      var a = []\n      for (var i in o) if (o.hasOwnProperty(i)) a.push(i)\n      return a\n    }\n  }\n\n  function checkBufferLength (parser) {\n    var maxAllowed = Math.max(sax.MAX_BUFFER_LENGTH, 10)\n    var maxActual = 0\n    for (var i = 0, l = buffers.length; i < l; i++) {\n      var len = parser[buffers[i]].length\n      if (len > maxAllowed) {\n        // Text/cdata nodes can get big, and since they're buffered,\n        // we can get here under normal conditions.\n        // Avoid issues by emitting the text node now,\n        // so at least it won't get any bigger.\n        switch (buffers[i]) {\n          case 'textNode':\n            closeText(parser)\n            break\n\n          case 'cdata':\n            emitNode(parser, 'oncdata', parser.cdata)\n            parser.cdata = ''\n            break\n\n          case 'script':\n            emitNode(parser, 'onscript', parser.script)\n            parser.script = ''\n            break\n\n          default:\n            error(parser, 'Max buffer length exceeded: ' + buffers[i])\n        }\n      }\n      maxActual = Math.max(maxActual, len)\n    }\n    // schedule the next check for the earliest possible buffer overrun.\n    var m = sax.MAX_BUFFER_LENGTH - maxActual\n    parser.bufferCheckPosition = m + parser.position\n  }\n\n  function clearBuffers (parser) {\n    for (var i = 0, l = buffers.length; i < l; i++) {\n      parser[buffers[i]] = ''\n    }\n  }\n\n  function flushBuffers (parser) {\n    closeText(parser)\n    if (parser.cdata !== '') {\n      emitNode(parser, 'oncdata', parser.cdata)\n      parser.cdata = ''\n    }\n    if (parser.script !== '') {\n      emitNode(parser, 'onscript', parser.script)\n      parser.script = ''\n    }\n  }\n\n  SAXParser.prototype = {\n    end: function () { end(this) },\n    write: write,\n    resume: function () { this.error = null; return this },\n    close: function () { return this.write(null) },\n    flush: function () { flushBuffers(this) }\n  }\n\n  var Stream\n  try {\n    Stream = require('stream').Stream\n  } catch (ex) {\n    Stream = function () {}\n  }\n  if (!Stream) Stream = function () {}\n\n  var streamWraps = sax.EVENTS.filter(function (ev) {\n    return ev !== 'error' && ev !== 'end'\n  })\n\n  function createStream (strict, opt) {\n    return new SAXStream(strict, opt)\n  }\n\n  function SAXStream (strict, opt) {\n    if (!(this instanceof SAXStream)) {\n      return new SAXStream(strict, opt)\n    }\n\n    Stream.apply(this)\n\n    this._parser = new SAXParser(strict, opt)\n    this.writable = true\n    this.readable = true\n\n    var me = this\n\n    this._parser.onend = function () {\n      me.emit('end')\n    }\n\n    this._parser.onerror = function (er) {\n      me.emit('error', er)\n\n      // if didn't throw, then means error was handled.\n      // go ahead and clear error, so we can write again.\n      me._parser.error = null\n    }\n\n    this._decoder = null\n\n    streamWraps.forEach(function (ev) {\n      Object.defineProperty(me, 'on' + ev, {\n        get: function () {\n          return me._parser['on' + ev]\n        },\n        set: function (h) {\n          if (!h) {\n            me.removeAllListeners(ev)\n            me._parser['on' + ev] = h\n            return h\n          }\n          me.on(ev, h)\n        },\n        enumerable: true,\n        configurable: false\n      })\n    })\n  }\n\n  SAXStream.prototype = Object.create(Stream.prototype, {\n    constructor: {\n      value: SAXStream\n    }\n  })\n\n  SAXStream.prototype.write = function (data) {\n    if (typeof Buffer === 'function' &&\n      typeof Buffer.isBuffer === 'function' &&\n      Buffer.isBuffer(data)) {\n      if (!this._decoder) {\n        var SD = require('string_decoder').StringDecoder\n        this._decoder = new SD('utf8')\n      }\n      data = this._decoder.write(data)\n    }\n\n    this._parser.write(data.toString())\n    this.emit('data', data)\n    return true\n  }\n\n  SAXStream.prototype.end = function (chunk) {\n    if (chunk && chunk.length) {\n      this.write(chunk)\n    }\n    this._parser.end()\n    return true\n  }\n\n  SAXStream.prototype.on = function (ev, handler) {\n    var me = this\n    if (!me._parser['on' + ev] && streamWraps.indexOf(ev) !== -1) {\n      me._parser['on' + ev] = function () {\n        var args = arguments.length === 1 ? [arguments[0]] : Array.apply(null, arguments)\n        args.splice(0, 0, ev)\n        me.emit.apply(me, args)\n      }\n    }\n\n    return Stream.prototype.on.call(me, ev, handler)\n  }\n\n  // this really needs to be replaced with character classes.\n  // XML allows all manner of ridiculous numbers and digits.\n  var CDATA = '[CDATA['\n  var DOCTYPE = 'DOCTYPE'\n  var XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace'\n  var XMLNS_NAMESPACE = 'http://www.w3.org/2000/xmlns/'\n  var rootNS = { xml: XML_NAMESPACE, xmlns: XMLNS_NAMESPACE }\n\n  // http://www.w3.org/TR/REC-xml/#NT-NameStartChar\n  // This implementation works on strings, a single character at a time\n  // as such, it cannot ever support astral-plane characters (10000-EFFFF)\n  // without a significant breaking change to either this  parser, or the\n  // JavaScript language.  Implementation of an emoji-capable xml parser\n  // is left as an exercise for the reader.\n  var nameStart = /[:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]/\n\n  var nameBody = /[:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\u00B7\\u0300-\\u036F\\u203F-\\u2040.\\d-]/\n\n  var entityStart = /[#:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]/\n  var entityBody = /[#:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\u00B7\\u0300-\\u036F\\u203F-\\u2040.\\d-]/\n\n  function isWhitespace (c) {\n    return c === ' ' || c === '\\n' || c === '\\r' || c === '\\t'\n  }\n\n  function isQuote (c) {\n    return c === '\"' || c === '\\''\n  }\n\n  function isAttribEnd (c) {\n    return c === '>' || isWhitespace(c)\n  }\n\n  function isMatch (regex, c) {\n    return regex.test(c)\n  }\n\n  function notMatch (regex, c) {\n    return !isMatch(regex, c)\n  }\n\n  var S = 0\n  sax.STATE = {\n    BEGIN: S++, // leading byte order mark or whitespace\n    BEGIN_WHITESPACE: S++, // leading whitespace\n    TEXT: S++, // general stuff\n    TEXT_ENTITY: S++, // &amp and such.\n    OPEN_WAKA: S++, // <\n    SGML_DECL: S++, // <!BLARG\n    SGML_DECL_QUOTED: S++, // <!BLARG foo \"bar\n    DOCTYPE: S++, // <!DOCTYPE\n    DOCTYPE_QUOTED: S++, // <!DOCTYPE \"//blah\n    DOCTYPE_DTD: S++, // <!DOCTYPE \"//blah\" [ ...\n    DOCTYPE_DTD_QUOTED: S++, // <!DOCTYPE \"//blah\" [ \"foo\n    COMMENT_STARTING: S++, // <!-\n    COMMENT: S++, // <!--\n    COMMENT_ENDING: S++, // <!-- blah -\n    COMMENT_ENDED: S++, // <!-- blah --\n    CDATA: S++, // <![CDATA[ something\n    CDATA_ENDING: S++, // ]\n    CDATA_ENDING_2: S++, // ]]\n    PROC_INST: S++, // <?hi\n    PROC_INST_BODY: S++, // <?hi there\n    PROC_INST_ENDING: S++, // <?hi \"there\" ?\n    OPEN_TAG: S++, // <strong\n    OPEN_TAG_SLASH: S++, // <strong /\n    ATTRIB: S++, // <a\n    ATTRIB_NAME: S++, // <a foo\n    ATTRIB_NAME_SAW_WHITE: S++, // <a foo _\n    ATTRIB_VALUE: S++, // <a foo=\n    ATTRIB_VALUE_QUOTED: S++, // <a foo=\"bar\n    ATTRIB_VALUE_CLOSED: S++, // <a foo=\"bar\"\n    ATTRIB_VALUE_UNQUOTED: S++, // <a foo=bar\n    ATTRIB_VALUE_ENTITY_Q: S++, // <foo bar=\"&quot;\"\n    ATTRIB_VALUE_ENTITY_U: S++, // <foo bar=&quot\n    CLOSE_TAG: S++, // </a\n    CLOSE_TAG_SAW_WHITE: S++, // </a   >\n    SCRIPT: S++, // <script> ...\n    SCRIPT_ENDING: S++ // <script> ... <\n  }\n\n  sax.XML_ENTITIES = {\n    'amp': '&',\n    'gt': '>',\n    'lt': '<',\n    'quot': '\"',\n    'apos': \"'\"\n  }\n\n  sax.ENTITIES = {\n    'amp': '&',\n    'gt': '>',\n    'lt': '<',\n    'quot': '\"',\n    'apos': \"'\",\n    'AElig': 198,\n    'Aacute': 193,\n    'Acirc': 194,\n    'Agrave': 192,\n    'Aring': 197,\n    'Atilde': 195,\n    'Auml': 196,\n    'Ccedil': 199,\n    'ETH': 208,\n    'Eacute': 201,\n    'Ecirc': 202,\n    'Egrave': 200,\n    'Euml': 203,\n    'Iacute': 205,\n    'Icirc': 206,\n    'Igrave': 204,\n    'Iuml': 207,\n    'Ntilde': 209,\n    'Oacute': 211,\n    'Ocirc': 212,\n    'Ograve': 210,\n    'Oslash': 216,\n    'Otilde': 213,\n    'Ouml': 214,\n    'THORN': 222,\n    'Uacute': 218,\n    'Ucirc': 219,\n    'Ugrave': 217,\n    'Uuml': 220,\n    'Yacute': 221,\n    'aacute': 225,\n    'acirc': 226,\n    'aelig': 230,\n    'agrave': 224,\n    'aring': 229,\n    'atilde': 227,\n    'auml': 228,\n    'ccedil': 231,\n    'eacute': 233,\n    'ecirc': 234,\n    'egrave': 232,\n    'eth': 240,\n    'euml': 235,\n    'iacute': 237,\n    'icirc': 238,\n    'igrave': 236,\n    'iuml': 239,\n    'ntilde': 241,\n    'oacute': 243,\n    'ocirc': 244,\n    'ograve': 242,\n    'oslash': 248,\n    'otilde': 245,\n    'ouml': 246,\n    'szlig': 223,\n    'thorn': 254,\n    'uacute': 250,\n    'ucirc': 251,\n    'ugrave': 249,\n    'uuml': 252,\n    'yacute': 253,\n    'yuml': 255,\n    'copy': 169,\n    'reg': 174,\n    'nbsp': 160,\n    'iexcl': 161,\n    'cent': 162,\n    'pound': 163,\n    'curren': 164,\n    'yen': 165,\n    'brvbar': 166,\n    'sect': 167,\n    'uml': 168,\n    'ordf': 170,\n    'laquo': 171,\n    'not': 172,\n    'shy': 173,\n    'macr': 175,\n    'deg': 176,\n    'plusmn': 177,\n    'sup1': 185,\n    'sup2': 178,\n    'sup3': 179,\n    'acute': 180,\n    'micro': 181,\n    'para': 182,\n    'middot': 183,\n    'cedil': 184,\n    'ordm': 186,\n    'raquo': 187,\n    'frac14': 188,\n    'frac12': 189,\n    'frac34': 190,\n    'iquest': 191,\n    'times': 215,\n    'divide': 247,\n    'OElig': 338,\n    'oelig': 339,\n    'Scaron': 352,\n    'scaron': 353,\n    'Yuml': 376,\n    'fnof': 402,\n    'circ': 710,\n    'tilde': 732,\n    'Alpha': 913,\n    'Beta': 914,\n    'Gamma': 915,\n    'Delta': 916,\n    'Epsilon': 917,\n    'Zeta': 918,\n    'Eta': 919,\n    'Theta': 920,\n    'Iota': 921,\n    'Kappa': 922,\n    'Lambda': 923,\n    'Mu': 924,\n    'Nu': 925,\n    'Xi': 926,\n    'Omicron': 927,\n    'Pi': 928,\n    'Rho': 929,\n    'Sigma': 931,\n    'Tau': 932,\n    'Upsilon': 933,\n    'Phi': 934,\n    'Chi': 935,\n    'Psi': 936,\n    'Omega': 937,\n    'alpha': 945,\n    'beta': 946,\n    'gamma': 947,\n    'delta': 948,\n    'epsilon': 949,\n    'zeta': 950,\n    'eta': 951,\n    'theta': 952,\n    'iota': 953,\n    'kappa': 954,\n    'lambda': 955,\n    'mu': 956,\n    'nu': 957,\n    'xi': 958,\n    'omicron': 959,\n    'pi': 960,\n    'rho': 961,\n    'sigmaf': 962,\n    'sigma': 963,\n    'tau': 964,\n    'upsilon': 965,\n    'phi': 966,\n    'chi': 967,\n    'psi': 968,\n    'omega': 969,\n    'thetasym': 977,\n    'upsih': 978,\n    'piv': 982,\n    'ensp': 8194,\n    'emsp': 8195,\n    'thinsp': 8201,\n    'zwnj': 8204,\n    'zwj': 8205,\n    'lrm': 8206,\n    'rlm': 8207,\n    'ndash': 8211,\n    'mdash': 8212,\n    'lsquo': 8216,\n    'rsquo': 8217,\n    'sbquo': 8218,\n    'ldquo': 8220,\n    'rdquo': 8221,\n    'bdquo': 8222,\n    'dagger': 8224,\n    'Dagger': 8225,\n    'bull': 8226,\n    'hellip': 8230,\n    'permil': 8240,\n    'prime': 8242,\n    'Prime': 8243,\n    'lsaquo': 8249,\n    'rsaquo': 8250,\n    'oline': 8254,\n    'frasl': 8260,\n    'euro': 8364,\n    'image': 8465,\n    'weierp': 8472,\n    'real': 8476,\n    'trade': 8482,\n    'alefsym': 8501,\n    'larr': 8592,\n    'uarr': 8593,\n    'rarr': 8594,\n    'darr': 8595,\n    'harr': 8596,\n    'crarr': 8629,\n    'lArr': 8656,\n    'uArr': 8657,\n    'rArr': 8658,\n    'dArr': 8659,\n    'hArr': 8660,\n    'forall': 8704,\n    'part': 8706,\n    'exist': 8707,\n    'empty': 8709,\n    'nabla': 8711,\n    'isin': 8712,\n    'notin': 8713,\n    'ni': 8715,\n    'prod': 8719,\n    'sum': 8721,\n    'minus': 8722,\n    'lowast': 8727,\n    'radic': 8730,\n    'prop': 8733,\n    'infin': 8734,\n    'ang': 8736,\n    'and': 8743,\n    'or': 8744,\n    'cap': 8745,\n    'cup': 8746,\n    'int': 8747,\n    'there4': 8756,\n    'sim': 8764,\n    'cong': 8773,\n    'asymp': 8776,\n    'ne': 8800,\n    'equiv': 8801,\n    'le': 8804,\n    'ge': 8805,\n    'sub': 8834,\n    'sup': 8835,\n    'nsub': 8836,\n    'sube': 8838,\n    'supe': 8839,\n    'oplus': 8853,\n    'otimes': 8855,\n    'perp': 8869,\n    'sdot': 8901,\n    'lceil': 8968,\n    'rceil': 8969,\n    'lfloor': 8970,\n    'rfloor': 8971,\n    'lang': 9001,\n    'rang': 9002,\n    'loz': 9674,\n    'spades': 9824,\n    'clubs': 9827,\n    'hearts': 9829,\n    'diams': 9830\n  }\n\n  Object.keys(sax.ENTITIES).forEach(function (key) {\n    var e = sax.ENTITIES[key]\n    var s = typeof e === 'number' ? String.fromCharCode(e) : e\n    sax.ENTITIES[key] = s\n  })\n\n  for (var s in sax.STATE) {\n    sax.STATE[sax.STATE[s]] = s\n  }\n\n  // shorthand\n  S = sax.STATE\n\n  function emit (parser, event, data) {\n    parser[event] && parser[event](data)\n  }\n\n  function emitNode (parser, nodeType, data) {\n    if (parser.textNode) closeText(parser)\n    emit(parser, nodeType, data)\n  }\n\n  function closeText (parser) {\n    parser.textNode = textopts(parser.opt, parser.textNode)\n    if (parser.textNode) emit(parser, 'ontext', parser.textNode)\n    parser.textNode = ''\n  }\n\n  function textopts (opt, text) {\n    if (opt.trim) text = text.trim()\n    if (opt.normalize) text = text.replace(/\\s+/g, ' ')\n    return text\n  }\n\n  function error (parser, er) {\n    closeText(parser)\n    if (parser.trackPosition) {\n      er += '\\nLine: ' + parser.line +\n        '\\nColumn: ' + parser.column +\n        '\\nChar: ' + parser.c\n    }\n    er = new Error(er)\n    parser.error = er\n    emit(parser, 'onerror', er)\n    return parser\n  }\n\n  function end (parser) {\n    if (parser.sawRoot && !parser.closedRoot) strictFail(parser, 'Unclosed root tag')\n    if ((parser.state !== S.BEGIN) &&\n      (parser.state !== S.BEGIN_WHITESPACE) &&\n      (parser.state !== S.TEXT)) {\n      error(parser, 'Unexpected end')\n    }\n    closeText(parser)\n    parser.c = ''\n    parser.closed = true\n    emit(parser, 'onend')\n    SAXParser.call(parser, parser.strict, parser.opt)\n    return parser\n  }\n\n  function strictFail (parser, message) {\n    if (typeof parser !== 'object' || !(parser instanceof SAXParser)) {\n      throw new Error('bad call to strictFail')\n    }\n    if (parser.strict) {\n      error(parser, message)\n    }\n  }\n\n  function newTag (parser) {\n    if (!parser.strict) parser.tagName = parser.tagName[parser.looseCase]()\n    var parent = parser.tags[parser.tags.length - 1] || parser\n    var tag = parser.tag = { name: parser.tagName, attributes: {} }\n\n    // will be overridden if tag contails an xmlns=\"foo\" or xmlns:foo=\"bar\"\n    if (parser.opt.xmlns) {\n      tag.ns = parent.ns\n    }\n    parser.attribList.length = 0\n    emitNode(parser, 'onopentagstart', tag)\n  }\n\n  function qname (name, attribute) {\n    var i = name.indexOf(':')\n    var qualName = i < 0 ? [ '', name ] : name.split(':')\n    var prefix = qualName[0]\n    var local = qualName[1]\n\n    // <x \"xmlns\"=\"http://foo\">\n    if (attribute && name === 'xmlns') {\n      prefix = 'xmlns'\n      local = ''\n    }\n\n    return { prefix: prefix, local: local }\n  }\n\n  function attrib (parser) {\n    if (!parser.strict) {\n      parser.attribName = parser.attribName[parser.looseCase]()\n    }\n\n    if (parser.attribList.indexOf(parser.attribName) !== -1 ||\n      parser.tag.attributes.hasOwnProperty(parser.attribName)) {\n      parser.attribName = parser.attribValue = ''\n      return\n    }\n\n    if (parser.opt.xmlns) {\n      var qn = qname(parser.attribName, true)\n      var prefix = qn.prefix\n      var local = qn.local\n\n      if (prefix === 'xmlns') {\n        // namespace binding attribute. push the binding into scope\n        if (local === 'xml' && parser.attribValue !== XML_NAMESPACE) {\n          strictFail(parser,\n            'xml: prefix must be bound to ' + XML_NAMESPACE + '\\n' +\n            'Actual: ' + parser.attribValue)\n        } else if (local === 'xmlns' && parser.attribValue !== XMLNS_NAMESPACE) {\n          strictFail(parser,\n            'xmlns: prefix must be bound to ' + XMLNS_NAMESPACE + '\\n' +\n            'Actual: ' + parser.attribValue)\n        } else {\n          var tag = parser.tag\n          var parent = parser.tags[parser.tags.length - 1] || parser\n          if (tag.ns === parent.ns) {\n            tag.ns = Object.create(parent.ns)\n          }\n          tag.ns[local] = parser.attribValue\n        }\n      }\n\n      // defer onattribute events until all attributes have been seen\n      // so any new bindings can take effect. preserve attribute order\n      // so deferred events can be emitted in document order\n      parser.attribList.push([parser.attribName, parser.attribValue])\n    } else {\n      // in non-xmlns mode, we can emit the event right away\n      parser.tag.attributes[parser.attribName] = parser.attribValue\n      emitNode(parser, 'onattribute', {\n        name: parser.attribName,\n        value: parser.attribValue\n      })\n    }\n\n    parser.attribName = parser.attribValue = ''\n  }\n\n  function openTag (parser, selfClosing) {\n    if (parser.opt.xmlns) {\n      // emit namespace binding events\n      var tag = parser.tag\n\n      // add namespace info to tag\n      var qn = qname(parser.tagName)\n      tag.prefix = qn.prefix\n      tag.local = qn.local\n      tag.uri = tag.ns[qn.prefix] || ''\n\n      if (tag.prefix && !tag.uri) {\n        strictFail(parser, 'Unbound namespace prefix: ' +\n          JSON.stringify(parser.tagName))\n        tag.uri = qn.prefix\n      }\n\n      var parent = parser.tags[parser.tags.length - 1] || parser\n      if (tag.ns && parent.ns !== tag.ns) {\n        Object.keys(tag.ns).forEach(function (p) {\n          emitNode(parser, 'onopennamespace', {\n            prefix: p,\n            uri: tag.ns[p]\n          })\n        })\n      }\n\n      // handle deferred onattribute events\n      // Note: do not apply default ns to attributes:\n      //   http://www.w3.org/TR/REC-xml-names/#defaulting\n      for (var i = 0, l = parser.attribList.length; i < l; i++) {\n        var nv = parser.attribList[i]\n        var name = nv[0]\n        var value = nv[1]\n        var qualName = qname(name, true)\n        var prefix = qualName.prefix\n        var local = qualName.local\n        var uri = prefix === '' ? '' : (tag.ns[prefix] || '')\n        var a = {\n          name: name,\n          value: value,\n          prefix: prefix,\n          local: local,\n          uri: uri\n        }\n\n        // if there's any attributes with an undefined namespace,\n        // then fail on them now.\n        if (prefix && prefix !== 'xmlns' && !uri) {\n          strictFail(parser, 'Unbound namespace prefix: ' +\n            JSON.stringify(prefix))\n          a.uri = prefix\n        }\n        parser.tag.attributes[name] = a\n        emitNode(parser, 'onattribute', a)\n      }\n      parser.attribList.length = 0\n    }\n\n    parser.tag.isSelfClosing = !!selfClosing\n\n    // process the tag\n    parser.sawRoot = true\n    parser.tags.push(parser.tag)\n    emitNode(parser, 'onopentag', parser.tag)\n    if (!selfClosing) {\n      // special case for <script> in non-strict mode.\n      if (!parser.noscript && parser.tagName.toLowerCase() === 'script') {\n        parser.state = S.SCRIPT\n      } else {\n        parser.state = S.TEXT\n      }\n      parser.tag = null\n      parser.tagName = ''\n    }\n    parser.attribName = parser.attribValue = ''\n    parser.attribList.length = 0\n  }\n\n  function closeTag (parser) {\n    if (!parser.tagName) {\n      strictFail(parser, 'Weird empty close tag.')\n      parser.textNode += '</>'\n      parser.state = S.TEXT\n      return\n    }\n\n    if (parser.script) {\n      if (parser.tagName !== 'script') {\n        parser.script += '</' + parser.tagName + '>'\n        parser.tagName = ''\n        parser.state = S.SCRIPT\n        return\n      }\n      emitNode(parser, 'onscript', parser.script)\n      parser.script = ''\n    }\n\n    // first make sure that the closing tag actually exists.\n    // <a><b></c></b></a> will close everything, otherwise.\n    var t = parser.tags.length\n    var tagName = parser.tagName\n    if (!parser.strict) {\n      tagName = tagName[parser.looseCase]()\n    }\n    var closeTo = tagName\n    while (t--) {\n      var close = parser.tags[t]\n      if (close.name !== closeTo) {\n        // fail the first time in strict mode\n        strictFail(parser, 'Unexpected close tag')\n      } else {\n        break\n      }\n    }\n\n    // didn't find it.  we already failed for strict, so just abort.\n    if (t < 0) {\n      strictFail(parser, 'Unmatched closing tag: ' + parser.tagName)\n      parser.textNode += '</' + parser.tagName + '>'\n      parser.state = S.TEXT\n      return\n    }\n    parser.tagName = tagName\n    var s = parser.tags.length\n    while (s-- > t) {\n      var tag = parser.tag = parser.tags.pop()\n      parser.tagName = parser.tag.name\n      emitNode(parser, 'onclosetag', parser.tagName)\n\n      var x = {}\n      for (var i in tag.ns) {\n        x[i] = tag.ns[i]\n      }\n\n      var parent = parser.tags[parser.tags.length - 1] || parser\n      if (parser.opt.xmlns && tag.ns !== parent.ns) {\n        // remove namespace bindings introduced by tag\n        Object.keys(tag.ns).forEach(function (p) {\n          var n = tag.ns[p]\n          emitNode(parser, 'onclosenamespace', { prefix: p, uri: n })\n        })\n      }\n    }\n    if (t === 0) parser.closedRoot = true\n    parser.tagName = parser.attribValue = parser.attribName = ''\n    parser.attribList.length = 0\n    parser.state = S.TEXT\n  }\n\n  function parseEntity (parser) {\n    var entity = parser.entity\n    var entityLC = entity.toLowerCase()\n    var num\n    var numStr = ''\n\n    if (parser.ENTITIES[entity]) {\n      return parser.ENTITIES[entity]\n    }\n    if (parser.ENTITIES[entityLC]) {\n      return parser.ENTITIES[entityLC]\n    }\n    entity = entityLC\n    if (entity.charAt(0) === '#') {\n      if (entity.charAt(1) === 'x') {\n        entity = entity.slice(2)\n        num = parseInt(entity, 16)\n        numStr = num.toString(16)\n      } else {\n        entity = entity.slice(1)\n        num = parseInt(entity, 10)\n        numStr = num.toString(10)\n      }\n    }\n    entity = entity.replace(/^0+/, '')\n    if (isNaN(num) || numStr.toLowerCase() !== entity) {\n      strictFail(parser, 'Invalid character entity')\n      return '&' + parser.entity + ';'\n    }\n\n    return String.fromCodePoint(num)\n  }\n\n  function beginWhiteSpace (parser, c) {\n    if (c === '<') {\n      parser.state = S.OPEN_WAKA\n      parser.startTagPosition = parser.position\n    } else if (!isWhitespace(c)) {\n      // have to process this as a text node.\n      // weird, but happens.\n      strictFail(parser, 'Non-whitespace before first tag.')\n      parser.textNode = c\n      parser.state = S.TEXT\n    }\n  }\n\n  function charAt (chunk, i) {\n    var result = ''\n    if (i < chunk.length) {\n      result = chunk.charAt(i)\n    }\n    return result\n  }\n\n  function write (chunk) {\n    var parser = this\n    if (this.error) {\n      throw this.error\n    }\n    if (parser.closed) {\n      return error(parser,\n        'Cannot write after close. Assign an onready handler.')\n    }\n    if (chunk === null) {\n      return end(parser)\n    }\n    if (typeof chunk === 'object') {\n      chunk = chunk.toString()\n    }\n    var i = 0\n    var c = ''\n    while (true) {\n      c = charAt(chunk, i++)\n      parser.c = c\n\n      if (!c) {\n        break\n      }\n\n      if (parser.trackPosition) {\n        parser.position++\n        if (c === '\\n') {\n          parser.line++\n          parser.column = 0\n        } else {\n          parser.column++\n        }\n      }\n\n      switch (parser.state) {\n        case S.BEGIN:\n          parser.state = S.BEGIN_WHITESPACE\n          if (c === '\\uFEFF') {\n            continue\n          }\n          beginWhiteSpace(parser, c)\n          continue\n\n        case S.BEGIN_WHITESPACE:\n          beginWhiteSpace(parser, c)\n          continue\n\n        case S.TEXT:\n          if (parser.sawRoot && !parser.closedRoot) {\n            var starti = i - 1\n            while (c && c !== '<' && c !== '&') {\n              c = charAt(chunk, i++)\n              if (c && parser.trackPosition) {\n                parser.position++\n                if (c === '\\n') {\n                  parser.line++\n                  parser.column = 0\n                } else {\n                  parser.column++\n                }\n              }\n            }\n            parser.textNode += chunk.substring(starti, i - 1)\n          }\n          if (c === '<' && !(parser.sawRoot && parser.closedRoot && !parser.strict)) {\n            parser.state = S.OPEN_WAKA\n            parser.startTagPosition = parser.position\n          } else {\n            if (!isWhitespace(c) && (!parser.sawRoot || parser.closedRoot)) {\n              strictFail(parser, 'Text data outside of root node.')\n            }\n            if (c === '&') {\n              parser.state = S.TEXT_ENTITY\n            } else {\n              parser.textNode += c\n            }\n          }\n          continue\n\n        case S.SCRIPT:\n          // only non-strict\n          if (c === '<') {\n            parser.state = S.SCRIPT_ENDING\n          } else {\n            parser.script += c\n          }\n          continue\n\n        case S.SCRIPT_ENDING:\n          if (c === '/') {\n            parser.state = S.CLOSE_TAG\n          } else {\n            parser.script += '<' + c\n            parser.state = S.SCRIPT\n          }\n          continue\n\n        case S.OPEN_WAKA:\n          // either a /, ?, !, or text is coming next.\n          if (c === '!') {\n            parser.state = S.SGML_DECL\n            parser.sgmlDecl = ''\n          } else if (isWhitespace(c)) {\n            // wait for it...\n          } else if (isMatch(nameStart, c)) {\n            parser.state = S.OPEN_TAG\n            parser.tagName = c\n          } else if (c === '/') {\n            parser.state = S.CLOSE_TAG\n            parser.tagName = ''\n          } else if (c === '?') {\n            parser.state = S.PROC_INST\n            parser.procInstName = parser.procInstBody = ''\n          } else {\n            strictFail(parser, 'Unencoded <')\n            // if there was some whitespace, then add that in.\n            if (parser.startTagPosition + 1 < parser.position) {\n              var pad = parser.position - parser.startTagPosition\n              c = new Array(pad).join(' ') + c\n            }\n            parser.textNode += '<' + c\n            parser.state = S.TEXT\n          }\n          continue\n\n        case S.SGML_DECL:\n          if ((parser.sgmlDecl + c).toUpperCase() === CDATA) {\n            emitNode(parser, 'onopencdata')\n            parser.state = S.CDATA\n            parser.sgmlDecl = ''\n            parser.cdata = ''\n          } else if (parser.sgmlDecl + c === '--') {\n            parser.state = S.COMMENT\n            parser.comment = ''\n            parser.sgmlDecl = ''\n          } else if ((parser.sgmlDecl + c).toUpperCase() === DOCTYPE) {\n            parser.state = S.DOCTYPE\n            if (parser.doctype || parser.sawRoot) {\n              strictFail(parser,\n                'Inappropriately located doctype declaration')\n            }\n            parser.doctype = ''\n            parser.sgmlDecl = ''\n          } else if (c === '>') {\n            emitNode(parser, 'onsgmldeclaration', parser.sgmlDecl)\n            parser.sgmlDecl = ''\n            parser.state = S.TEXT\n          } else if (isQuote(c)) {\n            parser.state = S.SGML_DECL_QUOTED\n            parser.sgmlDecl += c\n          } else {\n            parser.sgmlDecl += c\n          }\n          continue\n\n        case S.SGML_DECL_QUOTED:\n          if (c === parser.q) {\n            parser.state = S.SGML_DECL\n            parser.q = ''\n          }\n          parser.sgmlDecl += c\n          continue\n\n        case S.DOCTYPE:\n          if (c === '>') {\n            parser.state = S.TEXT\n            emitNode(parser, 'ondoctype', parser.doctype)\n            parser.doctype = true // just remember that we saw it.\n          } else {\n            parser.doctype += c\n            if (c === '[') {\n              parser.state = S.DOCTYPE_DTD\n            } else if (isQuote(c)) {\n              parser.state = S.DOCTYPE_QUOTED\n              parser.q = c\n            }\n          }\n          continue\n\n        case S.DOCTYPE_QUOTED:\n          parser.doctype += c\n          if (c === parser.q) {\n            parser.q = ''\n            parser.state = S.DOCTYPE\n          }\n          continue\n\n        case S.DOCTYPE_DTD:\n          parser.doctype += c\n          if (c === ']') {\n            parser.state = S.DOCTYPE\n          } else if (isQuote(c)) {\n            parser.state = S.DOCTYPE_DTD_QUOTED\n            parser.q = c\n          }\n          continue\n\n        case S.DOCTYPE_DTD_QUOTED:\n          parser.doctype += c\n          if (c === parser.q) {\n            parser.state = S.DOCTYPE_DTD\n            parser.q = ''\n          }\n          continue\n\n        case S.COMMENT:\n          if (c === '-') {\n            parser.state = S.COMMENT_ENDING\n          } else {\n            parser.comment += c\n          }\n          continue\n\n        case S.COMMENT_ENDING:\n          if (c === '-') {\n            parser.state = S.COMMENT_ENDED\n            parser.comment = textopts(parser.opt, parser.comment)\n            if (parser.comment) {\n              emitNode(parser, 'oncomment', parser.comment)\n            }\n            parser.comment = ''\n          } else {\n            parser.comment += '-' + c\n            parser.state = S.COMMENT\n          }\n          continue\n\n        case S.COMMENT_ENDED:\n          if (c !== '>') {\n            strictFail(parser, 'Malformed comment')\n            // allow <!-- blah -- bloo --> in non-strict mode,\n            // which is a comment of \" blah -- bloo \"\n            parser.comment += '--' + c\n            parser.state = S.COMMENT\n          } else {\n            parser.state = S.TEXT\n          }\n          continue\n\n        case S.CDATA:\n          if (c === ']') {\n            parser.state = S.CDATA_ENDING\n          } else {\n            parser.cdata += c\n          }\n          continue\n\n        case S.CDATA_ENDING:\n          if (c === ']') {\n            parser.state = S.CDATA_ENDING_2\n          } else {\n            parser.cdata += ']' + c\n            parser.state = S.CDATA\n          }\n          continue\n\n        case S.CDATA_ENDING_2:\n          if (c === '>') {\n            if (parser.cdata) {\n              emitNode(parser, 'oncdata', parser.cdata)\n            }\n            emitNode(parser, 'onclosecdata')\n            parser.cdata = ''\n            parser.state = S.TEXT\n          } else if (c === ']') {\n            parser.cdata += ']'\n          } else {\n            parser.cdata += ']]' + c\n            parser.state = S.CDATA\n          }\n          continue\n\n        case S.PROC_INST:\n          if (c === '?') {\n            parser.state = S.PROC_INST_ENDING\n          } else if (isWhitespace(c)) {\n            parser.state = S.PROC_INST_BODY\n          } else {\n            parser.procInstName += c\n          }\n          continue\n\n        case S.PROC_INST_BODY:\n          if (!parser.procInstBody && isWhitespace(c)) {\n            continue\n          } else if (c === '?') {\n            parser.state = S.PROC_INST_ENDING\n          } else {\n            parser.procInstBody += c\n          }\n          continue\n\n        case S.PROC_INST_ENDING:\n          if (c === '>') {\n            emitNode(parser, 'onprocessinginstruction', {\n              name: parser.procInstName,\n              body: parser.procInstBody\n            })\n            parser.procInstName = parser.procInstBody = ''\n            parser.state = S.TEXT\n          } else {\n            parser.procInstBody += '?' + c\n            parser.state = S.PROC_INST_BODY\n          }\n          continue\n\n        case S.OPEN_TAG:\n          if (isMatch(nameBody, c)) {\n            parser.tagName += c\n          } else {\n            newTag(parser)\n            if (c === '>') {\n              openTag(parser)\n            } else if (c === '/') {\n              parser.state = S.OPEN_TAG_SLASH\n            } else {\n              if (!isWhitespace(c)) {\n                strictFail(parser, 'Invalid character in tag name')\n              }\n              parser.state = S.ATTRIB\n            }\n          }\n          continue\n\n        case S.OPEN_TAG_SLASH:\n          if (c === '>') {\n            openTag(parser, true)\n            closeTag(parser)\n          } else {\n            strictFail(parser, 'Forward-slash in opening tag not followed by >')\n            parser.state = S.ATTRIB\n          }\n          continue\n\n        case S.ATTRIB:\n          // haven't read the attribute name yet.\n          if (isWhitespace(c)) {\n            continue\n          } else if (c === '>') {\n            openTag(parser)\n          } else if (c === '/') {\n            parser.state = S.OPEN_TAG_SLASH\n          } else if (isMatch(nameStart, c)) {\n            parser.attribName = c\n            parser.attribValue = ''\n            parser.state = S.ATTRIB_NAME\n          } else {\n            strictFail(parser, 'Invalid attribute name')\n          }\n          continue\n\n        case S.ATTRIB_NAME:\n          if (c === '=') {\n            parser.state = S.ATTRIB_VALUE\n          } else if (c === '>') {\n            strictFail(parser, 'Attribute without value')\n            parser.attribValue = parser.attribName\n            attrib(parser)\n            openTag(parser)\n          } else if (isWhitespace(c)) {\n            parser.state = S.ATTRIB_NAME_SAW_WHITE\n          } else if (isMatch(nameBody, c)) {\n            parser.attribName += c\n          } else {\n            strictFail(parser, 'Invalid attribute name')\n          }\n          continue\n\n        case S.ATTRIB_NAME_SAW_WHITE:\n          if (c === '=') {\n            parser.state = S.ATTRIB_VALUE\n          } else if (isWhitespace(c)) {\n            continue\n          } else {\n            strictFail(parser, 'Attribute without value')\n            parser.tag.attributes[parser.attribName] = ''\n            parser.attribValue = ''\n            emitNode(parser, 'onattribute', {\n              name: parser.attribName,\n              value: ''\n            })\n            parser.attribName = ''\n            if (c === '>') {\n              openTag(parser)\n            } else if (isMatch(nameStart, c)) {\n              parser.attribName = c\n              parser.state = S.ATTRIB_NAME\n            } else {\n              strictFail(parser, 'Invalid attribute name')\n              parser.state = S.ATTRIB\n            }\n          }\n          continue\n\n        case S.ATTRIB_VALUE:\n          if (isWhitespace(c)) {\n            continue\n          } else if (isQuote(c)) {\n            parser.q = c\n            parser.state = S.ATTRIB_VALUE_QUOTED\n          } else {\n            strictFail(parser, 'Unquoted attribute value')\n            parser.state = S.ATTRIB_VALUE_UNQUOTED\n            parser.attribValue = c\n          }\n          continue\n\n        case S.ATTRIB_VALUE_QUOTED:\n          if (c !== parser.q) {\n            if (c === '&') {\n              parser.state = S.ATTRIB_VALUE_ENTITY_Q\n            } else {\n              parser.attribValue += c\n            }\n            continue\n          }\n          attrib(parser)\n          parser.q = ''\n          parser.state = S.ATTRIB_VALUE_CLOSED\n          continue\n\n        case S.ATTRIB_VALUE_CLOSED:\n          if (isWhitespace(c)) {\n            parser.state = S.ATTRIB\n          } else if (c === '>') {\n            openTag(parser)\n          } else if (c === '/') {\n            parser.state = S.OPEN_TAG_SLASH\n          } else if (isMatch(nameStart, c)) {\n            strictFail(parser, 'No whitespace between attributes')\n            parser.attribName = c\n            parser.attribValue = ''\n            parser.state = S.ATTRIB_NAME\n          } else {\n            strictFail(parser, 'Invalid attribute name')\n          }\n          continue\n\n        case S.ATTRIB_VALUE_UNQUOTED:\n          if (!isAttribEnd(c)) {\n            if (c === '&') {\n              parser.state = S.ATTRIB_VALUE_ENTITY_U\n            } else {\n              parser.attribValue += c\n            }\n            continue\n          }\n          attrib(parser)\n          if (c === '>') {\n            openTag(parser)\n          } else {\n            parser.state = S.ATTRIB\n          }\n          continue\n\n        case S.CLOSE_TAG:\n          if (!parser.tagName) {\n            if (isWhitespace(c)) {\n              continue\n            } else if (notMatch(nameStart, c)) {\n              if (parser.script) {\n                parser.script += '</' + c\n                parser.state = S.SCRIPT\n              } else {\n                strictFail(parser, 'Invalid tagname in closing tag.')\n              }\n            } else {\n              parser.tagName = c\n            }\n          } else if (c === '>') {\n            closeTag(parser)\n          } else if (isMatch(nameBody, c)) {\n            parser.tagName += c\n          } else if (parser.script) {\n            parser.script += '</' + parser.tagName\n            parser.tagName = ''\n            parser.state = S.SCRIPT\n          } else {\n            if (!isWhitespace(c)) {\n              strictFail(parser, 'Invalid tagname in closing tag')\n            }\n            parser.state = S.CLOSE_TAG_SAW_WHITE\n          }\n          continue\n\n        case S.CLOSE_TAG_SAW_WHITE:\n          if (isWhitespace(c)) {\n            continue\n          }\n          if (c === '>') {\n            closeTag(parser)\n          } else {\n            strictFail(parser, 'Invalid characters in closing tag')\n          }\n          continue\n\n        case S.TEXT_ENTITY:\n        case S.ATTRIB_VALUE_ENTITY_Q:\n        case S.ATTRIB_VALUE_ENTITY_U:\n          var returnState\n          var buffer\n          switch (parser.state) {\n            case S.TEXT_ENTITY:\n              returnState = S.TEXT\n              buffer = 'textNode'\n              break\n\n            case S.ATTRIB_VALUE_ENTITY_Q:\n              returnState = S.ATTRIB_VALUE_QUOTED\n              buffer = 'attribValue'\n              break\n\n            case S.ATTRIB_VALUE_ENTITY_U:\n              returnState = S.ATTRIB_VALUE_UNQUOTED\n              buffer = 'attribValue'\n              break\n          }\n\n          if (c === ';') {\n            if (parser.opt.unparsedEntities) {\n              var parsedEntity = parseEntity(parser)\n              parser.entity = ''\n              parser.state = returnState\n              parser.write(parsedEntity)\n            } else {\n              parser[buffer] += parseEntity(parser)\n              parser.entity = ''\n              parser.state = returnState\n            }\n          } else if (isMatch(parser.entity.length ? entityBody : entityStart, c)) {\n            parser.entity += c\n          } else {\n            strictFail(parser, 'Invalid character in entity name')\n            parser[buffer] += '&' + parser.entity + c\n            parser.entity = ''\n            parser.state = returnState\n          }\n\n          continue\n\n        default: /* istanbul ignore next */ {\n          throw new Error(parser, 'Unknown state: ' + parser.state)\n        }\n      }\n    } // while\n\n    if (parser.position >= parser.bufferCheckPosition) {\n      checkBufferLength(parser)\n    }\n    return parser\n  }\n\n  /*! http://mths.be/fromcodepoint v0.1.0 by @mathias */\n  /* istanbul ignore next */\n  if (!String.fromCodePoint) {\n    (function () {\n      var stringFromCharCode = String.fromCharCode\n      var floor = Math.floor\n      var fromCodePoint = function () {\n        var MAX_SIZE = 0x4000\n        var codeUnits = []\n        var highSurrogate\n        var lowSurrogate\n        var index = -1\n        var length = arguments.length\n        if (!length) {\n          return ''\n        }\n        var result = ''\n        while (++index < length) {\n          var codePoint = Number(arguments[index])\n          if (\n            !isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`\n            codePoint < 0 || // not a valid Unicode code point\n            codePoint > 0x10FFFF || // not a valid Unicode code point\n            floor(codePoint) !== codePoint // not an integer\n          ) {\n            throw RangeError('Invalid code point: ' + codePoint)\n          }\n          if (codePoint <= 0xFFFF) { // BMP code point\n            codeUnits.push(codePoint)\n          } else { // Astral code point; split in surrogate halves\n            // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n            codePoint -= 0x10000\n            highSurrogate = (codePoint >> 10) + 0xD800\n            lowSurrogate = (codePoint % 0x400) + 0xDC00\n            codeUnits.push(highSurrogate, lowSurrogate)\n          }\n          if (index + 1 === length || codeUnits.length > MAX_SIZE) {\n            result += stringFromCharCode.apply(null, codeUnits)\n            codeUnits.length = 0\n          }\n        }\n        return result\n      }\n      /* istanbul ignore next */\n      if (Object.defineProperty) {\n        Object.defineProperty(String, 'fromCodePoint', {\n          value: fromCodePoint,\n          configurable: true,\n          writable: true\n        })\n      } else {\n        String.fromCodePoint = fromCodePoint\n      }\n    }())\n  }\n})(typeof exports === 'undefined' ? this.sax = {} : exports)\n","(function (global, undefined) {\n    \"use strict\";\n\n    if (global.setImmediate) {\n        return;\n    }\n\n    var nextHandle = 1; // Spec says greater than zero\n    var tasksByHandle = {};\n    var currentlyRunningATask = false;\n    var doc = global.document;\n    var registerImmediate;\n\n    function setImmediate(callback) {\n      // Callback can either be a function or a string\n      if (typeof callback !== \"function\") {\n        callback = new Function(\"\" + callback);\n      }\n      // Copy function arguments\n      var args = new Array(arguments.length - 1);\n      for (var i = 0; i < args.length; i++) {\n          args[i] = arguments[i + 1];\n      }\n      // Store and register the task\n      var task = { callback: callback, args: args };\n      tasksByHandle[nextHandle] = task;\n      registerImmediate(nextHandle);\n      return nextHandle++;\n    }\n\n    function clearImmediate(handle) {\n        delete tasksByHandle[handle];\n    }\n\n    function run(task) {\n        var callback = task.callback;\n        var args = task.args;\n        switch (args.length) {\n        case 0:\n            callback();\n            break;\n        case 1:\n            callback(args[0]);\n            break;\n        case 2:\n            callback(args[0], args[1]);\n            break;\n        case 3:\n            callback(args[0], args[1], args[2]);\n            break;\n        default:\n            callback.apply(undefined, args);\n            break;\n        }\n    }\n\n    function runIfPresent(handle) {\n        // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n        // So if we're currently running a task, we'll need to delay this invocation.\n        if (currentlyRunningATask) {\n            // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n            // \"too much recursion\" error.\n            setTimeout(runIfPresent, 0, handle);\n        } else {\n            var task = tasksByHandle[handle];\n            if (task) {\n                currentlyRunningATask = true;\n                try {\n                    run(task);\n                } finally {\n                    clearImmediate(handle);\n                    currentlyRunningATask = false;\n                }\n            }\n        }\n    }\n\n    function installNextTickImplementation() {\n        registerImmediate = function(handle) {\n            process.nextTick(function () { runIfPresent(handle); });\n        };\n    }\n\n    function canUsePostMessage() {\n        // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n        // where `global.postMessage` means something completely different and can't be used for this purpose.\n        if (global.postMessage && !global.importScripts) {\n            var postMessageIsAsynchronous = true;\n            var oldOnMessage = global.onmessage;\n            global.onmessage = function() {\n                postMessageIsAsynchronous = false;\n            };\n            global.postMessage(\"\", \"*\");\n            global.onmessage = oldOnMessage;\n            return postMessageIsAsynchronous;\n        }\n    }\n\n    function installPostMessageImplementation() {\n        // Installs an event handler on `global` for the `message` event: see\n        // * https://developer.mozilla.org/en/DOM/window.postMessage\n        // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n        var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n        var onGlobalMessage = function(event) {\n            if (event.source === global &&\n                typeof event.data === \"string\" &&\n                event.data.indexOf(messagePrefix) === 0) {\n                runIfPresent(+event.data.slice(messagePrefix.length));\n            }\n        };\n\n        if (global.addEventListener) {\n            global.addEventListener(\"message\", onGlobalMessage, false);\n        } else {\n            global.attachEvent(\"onmessage\", onGlobalMessage);\n        }\n\n        registerImmediate = function(handle) {\n            global.postMessage(messagePrefix + handle, \"*\");\n        };\n    }\n\n    function installMessageChannelImplementation() {\n        var channel = new MessageChannel();\n        channel.port1.onmessage = function(event) {\n            var handle = event.data;\n            runIfPresent(handle);\n        };\n\n        registerImmediate = function(handle) {\n            channel.port2.postMessage(handle);\n        };\n    }\n\n    function installReadyStateChangeImplementation() {\n        var html = doc.documentElement;\n        registerImmediate = function(handle) {\n            // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n            // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n            var script = doc.createElement(\"script\");\n            script.onreadystatechange = function () {\n                runIfPresent(handle);\n                script.onreadystatechange = null;\n                html.removeChild(script);\n                script = null;\n            };\n            html.appendChild(script);\n        };\n    }\n\n    function installSetTimeoutImplementation() {\n        registerImmediate = function(handle) {\n            setTimeout(runIfPresent, 0, handle);\n        };\n    }\n\n    // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n    var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n    attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n    // Don't get fooled by e.g. browserify environments.\n    if ({}.toString.call(global.process) === \"[object process]\") {\n        // For Node.js before 0.9\n        installNextTickImplementation();\n\n    } else if (canUsePostMessage()) {\n        // For non-IE10 modern browsers\n        installPostMessageImplementation();\n\n    } else if (global.MessageChannel) {\n        // For web workers, where supported\n        installMessageChannelImplementation();\n\n    } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n        // For IE 6–8\n        installReadyStateChangeImplementation();\n\n    } else {\n        // For older browsers\n        installSetTimeoutImplementation();\n    }\n\n    attachTo.setImmediate = setImmediate;\n    attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","// @flow\n\n/*::\ntype Options = {\n  max?: number,\n  min?: number,\n  historyTimeConstant?: number,\n  autostart?: boolean,\n  ignoreSameProgress?: boolean,\n}\n*/\n\nfunction makeLowPassFilter(RC/*: number*/) {\n  return function (previousOutput, input, dt) {\n    const alpha = dt / (dt + RC);\n    return previousOutput + alpha * (input - previousOutput);\n  }\n}\n\nfunction def/*:: <T>*/(x/*: ?T*/, d/*: T*/)/*: T*/ {\n  return (x === undefined || x === null) ? d : x;\n}\n\nfunction makeEta(options/*::?: Options */) {\n  options = options || {};\n  var max = def(options.max, 1);\n  var min = def(options.min, 0);\n  var autostart = def(options.autostart, true);\n  var ignoreSameProgress = def(options.ignoreSameProgress, false);\n\n  var rate/*: number | null */ = null;\n  var lastTimestamp/*: number | null */ = null;\n  var lastProgress/*: number | null */ = null;\n\n  var filter = makeLowPassFilter(def(options.historyTimeConstant, 2.5));\n\n  function start() {\n    report(min);\n  }\n\n  function reset() {\n    rate = null;\n    lastTimestamp = null;\n    lastProgress = null;\n    if (autostart) {\n      start();\n    }\n  }\n\n  function report(progress /*: number */, timestamp/*::?: number */) {\n    if (typeof timestamp !== 'number') {\n      timestamp = Date.now();\n    }\n\n    if (lastTimestamp === timestamp) { return; }\n    if (ignoreSameProgress && lastProgress === progress) { return; }\n\n    if (lastTimestamp === null || lastProgress === null) {\n      lastProgress = progress;\n      lastTimestamp = timestamp;\n      return;\n    }\n\n    var deltaProgress = progress - lastProgress;\n    var deltaTimestamp = 0.001 * (timestamp - lastTimestamp);\n    var currentRate = deltaProgress / deltaTimestamp;\n\n    rate = rate === null\n      ? currentRate\n      : filter(rate, currentRate, deltaTimestamp);\n    lastProgress = progress;\n    lastTimestamp = timestamp;\n  }\n\n  function estimate(timestamp/*::?: number*/) {\n    if (lastProgress === null) { return Infinity; }\n    if (lastProgress >= max) { return 0; }\n    if (rate === null) { return Infinity; }\n\n    var estimatedTime = (max - lastProgress) / rate;\n    if (typeof timestamp === 'number' && typeof lastTimestamp === 'number') {\n      estimatedTime -= (timestamp - lastTimestamp) * 0.001;\n    }\n    return Math.max(0, estimatedTime);\n  }\n\n  function getRate() {\n    return rate === null ? 0 : rate;\n  }\n\n  return {\n    start: start,\n    reset: reset,\n    report: report,\n    estimate: estimate,\n    rate: getRate,\n  }\n}\n\nmodule.exports = makeEta;\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nmodule.exports = Stream;\n\nvar EE = require('events').EventEmitter;\nvar inherits = require('inherits');\n\ninherits(Stream, EE);\nStream.Readable = require('readable-stream/lib/_stream_readable.js');\nStream.Writable = require('readable-stream/lib/_stream_writable.js');\nStream.Duplex = require('readable-stream/lib/_stream_duplex.js');\nStream.Transform = require('readable-stream/lib/_stream_transform.js');\nStream.PassThrough = require('readable-stream/lib/_stream_passthrough.js');\nStream.finished = require('readable-stream/lib/internal/streams/end-of-stream.js')\nStream.pipeline = require('readable-stream/lib/internal/streams/pipeline.js')\n\n// Backwards-compat with node 0.4.x\nStream.Stream = Stream;\n\n\n\n// old-style streams.  Note that the pipe method (the only relevant\n// part of this class) is overridden in the Readable class.\n\nfunction Stream() {\n  EE.call(this);\n}\n\nStream.prototype.pipe = function(dest, options) {\n  var source = this;\n\n  function ondata(chunk) {\n    if (dest.writable) {\n      if (false === dest.write(chunk) && source.pause) {\n        source.pause();\n      }\n    }\n  }\n\n  source.on('data', ondata);\n\n  function ondrain() {\n    if (source.readable && source.resume) {\n      source.resume();\n    }\n  }\n\n  dest.on('drain', ondrain);\n\n  // If the 'end' option is not supplied, dest.end() will be called when\n  // source gets the 'end' or 'close' events.  Only dest.end() once.\n  if (!dest._isStdio && (!options || options.end !== false)) {\n    source.on('end', onend);\n    source.on('close', onclose);\n  }\n\n  var didOnEnd = false;\n  function onend() {\n    if (didOnEnd) return;\n    didOnEnd = true;\n\n    dest.end();\n  }\n\n\n  function onclose() {\n    if (didOnEnd) return;\n    didOnEnd = true;\n\n    if (typeof dest.destroy === 'function') dest.destroy();\n  }\n\n  // don't leave dangling pipes when there are errors.\n  function onerror(er) {\n    cleanup();\n    if (EE.listenerCount(this, 'error') === 0) {\n      throw er; // Unhandled stream error in pipe.\n    }\n  }\n\n  source.on('error', onerror);\n  dest.on('error', onerror);\n\n  // remove all the event listeners that were added.\n  function cleanup() {\n    source.removeListener('data', ondata);\n    dest.removeListener('drain', ondrain);\n\n    source.removeListener('end', onend);\n    source.removeListener('close', onclose);\n\n    source.removeListener('error', onerror);\n    dest.removeListener('error', onerror);\n\n    source.removeListener('end', cleanup);\n    source.removeListener('close', cleanup);\n\n    dest.removeListener('close', cleanup);\n  }\n\n  source.on('end', cleanup);\n  source.on('close', cleanup);\n\n  dest.on('close', cleanup);\n\n  dest.emit('pipe', source);\n\n  // Allow for unix-like usage: A.pipe(B).pipe(C)\n  return dest;\n};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n'use strict';\n\n/*<replacement>*/\n\nvar Buffer = require('safe-buffer').Buffer;\n/*</replacement>*/\n\nvar isEncoding = Buffer.isEncoding || function (encoding) {\n  encoding = '' + encoding;\n  switch (encoding && encoding.toLowerCase()) {\n    case 'hex':case 'utf8':case 'utf-8':case 'ascii':case 'binary':case 'base64':case 'ucs2':case 'ucs-2':case 'utf16le':case 'utf-16le':case 'raw':\n      return true;\n    default:\n      return false;\n  }\n};\n\nfunction _normalizeEncoding(enc) {\n  if (!enc) return 'utf8';\n  var retried;\n  while (true) {\n    switch (enc) {\n      case 'utf8':\n      case 'utf-8':\n        return 'utf8';\n      case 'ucs2':\n      case 'ucs-2':\n      case 'utf16le':\n      case 'utf-16le':\n        return 'utf16le';\n      case 'latin1':\n      case 'binary':\n        return 'latin1';\n      case 'base64':\n      case 'ascii':\n      case 'hex':\n        return enc;\n      default:\n        if (retried) return; // undefined\n        enc = ('' + enc).toLowerCase();\n        retried = true;\n    }\n  }\n};\n\n// Do not cache `Buffer.isEncoding` when checking encoding names as some\n// modules monkey-patch it to support additional encodings\nfunction normalizeEncoding(enc) {\n  var nenc = _normalizeEncoding(enc);\n  if (typeof nenc !== 'string' && (Buffer.isEncoding === isEncoding || !isEncoding(enc))) throw new Error('Unknown encoding: ' + enc);\n  return nenc || enc;\n}\n\n// StringDecoder provides an interface for efficiently splitting a series of\n// buffers into a series of JS strings without breaking apart multi-byte\n// characters.\nexports.StringDecoder = StringDecoder;\nfunction StringDecoder(encoding) {\n  this.encoding = normalizeEncoding(encoding);\n  var nb;\n  switch (this.encoding) {\n    case 'utf16le':\n      this.text = utf16Text;\n      this.end = utf16End;\n      nb = 4;\n      break;\n    case 'utf8':\n      this.fillLast = utf8FillLast;\n      nb = 4;\n      break;\n    case 'base64':\n      this.text = base64Text;\n      this.end = base64End;\n      nb = 3;\n      break;\n    default:\n      this.write = simpleWrite;\n      this.end = simpleEnd;\n      return;\n  }\n  this.lastNeed = 0;\n  this.lastTotal = 0;\n  this.lastChar = Buffer.allocUnsafe(nb);\n}\n\nStringDecoder.prototype.write = function (buf) {\n  if (buf.length === 0) return '';\n  var r;\n  var i;\n  if (this.lastNeed) {\n    r = this.fillLast(buf);\n    if (r === undefined) return '';\n    i = this.lastNeed;\n    this.lastNeed = 0;\n  } else {\n    i = 0;\n  }\n  if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);\n  return r || '';\n};\n\nStringDecoder.prototype.end = utf8End;\n\n// Returns only complete characters in a Buffer\nStringDecoder.prototype.text = utf8Text;\n\n// Attempts to complete a partial non-UTF-8 character using bytes from a Buffer\nStringDecoder.prototype.fillLast = function (buf) {\n  if (this.lastNeed <= buf.length) {\n    buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);\n    return this.lastChar.toString(this.encoding, 0, this.lastTotal);\n  }\n  buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);\n  this.lastNeed -= buf.length;\n};\n\n// Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a\n// continuation byte. If an invalid byte is detected, -2 is returned.\nfunction utf8CheckByte(byte) {\n  if (byte <= 0x7F) return 0;else if (byte >> 5 === 0x06) return 2;else if (byte >> 4 === 0x0E) return 3;else if (byte >> 3 === 0x1E) return 4;\n  return byte >> 6 === 0x02 ? -1 : -2;\n}\n\n// Checks at most 3 bytes at the end of a Buffer in order to detect an\n// incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4)\n// needed to complete the UTF-8 character (if applicable) are returned.\nfunction utf8CheckIncomplete(self, buf, i) {\n  var j = buf.length - 1;\n  if (j < i) return 0;\n  var nb = utf8CheckByte(buf[j]);\n  if (nb >= 0) {\n    if (nb > 0) self.lastNeed = nb - 1;\n    return nb;\n  }\n  if (--j < i || nb === -2) return 0;\n  nb = utf8CheckByte(buf[j]);\n  if (nb >= 0) {\n    if (nb > 0) self.lastNeed = nb - 2;\n    return nb;\n  }\n  if (--j < i || nb === -2) return 0;\n  nb = utf8CheckByte(buf[j]);\n  if (nb >= 0) {\n    if (nb > 0) {\n      if (nb === 2) nb = 0;else self.lastNeed = nb - 3;\n    }\n    return nb;\n  }\n  return 0;\n}\n\n// Validates as many continuation bytes for a multi-byte UTF-8 character as\n// needed or are available. If we see a non-continuation byte where we expect\n// one, we \"replace\" the validated continuation bytes we've seen so far with\n// a single UTF-8 replacement character ('\\ufffd'), to match v8's UTF-8 decoding\n// behavior. The continuation byte check is included three times in the case\n// where all of the continuation bytes for a character exist in the same buffer.\n// It is also done this way as a slight performance increase instead of using a\n// loop.\nfunction utf8CheckExtraBytes(self, buf, p) {\n  if ((buf[0] & 0xC0) !== 0x80) {\n    self.lastNeed = 0;\n    return '\\ufffd';\n  }\n  if (self.lastNeed > 1 && buf.length > 1) {\n    if ((buf[1] & 0xC0) !== 0x80) {\n      self.lastNeed = 1;\n      return '\\ufffd';\n    }\n    if (self.lastNeed > 2 && buf.length > 2) {\n      if ((buf[2] & 0xC0) !== 0x80) {\n        self.lastNeed = 2;\n        return '\\ufffd';\n      }\n    }\n  }\n}\n\n// Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer.\nfunction utf8FillLast(buf) {\n  var p = this.lastTotal - this.lastNeed;\n  var r = utf8CheckExtraBytes(this, buf, p);\n  if (r !== undefined) return r;\n  if (this.lastNeed <= buf.length) {\n    buf.copy(this.lastChar, p, 0, this.lastNeed);\n    return this.lastChar.toString(this.encoding, 0, this.lastTotal);\n  }\n  buf.copy(this.lastChar, p, 0, buf.length);\n  this.lastNeed -= buf.length;\n}\n\n// Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a\n// partial character, the character's bytes are buffered until the required\n// number of bytes are available.\nfunction utf8Text(buf, i) {\n  var total = utf8CheckIncomplete(this, buf, i);\n  if (!this.lastNeed) return buf.toString('utf8', i);\n  this.lastTotal = total;\n  var end = buf.length - (total - this.lastNeed);\n  buf.copy(this.lastChar, 0, end);\n  return buf.toString('utf8', i, end);\n}\n\n// For UTF-8, a replacement character is added when ending on a partial\n// character.\nfunction utf8End(buf) {\n  var r = buf && buf.length ? this.write(buf) : '';\n  if (this.lastNeed) return r + '\\ufffd';\n  return r;\n}\n\n// UTF-16LE typically needs two bytes per character, but even if we have an even\n// number of bytes available, we need to check if we end on a leading/high\n// surrogate. In that case, we need to wait for the next two bytes in order to\n// decode the last character properly.\nfunction utf16Text(buf, i) {\n  if ((buf.length - i) % 2 === 0) {\n    var r = buf.toString('utf16le', i);\n    if (r) {\n      var c = r.charCodeAt(r.length - 1);\n      if (c >= 0xD800 && c <= 0xDBFF) {\n        this.lastNeed = 2;\n        this.lastTotal = 4;\n        this.lastChar[0] = buf[buf.length - 2];\n        this.lastChar[1] = buf[buf.length - 1];\n        return r.slice(0, -1);\n      }\n    }\n    return r;\n  }\n  this.lastNeed = 1;\n  this.lastTotal = 2;\n  this.lastChar[0] = buf[buf.length - 1];\n  return buf.toString('utf16le', i, buf.length - 1);\n}\n\n// For UTF-16LE we do not explicitly append special replacement characters if we\n// end on a partial character, we simply let v8 handle that.\nfunction utf16End(buf) {\n  var r = buf && buf.length ? this.write(buf) : '';\n  if (this.lastNeed) {\n    var end = this.lastTotal - this.lastNeed;\n    return r + this.lastChar.toString('utf16le', 0, end);\n  }\n  return r;\n}\n\nfunction base64Text(buf, i) {\n  var n = (buf.length - i) % 3;\n  if (n === 0) return buf.toString('base64', i);\n  this.lastNeed = 3 - n;\n  this.lastTotal = 3;\n  if (n === 1) {\n    this.lastChar[0] = buf[buf.length - 1];\n  } else {\n    this.lastChar[0] = buf[buf.length - 2];\n    this.lastChar[1] = buf[buf.length - 1];\n  }\n  return buf.toString('base64', i, buf.length - n);\n}\n\nfunction base64End(buf) {\n  var r = buf && buf.length ? this.write(buf) : '';\n  if (this.lastNeed) return r + this.lastChar.toString('base64', 0, 3 - this.lastNeed);\n  return r;\n}\n\n// Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex)\nfunction simpleWrite(buf) {\n  return buf.toString(this.encoding);\n}\n\nfunction simpleEnd(buf) {\n  return buf && buf.length ? this.write(buf) : '';\n}","var scope = (typeof global !== \"undefined\" && global) ||\n            (typeof self !== \"undefined\" && self) ||\n            window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n  return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n  return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n  if (timeout) {\n    timeout.close();\n  }\n};\n\nfunction Timeout(id, clearFn) {\n  this._id = id;\n  this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n  this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n  clearTimeout(item._idleTimeoutId);\n  item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n  clearTimeout(item._idleTimeoutId);\n  item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n  clearTimeout(item._idleTimeoutId);\n\n  var msecs = item._idleTimeout;\n  if (msecs >= 0) {\n    item._idleTimeoutId = setTimeout(function onTimeout() {\n      if (item._onTimeout)\n        item._onTimeout();\n    }, msecs);\n  }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto.  Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n                       (typeof global !== \"undefined\" && global.setImmediate) ||\n                       (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n                         (typeof global !== \"undefined\" && global.clearImmediate) ||\n                         (this && this.clearImmediate);\n","\n/**\n * Module exports.\n */\n\nmodule.exports = deprecate;\n\n/**\n * Mark that a method should not be used.\n * Returns a modified function which warns once by default.\n *\n * If `localStorage.noDeprecation = true` is set, then it is a no-op.\n *\n * If `localStorage.throwDeprecation = true` is set, then deprecated functions\n * will throw an Error when invoked.\n *\n * If `localStorage.traceDeprecation = true` is set, then deprecated functions\n * will invoke `console.trace()` instead of `console.error()`.\n *\n * @param {Function} fn - the function to deprecate\n * @param {String} msg - the string to print to the console when `fn` is invoked\n * @returns {Function} a new \"deprecated\" version of `fn`\n * @api public\n */\n\nfunction deprecate (fn, msg) {\n  if (config('noDeprecation')) {\n    return fn;\n  }\n\n  var warned = false;\n  function deprecated() {\n    if (!warned) {\n      if (config('throwDeprecation')) {\n        throw new Error(msg);\n      } else if (config('traceDeprecation')) {\n        console.trace(msg);\n      } else {\n        console.warn(msg);\n      }\n      warned = true;\n    }\n    return fn.apply(this, arguments);\n  }\n\n  return deprecated;\n}\n\n/**\n * Checks `localStorage` for boolean values for the given `name`.\n *\n * @param {String} name\n * @returns {Boolean}\n * @api private\n */\n\nfunction config (name) {\n  // accessing global.localStorage can trigger a DOMException in sandboxed iframes\n  try {\n    if (!global.localStorage) return false;\n  } catch (_) {\n    return false;\n  }\n  var val = global.localStorage[name];\n  if (null == val) return false;\n  return String(val).toLowerCase() === 'true';\n}\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  \"use strict\";\n  exports.stripBOM = function(str) {\n    if (str[0] === '\\uFEFF') {\n      return str.substring(1);\n    } else {\n      return str;\n    }\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  \"use strict\";\n  var builder, defaults, escapeCDATA, requiresCDATA, wrapCDATA,\n    hasProp = {}.hasOwnProperty;\n\n  builder = require('xmlbuilder');\n\n  defaults = require('./defaults').defaults;\n\n  requiresCDATA = function(entry) {\n    return typeof entry === \"string\" && (entry.indexOf('&') >= 0 || entry.indexOf('>') >= 0 || entry.indexOf('<') >= 0);\n  };\n\n  wrapCDATA = function(entry) {\n    return \"<![CDATA[\" + (escapeCDATA(entry)) + \"]]>\";\n  };\n\n  escapeCDATA = function(entry) {\n    return entry.replace(']]>', ']]]]><![CDATA[>');\n  };\n\n  exports.Builder = (function() {\n    function Builder(opts) {\n      var key, ref, value;\n      this.options = {};\n      ref = defaults[\"0.2\"];\n      for (key in ref) {\n        if (!hasProp.call(ref, key)) continue;\n        value = ref[key];\n        this.options[key] = value;\n      }\n      for (key in opts) {\n        if (!hasProp.call(opts, key)) continue;\n        value = opts[key];\n        this.options[key] = value;\n      }\n    }\n\n    Builder.prototype.buildObject = function(rootObj) {\n      var attrkey, charkey, render, rootElement, rootName;\n      attrkey = this.options.attrkey;\n      charkey = this.options.charkey;\n      if ((Object.keys(rootObj).length === 1) && (this.options.rootName === defaults['0.2'].rootName)) {\n        rootName = Object.keys(rootObj)[0];\n        rootObj = rootObj[rootName];\n      } else {\n        rootName = this.options.rootName;\n      }\n      render = (function(_this) {\n        return function(element, obj) {\n          var attr, child, entry, index, key, value;\n          if (typeof obj !== 'object') {\n            if (_this.options.cdata && requiresCDATA(obj)) {\n              element.raw(wrapCDATA(obj));\n            } else {\n              element.txt(obj);\n            }\n          } else if (Array.isArray(obj)) {\n            for (index in obj) {\n              if (!hasProp.call(obj, index)) continue;\n              child = obj[index];\n              for (key in child) {\n                entry = child[key];\n                element = render(element.ele(key), entry).up();\n              }\n            }\n          } else {\n            for (key in obj) {\n              if (!hasProp.call(obj, key)) continue;\n              child = obj[key];\n              if (key === attrkey) {\n                if (typeof child === \"object\") {\n                  for (attr in child) {\n                    value = child[attr];\n                    element = element.att(attr, value);\n                  }\n                }\n              } else if (key === charkey) {\n                if (_this.options.cdata && requiresCDATA(child)) {\n                  element = element.raw(wrapCDATA(child));\n                } else {\n                  element = element.txt(child);\n                }\n              } else if (Array.isArray(child)) {\n                for (index in child) {\n                  if (!hasProp.call(child, index)) continue;\n                  entry = child[index];\n                  if (typeof entry === 'string') {\n                    if (_this.options.cdata && requiresCDATA(entry)) {\n                      element = element.ele(key).raw(wrapCDATA(entry)).up();\n                    } else {\n                      element = element.ele(key, entry).up();\n                    }\n                  } else {\n                    element = render(element.ele(key), entry).up();\n                  }\n                }\n              } else if (typeof child === \"object\") {\n                element = render(element.ele(key), child).up();\n              } else {\n                if (typeof child === 'string' && _this.options.cdata && requiresCDATA(child)) {\n                  element = element.ele(key).raw(wrapCDATA(child)).up();\n                } else {\n                  if (child == null) {\n                    child = '';\n                  }\n                  element = element.ele(key, child.toString()).up();\n                }\n              }\n            }\n          }\n          return element;\n        };\n      })(this);\n      rootElement = builder.create(rootName, this.options.xmldec, this.options.doctype, {\n        headless: this.options.headless,\n        allowSurrogateChars: this.options.allowSurrogateChars\n      });\n      return render(rootElement, rootObj).end(this.options.renderOpts);\n    };\n\n    return Builder;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  exports.defaults = {\n    \"0.1\": {\n      explicitCharkey: false,\n      trim: true,\n      normalize: true,\n      normalizeTags: false,\n      attrkey: \"@\",\n      charkey: \"#\",\n      explicitArray: false,\n      ignoreAttrs: false,\n      mergeAttrs: false,\n      explicitRoot: false,\n      validator: null,\n      xmlns: false,\n      explicitChildren: false,\n      childkey: '@@',\n      charsAsChildren: false,\n      includeWhiteChars: false,\n      async: false,\n      strict: true,\n      attrNameProcessors: null,\n      attrValueProcessors: null,\n      tagNameProcessors: null,\n      valueProcessors: null,\n      emptyTag: ''\n    },\n    \"0.2\": {\n      explicitCharkey: false,\n      trim: false,\n      normalize: false,\n      normalizeTags: false,\n      attrkey: \"$\",\n      charkey: \"_\",\n      explicitArray: true,\n      ignoreAttrs: false,\n      mergeAttrs: false,\n      explicitRoot: true,\n      validator: null,\n      xmlns: false,\n      explicitChildren: false,\n      preserveChildrenOrder: false,\n      childkey: '$$',\n      charsAsChildren: false,\n      includeWhiteChars: false,\n      async: false,\n      strict: true,\n      attrNameProcessors: null,\n      attrValueProcessors: null,\n      tagNameProcessors: null,\n      valueProcessors: null,\n      rootName: 'root',\n      xmldec: {\n        'version': '1.0',\n        'encoding': 'UTF-8',\n        'standalone': true\n      },\n      doctype: null,\n      renderOpts: {\n        'pretty': true,\n        'indent': '  ',\n        'newline': '\\n'\n      },\n      headless: false,\n      chunkSize: 10000,\n      emptyTag: '',\n      cdata: false\n    }\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  \"use strict\";\n  var bom, defaults, defineProperty, events, isEmpty, processItem, processors, sax, setImmediate,\n    bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  sax = require('sax');\n\n  events = require('events');\n\n  bom = require('./bom');\n\n  processors = require('./processors');\n\n  setImmediate = require('timers').setImmediate;\n\n  defaults = require('./defaults').defaults;\n\n  isEmpty = function(thing) {\n    return typeof thing === \"object\" && (thing != null) && Object.keys(thing).length === 0;\n  };\n\n  processItem = function(processors, item, key) {\n    var i, len, process;\n    for (i = 0, len = processors.length; i < len; i++) {\n      process = processors[i];\n      item = process(item, key);\n    }\n    return item;\n  };\n\n  defineProperty = function(obj, key, value) {\n    var descriptor;\n    descriptor = Object.create(null);\n    descriptor.value = value;\n    descriptor.writable = true;\n    descriptor.enumerable = true;\n    descriptor.configurable = true;\n    return Object.defineProperty(obj, key, descriptor);\n  };\n\n  exports.Parser = (function(superClass) {\n    extend(Parser, superClass);\n\n    function Parser(opts) {\n      this.parseStringPromise = bind(this.parseStringPromise, this);\n      this.parseString = bind(this.parseString, this);\n      this.reset = bind(this.reset, this);\n      this.assignOrPush = bind(this.assignOrPush, this);\n      this.processAsync = bind(this.processAsync, this);\n      var key, ref, value;\n      if (!(this instanceof exports.Parser)) {\n        return new exports.Parser(opts);\n      }\n      this.options = {};\n      ref = defaults[\"0.2\"];\n      for (key in ref) {\n        if (!hasProp.call(ref, key)) continue;\n        value = ref[key];\n        this.options[key] = value;\n      }\n      for (key in opts) {\n        if (!hasProp.call(opts, key)) continue;\n        value = opts[key];\n        this.options[key] = value;\n      }\n      if (this.options.xmlns) {\n        this.options.xmlnskey = this.options.attrkey + \"ns\";\n      }\n      if (this.options.normalizeTags) {\n        if (!this.options.tagNameProcessors) {\n          this.options.tagNameProcessors = [];\n        }\n        this.options.tagNameProcessors.unshift(processors.normalize);\n      }\n      this.reset();\n    }\n\n    Parser.prototype.processAsync = function() {\n      var chunk, err;\n      try {\n        if (this.remaining.length <= this.options.chunkSize) {\n          chunk = this.remaining;\n          this.remaining = '';\n          this.saxParser = this.saxParser.write(chunk);\n          return this.saxParser.close();\n        } else {\n          chunk = this.remaining.substr(0, this.options.chunkSize);\n          this.remaining = this.remaining.substr(this.options.chunkSize, this.remaining.length);\n          this.saxParser = this.saxParser.write(chunk);\n          return setImmediate(this.processAsync);\n        }\n      } catch (error1) {\n        err = error1;\n        if (!this.saxParser.errThrown) {\n          this.saxParser.errThrown = true;\n          return this.emit(err);\n        }\n      }\n    };\n\n    Parser.prototype.assignOrPush = function(obj, key, newValue) {\n      if (!(key in obj)) {\n        if (!this.options.explicitArray) {\n          return defineProperty(obj, key, newValue);\n        } else {\n          return defineProperty(obj, key, [newValue]);\n        }\n      } else {\n        if (!(obj[key] instanceof Array)) {\n          defineProperty(obj, key, [obj[key]]);\n        }\n        return obj[key].push(newValue);\n      }\n    };\n\n    Parser.prototype.reset = function() {\n      var attrkey, charkey, ontext, stack;\n      this.removeAllListeners();\n      this.saxParser = sax.parser(this.options.strict, {\n        trim: false,\n        normalize: false,\n        xmlns: this.options.xmlns\n      });\n      this.saxParser.errThrown = false;\n      this.saxParser.onerror = (function(_this) {\n        return function(error) {\n          _this.saxParser.resume();\n          if (!_this.saxParser.errThrown) {\n            _this.saxParser.errThrown = true;\n            return _this.emit(\"error\", error);\n          }\n        };\n      })(this);\n      this.saxParser.onend = (function(_this) {\n        return function() {\n          if (!_this.saxParser.ended) {\n            _this.saxParser.ended = true;\n            return _this.emit(\"end\", _this.resultObject);\n          }\n        };\n      })(this);\n      this.saxParser.ended = false;\n      this.EXPLICIT_CHARKEY = this.options.explicitCharkey;\n      this.resultObject = null;\n      stack = [];\n      attrkey = this.options.attrkey;\n      charkey = this.options.charkey;\n      this.saxParser.onopentag = (function(_this) {\n        return function(node) {\n          var key, newValue, obj, processedKey, ref;\n          obj = {};\n          obj[charkey] = \"\";\n          if (!_this.options.ignoreAttrs) {\n            ref = node.attributes;\n            for (key in ref) {\n              if (!hasProp.call(ref, key)) continue;\n              if (!(attrkey in obj) && !_this.options.mergeAttrs) {\n                obj[attrkey] = {};\n              }\n              newValue = _this.options.attrValueProcessors ? processItem(_this.options.attrValueProcessors, node.attributes[key], key) : node.attributes[key];\n              processedKey = _this.options.attrNameProcessors ? processItem(_this.options.attrNameProcessors, key) : key;\n              if (_this.options.mergeAttrs) {\n                _this.assignOrPush(obj, processedKey, newValue);\n              } else {\n                defineProperty(obj[attrkey], processedKey, newValue);\n              }\n            }\n          }\n          obj[\"#name\"] = _this.options.tagNameProcessors ? processItem(_this.options.tagNameProcessors, node.name) : node.name;\n          if (_this.options.xmlns) {\n            obj[_this.options.xmlnskey] = {\n              uri: node.uri,\n              local: node.local\n            };\n          }\n          return stack.push(obj);\n        };\n      })(this);\n      this.saxParser.onclosetag = (function(_this) {\n        return function() {\n          var cdata, emptyStr, key, node, nodeName, obj, objClone, old, s, xpath;\n          obj = stack.pop();\n          nodeName = obj[\"#name\"];\n          if (!_this.options.explicitChildren || !_this.options.preserveChildrenOrder) {\n            delete obj[\"#name\"];\n          }\n          if (obj.cdata === true) {\n            cdata = obj.cdata;\n            delete obj.cdata;\n          }\n          s = stack[stack.length - 1];\n          if (obj[charkey].match(/^\\s*$/) && !cdata) {\n            emptyStr = obj[charkey];\n            delete obj[charkey];\n          } else {\n            if (_this.options.trim) {\n              obj[charkey] = obj[charkey].trim();\n            }\n            if (_this.options.normalize) {\n              obj[charkey] = obj[charkey].replace(/\\s{2,}/g, \" \").trim();\n            }\n            obj[charkey] = _this.options.valueProcessors ? processItem(_this.options.valueProcessors, obj[charkey], nodeName) : obj[charkey];\n            if (Object.keys(obj).length === 1 && charkey in obj && !_this.EXPLICIT_CHARKEY) {\n              obj = obj[charkey];\n            }\n          }\n          if (isEmpty(obj)) {\n            if (typeof _this.options.emptyTag === 'function') {\n              obj = _this.options.emptyTag();\n            } else {\n              obj = _this.options.emptyTag !== '' ? _this.options.emptyTag : emptyStr;\n            }\n          }\n          if (_this.options.validator != null) {\n            xpath = \"/\" + ((function() {\n              var i, len, results;\n              results = [];\n              for (i = 0, len = stack.length; i < len; i++) {\n                node = stack[i];\n                results.push(node[\"#name\"]);\n              }\n              return results;\n            })()).concat(nodeName).join(\"/\");\n            (function() {\n              var err;\n              try {\n                return obj = _this.options.validator(xpath, s && s[nodeName], obj);\n              } catch (error1) {\n                err = error1;\n                return _this.emit(\"error\", err);\n              }\n            })();\n          }\n          if (_this.options.explicitChildren && !_this.options.mergeAttrs && typeof obj === 'object') {\n            if (!_this.options.preserveChildrenOrder) {\n              node = {};\n              if (_this.options.attrkey in obj) {\n                node[_this.options.attrkey] = obj[_this.options.attrkey];\n                delete obj[_this.options.attrkey];\n              }\n              if (!_this.options.charsAsChildren && _this.options.charkey in obj) {\n                node[_this.options.charkey] = obj[_this.options.charkey];\n                delete obj[_this.options.charkey];\n              }\n              if (Object.getOwnPropertyNames(obj).length > 0) {\n                node[_this.options.childkey] = obj;\n              }\n              obj = node;\n            } else if (s) {\n              s[_this.options.childkey] = s[_this.options.childkey] || [];\n              objClone = {};\n              for (key in obj) {\n                if (!hasProp.call(obj, key)) continue;\n                defineProperty(objClone, key, obj[key]);\n              }\n              s[_this.options.childkey].push(objClone);\n              delete obj[\"#name\"];\n              if (Object.keys(obj).length === 1 && charkey in obj && !_this.EXPLICIT_CHARKEY) {\n                obj = obj[charkey];\n              }\n            }\n          }\n          if (stack.length > 0) {\n            return _this.assignOrPush(s, nodeName, obj);\n          } else {\n            if (_this.options.explicitRoot) {\n              old = obj;\n              obj = {};\n              defineProperty(obj, nodeName, old);\n            }\n            _this.resultObject = obj;\n            _this.saxParser.ended = true;\n            return _this.emit(\"end\", _this.resultObject);\n          }\n        };\n      })(this);\n      ontext = (function(_this) {\n        return function(text) {\n          var charChild, s;\n          s = stack[stack.length - 1];\n          if (s) {\n            s[charkey] += text;\n            if (_this.options.explicitChildren && _this.options.preserveChildrenOrder && _this.options.charsAsChildren && (_this.options.includeWhiteChars || text.replace(/\\\\n/g, '').trim() !== '')) {\n              s[_this.options.childkey] = s[_this.options.childkey] || [];\n              charChild = {\n                '#name': '__text__'\n              };\n              charChild[charkey] = text;\n              if (_this.options.normalize) {\n                charChild[charkey] = charChild[charkey].replace(/\\s{2,}/g, \" \").trim();\n              }\n              s[_this.options.childkey].push(charChild);\n            }\n            return s;\n          }\n        };\n      })(this);\n      this.saxParser.ontext = ontext;\n      return this.saxParser.oncdata = (function(_this) {\n        return function(text) {\n          var s;\n          s = ontext(text);\n          if (s) {\n            return s.cdata = true;\n          }\n        };\n      })(this);\n    };\n\n    Parser.prototype.parseString = function(str, cb) {\n      var err;\n      if ((cb != null) && typeof cb === \"function\") {\n        this.on(\"end\", function(result) {\n          this.reset();\n          return cb(null, result);\n        });\n        this.on(\"error\", function(err) {\n          this.reset();\n          return cb(err);\n        });\n      }\n      try {\n        str = str.toString();\n        if (str.trim() === '') {\n          this.emit(\"end\", null);\n          return true;\n        }\n        str = bom.stripBOM(str);\n        if (this.options.async) {\n          this.remaining = str;\n          setImmediate(this.processAsync);\n          return this.saxParser;\n        }\n        return this.saxParser.write(str).close();\n      } catch (error1) {\n        err = error1;\n        if (!(this.saxParser.errThrown || this.saxParser.ended)) {\n          this.emit('error', err);\n          return this.saxParser.errThrown = true;\n        } else if (this.saxParser.ended) {\n          throw err;\n        }\n      }\n    };\n\n    Parser.prototype.parseStringPromise = function(str) {\n      return new Promise((function(_this) {\n        return function(resolve, reject) {\n          return _this.parseString(str, function(err, value) {\n            if (err) {\n              return reject(err);\n            } else {\n              return resolve(value);\n            }\n          });\n        };\n      })(this));\n    };\n\n    return Parser;\n\n  })(events);\n\n  exports.parseString = function(str, a, b) {\n    var cb, options, parser;\n    if (b != null) {\n      if (typeof b === 'function') {\n        cb = b;\n      }\n      if (typeof a === 'object') {\n        options = a;\n      }\n    } else {\n      if (typeof a === 'function') {\n        cb = a;\n      }\n      options = {};\n    }\n    parser = new exports.Parser(options);\n    return parser.parseString(str, cb);\n  };\n\n  exports.parseStringPromise = function(str, a) {\n    var options, parser;\n    if (typeof a === 'object') {\n      options = a;\n    }\n    parser = new exports.Parser(options);\n    return parser.parseStringPromise(str);\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  \"use strict\";\n  var prefixMatch;\n\n  prefixMatch = new RegExp(/(?!xmlns)^.*:/);\n\n  exports.normalize = function(str) {\n    return str.toLowerCase();\n  };\n\n  exports.firstCharLowerCase = function(str) {\n    return str.charAt(0).toLowerCase() + str.slice(1);\n  };\n\n  exports.stripPrefix = function(str) {\n    return str.replace(prefixMatch, '');\n  };\n\n  exports.parseNumbers = function(str) {\n    if (!isNaN(str)) {\n      str = str % 1 === 0 ? parseInt(str, 10) : parseFloat(str);\n    }\n    return str;\n  };\n\n  exports.parseBooleans = function(str) {\n    if (/^(?:true|false)$/i.test(str)) {\n      str = str.toLowerCase() === 'true';\n    }\n    return str;\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  \"use strict\";\n  var builder, defaults, parser, processors,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  defaults = require('./defaults');\n\n  builder = require('./builder');\n\n  parser = require('./parser');\n\n  processors = require('./processors');\n\n  exports.defaults = defaults.defaults;\n\n  exports.processors = processors;\n\n  exports.ValidationError = (function(superClass) {\n    extend(ValidationError, superClass);\n\n    function ValidationError(message) {\n      this.message = message;\n    }\n\n    return ValidationError;\n\n  })(Error);\n\n  exports.Builder = builder.Builder;\n\n  exports.Parser = parser.Parser;\n\n  exports.parseString = parser.parseString;\n\n  exports.parseStringPromise = parser.parseStringPromise;\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  module.exports = {\n    Disconnected: 1,\n    Preceding: 2,\n    Following: 4,\n    Contains: 8,\n    ContainedBy: 16,\n    ImplementationSpecific: 32\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  module.exports = {\n    Element: 1,\n    Attribute: 2,\n    Text: 3,\n    CData: 4,\n    EntityReference: 5,\n    EntityDeclaration: 6,\n    ProcessingInstruction: 7,\n    Comment: 8,\n    Document: 9,\n    DocType: 10,\n    DocumentFragment: 11,\n    NotationDeclaration: 12,\n    Declaration: 201,\n    Raw: 202,\n    AttributeDeclaration: 203,\n    ElementDeclaration: 204,\n    Dummy: 205\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var assign, getValue, isArray, isEmpty, isFunction, isObject, isPlainObject,\n    slice = [].slice,\n    hasProp = {}.hasOwnProperty;\n\n  assign = function() {\n    var i, key, len, source, sources, target;\n    target = arguments[0], sources = 2 <= arguments.length ? slice.call(arguments, 1) : [];\n    if (isFunction(Object.assign)) {\n      Object.assign.apply(null, arguments);\n    } else {\n      for (i = 0, len = sources.length; i < len; i++) {\n        source = sources[i];\n        if (source != null) {\n          for (key in source) {\n            if (!hasProp.call(source, key)) continue;\n            target[key] = source[key];\n          }\n        }\n      }\n    }\n    return target;\n  };\n\n  isFunction = function(val) {\n    return !!val && Object.prototype.toString.call(val) === '[object Function]';\n  };\n\n  isObject = function(val) {\n    var ref;\n    return !!val && ((ref = typeof val) === 'function' || ref === 'object');\n  };\n\n  isArray = function(val) {\n    if (isFunction(Array.isArray)) {\n      return Array.isArray(val);\n    } else {\n      return Object.prototype.toString.call(val) === '[object Array]';\n    }\n  };\n\n  isEmpty = function(val) {\n    var key;\n    if (isArray(val)) {\n      return !val.length;\n    } else {\n      for (key in val) {\n        if (!hasProp.call(val, key)) continue;\n        return false;\n      }\n      return true;\n    }\n  };\n\n  isPlainObject = function(val) {\n    var ctor, proto;\n    return isObject(val) && (proto = Object.getPrototypeOf(val)) && (ctor = proto.constructor) && (typeof ctor === 'function') && (ctor instanceof ctor) && (Function.prototype.toString.call(ctor) === Function.prototype.toString.call(Object));\n  };\n\n  getValue = function(obj) {\n    if (isFunction(obj.valueOf)) {\n      return obj.valueOf();\n    } else {\n      return obj;\n    }\n  };\n\n  module.exports.assign = assign;\n\n  module.exports.isFunction = isFunction;\n\n  module.exports.isObject = isObject;\n\n  module.exports.isArray = isArray;\n\n  module.exports.isEmpty = isEmpty;\n\n  module.exports.isPlainObject = isPlainObject;\n\n  module.exports.getValue = getValue;\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  module.exports = {\n    None: 0,\n    OpenTag: 1,\n    InsideTag: 2,\n    CloseTag: 3\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLAttribute, XMLNode;\n\n  NodeType = require('./NodeType');\n\n  XMLNode = require('./XMLNode');\n\n  module.exports = XMLAttribute = (function() {\n    function XMLAttribute(parent, name, value) {\n      this.parent = parent;\n      if (this.parent) {\n        this.options = this.parent.options;\n        this.stringify = this.parent.stringify;\n      }\n      if (name == null) {\n        throw new Error(\"Missing attribute name. \" + this.debugInfo(name));\n      }\n      this.name = this.stringify.name(name);\n      this.value = this.stringify.attValue(value);\n      this.type = NodeType.Attribute;\n      this.isId = false;\n      this.schemaTypeInfo = null;\n    }\n\n    Object.defineProperty(XMLAttribute.prototype, 'nodeType', {\n      get: function() {\n        return this.type;\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'ownerElement', {\n      get: function() {\n        return this.parent;\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'textContent', {\n      get: function() {\n        return this.value;\n      },\n      set: function(value) {\n        return this.value = value || '';\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'namespaceURI', {\n      get: function() {\n        return '';\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'prefix', {\n      get: function() {\n        return '';\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'localName', {\n      get: function() {\n        return this.name;\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'specified', {\n      get: function() {\n        return true;\n      }\n    });\n\n    XMLAttribute.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLAttribute.prototype.toString = function(options) {\n      return this.options.writer.attribute(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLAttribute.prototype.debugInfo = function(name) {\n      name = name || this.name;\n      if (name == null) {\n        return \"parent: <\" + this.parent.name + \">\";\n      } else {\n        return \"attribute: {\" + name + \"}, parent: <\" + this.parent.name + \">\";\n      }\n    };\n\n    XMLAttribute.prototype.isEqualNode = function(node) {\n      if (node.namespaceURI !== this.namespaceURI) {\n        return false;\n      }\n      if (node.prefix !== this.prefix) {\n        return false;\n      }\n      if (node.localName !== this.localName) {\n        return false;\n      }\n      if (node.value !== this.value) {\n        return false;\n      }\n      return true;\n    };\n\n    return XMLAttribute;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLCData, XMLCharacterData,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLCharacterData = require('./XMLCharacterData');\n\n  module.exports = XMLCData = (function(superClass) {\n    extend(XMLCData, superClass);\n\n    function XMLCData(parent, text) {\n      XMLCData.__super__.constructor.call(this, parent);\n      if (text == null) {\n        throw new Error(\"Missing CDATA text. \" + this.debugInfo());\n      }\n      this.name = \"#cdata-section\";\n      this.type = NodeType.CData;\n      this.value = this.stringify.cdata(text);\n    }\n\n    XMLCData.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLCData.prototype.toString = function(options) {\n      return this.options.writer.cdata(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLCData;\n\n  })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLCharacterData, XMLNode,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLNode = require('./XMLNode');\n\n  module.exports = XMLCharacterData = (function(superClass) {\n    extend(XMLCharacterData, superClass);\n\n    function XMLCharacterData(parent) {\n      XMLCharacterData.__super__.constructor.call(this, parent);\n      this.value = '';\n    }\n\n    Object.defineProperty(XMLCharacterData.prototype, 'data', {\n      get: function() {\n        return this.value;\n      },\n      set: function(value) {\n        return this.value = value || '';\n      }\n    });\n\n    Object.defineProperty(XMLCharacterData.prototype, 'length', {\n      get: function() {\n        return this.value.length;\n      }\n    });\n\n    Object.defineProperty(XMLCharacterData.prototype, 'textContent', {\n      get: function() {\n        return this.value;\n      },\n      set: function(value) {\n        return this.value = value || '';\n      }\n    });\n\n    XMLCharacterData.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLCharacterData.prototype.substringData = function(offset, count) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLCharacterData.prototype.appendData = function(arg) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLCharacterData.prototype.insertData = function(offset, arg) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLCharacterData.prototype.deleteData = function(offset, count) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLCharacterData.prototype.replaceData = function(offset, count, arg) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLCharacterData.prototype.isEqualNode = function(node) {\n      if (!XMLCharacterData.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n        return false;\n      }\n      if (node.data !== this.data) {\n        return false;\n      }\n      return true;\n    };\n\n    return XMLCharacterData;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLCharacterData, XMLComment,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLCharacterData = require('./XMLCharacterData');\n\n  module.exports = XMLComment = (function(superClass) {\n    extend(XMLComment, superClass);\n\n    function XMLComment(parent, text) {\n      XMLComment.__super__.constructor.call(this, parent);\n      if (text == null) {\n        throw new Error(\"Missing comment text. \" + this.debugInfo());\n      }\n      this.name = \"#comment\";\n      this.type = NodeType.Comment;\n      this.value = this.stringify.comment(text);\n    }\n\n    XMLComment.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLComment.prototype.toString = function(options) {\n      return this.options.writer.comment(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLComment;\n\n  })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLDOMConfiguration, XMLDOMErrorHandler, XMLDOMStringList;\n\n  XMLDOMErrorHandler = require('./XMLDOMErrorHandler');\n\n  XMLDOMStringList = require('./XMLDOMStringList');\n\n  module.exports = XMLDOMConfiguration = (function() {\n    function XMLDOMConfiguration() {\n      var clonedSelf;\n      this.defaultParams = {\n        \"canonical-form\": false,\n        \"cdata-sections\": false,\n        \"comments\": false,\n        \"datatype-normalization\": false,\n        \"element-content-whitespace\": true,\n        \"entities\": true,\n        \"error-handler\": new XMLDOMErrorHandler(),\n        \"infoset\": true,\n        \"validate-if-schema\": false,\n        \"namespaces\": true,\n        \"namespace-declarations\": true,\n        \"normalize-characters\": false,\n        \"schema-location\": '',\n        \"schema-type\": '',\n        \"split-cdata-sections\": true,\n        \"validate\": false,\n        \"well-formed\": true\n      };\n      this.params = clonedSelf = Object.create(this.defaultParams);\n    }\n\n    Object.defineProperty(XMLDOMConfiguration.prototype, 'parameterNames', {\n      get: function() {\n        return new XMLDOMStringList(Object.keys(this.defaultParams));\n      }\n    });\n\n    XMLDOMConfiguration.prototype.getParameter = function(name) {\n      if (this.params.hasOwnProperty(name)) {\n        return this.params[name];\n      } else {\n        return null;\n      }\n    };\n\n    XMLDOMConfiguration.prototype.canSetParameter = function(name, value) {\n      return true;\n    };\n\n    XMLDOMConfiguration.prototype.setParameter = function(name, value) {\n      if (value != null) {\n        return this.params[name] = value;\n      } else {\n        return delete this.params[name];\n      }\n    };\n\n    return XMLDOMConfiguration;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLDOMErrorHandler;\n\n  module.exports = XMLDOMErrorHandler = (function() {\n    function XMLDOMErrorHandler() {}\n\n    XMLDOMErrorHandler.prototype.handleError = function(error) {\n      throw new Error(error);\n    };\n\n    return XMLDOMErrorHandler;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLDOMImplementation;\n\n  module.exports = XMLDOMImplementation = (function() {\n    function XMLDOMImplementation() {}\n\n    XMLDOMImplementation.prototype.hasFeature = function(feature, version) {\n      return true;\n    };\n\n    XMLDOMImplementation.prototype.createDocumentType = function(qualifiedName, publicId, systemId) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    XMLDOMImplementation.prototype.createDocument = function(namespaceURI, qualifiedName, doctype) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    XMLDOMImplementation.prototype.createHTMLDocument = function(title) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    XMLDOMImplementation.prototype.getFeature = function(feature, version) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    return XMLDOMImplementation;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLDOMStringList;\n\n  module.exports = XMLDOMStringList = (function() {\n    function XMLDOMStringList(arr) {\n      this.arr = arr || [];\n    }\n\n    Object.defineProperty(XMLDOMStringList.prototype, 'length', {\n      get: function() {\n        return this.arr.length;\n      }\n    });\n\n    XMLDOMStringList.prototype.item = function(index) {\n      return this.arr[index] || null;\n    };\n\n    XMLDOMStringList.prototype.contains = function(str) {\n      return this.arr.indexOf(str) !== -1;\n    };\n\n    return XMLDOMStringList;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDTDAttList, XMLNode,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDTDAttList = (function(superClass) {\n    extend(XMLDTDAttList, superClass);\n\n    function XMLDTDAttList(parent, elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n      XMLDTDAttList.__super__.constructor.call(this, parent);\n      if (elementName == null) {\n        throw new Error(\"Missing DTD element name. \" + this.debugInfo());\n      }\n      if (attributeName == null) {\n        throw new Error(\"Missing DTD attribute name. \" + this.debugInfo(elementName));\n      }\n      if (!attributeType) {\n        throw new Error(\"Missing DTD attribute type. \" + this.debugInfo(elementName));\n      }\n      if (!defaultValueType) {\n        throw new Error(\"Missing DTD attribute default. \" + this.debugInfo(elementName));\n      }\n      if (defaultValueType.indexOf('#') !== 0) {\n        defaultValueType = '#' + defaultValueType;\n      }\n      if (!defaultValueType.match(/^(#REQUIRED|#IMPLIED|#FIXED|#DEFAULT)$/)) {\n        throw new Error(\"Invalid default value type; expected: #REQUIRED, #IMPLIED, #FIXED or #DEFAULT. \" + this.debugInfo(elementName));\n      }\n      if (defaultValue && !defaultValueType.match(/^(#FIXED|#DEFAULT)$/)) {\n        throw new Error(\"Default value only applies to #FIXED or #DEFAULT. \" + this.debugInfo(elementName));\n      }\n      this.elementName = this.stringify.name(elementName);\n      this.type = NodeType.AttributeDeclaration;\n      this.attributeName = this.stringify.name(attributeName);\n      this.attributeType = this.stringify.dtdAttType(attributeType);\n      if (defaultValue) {\n        this.defaultValue = this.stringify.dtdAttDefault(defaultValue);\n      }\n      this.defaultValueType = defaultValueType;\n    }\n\n    XMLDTDAttList.prototype.toString = function(options) {\n      return this.options.writer.dtdAttList(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLDTDAttList;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDTDElement, XMLNode,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDTDElement = (function(superClass) {\n    extend(XMLDTDElement, superClass);\n\n    function XMLDTDElement(parent, name, value) {\n      XMLDTDElement.__super__.constructor.call(this, parent);\n      if (name == null) {\n        throw new Error(\"Missing DTD element name. \" + this.debugInfo());\n      }\n      if (!value) {\n        value = '(#PCDATA)';\n      }\n      if (Array.isArray(value)) {\n        value = '(' + value.join(',') + ')';\n      }\n      this.name = this.stringify.name(name);\n      this.type = NodeType.ElementDeclaration;\n      this.value = this.stringify.dtdElementValue(value);\n    }\n\n    XMLDTDElement.prototype.toString = function(options) {\n      return this.options.writer.dtdElement(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLDTDElement;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDTDEntity, XMLNode, isObject,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  isObject = require('./Utility').isObject;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDTDEntity = (function(superClass) {\n    extend(XMLDTDEntity, superClass);\n\n    function XMLDTDEntity(parent, pe, name, value) {\n      XMLDTDEntity.__super__.constructor.call(this, parent);\n      if (name == null) {\n        throw new Error(\"Missing DTD entity name. \" + this.debugInfo(name));\n      }\n      if (value == null) {\n        throw new Error(\"Missing DTD entity value. \" + this.debugInfo(name));\n      }\n      this.pe = !!pe;\n      this.name = this.stringify.name(name);\n      this.type = NodeType.EntityDeclaration;\n      if (!isObject(value)) {\n        this.value = this.stringify.dtdEntityValue(value);\n        this.internal = true;\n      } else {\n        if (!value.pubID && !value.sysID) {\n          throw new Error(\"Public and/or system identifiers are required for an external entity. \" + this.debugInfo(name));\n        }\n        if (value.pubID && !value.sysID) {\n          throw new Error(\"System identifier is required for a public external entity. \" + this.debugInfo(name));\n        }\n        this.internal = false;\n        if (value.pubID != null) {\n          this.pubID = this.stringify.dtdPubID(value.pubID);\n        }\n        if (value.sysID != null) {\n          this.sysID = this.stringify.dtdSysID(value.sysID);\n        }\n        if (value.nData != null) {\n          this.nData = this.stringify.dtdNData(value.nData);\n        }\n        if (this.pe && this.nData) {\n          throw new Error(\"Notation declaration is not allowed in a parameter entity. \" + this.debugInfo(name));\n        }\n      }\n    }\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'publicId', {\n      get: function() {\n        return this.pubID;\n      }\n    });\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'systemId', {\n      get: function() {\n        return this.sysID;\n      }\n    });\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'notationName', {\n      get: function() {\n        return this.nData || null;\n      }\n    });\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'inputEncoding', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'xmlEncoding', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'xmlVersion', {\n      get: function() {\n        return null;\n      }\n    });\n\n    XMLDTDEntity.prototype.toString = function(options) {\n      return this.options.writer.dtdEntity(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLDTDEntity;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDTDNotation, XMLNode,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDTDNotation = (function(superClass) {\n    extend(XMLDTDNotation, superClass);\n\n    function XMLDTDNotation(parent, name, value) {\n      XMLDTDNotation.__super__.constructor.call(this, parent);\n      if (name == null) {\n        throw new Error(\"Missing DTD notation name. \" + this.debugInfo(name));\n      }\n      if (!value.pubID && !value.sysID) {\n        throw new Error(\"Public or system identifiers are required for an external entity. \" + this.debugInfo(name));\n      }\n      this.name = this.stringify.name(name);\n      this.type = NodeType.NotationDeclaration;\n      if (value.pubID != null) {\n        this.pubID = this.stringify.dtdPubID(value.pubID);\n      }\n      if (value.sysID != null) {\n        this.sysID = this.stringify.dtdSysID(value.sysID);\n      }\n    }\n\n    Object.defineProperty(XMLDTDNotation.prototype, 'publicId', {\n      get: function() {\n        return this.pubID;\n      }\n    });\n\n    Object.defineProperty(XMLDTDNotation.prototype, 'systemId', {\n      get: function() {\n        return this.sysID;\n      }\n    });\n\n    XMLDTDNotation.prototype.toString = function(options) {\n      return this.options.writer.dtdNotation(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLDTDNotation;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDeclaration, XMLNode, isObject,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  isObject = require('./Utility').isObject;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDeclaration = (function(superClass) {\n    extend(XMLDeclaration, superClass);\n\n    function XMLDeclaration(parent, version, encoding, standalone) {\n      var ref;\n      XMLDeclaration.__super__.constructor.call(this, parent);\n      if (isObject(version)) {\n        ref = version, version = ref.version, encoding = ref.encoding, standalone = ref.standalone;\n      }\n      if (!version) {\n        version = '1.0';\n      }\n      this.type = NodeType.Declaration;\n      this.version = this.stringify.xmlVersion(version);\n      if (encoding != null) {\n        this.encoding = this.stringify.xmlEncoding(encoding);\n      }\n      if (standalone != null) {\n        this.standalone = this.stringify.xmlStandalone(standalone);\n      }\n    }\n\n    XMLDeclaration.prototype.toString = function(options) {\n      return this.options.writer.declaration(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLDeclaration;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDocType, XMLNamedNodeMap, XMLNode, isObject,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  isObject = require('./Utility').isObject;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  XMLDTDAttList = require('./XMLDTDAttList');\n\n  XMLDTDEntity = require('./XMLDTDEntity');\n\n  XMLDTDElement = require('./XMLDTDElement');\n\n  XMLDTDNotation = require('./XMLDTDNotation');\n\n  XMLNamedNodeMap = require('./XMLNamedNodeMap');\n\n  module.exports = XMLDocType = (function(superClass) {\n    extend(XMLDocType, superClass);\n\n    function XMLDocType(parent, pubID, sysID) {\n      var child, i, len, ref, ref1, ref2;\n      XMLDocType.__super__.constructor.call(this, parent);\n      this.type = NodeType.DocType;\n      if (parent.children) {\n        ref = parent.children;\n        for (i = 0, len = ref.length; i < len; i++) {\n          child = ref[i];\n          if (child.type === NodeType.Element) {\n            this.name = child.name;\n            break;\n          }\n        }\n      }\n      this.documentObject = parent;\n      if (isObject(pubID)) {\n        ref1 = pubID, pubID = ref1.pubID, sysID = ref1.sysID;\n      }\n      if (sysID == null) {\n        ref2 = [pubID, sysID], sysID = ref2[0], pubID = ref2[1];\n      }\n      if (pubID != null) {\n        this.pubID = this.stringify.dtdPubID(pubID);\n      }\n      if (sysID != null) {\n        this.sysID = this.stringify.dtdSysID(sysID);\n      }\n    }\n\n    Object.defineProperty(XMLDocType.prototype, 'entities', {\n      get: function() {\n        var child, i, len, nodes, ref;\n        nodes = {};\n        ref = this.children;\n        for (i = 0, len = ref.length; i < len; i++) {\n          child = ref[i];\n          if ((child.type === NodeType.EntityDeclaration) && !child.pe) {\n            nodes[child.name] = child;\n          }\n        }\n        return new XMLNamedNodeMap(nodes);\n      }\n    });\n\n    Object.defineProperty(XMLDocType.prototype, 'notations', {\n      get: function() {\n        var child, i, len, nodes, ref;\n        nodes = {};\n        ref = this.children;\n        for (i = 0, len = ref.length; i < len; i++) {\n          child = ref[i];\n          if (child.type === NodeType.NotationDeclaration) {\n            nodes[child.name] = child;\n          }\n        }\n        return new XMLNamedNodeMap(nodes);\n      }\n    });\n\n    Object.defineProperty(XMLDocType.prototype, 'publicId', {\n      get: function() {\n        return this.pubID;\n      }\n    });\n\n    Object.defineProperty(XMLDocType.prototype, 'systemId', {\n      get: function() {\n        return this.sysID;\n      }\n    });\n\n    Object.defineProperty(XMLDocType.prototype, 'internalSubset', {\n      get: function() {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    XMLDocType.prototype.element = function(name, value) {\n      var child;\n      child = new XMLDTDElement(this, name, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLDocType.prototype.attList = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n      var child;\n      child = new XMLDTDAttList(this, elementName, attributeName, attributeType, defaultValueType, defaultValue);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLDocType.prototype.entity = function(name, value) {\n      var child;\n      child = new XMLDTDEntity(this, false, name, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLDocType.prototype.pEntity = function(name, value) {\n      var child;\n      child = new XMLDTDEntity(this, true, name, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLDocType.prototype.notation = function(name, value) {\n      var child;\n      child = new XMLDTDNotation(this, name, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLDocType.prototype.toString = function(options) {\n      return this.options.writer.docType(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLDocType.prototype.ele = function(name, value) {\n      return this.element(name, value);\n    };\n\n    XMLDocType.prototype.att = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n      return this.attList(elementName, attributeName, attributeType, defaultValueType, defaultValue);\n    };\n\n    XMLDocType.prototype.ent = function(name, value) {\n      return this.entity(name, value);\n    };\n\n    XMLDocType.prototype.pent = function(name, value) {\n      return this.pEntity(name, value);\n    };\n\n    XMLDocType.prototype.not = function(name, value) {\n      return this.notation(name, value);\n    };\n\n    XMLDocType.prototype.up = function() {\n      return this.root() || this.documentObject;\n    };\n\n    XMLDocType.prototype.isEqualNode = function(node) {\n      if (!XMLDocType.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n        return false;\n      }\n      if (node.name !== this.name) {\n        return false;\n      }\n      if (node.publicId !== this.publicId) {\n        return false;\n      }\n      if (node.systemId !== this.systemId) {\n        return false;\n      }\n      return true;\n    };\n\n    return XMLDocType;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDOMConfiguration, XMLDOMImplementation, XMLDocument, XMLNode, XMLStringWriter, XMLStringifier, isPlainObject,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  isPlainObject = require('./Utility').isPlainObject;\n\n  XMLDOMImplementation = require('./XMLDOMImplementation');\n\n  XMLDOMConfiguration = require('./XMLDOMConfiguration');\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  XMLStringifier = require('./XMLStringifier');\n\n  XMLStringWriter = require('./XMLStringWriter');\n\n  module.exports = XMLDocument = (function(superClass) {\n    extend(XMLDocument, superClass);\n\n    function XMLDocument(options) {\n      XMLDocument.__super__.constructor.call(this, null);\n      this.name = \"#document\";\n      this.type = NodeType.Document;\n      this.documentURI = null;\n      this.domConfig = new XMLDOMConfiguration();\n      options || (options = {});\n      if (!options.writer) {\n        options.writer = new XMLStringWriter();\n      }\n      this.options = options;\n      this.stringify = new XMLStringifier(options);\n    }\n\n    Object.defineProperty(XMLDocument.prototype, 'implementation', {\n      value: new XMLDOMImplementation()\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'doctype', {\n      get: function() {\n        var child, i, len, ref;\n        ref = this.children;\n        for (i = 0, len = ref.length; i < len; i++) {\n          child = ref[i];\n          if (child.type === NodeType.DocType) {\n            return child;\n          }\n        }\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'documentElement', {\n      get: function() {\n        return this.rootObject || null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'inputEncoding', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'strictErrorChecking', {\n      get: function() {\n        return false;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'xmlEncoding', {\n      get: function() {\n        if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n          return this.children[0].encoding;\n        } else {\n          return null;\n        }\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'xmlStandalone', {\n      get: function() {\n        if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n          return this.children[0].standalone === 'yes';\n        } else {\n          return false;\n        }\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'xmlVersion', {\n      get: function() {\n        if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n          return this.children[0].version;\n        } else {\n          return \"1.0\";\n        }\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'URL', {\n      get: function() {\n        return this.documentURI;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'origin', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'compatMode', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'characterSet', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'contentType', {\n      get: function() {\n        return null;\n      }\n    });\n\n    XMLDocument.prototype.end = function(writer) {\n      var writerOptions;\n      writerOptions = {};\n      if (!writer) {\n        writer = this.options.writer;\n      } else if (isPlainObject(writer)) {\n        writerOptions = writer;\n        writer = this.options.writer;\n      }\n      return writer.document(this, writer.filterOptions(writerOptions));\n    };\n\n    XMLDocument.prototype.toString = function(options) {\n      return this.options.writer.document(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLDocument.prototype.createElement = function(tagName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createDocumentFragment = function() {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createTextNode = function(data) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createComment = function(data) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createCDATASection = function(data) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createProcessingInstruction = function(target, data) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createAttribute = function(name) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createEntityReference = function(name) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.getElementsByTagName = function(tagname) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.importNode = function(importedNode, deep) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createElementNS = function(namespaceURI, qualifiedName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createAttributeNS = function(namespaceURI, qualifiedName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.getElementById = function(elementId) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.adoptNode = function(source) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.normalizeDocument = function() {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.renameNode = function(node, namespaceURI, qualifiedName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.getElementsByClassName = function(classNames) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createEvent = function(eventInterface) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createRange = function() {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createNodeIterator = function(root, whatToShow, filter) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createTreeWalker = function(root, whatToShow, filter) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    return XMLDocument;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, WriterState, XMLAttribute, XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLDocument, XMLDocumentCB, XMLElement, XMLProcessingInstruction, XMLRaw, XMLStringWriter, XMLStringifier, XMLText, getValue, isFunction, isObject, isPlainObject, ref,\n    hasProp = {}.hasOwnProperty;\n\n  ref = require('./Utility'), isObject = ref.isObject, isFunction = ref.isFunction, isPlainObject = ref.isPlainObject, getValue = ref.getValue;\n\n  NodeType = require('./NodeType');\n\n  XMLDocument = require('./XMLDocument');\n\n  XMLElement = require('./XMLElement');\n\n  XMLCData = require('./XMLCData');\n\n  XMLComment = require('./XMLComment');\n\n  XMLRaw = require('./XMLRaw');\n\n  XMLText = require('./XMLText');\n\n  XMLProcessingInstruction = require('./XMLProcessingInstruction');\n\n  XMLDeclaration = require('./XMLDeclaration');\n\n  XMLDocType = require('./XMLDocType');\n\n  XMLDTDAttList = require('./XMLDTDAttList');\n\n  XMLDTDEntity = require('./XMLDTDEntity');\n\n  XMLDTDElement = require('./XMLDTDElement');\n\n  XMLDTDNotation = require('./XMLDTDNotation');\n\n  XMLAttribute = require('./XMLAttribute');\n\n  XMLStringifier = require('./XMLStringifier');\n\n  XMLStringWriter = require('./XMLStringWriter');\n\n  WriterState = require('./WriterState');\n\n  module.exports = XMLDocumentCB = (function() {\n    function XMLDocumentCB(options, onData, onEnd) {\n      var writerOptions;\n      this.name = \"?xml\";\n      this.type = NodeType.Document;\n      options || (options = {});\n      writerOptions = {};\n      if (!options.writer) {\n        options.writer = new XMLStringWriter();\n      } else if (isPlainObject(options.writer)) {\n        writerOptions = options.writer;\n        options.writer = new XMLStringWriter();\n      }\n      this.options = options;\n      this.writer = options.writer;\n      this.writerOptions = this.writer.filterOptions(writerOptions);\n      this.stringify = new XMLStringifier(options);\n      this.onDataCallback = onData || function() {};\n      this.onEndCallback = onEnd || function() {};\n      this.currentNode = null;\n      this.currentLevel = -1;\n      this.openTags = {};\n      this.documentStarted = false;\n      this.documentCompleted = false;\n      this.root = null;\n    }\n\n    XMLDocumentCB.prototype.createChildNode = function(node) {\n      var att, attName, attributes, child, i, len, ref1, ref2;\n      switch (node.type) {\n        case NodeType.CData:\n          this.cdata(node.value);\n          break;\n        case NodeType.Comment:\n          this.comment(node.value);\n          break;\n        case NodeType.Element:\n          attributes = {};\n          ref1 = node.attribs;\n          for (attName in ref1) {\n            if (!hasProp.call(ref1, attName)) continue;\n            att = ref1[attName];\n            attributes[attName] = att.value;\n          }\n          this.node(node.name, attributes);\n          break;\n        case NodeType.Dummy:\n          this.dummy();\n          break;\n        case NodeType.Raw:\n          this.raw(node.value);\n          break;\n        case NodeType.Text:\n          this.text(node.value);\n          break;\n        case NodeType.ProcessingInstruction:\n          this.instruction(node.target, node.value);\n          break;\n        default:\n          throw new Error(\"This XML node type is not supported in a JS object: \" + node.constructor.name);\n      }\n      ref2 = node.children;\n      for (i = 0, len = ref2.length; i < len; i++) {\n        child = ref2[i];\n        this.createChildNode(child);\n        if (child.type === NodeType.Element) {\n          this.up();\n        }\n      }\n      return this;\n    };\n\n    XMLDocumentCB.prototype.dummy = function() {\n      return this;\n    };\n\n    XMLDocumentCB.prototype.node = function(name, attributes, text) {\n      var ref1;\n      if (name == null) {\n        throw new Error(\"Missing node name.\");\n      }\n      if (this.root && this.currentLevel === -1) {\n        throw new Error(\"Document can only have one root node. \" + this.debugInfo(name));\n      }\n      this.openCurrent();\n      name = getValue(name);\n      if (attributes == null) {\n        attributes = {};\n      }\n      attributes = getValue(attributes);\n      if (!isObject(attributes)) {\n        ref1 = [attributes, text], text = ref1[0], attributes = ref1[1];\n      }\n      this.currentNode = new XMLElement(this, name, attributes);\n      this.currentNode.children = false;\n      this.currentLevel++;\n      this.openTags[this.currentLevel] = this.currentNode;\n      if (text != null) {\n        this.text(text);\n      }\n      return this;\n    };\n\n    XMLDocumentCB.prototype.element = function(name, attributes, text) {\n      var child, i, len, oldValidationFlag, ref1, root;\n      if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n        this.dtdElement.apply(this, arguments);\n      } else {\n        if (Array.isArray(name) || isObject(name) || isFunction(name)) {\n          oldValidationFlag = this.options.noValidation;\n          this.options.noValidation = true;\n          root = new XMLDocument(this.options).element('TEMP_ROOT');\n          root.element(name);\n          this.options.noValidation = oldValidationFlag;\n          ref1 = root.children;\n          for (i = 0, len = ref1.length; i < len; i++) {\n            child = ref1[i];\n            this.createChildNode(child);\n            if (child.type === NodeType.Element) {\n              this.up();\n            }\n          }\n        } else {\n          this.node(name, attributes, text);\n        }\n      }\n      return this;\n    };\n\n    XMLDocumentCB.prototype.attribute = function(name, value) {\n      var attName, attValue;\n      if (!this.currentNode || this.currentNode.children) {\n        throw new Error(\"att() can only be used immediately after an ele() call in callback mode. \" + this.debugInfo(name));\n      }\n      if (name != null) {\n        name = getValue(name);\n      }\n      if (isObject(name)) {\n        for (attName in name) {\n          if (!hasProp.call(name, attName)) continue;\n          attValue = name[attName];\n          this.attribute(attName, attValue);\n        }\n      } else {\n        if (isFunction(value)) {\n          value = value.apply();\n        }\n        if (this.options.keepNullAttributes && (value == null)) {\n          this.currentNode.attribs[name] = new XMLAttribute(this, name, \"\");\n        } else if (value != null) {\n          this.currentNode.attribs[name] = new XMLAttribute(this, name, value);\n        }\n      }\n      return this;\n    };\n\n    XMLDocumentCB.prototype.text = function(value) {\n      var node;\n      this.openCurrent();\n      node = new XMLText(this, value);\n      this.onData(this.writer.text(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.cdata = function(value) {\n      var node;\n      this.openCurrent();\n      node = new XMLCData(this, value);\n      this.onData(this.writer.cdata(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.comment = function(value) {\n      var node;\n      this.openCurrent();\n      node = new XMLComment(this, value);\n      this.onData(this.writer.comment(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.raw = function(value) {\n      var node;\n      this.openCurrent();\n      node = new XMLRaw(this, value);\n      this.onData(this.writer.raw(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.instruction = function(target, value) {\n      var i, insTarget, insValue, len, node;\n      this.openCurrent();\n      if (target != null) {\n        target = getValue(target);\n      }\n      if (value != null) {\n        value = getValue(value);\n      }\n      if (Array.isArray(target)) {\n        for (i = 0, len = target.length; i < len; i++) {\n          insTarget = target[i];\n          this.instruction(insTarget);\n        }\n      } else if (isObject(target)) {\n        for (insTarget in target) {\n          if (!hasProp.call(target, insTarget)) continue;\n          insValue = target[insTarget];\n          this.instruction(insTarget, insValue);\n        }\n      } else {\n        if (isFunction(value)) {\n          value = value.apply();\n        }\n        node = new XMLProcessingInstruction(this, target, value);\n        this.onData(this.writer.processingInstruction(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      }\n      return this;\n    };\n\n    XMLDocumentCB.prototype.declaration = function(version, encoding, standalone) {\n      var node;\n      this.openCurrent();\n      if (this.documentStarted) {\n        throw new Error(\"declaration() must be the first node.\");\n      }\n      node = new XMLDeclaration(this, version, encoding, standalone);\n      this.onData(this.writer.declaration(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.doctype = function(root, pubID, sysID) {\n      this.openCurrent();\n      if (root == null) {\n        throw new Error(\"Missing root node name.\");\n      }\n      if (this.root) {\n        throw new Error(\"dtd() must come before the root node.\");\n      }\n      this.currentNode = new XMLDocType(this, pubID, sysID);\n      this.currentNode.rootNodeName = root;\n      this.currentNode.children = false;\n      this.currentLevel++;\n      this.openTags[this.currentLevel] = this.currentNode;\n      return this;\n    };\n\n    XMLDocumentCB.prototype.dtdElement = function(name, value) {\n      var node;\n      this.openCurrent();\n      node = new XMLDTDElement(this, name, value);\n      this.onData(this.writer.dtdElement(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.attList = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n      var node;\n      this.openCurrent();\n      node = new XMLDTDAttList(this, elementName, attributeName, attributeType, defaultValueType, defaultValue);\n      this.onData(this.writer.dtdAttList(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.entity = function(name, value) {\n      var node;\n      this.openCurrent();\n      node = new XMLDTDEntity(this, false, name, value);\n      this.onData(this.writer.dtdEntity(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.pEntity = function(name, value) {\n      var node;\n      this.openCurrent();\n      node = new XMLDTDEntity(this, true, name, value);\n      this.onData(this.writer.dtdEntity(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.notation = function(name, value) {\n      var node;\n      this.openCurrent();\n      node = new XMLDTDNotation(this, name, value);\n      this.onData(this.writer.dtdNotation(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.up = function() {\n      if (this.currentLevel < 0) {\n        throw new Error(\"The document node has no parent.\");\n      }\n      if (this.currentNode) {\n        if (this.currentNode.children) {\n          this.closeNode(this.currentNode);\n        } else {\n          this.openNode(this.currentNode);\n        }\n        this.currentNode = null;\n      } else {\n        this.closeNode(this.openTags[this.currentLevel]);\n      }\n      delete this.openTags[this.currentLevel];\n      this.currentLevel--;\n      return this;\n    };\n\n    XMLDocumentCB.prototype.end = function() {\n      while (this.currentLevel >= 0) {\n        this.up();\n      }\n      return this.onEnd();\n    };\n\n    XMLDocumentCB.prototype.openCurrent = function() {\n      if (this.currentNode) {\n        this.currentNode.children = true;\n        return this.openNode(this.currentNode);\n      }\n    };\n\n    XMLDocumentCB.prototype.openNode = function(node) {\n      var att, chunk, name, ref1;\n      if (!node.isOpen) {\n        if (!this.root && this.currentLevel === 0 && node.type === NodeType.Element) {\n          this.root = node;\n        }\n        chunk = '';\n        if (node.type === NodeType.Element) {\n          this.writerOptions.state = WriterState.OpenTag;\n          chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '<' + node.name;\n          ref1 = node.attribs;\n          for (name in ref1) {\n            if (!hasProp.call(ref1, name)) continue;\n            att = ref1[name];\n            chunk += this.writer.attribute(att, this.writerOptions, this.currentLevel);\n          }\n          chunk += (node.children ? '>' : '/>') + this.writer.endline(node, this.writerOptions, this.currentLevel);\n          this.writerOptions.state = WriterState.InsideTag;\n        } else {\n          this.writerOptions.state = WriterState.OpenTag;\n          chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '<!DOCTYPE ' + node.rootNodeName;\n          if (node.pubID && node.sysID) {\n            chunk += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n          } else if (node.sysID) {\n            chunk += ' SYSTEM \"' + node.sysID + '\"';\n          }\n          if (node.children) {\n            chunk += ' [';\n            this.writerOptions.state = WriterState.InsideTag;\n          } else {\n            this.writerOptions.state = WriterState.CloseTag;\n            chunk += '>';\n          }\n          chunk += this.writer.endline(node, this.writerOptions, this.currentLevel);\n        }\n        this.onData(chunk, this.currentLevel);\n        return node.isOpen = true;\n      }\n    };\n\n    XMLDocumentCB.prototype.closeNode = function(node) {\n      var chunk;\n      if (!node.isClosed) {\n        chunk = '';\n        this.writerOptions.state = WriterState.CloseTag;\n        if (node.type === NodeType.Element) {\n          chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '</' + node.name + '>' + this.writer.endline(node, this.writerOptions, this.currentLevel);\n        } else {\n          chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + ']>' + this.writer.endline(node, this.writerOptions, this.currentLevel);\n        }\n        this.writerOptions.state = WriterState.None;\n        this.onData(chunk, this.currentLevel);\n        return node.isClosed = true;\n      }\n    };\n\n    XMLDocumentCB.prototype.onData = function(chunk, level) {\n      this.documentStarted = true;\n      return this.onDataCallback(chunk, level + 1);\n    };\n\n    XMLDocumentCB.prototype.onEnd = function() {\n      this.documentCompleted = true;\n      return this.onEndCallback();\n    };\n\n    XMLDocumentCB.prototype.debugInfo = function(name) {\n      if (name == null) {\n        return \"\";\n      } else {\n        return \"node: <\" + name + \">\";\n      }\n    };\n\n    XMLDocumentCB.prototype.ele = function() {\n      return this.element.apply(this, arguments);\n    };\n\n    XMLDocumentCB.prototype.nod = function(name, attributes, text) {\n      return this.node(name, attributes, text);\n    };\n\n    XMLDocumentCB.prototype.txt = function(value) {\n      return this.text(value);\n    };\n\n    XMLDocumentCB.prototype.dat = function(value) {\n      return this.cdata(value);\n    };\n\n    XMLDocumentCB.prototype.com = function(value) {\n      return this.comment(value);\n    };\n\n    XMLDocumentCB.prototype.ins = function(target, value) {\n      return this.instruction(target, value);\n    };\n\n    XMLDocumentCB.prototype.dec = function(version, encoding, standalone) {\n      return this.declaration(version, encoding, standalone);\n    };\n\n    XMLDocumentCB.prototype.dtd = function(root, pubID, sysID) {\n      return this.doctype(root, pubID, sysID);\n    };\n\n    XMLDocumentCB.prototype.e = function(name, attributes, text) {\n      return this.element(name, attributes, text);\n    };\n\n    XMLDocumentCB.prototype.n = function(name, attributes, text) {\n      return this.node(name, attributes, text);\n    };\n\n    XMLDocumentCB.prototype.t = function(value) {\n      return this.text(value);\n    };\n\n    XMLDocumentCB.prototype.d = function(value) {\n      return this.cdata(value);\n    };\n\n    XMLDocumentCB.prototype.c = function(value) {\n      return this.comment(value);\n    };\n\n    XMLDocumentCB.prototype.r = function(value) {\n      return this.raw(value);\n    };\n\n    XMLDocumentCB.prototype.i = function(target, value) {\n      return this.instruction(target, value);\n    };\n\n    XMLDocumentCB.prototype.att = function() {\n      if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n        return this.attList.apply(this, arguments);\n      } else {\n        return this.attribute.apply(this, arguments);\n      }\n    };\n\n    XMLDocumentCB.prototype.a = function() {\n      if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n        return this.attList.apply(this, arguments);\n      } else {\n        return this.attribute.apply(this, arguments);\n      }\n    };\n\n    XMLDocumentCB.prototype.ent = function(name, value) {\n      return this.entity(name, value);\n    };\n\n    XMLDocumentCB.prototype.pent = function(name, value) {\n      return this.pEntity(name, value);\n    };\n\n    XMLDocumentCB.prototype.not = function(name, value) {\n      return this.notation(name, value);\n    };\n\n    return XMLDocumentCB;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDummy, XMLNode,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDummy = (function(superClass) {\n    extend(XMLDummy, superClass);\n\n    function XMLDummy(parent) {\n      XMLDummy.__super__.constructor.call(this, parent);\n      this.type = NodeType.Dummy;\n    }\n\n    XMLDummy.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLDummy.prototype.toString = function(options) {\n      return '';\n    };\n\n    return XMLDummy;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLAttribute, XMLElement, XMLNamedNodeMap, XMLNode, getValue, isFunction, isObject, ref,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  ref = require('./Utility'), isObject = ref.isObject, isFunction = ref.isFunction, getValue = ref.getValue;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  XMLAttribute = require('./XMLAttribute');\n\n  XMLNamedNodeMap = require('./XMLNamedNodeMap');\n\n  module.exports = XMLElement = (function(superClass) {\n    extend(XMLElement, superClass);\n\n    function XMLElement(parent, name, attributes) {\n      var child, j, len, ref1;\n      XMLElement.__super__.constructor.call(this, parent);\n      if (name == null) {\n        throw new Error(\"Missing element name. \" + this.debugInfo());\n      }\n      this.name = this.stringify.name(name);\n      this.type = NodeType.Element;\n      this.attribs = {};\n      this.schemaTypeInfo = null;\n      if (attributes != null) {\n        this.attribute(attributes);\n      }\n      if (parent.type === NodeType.Document) {\n        this.isRoot = true;\n        this.documentObject = parent;\n        parent.rootObject = this;\n        if (parent.children) {\n          ref1 = parent.children;\n          for (j = 0, len = ref1.length; j < len; j++) {\n            child = ref1[j];\n            if (child.type === NodeType.DocType) {\n              child.name = this.name;\n              break;\n            }\n          }\n        }\n      }\n    }\n\n    Object.defineProperty(XMLElement.prototype, 'tagName', {\n      get: function() {\n        return this.name;\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'namespaceURI', {\n      get: function() {\n        return '';\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'prefix', {\n      get: function() {\n        return '';\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'localName', {\n      get: function() {\n        return this.name;\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'id', {\n      get: function() {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'className', {\n      get: function() {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'classList', {\n      get: function() {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'attributes', {\n      get: function() {\n        if (!this.attributeMap || !this.attributeMap.nodes) {\n          this.attributeMap = new XMLNamedNodeMap(this.attribs);\n        }\n        return this.attributeMap;\n      }\n    });\n\n    XMLElement.prototype.clone = function() {\n      var att, attName, clonedSelf, ref1;\n      clonedSelf = Object.create(this);\n      if (clonedSelf.isRoot) {\n        clonedSelf.documentObject = null;\n      }\n      clonedSelf.attribs = {};\n      ref1 = this.attribs;\n      for (attName in ref1) {\n        if (!hasProp.call(ref1, attName)) continue;\n        att = ref1[attName];\n        clonedSelf.attribs[attName] = att.clone();\n      }\n      clonedSelf.children = [];\n      this.children.forEach(function(child) {\n        var clonedChild;\n        clonedChild = child.clone();\n        clonedChild.parent = clonedSelf;\n        return clonedSelf.children.push(clonedChild);\n      });\n      return clonedSelf;\n    };\n\n    XMLElement.prototype.attribute = function(name, value) {\n      var attName, attValue;\n      if (name != null) {\n        name = getValue(name);\n      }\n      if (isObject(name)) {\n        for (attName in name) {\n          if (!hasProp.call(name, attName)) continue;\n          attValue = name[attName];\n          this.attribute(attName, attValue);\n        }\n      } else {\n        if (isFunction(value)) {\n          value = value.apply();\n        }\n        if (this.options.keepNullAttributes && (value == null)) {\n          this.attribs[name] = new XMLAttribute(this, name, \"\");\n        } else if (value != null) {\n          this.attribs[name] = new XMLAttribute(this, name, value);\n        }\n      }\n      return this;\n    };\n\n    XMLElement.prototype.removeAttribute = function(name) {\n      var attName, j, len;\n      if (name == null) {\n        throw new Error(\"Missing attribute name. \" + this.debugInfo());\n      }\n      name = getValue(name);\n      if (Array.isArray(name)) {\n        for (j = 0, len = name.length; j < len; j++) {\n          attName = name[j];\n          delete this.attribs[attName];\n        }\n      } else {\n        delete this.attribs[name];\n      }\n      return this;\n    };\n\n    XMLElement.prototype.toString = function(options) {\n      return this.options.writer.element(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLElement.prototype.att = function(name, value) {\n      return this.attribute(name, value);\n    };\n\n    XMLElement.prototype.a = function(name, value) {\n      return this.attribute(name, value);\n    };\n\n    XMLElement.prototype.getAttribute = function(name) {\n      if (this.attribs.hasOwnProperty(name)) {\n        return this.attribs[name].value;\n      } else {\n        return null;\n      }\n    };\n\n    XMLElement.prototype.setAttribute = function(name, value) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getAttributeNode = function(name) {\n      if (this.attribs.hasOwnProperty(name)) {\n        return this.attribs[name];\n      } else {\n        return null;\n      }\n    };\n\n    XMLElement.prototype.setAttributeNode = function(newAttr) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.removeAttributeNode = function(oldAttr) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getElementsByTagName = function(name) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getAttributeNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.setAttributeNS = function(namespaceURI, qualifiedName, value) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.removeAttributeNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getAttributeNodeNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.setAttributeNodeNS = function(newAttr) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.hasAttribute = function(name) {\n      return this.attribs.hasOwnProperty(name);\n    };\n\n    XMLElement.prototype.hasAttributeNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.setIdAttribute = function(name, isId) {\n      if (this.attribs.hasOwnProperty(name)) {\n        return this.attribs[name].isId;\n      } else {\n        return isId;\n      }\n    };\n\n    XMLElement.prototype.setIdAttributeNS = function(namespaceURI, localName, isId) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.setIdAttributeNode = function(idAttr, isId) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getElementsByTagName = function(tagname) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getElementsByClassName = function(classNames) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.isEqualNode = function(node) {\n      var i, j, ref1;\n      if (!XMLElement.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n        return false;\n      }\n      if (node.namespaceURI !== this.namespaceURI) {\n        return false;\n      }\n      if (node.prefix !== this.prefix) {\n        return false;\n      }\n      if (node.localName !== this.localName) {\n        return false;\n      }\n      if (node.attribs.length !== this.attribs.length) {\n        return false;\n      }\n      for (i = j = 0, ref1 = this.attribs.length - 1; 0 <= ref1 ? j <= ref1 : j >= ref1; i = 0 <= ref1 ? ++j : --j) {\n        if (!this.attribs[i].isEqualNode(node.attribs[i])) {\n          return false;\n        }\n      }\n      return true;\n    };\n\n    return XMLElement;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLNamedNodeMap;\n\n  module.exports = XMLNamedNodeMap = (function() {\n    function XMLNamedNodeMap(nodes) {\n      this.nodes = nodes;\n    }\n\n    Object.defineProperty(XMLNamedNodeMap.prototype, 'length', {\n      get: function() {\n        return Object.keys(this.nodes).length || 0;\n      }\n    });\n\n    XMLNamedNodeMap.prototype.clone = function() {\n      return this.nodes = null;\n    };\n\n    XMLNamedNodeMap.prototype.getNamedItem = function(name) {\n      return this.nodes[name];\n    };\n\n    XMLNamedNodeMap.prototype.setNamedItem = function(node) {\n      var oldNode;\n      oldNode = this.nodes[node.nodeName];\n      this.nodes[node.nodeName] = node;\n      return oldNode || null;\n    };\n\n    XMLNamedNodeMap.prototype.removeNamedItem = function(name) {\n      var oldNode;\n      oldNode = this.nodes[name];\n      delete this.nodes[name];\n      return oldNode || null;\n    };\n\n    XMLNamedNodeMap.prototype.item = function(index) {\n      return this.nodes[Object.keys(this.nodes)[index]] || null;\n    };\n\n    XMLNamedNodeMap.prototype.getNamedItemNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    XMLNamedNodeMap.prototype.setNamedItemNS = function(node) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    XMLNamedNodeMap.prototype.removeNamedItemNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    return XMLNamedNodeMap;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var DocumentPosition, NodeType, XMLCData, XMLComment, XMLDeclaration, XMLDocType, XMLDummy, XMLElement, XMLNamedNodeMap, XMLNode, XMLNodeList, XMLProcessingInstruction, XMLRaw, XMLText, getValue, isEmpty, isFunction, isObject, ref1,\n    hasProp = {}.hasOwnProperty;\n\n  ref1 = require('./Utility'), isObject = ref1.isObject, isFunction = ref1.isFunction, isEmpty = ref1.isEmpty, getValue = ref1.getValue;\n\n  XMLElement = null;\n\n  XMLCData = null;\n\n  XMLComment = null;\n\n  XMLDeclaration = null;\n\n  XMLDocType = null;\n\n  XMLRaw = null;\n\n  XMLText = null;\n\n  XMLProcessingInstruction = null;\n\n  XMLDummy = null;\n\n  NodeType = null;\n\n  XMLNodeList = null;\n\n  XMLNamedNodeMap = null;\n\n  DocumentPosition = null;\n\n  module.exports = XMLNode = (function() {\n    function XMLNode(parent1) {\n      this.parent = parent1;\n      if (this.parent) {\n        this.options = this.parent.options;\n        this.stringify = this.parent.stringify;\n      }\n      this.value = null;\n      this.children = [];\n      this.baseURI = null;\n      if (!XMLElement) {\n        XMLElement = require('./XMLElement');\n        XMLCData = require('./XMLCData');\n        XMLComment = require('./XMLComment');\n        XMLDeclaration = require('./XMLDeclaration');\n        XMLDocType = require('./XMLDocType');\n        XMLRaw = require('./XMLRaw');\n        XMLText = require('./XMLText');\n        XMLProcessingInstruction = require('./XMLProcessingInstruction');\n        XMLDummy = require('./XMLDummy');\n        NodeType = require('./NodeType');\n        XMLNodeList = require('./XMLNodeList');\n        XMLNamedNodeMap = require('./XMLNamedNodeMap');\n        DocumentPosition = require('./DocumentPosition');\n      }\n    }\n\n    Object.defineProperty(XMLNode.prototype, 'nodeName', {\n      get: function() {\n        return this.name;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'nodeType', {\n      get: function() {\n        return this.type;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'nodeValue', {\n      get: function() {\n        return this.value;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'parentNode', {\n      get: function() {\n        return this.parent;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'childNodes', {\n      get: function() {\n        if (!this.childNodeList || !this.childNodeList.nodes) {\n          this.childNodeList = new XMLNodeList(this.children);\n        }\n        return this.childNodeList;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'firstChild', {\n      get: function() {\n        return this.children[0] || null;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'lastChild', {\n      get: function() {\n        return this.children[this.children.length - 1] || null;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'previousSibling', {\n      get: function() {\n        var i;\n        i = this.parent.children.indexOf(this);\n        return this.parent.children[i - 1] || null;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'nextSibling', {\n      get: function() {\n        var i;\n        i = this.parent.children.indexOf(this);\n        return this.parent.children[i + 1] || null;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'ownerDocument', {\n      get: function() {\n        return this.document() || null;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'textContent', {\n      get: function() {\n        var child, j, len, ref2, str;\n        if (this.nodeType === NodeType.Element || this.nodeType === NodeType.DocumentFragment) {\n          str = '';\n          ref2 = this.children;\n          for (j = 0, len = ref2.length; j < len; j++) {\n            child = ref2[j];\n            if (child.textContent) {\n              str += child.textContent;\n            }\n          }\n          return str;\n        } else {\n          return null;\n        }\n      },\n      set: function(value) {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    XMLNode.prototype.setParent = function(parent) {\n      var child, j, len, ref2, results;\n      this.parent = parent;\n      if (parent) {\n        this.options = parent.options;\n        this.stringify = parent.stringify;\n      }\n      ref2 = this.children;\n      results = [];\n      for (j = 0, len = ref2.length; j < len; j++) {\n        child = ref2[j];\n        results.push(child.setParent(this));\n      }\n      return results;\n    };\n\n    XMLNode.prototype.element = function(name, attributes, text) {\n      var childNode, item, j, k, key, lastChild, len, len1, ref2, ref3, val;\n      lastChild = null;\n      if (attributes === null && (text == null)) {\n        ref2 = [{}, null], attributes = ref2[0], text = ref2[1];\n      }\n      if (attributes == null) {\n        attributes = {};\n      }\n      attributes = getValue(attributes);\n      if (!isObject(attributes)) {\n        ref3 = [attributes, text], text = ref3[0], attributes = ref3[1];\n      }\n      if (name != null) {\n        name = getValue(name);\n      }\n      if (Array.isArray(name)) {\n        for (j = 0, len = name.length; j < len; j++) {\n          item = name[j];\n          lastChild = this.element(item);\n        }\n      } else if (isFunction(name)) {\n        lastChild = this.element(name.apply());\n      } else if (isObject(name)) {\n        for (key in name) {\n          if (!hasProp.call(name, key)) continue;\n          val = name[key];\n          if (isFunction(val)) {\n            val = val.apply();\n          }\n          if (!this.options.ignoreDecorators && this.stringify.convertAttKey && key.indexOf(this.stringify.convertAttKey) === 0) {\n            lastChild = this.attribute(key.substr(this.stringify.convertAttKey.length), val);\n          } else if (!this.options.separateArrayItems && Array.isArray(val) && isEmpty(val)) {\n            lastChild = this.dummy();\n          } else if (isObject(val) && isEmpty(val)) {\n            lastChild = this.element(key);\n          } else if (!this.options.keepNullNodes && (val == null)) {\n            lastChild = this.dummy();\n          } else if (!this.options.separateArrayItems && Array.isArray(val)) {\n            for (k = 0, len1 = val.length; k < len1; k++) {\n              item = val[k];\n              childNode = {};\n              childNode[key] = item;\n              lastChild = this.element(childNode);\n            }\n          } else if (isObject(val)) {\n            if (!this.options.ignoreDecorators && this.stringify.convertTextKey && key.indexOf(this.stringify.convertTextKey) === 0) {\n              lastChild = this.element(val);\n            } else {\n              lastChild = this.element(key);\n              lastChild.element(val);\n            }\n          } else {\n            lastChild = this.element(key, val);\n          }\n        }\n      } else if (!this.options.keepNullNodes && text === null) {\n        lastChild = this.dummy();\n      } else {\n        if (!this.options.ignoreDecorators && this.stringify.convertTextKey && name.indexOf(this.stringify.convertTextKey) === 0) {\n          lastChild = this.text(text);\n        } else if (!this.options.ignoreDecorators && this.stringify.convertCDataKey && name.indexOf(this.stringify.convertCDataKey) === 0) {\n          lastChild = this.cdata(text);\n        } else if (!this.options.ignoreDecorators && this.stringify.convertCommentKey && name.indexOf(this.stringify.convertCommentKey) === 0) {\n          lastChild = this.comment(text);\n        } else if (!this.options.ignoreDecorators && this.stringify.convertRawKey && name.indexOf(this.stringify.convertRawKey) === 0) {\n          lastChild = this.raw(text);\n        } else if (!this.options.ignoreDecorators && this.stringify.convertPIKey && name.indexOf(this.stringify.convertPIKey) === 0) {\n          lastChild = this.instruction(name.substr(this.stringify.convertPIKey.length), text);\n        } else {\n          lastChild = this.node(name, attributes, text);\n        }\n      }\n      if (lastChild == null) {\n        throw new Error(\"Could not create any elements with: \" + name + \". \" + this.debugInfo());\n      }\n      return lastChild;\n    };\n\n    XMLNode.prototype.insertBefore = function(name, attributes, text) {\n      var child, i, newChild, refChild, removed;\n      if (name != null ? name.type : void 0) {\n        newChild = name;\n        refChild = attributes;\n        newChild.setParent(this);\n        if (refChild) {\n          i = children.indexOf(refChild);\n          removed = children.splice(i);\n          children.push(newChild);\n          Array.prototype.push.apply(children, removed);\n        } else {\n          children.push(newChild);\n        }\n        return newChild;\n      } else {\n        if (this.isRoot) {\n          throw new Error(\"Cannot insert elements at root level. \" + this.debugInfo(name));\n        }\n        i = this.parent.children.indexOf(this);\n        removed = this.parent.children.splice(i);\n        child = this.parent.element(name, attributes, text);\n        Array.prototype.push.apply(this.parent.children, removed);\n        return child;\n      }\n    };\n\n    XMLNode.prototype.insertAfter = function(name, attributes, text) {\n      var child, i, removed;\n      if (this.isRoot) {\n        throw new Error(\"Cannot insert elements at root level. \" + this.debugInfo(name));\n      }\n      i = this.parent.children.indexOf(this);\n      removed = this.parent.children.splice(i + 1);\n      child = this.parent.element(name, attributes, text);\n      Array.prototype.push.apply(this.parent.children, removed);\n      return child;\n    };\n\n    XMLNode.prototype.remove = function() {\n      var i, ref2;\n      if (this.isRoot) {\n        throw new Error(\"Cannot remove the root element. \" + this.debugInfo());\n      }\n      i = this.parent.children.indexOf(this);\n      [].splice.apply(this.parent.children, [i, i - i + 1].concat(ref2 = [])), ref2;\n      return this.parent;\n    };\n\n    XMLNode.prototype.node = function(name, attributes, text) {\n      var child, ref2;\n      if (name != null) {\n        name = getValue(name);\n      }\n      attributes || (attributes = {});\n      attributes = getValue(attributes);\n      if (!isObject(attributes)) {\n        ref2 = [attributes, text], text = ref2[0], attributes = ref2[1];\n      }\n      child = new XMLElement(this, name, attributes);\n      if (text != null) {\n        child.text(text);\n      }\n      this.children.push(child);\n      return child;\n    };\n\n    XMLNode.prototype.text = function(value) {\n      var child;\n      if (isObject(value)) {\n        this.element(value);\n      }\n      child = new XMLText(this, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLNode.prototype.cdata = function(value) {\n      var child;\n      child = new XMLCData(this, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLNode.prototype.comment = function(value) {\n      var child;\n      child = new XMLComment(this, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLNode.prototype.commentBefore = function(value) {\n      var child, i, removed;\n      i = this.parent.children.indexOf(this);\n      removed = this.parent.children.splice(i);\n      child = this.parent.comment(value);\n      Array.prototype.push.apply(this.parent.children, removed);\n      return this;\n    };\n\n    XMLNode.prototype.commentAfter = function(value) {\n      var child, i, removed;\n      i = this.parent.children.indexOf(this);\n      removed = this.parent.children.splice(i + 1);\n      child = this.parent.comment(value);\n      Array.prototype.push.apply(this.parent.children, removed);\n      return this;\n    };\n\n    XMLNode.prototype.raw = function(value) {\n      var child;\n      child = new XMLRaw(this, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLNode.prototype.dummy = function() {\n      var child;\n      child = new XMLDummy(this);\n      return child;\n    };\n\n    XMLNode.prototype.instruction = function(target, value) {\n      var insTarget, insValue, instruction, j, len;\n      if (target != null) {\n        target = getValue(target);\n      }\n      if (value != null) {\n        value = getValue(value);\n      }\n      if (Array.isArray(target)) {\n        for (j = 0, len = target.length; j < len; j++) {\n          insTarget = target[j];\n          this.instruction(insTarget);\n        }\n      } else if (isObject(target)) {\n        for (insTarget in target) {\n          if (!hasProp.call(target, insTarget)) continue;\n          insValue = target[insTarget];\n          this.instruction(insTarget, insValue);\n        }\n      } else {\n        if (isFunction(value)) {\n          value = value.apply();\n        }\n        instruction = new XMLProcessingInstruction(this, target, value);\n        this.children.push(instruction);\n      }\n      return this;\n    };\n\n    XMLNode.prototype.instructionBefore = function(target, value) {\n      var child, i, removed;\n      i = this.parent.children.indexOf(this);\n      removed = this.parent.children.splice(i);\n      child = this.parent.instruction(target, value);\n      Array.prototype.push.apply(this.parent.children, removed);\n      return this;\n    };\n\n    XMLNode.prototype.instructionAfter = function(target, value) {\n      var child, i, removed;\n      i = this.parent.children.indexOf(this);\n      removed = this.parent.children.splice(i + 1);\n      child = this.parent.instruction(target, value);\n      Array.prototype.push.apply(this.parent.children, removed);\n      return this;\n    };\n\n    XMLNode.prototype.declaration = function(version, encoding, standalone) {\n      var doc, xmldec;\n      doc = this.document();\n      xmldec = new XMLDeclaration(doc, version, encoding, standalone);\n      if (doc.children.length === 0) {\n        doc.children.unshift(xmldec);\n      } else if (doc.children[0].type === NodeType.Declaration) {\n        doc.children[0] = xmldec;\n      } else {\n        doc.children.unshift(xmldec);\n      }\n      return doc.root() || doc;\n    };\n\n    XMLNode.prototype.dtd = function(pubID, sysID) {\n      var child, doc, doctype, i, j, k, len, len1, ref2, ref3;\n      doc = this.document();\n      doctype = new XMLDocType(doc, pubID, sysID);\n      ref2 = doc.children;\n      for (i = j = 0, len = ref2.length; j < len; i = ++j) {\n        child = ref2[i];\n        if (child.type === NodeType.DocType) {\n          doc.children[i] = doctype;\n          return doctype;\n        }\n      }\n      ref3 = doc.children;\n      for (i = k = 0, len1 = ref3.length; k < len1; i = ++k) {\n        child = ref3[i];\n        if (child.isRoot) {\n          doc.children.splice(i, 0, doctype);\n          return doctype;\n        }\n      }\n      doc.children.push(doctype);\n      return doctype;\n    };\n\n    XMLNode.prototype.up = function() {\n      if (this.isRoot) {\n        throw new Error(\"The root node has no parent. Use doc() if you need to get the document object.\");\n      }\n      return this.parent;\n    };\n\n    XMLNode.prototype.root = function() {\n      var node;\n      node = this;\n      while (node) {\n        if (node.type === NodeType.Document) {\n          return node.rootObject;\n        } else if (node.isRoot) {\n          return node;\n        } else {\n          node = node.parent;\n        }\n      }\n    };\n\n    XMLNode.prototype.document = function() {\n      var node;\n      node = this;\n      while (node) {\n        if (node.type === NodeType.Document) {\n          return node;\n        } else {\n          node = node.parent;\n        }\n      }\n    };\n\n    XMLNode.prototype.end = function(options) {\n      return this.document().end(options);\n    };\n\n    XMLNode.prototype.prev = function() {\n      var i;\n      i = this.parent.children.indexOf(this);\n      if (i < 1) {\n        throw new Error(\"Already at the first node. \" + this.debugInfo());\n      }\n      return this.parent.children[i - 1];\n    };\n\n    XMLNode.prototype.next = function() {\n      var i;\n      i = this.parent.children.indexOf(this);\n      if (i === -1 || i === this.parent.children.length - 1) {\n        throw new Error(\"Already at the last node. \" + this.debugInfo());\n      }\n      return this.parent.children[i + 1];\n    };\n\n    XMLNode.prototype.importDocument = function(doc) {\n      var clonedRoot;\n      clonedRoot = doc.root().clone();\n      clonedRoot.parent = this;\n      clonedRoot.isRoot = false;\n      this.children.push(clonedRoot);\n      return this;\n    };\n\n    XMLNode.prototype.debugInfo = function(name) {\n      var ref2, ref3;\n      name = name || this.name;\n      if ((name == null) && !((ref2 = this.parent) != null ? ref2.name : void 0)) {\n        return \"\";\n      } else if (name == null) {\n        return \"parent: <\" + this.parent.name + \">\";\n      } else if (!((ref3 = this.parent) != null ? ref3.name : void 0)) {\n        return \"node: <\" + name + \">\";\n      } else {\n        return \"node: <\" + name + \">, parent: <\" + this.parent.name + \">\";\n      }\n    };\n\n    XMLNode.prototype.ele = function(name, attributes, text) {\n      return this.element(name, attributes, text);\n    };\n\n    XMLNode.prototype.nod = function(name, attributes, text) {\n      return this.node(name, attributes, text);\n    };\n\n    XMLNode.prototype.txt = function(value) {\n      return this.text(value);\n    };\n\n    XMLNode.prototype.dat = function(value) {\n      return this.cdata(value);\n    };\n\n    XMLNode.prototype.com = function(value) {\n      return this.comment(value);\n    };\n\n    XMLNode.prototype.ins = function(target, value) {\n      return this.instruction(target, value);\n    };\n\n    XMLNode.prototype.doc = function() {\n      return this.document();\n    };\n\n    XMLNode.prototype.dec = function(version, encoding, standalone) {\n      return this.declaration(version, encoding, standalone);\n    };\n\n    XMLNode.prototype.e = function(name, attributes, text) {\n      return this.element(name, attributes, text);\n    };\n\n    XMLNode.prototype.n = function(name, attributes, text) {\n      return this.node(name, attributes, text);\n    };\n\n    XMLNode.prototype.t = function(value) {\n      return this.text(value);\n    };\n\n    XMLNode.prototype.d = function(value) {\n      return this.cdata(value);\n    };\n\n    XMLNode.prototype.c = function(value) {\n      return this.comment(value);\n    };\n\n    XMLNode.prototype.r = function(value) {\n      return this.raw(value);\n    };\n\n    XMLNode.prototype.i = function(target, value) {\n      return this.instruction(target, value);\n    };\n\n    XMLNode.prototype.u = function() {\n      return this.up();\n    };\n\n    XMLNode.prototype.importXMLBuilder = function(doc) {\n      return this.importDocument(doc);\n    };\n\n    XMLNode.prototype.replaceChild = function(newChild, oldChild) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.removeChild = function(oldChild) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.appendChild = function(newChild) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.hasChildNodes = function() {\n      return this.children.length !== 0;\n    };\n\n    XMLNode.prototype.cloneNode = function(deep) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.normalize = function() {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.isSupported = function(feature, version) {\n      return true;\n    };\n\n    XMLNode.prototype.hasAttributes = function() {\n      return this.attribs.length !== 0;\n    };\n\n    XMLNode.prototype.compareDocumentPosition = function(other) {\n      var ref, res;\n      ref = this;\n      if (ref === other) {\n        return 0;\n      } else if (this.document() !== other.document()) {\n        res = DocumentPosition.Disconnected | DocumentPosition.ImplementationSpecific;\n        if (Math.random() < 0.5) {\n          res |= DocumentPosition.Preceding;\n        } else {\n          res |= DocumentPosition.Following;\n        }\n        return res;\n      } else if (ref.isAncestor(other)) {\n        return DocumentPosition.Contains | DocumentPosition.Preceding;\n      } else if (ref.isDescendant(other)) {\n        return DocumentPosition.Contains | DocumentPosition.Following;\n      } else if (ref.isPreceding(other)) {\n        return DocumentPosition.Preceding;\n      } else {\n        return DocumentPosition.Following;\n      }\n    };\n\n    XMLNode.prototype.isSameNode = function(other) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.lookupPrefix = function(namespaceURI) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.isDefaultNamespace = function(namespaceURI) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.lookupNamespaceURI = function(prefix) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.isEqualNode = function(node) {\n      var i, j, ref2;\n      if (node.nodeType !== this.nodeType) {\n        return false;\n      }\n      if (node.children.length !== this.children.length) {\n        return false;\n      }\n      for (i = j = 0, ref2 = this.children.length - 1; 0 <= ref2 ? j <= ref2 : j >= ref2; i = 0 <= ref2 ? ++j : --j) {\n        if (!this.children[i].isEqualNode(node.children[i])) {\n          return false;\n        }\n      }\n      return true;\n    };\n\n    XMLNode.prototype.getFeature = function(feature, version) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.setUserData = function(key, data, handler) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.getUserData = function(key) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.contains = function(other) {\n      if (!other) {\n        return false;\n      }\n      return other === this || this.isDescendant(other);\n    };\n\n    XMLNode.prototype.isDescendant = function(node) {\n      var child, isDescendantChild, j, len, ref2;\n      ref2 = this.children;\n      for (j = 0, len = ref2.length; j < len; j++) {\n        child = ref2[j];\n        if (node === child) {\n          return true;\n        }\n        isDescendantChild = child.isDescendant(node);\n        if (isDescendantChild) {\n          return true;\n        }\n      }\n      return false;\n    };\n\n    XMLNode.prototype.isAncestor = function(node) {\n      return node.isDescendant(this);\n    };\n\n    XMLNode.prototype.isPreceding = function(node) {\n      var nodePos, thisPos;\n      nodePos = this.treePosition(node);\n      thisPos = this.treePosition(this);\n      if (nodePos === -1 || thisPos === -1) {\n        return false;\n      } else {\n        return nodePos < thisPos;\n      }\n    };\n\n    XMLNode.prototype.isFollowing = function(node) {\n      var nodePos, thisPos;\n      nodePos = this.treePosition(node);\n      thisPos = this.treePosition(this);\n      if (nodePos === -1 || thisPos === -1) {\n        return false;\n      } else {\n        return nodePos > thisPos;\n      }\n    };\n\n    XMLNode.prototype.treePosition = function(node) {\n      var found, pos;\n      pos = 0;\n      found = false;\n      this.foreachTreeNode(this.document(), function(childNode) {\n        pos++;\n        if (!found && childNode === node) {\n          return found = true;\n        }\n      });\n      if (found) {\n        return pos;\n      } else {\n        return -1;\n      }\n    };\n\n    XMLNode.prototype.foreachTreeNode = function(node, func) {\n      var child, j, len, ref2, res;\n      node || (node = this.document());\n      ref2 = node.children;\n      for (j = 0, len = ref2.length; j < len; j++) {\n        child = ref2[j];\n        if (res = func(child)) {\n          return res;\n        } else {\n          res = this.foreachTreeNode(child, func);\n          if (res) {\n            return res;\n          }\n        }\n      }\n    };\n\n    return XMLNode;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLNodeList;\n\n  module.exports = XMLNodeList = (function() {\n    function XMLNodeList(nodes) {\n      this.nodes = nodes;\n    }\n\n    Object.defineProperty(XMLNodeList.prototype, 'length', {\n      get: function() {\n        return this.nodes.length || 0;\n      }\n    });\n\n    XMLNodeList.prototype.clone = function() {\n      return this.nodes = null;\n    };\n\n    XMLNodeList.prototype.item = function(index) {\n      return this.nodes[index] || null;\n    };\n\n    return XMLNodeList;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLCharacterData, XMLProcessingInstruction,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLCharacterData = require('./XMLCharacterData');\n\n  module.exports = XMLProcessingInstruction = (function(superClass) {\n    extend(XMLProcessingInstruction, superClass);\n\n    function XMLProcessingInstruction(parent, target, value) {\n      XMLProcessingInstruction.__super__.constructor.call(this, parent);\n      if (target == null) {\n        throw new Error(\"Missing instruction target. \" + this.debugInfo());\n      }\n      this.type = NodeType.ProcessingInstruction;\n      this.target = this.stringify.insTarget(target);\n      this.name = this.target;\n      if (value) {\n        this.value = this.stringify.insValue(value);\n      }\n    }\n\n    XMLProcessingInstruction.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLProcessingInstruction.prototype.toString = function(options) {\n      return this.options.writer.processingInstruction(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLProcessingInstruction.prototype.isEqualNode = function(node) {\n      if (!XMLProcessingInstruction.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n        return false;\n      }\n      if (node.target !== this.target) {\n        return false;\n      }\n      return true;\n    };\n\n    return XMLProcessingInstruction;\n\n  })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLNode, XMLRaw,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLNode = require('./XMLNode');\n\n  module.exports = XMLRaw = (function(superClass) {\n    extend(XMLRaw, superClass);\n\n    function XMLRaw(parent, text) {\n      XMLRaw.__super__.constructor.call(this, parent);\n      if (text == null) {\n        throw new Error(\"Missing raw text. \" + this.debugInfo());\n      }\n      this.type = NodeType.Raw;\n      this.value = this.stringify.raw(text);\n    }\n\n    XMLRaw.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLRaw.prototype.toString = function(options) {\n      return this.options.writer.raw(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLRaw;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, WriterState, XMLStreamWriter, XMLWriterBase,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLWriterBase = require('./XMLWriterBase');\n\n  WriterState = require('./WriterState');\n\n  module.exports = XMLStreamWriter = (function(superClass) {\n    extend(XMLStreamWriter, superClass);\n\n    function XMLStreamWriter(stream, options) {\n      this.stream = stream;\n      XMLStreamWriter.__super__.constructor.call(this, options);\n    }\n\n    XMLStreamWriter.prototype.endline = function(node, options, level) {\n      if (node.isLastRootNode && options.state === WriterState.CloseTag) {\n        return '';\n      } else {\n        return XMLStreamWriter.__super__.endline.call(this, node, options, level);\n      }\n    };\n\n    XMLStreamWriter.prototype.document = function(doc, options) {\n      var child, i, j, k, len, len1, ref, ref1, results;\n      ref = doc.children;\n      for (i = j = 0, len = ref.length; j < len; i = ++j) {\n        child = ref[i];\n        child.isLastRootNode = i === doc.children.length - 1;\n      }\n      options = this.filterOptions(options);\n      ref1 = doc.children;\n      results = [];\n      for (k = 0, len1 = ref1.length; k < len1; k++) {\n        child = ref1[k];\n        results.push(this.writeChildNode(child, options, 0));\n      }\n      return results;\n    };\n\n    XMLStreamWriter.prototype.attribute = function(att, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.attribute.call(this, att, options, level));\n    };\n\n    XMLStreamWriter.prototype.cdata = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.cdata.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.comment = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.comment.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.declaration = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.declaration.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.docType = function(node, options, level) {\n      var child, j, len, ref;\n      level || (level = 0);\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      this.stream.write(this.indent(node, options, level));\n      this.stream.write('<!DOCTYPE ' + node.root().name);\n      if (node.pubID && node.sysID) {\n        this.stream.write(' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"');\n      } else if (node.sysID) {\n        this.stream.write(' SYSTEM \"' + node.sysID + '\"');\n      }\n      if (node.children.length > 0) {\n        this.stream.write(' [');\n        this.stream.write(this.endline(node, options, level));\n        options.state = WriterState.InsideTag;\n        ref = node.children;\n        for (j = 0, len = ref.length; j < len; j++) {\n          child = ref[j];\n          this.writeChildNode(child, options, level + 1);\n        }\n        options.state = WriterState.CloseTag;\n        this.stream.write(']');\n      }\n      options.state = WriterState.CloseTag;\n      this.stream.write(options.spaceBeforeSlash + '>');\n      this.stream.write(this.endline(node, options, level));\n      options.state = WriterState.None;\n      return this.closeNode(node, options, level);\n    };\n\n    XMLStreamWriter.prototype.element = function(node, options, level) {\n      var att, child, childNodeCount, firstChildNode, j, len, name, prettySuppressed, ref, ref1;\n      level || (level = 0);\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      this.stream.write(this.indent(node, options, level) + '<' + node.name);\n      ref = node.attribs;\n      for (name in ref) {\n        if (!hasProp.call(ref, name)) continue;\n        att = ref[name];\n        this.attribute(att, options, level);\n      }\n      childNodeCount = node.children.length;\n      firstChildNode = childNodeCount === 0 ? null : node.children[0];\n      if (childNodeCount === 0 || node.children.every(function(e) {\n        return (e.type === NodeType.Text || e.type === NodeType.Raw) && e.value === '';\n      })) {\n        if (options.allowEmpty) {\n          this.stream.write('>');\n          options.state = WriterState.CloseTag;\n          this.stream.write('</' + node.name + '>');\n        } else {\n          options.state = WriterState.CloseTag;\n          this.stream.write(options.spaceBeforeSlash + '/>');\n        }\n      } else if (options.pretty && childNodeCount === 1 && (firstChildNode.type === NodeType.Text || firstChildNode.type === NodeType.Raw) && (firstChildNode.value != null)) {\n        this.stream.write('>');\n        options.state = WriterState.InsideTag;\n        options.suppressPrettyCount++;\n        prettySuppressed = true;\n        this.writeChildNode(firstChildNode, options, level + 1);\n        options.suppressPrettyCount--;\n        prettySuppressed = false;\n        options.state = WriterState.CloseTag;\n        this.stream.write('</' + node.name + '>');\n      } else {\n        this.stream.write('>' + this.endline(node, options, level));\n        options.state = WriterState.InsideTag;\n        ref1 = node.children;\n        for (j = 0, len = ref1.length; j < len; j++) {\n          child = ref1[j];\n          this.writeChildNode(child, options, level + 1);\n        }\n        options.state = WriterState.CloseTag;\n        this.stream.write(this.indent(node, options, level) + '</' + node.name + '>');\n      }\n      this.stream.write(this.endline(node, options, level));\n      options.state = WriterState.None;\n      return this.closeNode(node, options, level);\n    };\n\n    XMLStreamWriter.prototype.processingInstruction = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.processingInstruction.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.raw = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.raw.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.text = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.text.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.dtdAttList = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.dtdAttList.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.dtdElement = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.dtdElement.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.dtdEntity = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.dtdEntity.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.dtdNotation = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.dtdNotation.call(this, node, options, level));\n    };\n\n    return XMLStreamWriter;\n\n  })(XMLWriterBase);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLStringWriter, XMLWriterBase,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLWriterBase = require('./XMLWriterBase');\n\n  module.exports = XMLStringWriter = (function(superClass) {\n    extend(XMLStringWriter, superClass);\n\n    function XMLStringWriter(options) {\n      XMLStringWriter.__super__.constructor.call(this, options);\n    }\n\n    XMLStringWriter.prototype.document = function(doc, options) {\n      var child, i, len, r, ref;\n      options = this.filterOptions(options);\n      r = '';\n      ref = doc.children;\n      for (i = 0, len = ref.length; i < len; i++) {\n        child = ref[i];\n        r += this.writeChildNode(child, options, 0);\n      }\n      if (options.pretty && r.slice(-options.newline.length) === options.newline) {\n        r = r.slice(0, -options.newline.length);\n      }\n      return r;\n    };\n\n    return XMLStringWriter;\n\n  })(XMLWriterBase);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLStringifier,\n    bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },\n    hasProp = {}.hasOwnProperty;\n\n  module.exports = XMLStringifier = (function() {\n    function XMLStringifier(options) {\n      this.assertLegalName = bind(this.assertLegalName, this);\n      this.assertLegalChar = bind(this.assertLegalChar, this);\n      var key, ref, value;\n      options || (options = {});\n      this.options = options;\n      if (!this.options.version) {\n        this.options.version = '1.0';\n      }\n      ref = options.stringify || {};\n      for (key in ref) {\n        if (!hasProp.call(ref, key)) continue;\n        value = ref[key];\n        this[key] = value;\n      }\n    }\n\n    XMLStringifier.prototype.name = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalName('' + val || '');\n    };\n\n    XMLStringifier.prototype.text = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar(this.textEscape('' + val || ''));\n    };\n\n    XMLStringifier.prototype.cdata = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      val = '' + val || '';\n      val = val.replace(']]>', ']]]]><![CDATA[>');\n      return this.assertLegalChar(val);\n    };\n\n    XMLStringifier.prototype.comment = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      val = '' + val || '';\n      if (val.match(/--/)) {\n        throw new Error(\"Comment text cannot contain double-hypen: \" + val);\n      }\n      return this.assertLegalChar(val);\n    };\n\n    XMLStringifier.prototype.raw = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return '' + val || '';\n    };\n\n    XMLStringifier.prototype.attValue = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar(this.attEscape(val = '' + val || ''));\n    };\n\n    XMLStringifier.prototype.insTarget = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.insValue = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      val = '' + val || '';\n      if (val.match(/\\?>/)) {\n        throw new Error(\"Invalid processing instruction value: \" + val);\n      }\n      return this.assertLegalChar(val);\n    };\n\n    XMLStringifier.prototype.xmlVersion = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      val = '' + val || '';\n      if (!val.match(/1\\.[0-9]+/)) {\n        throw new Error(\"Invalid version number: \" + val);\n      }\n      return val;\n    };\n\n    XMLStringifier.prototype.xmlEncoding = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      val = '' + val || '';\n      if (!val.match(/^[A-Za-z](?:[A-Za-z0-9._-])*$/)) {\n        throw new Error(\"Invalid encoding: \" + val);\n      }\n      return this.assertLegalChar(val);\n    };\n\n    XMLStringifier.prototype.xmlStandalone = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      if (val) {\n        return \"yes\";\n      } else {\n        return \"no\";\n      }\n    };\n\n    XMLStringifier.prototype.dtdPubID = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdSysID = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdElementValue = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdAttType = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdAttDefault = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdEntityValue = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdNData = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.convertAttKey = '@';\n\n    XMLStringifier.prototype.convertPIKey = '?';\n\n    XMLStringifier.prototype.convertTextKey = '#text';\n\n    XMLStringifier.prototype.convertCDataKey = '#cdata';\n\n    XMLStringifier.prototype.convertCommentKey = '#comment';\n\n    XMLStringifier.prototype.convertRawKey = '#raw';\n\n    XMLStringifier.prototype.assertLegalChar = function(str) {\n      var regex, res;\n      if (this.options.noValidation) {\n        return str;\n      }\n      regex = '';\n      if (this.options.version === '1.0') {\n        regex = /[\\0-\\x08\\x0B\\f\\x0E-\\x1F\\uFFFE\\uFFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/;\n        if (res = str.match(regex)) {\n          throw new Error(\"Invalid character in string: \" + str + \" at index \" + res.index);\n        }\n      } else if (this.options.version === '1.1') {\n        regex = /[\\0\\uFFFE\\uFFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/;\n        if (res = str.match(regex)) {\n          throw new Error(\"Invalid character in string: \" + str + \" at index \" + res.index);\n        }\n      }\n      return str;\n    };\n\n    XMLStringifier.prototype.assertLegalName = function(str) {\n      var regex;\n      if (this.options.noValidation) {\n        return str;\n      }\n      this.assertLegalChar(str);\n      regex = /^([:A-Z_a-z\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]|[\\uD800-\\uDB7F][\\uDC00-\\uDFFF])([\\x2D\\.0-:A-Z_a-z\\xB7\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u037D\\u037F-\\u1FFF\\u200C\\u200D\\u203F\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]|[\\uD800-\\uDB7F][\\uDC00-\\uDFFF])*$/;\n      if (!str.match(regex)) {\n        throw new Error(\"Invalid character in name\");\n      }\n      return str;\n    };\n\n    XMLStringifier.prototype.textEscape = function(str) {\n      var ampregex;\n      if (this.options.noValidation) {\n        return str;\n      }\n      ampregex = this.options.noDoubleEncoding ? /(?!&\\S+;)&/g : /&/g;\n      return str.replace(ampregex, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/\\r/g, '&#xD;');\n    };\n\n    XMLStringifier.prototype.attEscape = function(str) {\n      var ampregex;\n      if (this.options.noValidation) {\n        return str;\n      }\n      ampregex = this.options.noDoubleEncoding ? /(?!&\\S+;)&/g : /&/g;\n      return str.replace(ampregex, '&amp;').replace(/</g, '&lt;').replace(/\"/g, '&quot;').replace(/\\t/g, '&#x9;').replace(/\\n/g, '&#xA;').replace(/\\r/g, '&#xD;');\n    };\n\n    return XMLStringifier;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLCharacterData, XMLText,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLCharacterData = require('./XMLCharacterData');\n\n  module.exports = XMLText = (function(superClass) {\n    extend(XMLText, superClass);\n\n    function XMLText(parent, text) {\n      XMLText.__super__.constructor.call(this, parent);\n      if (text == null) {\n        throw new Error(\"Missing element text. \" + this.debugInfo());\n      }\n      this.name = \"#text\";\n      this.type = NodeType.Text;\n      this.value = this.stringify.text(text);\n    }\n\n    Object.defineProperty(XMLText.prototype, 'isElementContentWhitespace', {\n      get: function() {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    Object.defineProperty(XMLText.prototype, 'wholeText', {\n      get: function() {\n        var next, prev, str;\n        str = '';\n        prev = this.previousSibling;\n        while (prev) {\n          str = prev.data + str;\n          prev = prev.previousSibling;\n        }\n        str += this.data;\n        next = this.nextSibling;\n        while (next) {\n          str = str + next.data;\n          next = next.nextSibling;\n        }\n        return str;\n      }\n    });\n\n    XMLText.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLText.prototype.toString = function(options) {\n      return this.options.writer.text(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLText.prototype.splitText = function(offset) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLText.prototype.replaceWholeText = function(content) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    return XMLText;\n\n  })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, WriterState, XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLDummy, XMLElement, XMLProcessingInstruction, XMLRaw, XMLText, XMLWriterBase, assign,\n    hasProp = {}.hasOwnProperty;\n\n  assign = require('./Utility').assign;\n\n  NodeType = require('./NodeType');\n\n  XMLDeclaration = require('./XMLDeclaration');\n\n  XMLDocType = require('./XMLDocType');\n\n  XMLCData = require('./XMLCData');\n\n  XMLComment = require('./XMLComment');\n\n  XMLElement = require('./XMLElement');\n\n  XMLRaw = require('./XMLRaw');\n\n  XMLText = require('./XMLText');\n\n  XMLProcessingInstruction = require('./XMLProcessingInstruction');\n\n  XMLDummy = require('./XMLDummy');\n\n  XMLDTDAttList = require('./XMLDTDAttList');\n\n  XMLDTDElement = require('./XMLDTDElement');\n\n  XMLDTDEntity = require('./XMLDTDEntity');\n\n  XMLDTDNotation = require('./XMLDTDNotation');\n\n  WriterState = require('./WriterState');\n\n  module.exports = XMLWriterBase = (function() {\n    function XMLWriterBase(options) {\n      var key, ref, value;\n      options || (options = {});\n      this.options = options;\n      ref = options.writer || {};\n      for (key in ref) {\n        if (!hasProp.call(ref, key)) continue;\n        value = ref[key];\n        this[\"_\" + key] = this[key];\n        this[key] = value;\n      }\n    }\n\n    XMLWriterBase.prototype.filterOptions = function(options) {\n      var filteredOptions, ref, ref1, ref2, ref3, ref4, ref5, ref6;\n      options || (options = {});\n      options = assign({}, this.options, options);\n      filteredOptions = {\n        writer: this\n      };\n      filteredOptions.pretty = options.pretty || false;\n      filteredOptions.allowEmpty = options.allowEmpty || false;\n      filteredOptions.indent = (ref = options.indent) != null ? ref : '  ';\n      filteredOptions.newline = (ref1 = options.newline) != null ? ref1 : '\\n';\n      filteredOptions.offset = (ref2 = options.offset) != null ? ref2 : 0;\n      filteredOptions.dontPrettyTextNodes = (ref3 = (ref4 = options.dontPrettyTextNodes) != null ? ref4 : options.dontprettytextnodes) != null ? ref3 : 0;\n      filteredOptions.spaceBeforeSlash = (ref5 = (ref6 = options.spaceBeforeSlash) != null ? ref6 : options.spacebeforeslash) != null ? ref5 : '';\n      if (filteredOptions.spaceBeforeSlash === true) {\n        filteredOptions.spaceBeforeSlash = ' ';\n      }\n      filteredOptions.suppressPrettyCount = 0;\n      filteredOptions.user = {};\n      filteredOptions.state = WriterState.None;\n      return filteredOptions;\n    };\n\n    XMLWriterBase.prototype.indent = function(node, options, level) {\n      var indentLevel;\n      if (!options.pretty || options.suppressPrettyCount) {\n        return '';\n      } else if (options.pretty) {\n        indentLevel = (level || 0) + options.offset + 1;\n        if (indentLevel > 0) {\n          return new Array(indentLevel).join(options.indent);\n        }\n      }\n      return '';\n    };\n\n    XMLWriterBase.prototype.endline = function(node, options, level) {\n      if (!options.pretty || options.suppressPrettyCount) {\n        return '';\n      } else {\n        return options.newline;\n      }\n    };\n\n    XMLWriterBase.prototype.attribute = function(att, options, level) {\n      var r;\n      this.openAttribute(att, options, level);\n      r = ' ' + att.name + '=\"' + att.value + '\"';\n      this.closeAttribute(att, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.cdata = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<![CDATA[';\n      options.state = WriterState.InsideTag;\n      r += node.value;\n      options.state = WriterState.CloseTag;\n      r += ']]>' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.comment = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<!-- ';\n      options.state = WriterState.InsideTag;\n      r += node.value;\n      options.state = WriterState.CloseTag;\n      r += ' -->' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.declaration = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<?xml';\n      options.state = WriterState.InsideTag;\n      r += ' version=\"' + node.version + '\"';\n      if (node.encoding != null) {\n        r += ' encoding=\"' + node.encoding + '\"';\n      }\n      if (node.standalone != null) {\n        r += ' standalone=\"' + node.standalone + '\"';\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '?>';\n      r += this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.docType = function(node, options, level) {\n      var child, i, len, r, ref;\n      level || (level = 0);\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level);\n      r += '<!DOCTYPE ' + node.root().name;\n      if (node.pubID && node.sysID) {\n        r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n      } else if (node.sysID) {\n        r += ' SYSTEM \"' + node.sysID + '\"';\n      }\n      if (node.children.length > 0) {\n        r += ' [';\n        r += this.endline(node, options, level);\n        options.state = WriterState.InsideTag;\n        ref = node.children;\n        for (i = 0, len = ref.length; i < len; i++) {\n          child = ref[i];\n          r += this.writeChildNode(child, options, level + 1);\n        }\n        options.state = WriterState.CloseTag;\n        r += ']';\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '>';\n      r += this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.element = function(node, options, level) {\n      var att, child, childNodeCount, firstChildNode, i, j, len, len1, name, prettySuppressed, r, ref, ref1, ref2;\n      level || (level = 0);\n      prettySuppressed = false;\n      r = '';\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r += this.indent(node, options, level) + '<' + node.name;\n      ref = node.attribs;\n      for (name in ref) {\n        if (!hasProp.call(ref, name)) continue;\n        att = ref[name];\n        r += this.attribute(att, options, level);\n      }\n      childNodeCount = node.children.length;\n      firstChildNode = childNodeCount === 0 ? null : node.children[0];\n      if (childNodeCount === 0 || node.children.every(function(e) {\n        return (e.type === NodeType.Text || e.type === NodeType.Raw) && e.value === '';\n      })) {\n        if (options.allowEmpty) {\n          r += '>';\n          options.state = WriterState.CloseTag;\n          r += '</' + node.name + '>' + this.endline(node, options, level);\n        } else {\n          options.state = WriterState.CloseTag;\n          r += options.spaceBeforeSlash + '/>' + this.endline(node, options, level);\n        }\n      } else if (options.pretty && childNodeCount === 1 && (firstChildNode.type === NodeType.Text || firstChildNode.type === NodeType.Raw) && (firstChildNode.value != null)) {\n        r += '>';\n        options.state = WriterState.InsideTag;\n        options.suppressPrettyCount++;\n        prettySuppressed = true;\n        r += this.writeChildNode(firstChildNode, options, level + 1);\n        options.suppressPrettyCount--;\n        prettySuppressed = false;\n        options.state = WriterState.CloseTag;\n        r += '</' + node.name + '>' + this.endline(node, options, level);\n      } else {\n        if (options.dontPrettyTextNodes) {\n          ref1 = node.children;\n          for (i = 0, len = ref1.length; i < len; i++) {\n            child = ref1[i];\n            if ((child.type === NodeType.Text || child.type === NodeType.Raw) && (child.value != null)) {\n              options.suppressPrettyCount++;\n              prettySuppressed = true;\n              break;\n            }\n          }\n        }\n        r += '>' + this.endline(node, options, level);\n        options.state = WriterState.InsideTag;\n        ref2 = node.children;\n        for (j = 0, len1 = ref2.length; j < len1; j++) {\n          child = ref2[j];\n          r += this.writeChildNode(child, options, level + 1);\n        }\n        options.state = WriterState.CloseTag;\n        r += this.indent(node, options, level) + '</' + node.name + '>';\n        if (prettySuppressed) {\n          options.suppressPrettyCount--;\n        }\n        r += this.endline(node, options, level);\n        options.state = WriterState.None;\n      }\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.writeChildNode = function(node, options, level) {\n      switch (node.type) {\n        case NodeType.CData:\n          return this.cdata(node, options, level);\n        case NodeType.Comment:\n          return this.comment(node, options, level);\n        case NodeType.Element:\n          return this.element(node, options, level);\n        case NodeType.Raw:\n          return this.raw(node, options, level);\n        case NodeType.Text:\n          return this.text(node, options, level);\n        case NodeType.ProcessingInstruction:\n          return this.processingInstruction(node, options, level);\n        case NodeType.Dummy:\n          return '';\n        case NodeType.Declaration:\n          return this.declaration(node, options, level);\n        case NodeType.DocType:\n          return this.docType(node, options, level);\n        case NodeType.AttributeDeclaration:\n          return this.dtdAttList(node, options, level);\n        case NodeType.ElementDeclaration:\n          return this.dtdElement(node, options, level);\n        case NodeType.EntityDeclaration:\n          return this.dtdEntity(node, options, level);\n        case NodeType.NotationDeclaration:\n          return this.dtdNotation(node, options, level);\n        default:\n          throw new Error(\"Unknown XML node type: \" + node.constructor.name);\n      }\n    };\n\n    XMLWriterBase.prototype.processingInstruction = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<?';\n      options.state = WriterState.InsideTag;\n      r += node.target;\n      if (node.value) {\n        r += ' ' + node.value;\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '?>';\n      r += this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.raw = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level);\n      options.state = WriterState.InsideTag;\n      r += node.value;\n      options.state = WriterState.CloseTag;\n      r += this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.text = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level);\n      options.state = WriterState.InsideTag;\n      r += node.value;\n      options.state = WriterState.CloseTag;\n      r += this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.dtdAttList = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<!ATTLIST';\n      options.state = WriterState.InsideTag;\n      r += ' ' + node.elementName + ' ' + node.attributeName + ' ' + node.attributeType;\n      if (node.defaultValueType !== '#DEFAULT') {\n        r += ' ' + node.defaultValueType;\n      }\n      if (node.defaultValue) {\n        r += ' \"' + node.defaultValue + '\"';\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.dtdElement = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<!ELEMENT';\n      options.state = WriterState.InsideTag;\n      r += ' ' + node.name + ' ' + node.value;\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.dtdEntity = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<!ENTITY';\n      options.state = WriterState.InsideTag;\n      if (node.pe) {\n        r += ' %';\n      }\n      r += ' ' + node.name;\n      if (node.value) {\n        r += ' \"' + node.value + '\"';\n      } else {\n        if (node.pubID && node.sysID) {\n          r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n        } else if (node.sysID) {\n          r += ' SYSTEM \"' + node.sysID + '\"';\n        }\n        if (node.nData) {\n          r += ' NDATA ' + node.nData;\n        }\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.dtdNotation = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<!NOTATION';\n      options.state = WriterState.InsideTag;\n      r += ' ' + node.name;\n      if (node.pubID && node.sysID) {\n        r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n      } else if (node.pubID) {\n        r += ' PUBLIC \"' + node.pubID + '\"';\n      } else if (node.sysID) {\n        r += ' SYSTEM \"' + node.sysID + '\"';\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.openNode = function(node, options, level) {};\n\n    XMLWriterBase.prototype.closeNode = function(node, options, level) {};\n\n    XMLWriterBase.prototype.openAttribute = function(att, options, level) {};\n\n    XMLWriterBase.prototype.closeAttribute = function(att, options, level) {};\n\n    return XMLWriterBase;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, WriterState, XMLDOMImplementation, XMLDocument, XMLDocumentCB, XMLStreamWriter, XMLStringWriter, assign, isFunction, ref;\n\n  ref = require('./Utility'), assign = ref.assign, isFunction = ref.isFunction;\n\n  XMLDOMImplementation = require('./XMLDOMImplementation');\n\n  XMLDocument = require('./XMLDocument');\n\n  XMLDocumentCB = require('./XMLDocumentCB');\n\n  XMLStringWriter = require('./XMLStringWriter');\n\n  XMLStreamWriter = require('./XMLStreamWriter');\n\n  NodeType = require('./NodeType');\n\n  WriterState = require('./WriterState');\n\n  module.exports.create = function(name, xmldec, doctype, options) {\n    var doc, root;\n    if (name == null) {\n      throw new Error(\"Root element needs a name.\");\n    }\n    options = assign({}, xmldec, doctype, options);\n    doc = new XMLDocument(options);\n    root = doc.element(name);\n    if (!options.headless) {\n      doc.declaration(options);\n      if ((options.pubID != null) || (options.sysID != null)) {\n        doc.dtd(options);\n      }\n    }\n    return root;\n  };\n\n  module.exports.begin = function(options, onData, onEnd) {\n    var ref1;\n    if (isFunction(options)) {\n      ref1 = [options, onData], onData = ref1[0], onEnd = ref1[1];\n      options = {};\n    }\n    if (onData) {\n      return new XMLDocumentCB(options, onData, onEnd);\n    } else {\n      return new XMLDocument(options);\n    }\n  };\n\n  module.exports.stringWriter = function(options) {\n    return new XMLStringWriter(options);\n  };\n\n  module.exports.streamWriter = function(stream, options) {\n    return new XMLStreamWriter(stream, options);\n  };\n\n  module.exports.implementation = new XMLDOMImplementation();\n\n  module.exports.nodeType = NodeType;\n\n  module.exports.writerState = WriterState;\n\n}).call(this);\n","import { getCurrentUser, onRequestTokenUpdate, getRequestToken } from \"@nextcloud/auth\";\nimport { getLoggerBuilder } from \"@nextcloud/logger\";\nimport { join, basename, extname, dirname } from \"path\";\nimport { encodePath } from \"@nextcloud/paths\";\nimport { generateRemoteUrl } from \"@nextcloud/router\";\nimport { createClient, getPatcher } from \"webdav\";\nimport { CancelablePromise } from \"cancelable-promise\";\nimport { getCanonicalLocale, getLanguage } from \"@nextcloud/l10n\";\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst getLogger = (user) => {\n  if (user === null) {\n    return getLoggerBuilder().setApp(\"files\").build();\n  }\n  return getLoggerBuilder().setApp(\"files\").setUid(user.uid).build();\n};\nconst logger = getLogger(getCurrentUser());\n/**\n * @copyright Copyright (c) 2021 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar NewMenuEntryCategory = /* @__PURE__ */ ((NewMenuEntryCategory2) => {\n  NewMenuEntryCategory2[NewMenuEntryCategory2[\"UploadFromDevice\"] = 0] = \"UploadFromDevice\";\n  NewMenuEntryCategory2[NewMenuEntryCategory2[\"CreateNew\"] = 1] = \"CreateNew\";\n  NewMenuEntryCategory2[NewMenuEntryCategory2[\"Other\"] = 2] = \"Other\";\n  return NewMenuEntryCategory2;\n})(NewMenuEntryCategory || {});\nclass NewFileMenu {\n  _entries = [];\n  registerEntry(entry) {\n    this.validateEntry(entry);\n    entry.category = entry.category ?? 1;\n    this._entries.push(entry);\n  }\n  unregisterEntry(entry) {\n    const entryIndex = typeof entry === \"string\" ? this.getEntryIndex(entry) : this.getEntryIndex(entry.id);\n    if (entryIndex === -1) {\n      logger.warn(\"Entry not found, nothing removed\", { entry, entries: this.getEntries() });\n      return;\n    }\n    this._entries.splice(entryIndex, 1);\n  }\n  /**\n   * Get the list of registered entries\n   *\n   * @param {Folder} context the creation context. Usually the current folder\n   */\n  getEntries(context) {\n    if (context) {\n      return this._entries.filter((entry) => typeof entry.enabled === \"function\" ? entry.enabled(context) : true);\n    }\n    return this._entries;\n  }\n  getEntryIndex(id) {\n    return this._entries.findIndex((entry) => entry.id === id);\n  }\n  validateEntry(entry) {\n    if (!entry.id || !entry.displayName || !(entry.iconSvgInline || entry.iconClass) || !entry.handler) {\n      throw new Error(\"Invalid entry\");\n    }\n    if (typeof entry.id !== \"string\" || typeof entry.displayName !== \"string\") {\n      throw new Error(\"Invalid id or displayName property\");\n    }\n    if (entry.iconClass && typeof entry.iconClass !== \"string\" || entry.iconSvgInline && typeof entry.iconSvgInline !== \"string\") {\n      throw new Error(\"Invalid icon provided\");\n    }\n    if (entry.enabled !== void 0 && typeof entry.enabled !== \"function\") {\n      throw new Error(\"Invalid enabled property\");\n    }\n    if (typeof entry.handler !== \"function\") {\n      throw new Error(\"Invalid handler property\");\n    }\n    if (\"order\" in entry && typeof entry.order !== \"number\") {\n      throw new Error(\"Invalid order property\");\n    }\n    if (this.getEntryIndex(entry.id) !== -1) {\n      throw new Error(\"Duplicate entry\");\n    }\n  }\n}\nconst getNewFileMenu = function() {\n  if (typeof window._nc_newfilemenu === \"undefined\") {\n    window._nc_newfilemenu = new NewFileMenu();\n    logger.debug(\"NewFileMenu initialized\");\n  }\n  return window._nc_newfilemenu;\n};\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar DefaultType = /* @__PURE__ */ ((DefaultType2) => {\n  DefaultType2[\"DEFAULT\"] = \"default\";\n  DefaultType2[\"HIDDEN\"] = \"hidden\";\n  return DefaultType2;\n})(DefaultType || {});\nclass FileAction {\n  _action;\n  constructor(action) {\n    this.validateAction(action);\n    this._action = action;\n  }\n  get id() {\n    return this._action.id;\n  }\n  get displayName() {\n    return this._action.displayName;\n  }\n  get title() {\n    return this._action.title;\n  }\n  get iconSvgInline() {\n    return this._action.iconSvgInline;\n  }\n  get enabled() {\n    return this._action.enabled;\n  }\n  get exec() {\n    return this._action.exec;\n  }\n  get execBatch() {\n    return this._action.execBatch;\n  }\n  get order() {\n    return this._action.order;\n  }\n  get parent() {\n    return this._action.parent;\n  }\n  get default() {\n    return this._action.default;\n  }\n  get inline() {\n    return this._action.inline;\n  }\n  get renderInline() {\n    return this._action.renderInline;\n  }\n  validateAction(action) {\n    if (!action.id || typeof action.id !== \"string\") {\n      throw new Error(\"Invalid id\");\n    }\n    if (!action.displayName || typeof action.displayName !== \"function\") {\n      throw new Error(\"Invalid displayName function\");\n    }\n    if (\"title\" in action && typeof action.title !== \"function\") {\n      throw new Error(\"Invalid title function\");\n    }\n    if (!action.iconSvgInline || typeof action.iconSvgInline !== \"function\") {\n      throw new Error(\"Invalid iconSvgInline function\");\n    }\n    if (!action.exec || typeof action.exec !== \"function\") {\n      throw new Error(\"Invalid exec function\");\n    }\n    if (\"enabled\" in action && typeof action.enabled !== \"function\") {\n      throw new Error(\"Invalid enabled function\");\n    }\n    if (\"execBatch\" in action && typeof action.execBatch !== \"function\") {\n      throw new Error(\"Invalid execBatch function\");\n    }\n    if (\"order\" in action && typeof action.order !== \"number\") {\n      throw new Error(\"Invalid order\");\n    }\n    if (\"parent\" in action && typeof action.parent !== \"string\") {\n      throw new Error(\"Invalid parent\");\n    }\n    if (action.default && !Object.values(DefaultType).includes(action.default)) {\n      throw new Error(\"Invalid default\");\n    }\n    if (\"inline\" in action && typeof action.inline !== \"function\") {\n      throw new Error(\"Invalid inline function\");\n    }\n    if (\"renderInline\" in action && typeof action.renderInline !== \"function\") {\n      throw new Error(\"Invalid renderInline function\");\n    }\n  }\n}\nconst registerFileAction = function(action) {\n  if (typeof window._nc_fileactions === \"undefined\") {\n    window._nc_fileactions = [];\n    logger.debug(\"FileActions initialized\");\n  }\n  if (window._nc_fileactions.find((search) => search.id === action.id)) {\n    logger.error(`FileAction ${action.id} already registered`, { action });\n    return;\n  }\n  window._nc_fileactions.push(action);\n};\nconst getFileActions = function() {\n  if (typeof window._nc_fileactions === \"undefined\") {\n    window._nc_fileactions = [];\n    logger.debug(\"FileActions initialized\");\n  }\n  return window._nc_fileactions;\n};\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Header {\n  _header;\n  constructor(header) {\n    this.validateHeader(header);\n    this._header = header;\n  }\n  get id() {\n    return this._header.id;\n  }\n  get order() {\n    return this._header.order;\n  }\n  get enabled() {\n    return this._header.enabled;\n  }\n  get render() {\n    return this._header.render;\n  }\n  get updated() {\n    return this._header.updated;\n  }\n  validateHeader(header) {\n    if (!header.id || !header.render || !header.updated) {\n      throw new Error(\"Invalid header: id, render and updated are required\");\n    }\n    if (typeof header.id !== \"string\") {\n      throw new Error(\"Invalid id property\");\n    }\n    if (header.enabled !== void 0 && typeof header.enabled !== \"function\") {\n      throw new Error(\"Invalid enabled property\");\n    }\n    if (header.render && typeof header.render !== \"function\") {\n      throw new Error(\"Invalid render property\");\n    }\n    if (header.updated && typeof header.updated !== \"function\") {\n      throw new Error(\"Invalid updated property\");\n    }\n  }\n}\nconst registerFileListHeaders = function(header) {\n  if (typeof window._nc_filelistheader === \"undefined\") {\n    window._nc_filelistheader = [];\n    logger.debug(\"FileListHeaders initialized\");\n  }\n  if (window._nc_filelistheader.find((search) => search.id === header.id)) {\n    logger.error(`Header ${header.id} already registered`, { header });\n    return;\n  }\n  window._nc_filelistheader.push(header);\n};\nconst getFileListHeaders = function() {\n  if (typeof window._nc_filelistheader === \"undefined\") {\n    window._nc_filelistheader = [];\n    logger.debug(\"FileListHeaders initialized\");\n  }\n  return window._nc_filelistheader;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar Permission = /* @__PURE__ */ ((Permission2) => {\n  Permission2[Permission2[\"NONE\"] = 0] = \"NONE\";\n  Permission2[Permission2[\"CREATE\"] = 4] = \"CREATE\";\n  Permission2[Permission2[\"READ\"] = 1] = \"READ\";\n  Permission2[Permission2[\"UPDATE\"] = 2] = \"UPDATE\";\n  Permission2[Permission2[\"DELETE\"] = 8] = \"DELETE\";\n  Permission2[Permission2[\"SHARE\"] = 16] = \"SHARE\";\n  Permission2[Permission2[\"ALL\"] = 31] = \"ALL\";\n  return Permission2;\n})(Permission || {});\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst defaultDavProperties = [\n  \"d:getcontentlength\",\n  \"d:getcontenttype\",\n  \"d:getetag\",\n  \"d:getlastmodified\",\n  \"d:quota-available-bytes\",\n  \"d:resourcetype\",\n  \"nc:has-preview\",\n  \"nc:is-encrypted\",\n  \"nc:mount-type\",\n  \"oc:comments-unread\",\n  \"oc:favorite\",\n  \"oc:fileid\",\n  \"oc:owner-display-name\",\n  \"oc:owner-id\",\n  \"oc:permissions\",\n  \"oc:size\"\n];\nconst defaultDavNamespaces = {\n  d: \"DAV:\",\n  nc: \"http://nextcloud.org/ns\",\n  oc: \"http://owncloud.org/ns\",\n  ocs: \"http://open-collaboration-services.org/ns\"\n};\nconst registerDavProperty = function(prop, namespace = { nc: \"http://nextcloud.org/ns\" }) {\n  if (typeof window._nc_dav_properties === \"undefined\") {\n    window._nc_dav_properties = [...defaultDavProperties];\n    window._nc_dav_namespaces = { ...defaultDavNamespaces };\n  }\n  const namespaces = { ...window._nc_dav_namespaces, ...namespace };\n  if (window._nc_dav_properties.find((search) => search === prop)) {\n    logger.warn(`${prop} already registered`, { prop });\n    return false;\n  }\n  if (prop.startsWith(\"<\") || prop.split(\":\").length !== 2) {\n    logger.error(`${prop} is not valid. See example: 'oc:fileid'`, { prop });\n    return false;\n  }\n  const ns = prop.split(\":\")[0];\n  if (!namespaces[ns]) {\n    logger.error(`${prop} namespace unknown`, { prop, namespaces });\n    return false;\n  }\n  window._nc_dav_properties.push(prop);\n  window._nc_dav_namespaces = namespaces;\n  return true;\n};\nconst getDavProperties = function() {\n  if (typeof window._nc_dav_properties === \"undefined\") {\n    window._nc_dav_properties = [...defaultDavProperties];\n  }\n  return window._nc_dav_properties.map((prop) => `<${prop} />`).join(\" \");\n};\nconst getDavNameSpaces = function() {\n  if (typeof window._nc_dav_namespaces === \"undefined\") {\n    window._nc_dav_namespaces = { ...defaultDavNamespaces };\n  }\n  return Object.keys(window._nc_dav_namespaces).map((ns) => `xmlns:${ns}=\"${window._nc_dav_namespaces?.[ns]}\"`).join(\" \");\n};\nconst davGetDefaultPropfind = function() {\n  return `<?xml version=\"1.0\"?>\n\t\t<d:propfind ${getDavNameSpaces()}>\n\t\t\t<d:prop>\n\t\t\t\t${getDavProperties()}\n\t\t\t</d:prop>\n\t\t</d:propfind>`;\n};\nconst davGetFavoritesReport = function() {\n  return `<?xml version=\"1.0\"?>\n\t\t<oc:filter-files ${getDavNameSpaces()}>\n\t\t\t<d:prop>\n\t\t\t\t${getDavProperties()}\n\t\t\t</d:prop>\n\t\t\t<oc:filter-rules>\n\t\t\t\t<oc:favorite>1</oc:favorite>\n\t\t\t</oc:filter-rules>\n\t\t</oc:filter-files>`;\n};\nconst davGetRecentSearch = function(lastModified) {\n  return `<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<d:searchrequest ${getDavNameSpaces()}\n\txmlns:ns=\"https://github.com/icewind1991/SearchDAV/ns\">\n\t<d:basicsearch>\n\t\t<d:select>\n\t\t\t<d:prop>\n\t\t\t\t${getDavProperties()}\n\t\t\t</d:prop>\n\t\t</d:select>\n\t\t<d:from>\n\t\t\t<d:scope>\n\t\t\t\t<d:href>/files/${getCurrentUser()?.uid}/</d:href>\n\t\t\t\t<d:depth>infinity</d:depth>\n\t\t\t</d:scope>\n\t\t</d:from>\n\t\t<d:where>\n\t\t\t<d:and>\n\t\t\t\t<d:or>\n\t\t\t\t\t<d:not>\n\t\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t\t<d:getcontenttype/>\n\t\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t\t<d:literal>httpd/unix-directory</d:literal>\n\t\t\t\t\t\t</d:eq>\n\t\t\t\t\t</d:not>\n\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t<oc:size/>\n\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t<d:literal>0</d:literal>\n\t\t\t\t\t</d:eq>\n\t\t\t\t</d:or>\n\t\t\t\t<d:gt>\n\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t\t</d:prop>\n\t\t\t\t\t<d:literal>${lastModified}</d:literal>\n\t\t\t\t</d:gt>\n\t\t\t</d:and>\n\t\t</d:where>\n\t\t<d:orderby>\n\t\t\t<d:order>\n\t\t\t\t<d:prop>\n\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t</d:prop>\n\t\t\t\t<d:descending/>\n\t\t\t</d:order>\n\t\t</d:orderby>\n\t\t<d:limit>\n\t\t\t<d:nresults>100</d:nresults>\n\t\t\t<ns:firstresult>0</ns:firstresult>\n\t\t</d:limit>\n\t</d:basicsearch>\n</d:searchrequest>`;\n};\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst davParsePermissions = function(permString = \"\") {\n  let permissions = Permission.NONE;\n  if (!permString) {\n    return permissions;\n  }\n  if (permString.includes(\"C\") || permString.includes(\"K\")) {\n    permissions |= Permission.CREATE;\n  }\n  if (permString.includes(\"G\")) {\n    permissions |= Permission.READ;\n  }\n  if (permString.includes(\"W\") || permString.includes(\"N\") || permString.includes(\"V\")) {\n    permissions |= Permission.UPDATE;\n  }\n  if (permString.includes(\"D\")) {\n    permissions |= Permission.DELETE;\n  }\n  if (permString.includes(\"R\")) {\n    permissions |= Permission.SHARE;\n  }\n  return permissions;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar FileType = /* @__PURE__ */ ((FileType2) => {\n  FileType2[\"Folder\"] = \"folder\";\n  FileType2[\"File\"] = \"file\";\n  return FileType2;\n})(FileType || {});\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst isDavRessource = function(source, davService) {\n  return source.match(davService) !== null;\n};\nconst validateData = (data, davService) => {\n  if (data.id && typeof data.id !== \"number\") {\n    throw new Error(\"Invalid id type of value\");\n  }\n  if (!data.source) {\n    throw new Error(\"Missing mandatory source\");\n  }\n  try {\n    new URL(data.source);\n  } catch (e) {\n    throw new Error(\"Invalid source format, source must be a valid URL\");\n  }\n  if (!data.source.startsWith(\"http\")) {\n    throw new Error(\"Invalid source format, only http(s) is supported\");\n  }\n  if (data.mtime && !(data.mtime instanceof Date)) {\n    throw new Error(\"Invalid mtime type\");\n  }\n  if (data.crtime && !(data.crtime instanceof Date)) {\n    throw new Error(\"Invalid crtime type\");\n  }\n  if (!data.mime || typeof data.mime !== \"string\" || !data.mime.match(/^[-\\w.]+\\/[-+\\w.]+$/gi)) {\n    throw new Error(\"Missing or invalid mandatory mime\");\n  }\n  if (\"size\" in data && typeof data.size !== \"number\" && data.size !== void 0) {\n    throw new Error(\"Invalid size type\");\n  }\n  if (\"permissions\" in data && data.permissions !== void 0 && !(typeof data.permissions === \"number\" && data.permissions >= Permission.NONE && data.permissions <= Permission.ALL)) {\n    throw new Error(\"Invalid permissions\");\n  }\n  if (data.owner && data.owner !== null && typeof data.owner !== \"string\") {\n    throw new Error(\"Invalid owner type\");\n  }\n  if (data.attributes && typeof data.attributes !== \"object\") {\n    throw new Error(\"Invalid attributes type\");\n  }\n  if (data.root && typeof data.root !== \"string\") {\n    throw new Error(\"Invalid root type\");\n  }\n  if (data.root && !data.root.startsWith(\"/\")) {\n    throw new Error(\"Root must start with a leading slash\");\n  }\n  if (data.root && !data.source.includes(data.root)) {\n    throw new Error(\"Root must be part of the source\");\n  }\n  if (data.root && isDavRessource(data.source, davService)) {\n    const service = data.source.match(davService)[0];\n    if (!data.source.includes(join(service, data.root))) {\n      throw new Error(\"The root must be relative to the service. e.g /files/emma\");\n    }\n  }\n  if (data.status && !Object.values(NodeStatus).includes(data.status)) {\n    throw new Error(\"Status must be a valid NodeStatus\");\n  }\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar NodeStatus = /* @__PURE__ */ ((NodeStatus2) => {\n  NodeStatus2[\"NEW\"] = \"new\";\n  NodeStatus2[\"FAILED\"] = \"failed\";\n  NodeStatus2[\"LOADING\"] = \"loading\";\n  NodeStatus2[\"LOCKED\"] = \"locked\";\n  return NodeStatus2;\n})(NodeStatus || {});\nclass Node {\n  _data;\n  _attributes;\n  _knownDavService = /(remote|public)\\.php\\/(web)?dav/i;\n  readonlyAttributes = Object.entries(Object.getOwnPropertyDescriptors(Node.prototype)).filter((e) => typeof e[1].get === \"function\" && e[0] !== \"__proto__\").map((e) => e[0]);\n  handler = {\n    set: (target, prop, value) => {\n      if (this.readonlyAttributes.includes(prop)) {\n        return false;\n      }\n      return Reflect.set(target, prop, value);\n    },\n    deleteProperty: (target, prop) => {\n      if (this.readonlyAttributes.includes(prop)) {\n        return false;\n      }\n      return Reflect.deleteProperty(target, prop);\n    },\n    // TODO: This is deprecated and only needed for files v3\n    get: (target, prop, receiver) => {\n      if (this.readonlyAttributes.includes(prop)) {\n        logger.warn(`Accessing \"Node.attributes.${prop}\" is deprecated, access it directly on the Node instance.`);\n        return Reflect.get(this, prop);\n      }\n      return Reflect.get(target, prop, receiver);\n    }\n  };\n  constructor(data, davService) {\n    validateData(data, davService || this._knownDavService);\n    this._data = { ...data, attributes: {} };\n    this._attributes = new Proxy(this._data.attributes, this.handler);\n    this.update(data.attributes ?? {});\n    if (davService) {\n      this._knownDavService = davService;\n    }\n  }\n  /**\n   * Get the source url to this object\n   * There is no setter as the source is not meant to be changed manually.\n   * You can use the rename or move method to change the source.\n   */\n  get source() {\n    return this._data.source.replace(/\\/$/i, \"\");\n  }\n  /**\n   * Get the encoded source url to this object for requests purposes\n   */\n  get encodedSource() {\n    const { origin } = new URL(this.source);\n    return origin + encodePath(this.source.slice(origin.length));\n  }\n  /**\n   * Get this object name\n   * There is no setter as the source is not meant to be changed manually.\n   * You can use the rename or move method to change the source.\n   */\n  get basename() {\n    return basename(this.source);\n  }\n  /**\n   * Get this object's extension\n   * There is no setter as the source is not meant to be changed manually.\n   * You can use the rename or move method to change the source.\n   */\n  get extension() {\n    return extname(this.source);\n  }\n  /**\n   * Get the directory path leading to this object\n   * Will use the relative path to root if available\n   *\n   * There is no setter as the source is not meant to be changed manually.\n   * You can use the rename or move method to change the source.\n   */\n  get dirname() {\n    if (this.root) {\n      let source = this.source;\n      if (this.isDavRessource) {\n        source = source.split(this._knownDavService).pop();\n      }\n      const firstMatch = source.indexOf(this.root);\n      const root = this.root.replace(/\\/$/, \"\");\n      return dirname(source.slice(firstMatch + root.length) || \"/\");\n    }\n    const url = new URL(this.source);\n    return dirname(url.pathname);\n  }\n  /**\n   * Get the file mime\n   * There is no setter as the mime is not meant to be changed\n   */\n  get mime() {\n    return this._data.mime;\n  }\n  /**\n   * Get the file modification time\n   */\n  get mtime() {\n    return this._data.mtime;\n  }\n  /**\n   * Set the file modification time\n   */\n  set mtime(mtime) {\n    this._data.mtime = mtime;\n  }\n  /**\n   * Get the file creation time\n   * There is no setter as the creation time is not meant to be changed\n   */\n  get crtime() {\n    return this._data.crtime;\n  }\n  /**\n   * Get the file size\n   */\n  get size() {\n    return this._data.size;\n  }\n  /**\n   * Set the file size\n   */\n  set size(size) {\n    this.updateMtime();\n    this._data.size = size;\n  }\n  /**\n   * Get the file attribute\n   * This contains all additional attributes not provided by the Node class\n   */\n  get attributes() {\n    return this._attributes;\n  }\n  /**\n   * Get the file permissions\n   */\n  get permissions() {\n    if (this.owner === null && !this.isDavRessource) {\n      return Permission.READ;\n    }\n    return this._data.permissions !== void 0 ? this._data.permissions : Permission.NONE;\n  }\n  /**\n   * Set the file permissions\n   */\n  set permissions(permissions) {\n    this.updateMtime();\n    this._data.permissions = permissions;\n  }\n  /**\n   * Get the file owner\n   * There is no setter as the owner is not meant to be changed\n   */\n  get owner() {\n    if (!this.isDavRessource) {\n      return null;\n    }\n    return this._data.owner;\n  }\n  /**\n   * Is this a dav-related ressource ?\n   */\n  get isDavRessource() {\n    return isDavRessource(this.source, this._knownDavService);\n  }\n  /**\n   * Get the dav root of this object\n   * There is no setter as the root is not meant to be changed\n   */\n  get root() {\n    if (this._data.root) {\n      return this._data.root.replace(/^(.+)\\/$/, \"$1\");\n    }\n    if (this.isDavRessource) {\n      const root = dirname(this.source);\n      return root.split(this._knownDavService).pop() || null;\n    }\n    return null;\n  }\n  /**\n   * Get the absolute path of this object relative to the root\n   */\n  get path() {\n    if (this.root) {\n      let source = this.source;\n      if (this.isDavRessource) {\n        source = source.split(this._knownDavService).pop();\n      }\n      const firstMatch = source.indexOf(this.root);\n      const root = this.root.replace(/\\/$/, \"\");\n      return source.slice(firstMatch + root.length) || \"/\";\n    }\n    return (this.dirname + \"/\" + this.basename).replace(/\\/\\//g, \"/\");\n  }\n  /**\n   * Get the node id if defined.\n   * There is no setter as the fileid is not meant to be changed\n   */\n  get fileid() {\n    return this._data?.id;\n  }\n  /**\n   * Get the node status.\n   */\n  get status() {\n    return this._data?.status;\n  }\n  /**\n   * Set the node status.\n   */\n  set status(status) {\n    this._data.status = status;\n  }\n  /**\n   * Move the node to a new destination\n   *\n   * @param {string} destination the new source.\n   * e.g. https://cloud.domain.com/remote.php/dav/files/emma/Photos/picture.jpg\n   */\n  move(destination) {\n    validateData({ ...this._data, source: destination }, this._knownDavService);\n    this._data.source = destination;\n    this.updateMtime();\n  }\n  /**\n   * Rename the node\n   * This aliases the move method for easier usage\n   *\n   * @param basename The new name of the node\n   */\n  rename(basename2) {\n    if (basename2.includes(\"/\")) {\n      throw new Error(\"Invalid basename\");\n    }\n    this.move(dirname(this.source) + \"/\" + basename2);\n  }\n  /**\n   * Update the mtime if exists\n   */\n  updateMtime() {\n    if (this._data.mtime) {\n      this._data.mtime = /* @__PURE__ */ new Date();\n    }\n  }\n  /**\n   * Update the attributes of the node\n   * Warning, updating attributes will NOT automatically update the mtime.\n   *\n   * @param attributes The new attributes to update on the Node attributes\n   */\n  update(attributes) {\n    for (const [name, value] of Object.entries(attributes)) {\n      try {\n        if (value === void 0) {\n          delete this.attributes[name];\n        } else {\n          this.attributes[name] = value;\n        }\n      } catch (e) {\n        if (e instanceof TypeError) {\n          continue;\n        }\n        throw e;\n      }\n    }\n  }\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass File extends Node {\n  get type() {\n    return FileType.File;\n  }\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Folder extends Node {\n  constructor(data) {\n    super({\n      ...data,\n      mime: \"httpd/unix-directory\"\n    });\n  }\n  get type() {\n    return FileType.Folder;\n  }\n  get extension() {\n    return null;\n  }\n  get mime() {\n    return \"httpd/unix-directory\";\n  }\n}\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst davRootPath = `/files/${getCurrentUser()?.uid}`;\nconst davRemoteURL = generateRemoteUrl(\"dav\");\nconst davGetClient = function(remoteURL = davRemoteURL, headers = {}) {\n  const client = createClient(remoteURL, { headers });\n  function setHeaders(token) {\n    client.setHeaders({\n      ...headers,\n      // Add this so the server knows it is an request from the browser\n      \"X-Requested-With\": \"XMLHttpRequest\",\n      // Inject user auth\n      requesttoken: token ?? \"\"\n    });\n  }\n  onRequestTokenUpdate(setHeaders);\n  setHeaders(getRequestToken());\n  const patcher = getPatcher();\n  patcher.patch(\"fetch\", (url, options) => {\n    const headers2 = options.headers;\n    if (headers2?.method) {\n      options.method = headers2.method;\n      delete headers2.method;\n    }\n    return fetch(url, options);\n  });\n  return client;\n};\nconst getFavoriteNodes = (davClient, path = \"/\", davRoot = davRootPath) => {\n  const controller = new AbortController();\n  return new CancelablePromise(async (resolve, reject, onCancel) => {\n    onCancel(() => controller.abort());\n    try {\n      const contentsResponse = await davClient.getDirectoryContents(`${davRoot}${path}`, {\n        signal: controller.signal,\n        details: true,\n        data: davGetFavoritesReport(),\n        headers: {\n          // see davGetClient for patched webdav client\n          method: \"REPORT\"\n        },\n        includeSelf: true\n      });\n      const nodes = contentsResponse.data.filter((node) => node.filename !== path).map((result) => davResultToNode(result, davRoot));\n      resolve(nodes);\n    } catch (error) {\n      reject(error);\n    }\n  });\n};\nconst davResultToNode = function(node, filesRoot = davRootPath, remoteURL = davRemoteURL) {\n  let userId = getCurrentUser()?.uid;\n  const isPublic = document.querySelector(\"input#isPublic\")?.value;\n  if (isPublic) {\n    userId = userId ?? document.querySelector(\"input#sharingUserId\")?.value;\n    userId = userId ?? \"anonymous\";\n  } else if (!userId) {\n    throw new Error(\"No user id found\");\n  }\n  const props = node.props;\n  const permissions = davParsePermissions(props?.permissions);\n  const owner = String(props?.[\"owner-id\"] || userId);\n  const nodeData = {\n    id: props?.fileid || 0,\n    source: `${remoteURL}${node.filename}`,\n    mtime: new Date(Date.parse(node.lastmod)),\n    mime: node.mime || \"application/octet-stream\",\n    size: props?.size || Number.parseInt(props.getcontentlength || \"0\"),\n    permissions,\n    owner,\n    root: filesRoot,\n    attributes: {\n      ...node,\n      ...props,\n      hasPreview: props?.[\"has-preview\"]\n    }\n  };\n  delete nodeData.attributes?.props;\n  return node.type === \"file\" ? new File(nodeData) : new Folder(nodeData);\n};\nconst forbiddenCharacters = window._oc_config?.forbidden_filenames_characters ?? [\"/\", \"\\\\\"];\nconst forbiddenFilenameRegex = window._oc_config?.blacklist_files_regex ? new RegExp(window._oc_config.blacklist_files_regex) : null;\nfunction isFilenameValid(filename) {\n  if (forbiddenCharacters.some((character) => filename.includes(character))) {\n    return false;\n  }\n  if (forbiddenFilenameRegex !== null && filename.match(forbiddenFilenameRegex)) {\n    return false;\n  }\n  return true;\n}\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst humanList = [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\"];\nconst humanListBinary = [\"B\", \"KiB\", \"MiB\", \"GiB\", \"TiB\", \"PiB\"];\nfunction formatFileSize(size, skipSmallSizes = false, binaryPrefixes = false, base1000 = false) {\n  binaryPrefixes = binaryPrefixes && !base1000;\n  if (typeof size === \"string\") {\n    size = Number(size);\n  }\n  let order = size > 0 ? Math.floor(Math.log(size) / Math.log(base1000 ? 1e3 : 1024)) : 0;\n  order = Math.min((binaryPrefixes ? humanListBinary.length : humanList.length) - 1, order);\n  const readableFormat = binaryPrefixes ? humanListBinary[order] : humanList[order];\n  let relativeSize = (size / Math.pow(base1000 ? 1e3 : 1024, order)).toFixed(1);\n  if (skipSmallSizes === true && order === 0) {\n    return (relativeSize !== \"0.0\" ? \"< 1 \" : \"0 \") + (binaryPrefixes ? humanListBinary[1] : humanList[1]);\n  }\n  if (order < 2) {\n    relativeSize = parseFloat(relativeSize).toFixed(0);\n  } else {\n    relativeSize = parseFloat(relativeSize).toLocaleString(getCanonicalLocale());\n  }\n  return relativeSize + \" \" + readableFormat;\n}\nfunction parseFileSize(value, forceBinary = false) {\n  try {\n    value = `${value}`.toLocaleLowerCase().replaceAll(/\\s+/g, \"\").replaceAll(\",\", \".\");\n  } catch (e) {\n    return null;\n  }\n  const match = value.match(/^([0-9]*(\\.[0-9]*)?)([kmgtp]?)(i?)b?$/);\n  if (match === null || match[1] === \".\" || match[1] === \"\") {\n    return null;\n  }\n  const bytesArray = {\n    \"\": 0,\n    k: 1,\n    m: 2,\n    g: 3,\n    t: 4,\n    p: 5,\n    e: 6\n  };\n  const decimalString = `${match[1]}`;\n  const base = match[4] === \"i\" || forceBinary ? 1024 : 1e3;\n  return Math.round(Number.parseFloat(decimalString) * base ** bytesArray[match[3]]);\n}\nfunction stringify(value) {\n  if (value instanceof Date) {\n    return value.toISOString();\n  }\n  return String(value);\n}\nfunction orderBy(collection, identifiers, orders) {\n  identifiers = identifiers ?? [(value) => value];\n  orders = orders ?? [];\n  const sorting = identifiers.map((_, index) => (orders[index] ?? \"asc\") === \"asc\" ? 1 : -1);\n  const collator = Intl.Collator(\n    [getLanguage(), getCanonicalLocale()],\n    {\n      // handle 10 as ten and not as one-zero\n      numeric: true,\n      usage: \"sort\"\n    }\n  );\n  return [...collection].sort((a, b) => {\n    for (const [index, identifier] of identifiers.entries()) {\n      const value = collator.compare(stringify(identifier(a)), stringify(identifier(b)));\n      if (value !== 0) {\n        return value * sorting[index];\n      }\n    }\n    return 0;\n  });\n}\nvar FilesSortingMode = /* @__PURE__ */ ((FilesSortingMode2) => {\n  FilesSortingMode2[\"Name\"] = \"basename\";\n  FilesSortingMode2[\"Modified\"] = \"mtime\";\n  FilesSortingMode2[\"Size\"] = \"size\";\n  return FilesSortingMode2;\n})(FilesSortingMode || {});\nfunction sortNodes(nodes, options = {}) {\n  const sortingOptions = {\n    // Default to sort by name\n    sortingMode: \"basename\",\n    // Default to sort ascending\n    sortingOrder: \"asc\",\n    ...options\n  };\n  const identifiers = [\n    // 1: Sort favorites first if enabled\n    ...sortingOptions.sortFavoritesFirst ? [(v) => v.attributes?.favorite !== 1] : [],\n    // 2: Sort folders first if sorting by name\n    ...sortingOptions.sortFoldersFirst ? [(v) => v.type !== \"folder\"] : [],\n    // 3: Use sorting mode if NOT basename (to be able to use displayName too)\n    ...sortingOptions.sortingMode !== \"basename\" ? [(v) => v[sortingOptions.sortingMode]] : [],\n    // 4: Use displayName if available, fallback to name\n    (v) => v.attributes?.displayName || v.basename,\n    // 5: Finally, use basename if all previous sorting methods failed\n    (v) => v.basename\n  ];\n  const orders = [\n    // (for 1): always sort favorites before normal files\n    ...sortingOptions.sortFavoritesFirst ? [\"asc\"] : [],\n    // (for 2): always sort folders before files\n    ...sortingOptions.sortFoldersFirst ? [\"asc\"] : [],\n    // (for 3): Reverse if sorting by mtime as mtime higher means edited more recent -> lower\n    ...sortingOptions.sortingMode === \"mtime\" ? [sortingOptions.sortingOrder === \"asc\" ? \"desc\" : \"asc\"] : [],\n    // (also for 3 so make sure not to conflict with 2 and 3)\n    ...sortingOptions.sortingMode !== \"mtime\" && sortingOptions.sortingMode !== \"basename\" ? [sortingOptions.sortingOrder] : [],\n    // for 4: use configured sorting direction\n    sortingOptions.sortingOrder,\n    // for 5: use configured sorting direction\n    sortingOptions.sortingOrder\n  ];\n  return orderBy(nodes, identifiers, orders);\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Navigation {\n  _views = [];\n  _currentView = null;\n  register(view) {\n    if (this._views.find((search) => search.id === view.id)) {\n      throw new Error(`View id ${view.id} is already registered`);\n    }\n    this._views.push(view);\n  }\n  remove(id) {\n    const index = this._views.findIndex((view) => view.id === id);\n    if (index !== -1) {\n      this._views.splice(index, 1);\n    }\n  }\n  get views() {\n    return this._views;\n  }\n  setActive(view) {\n    this._currentView = view;\n  }\n  get active() {\n    return this._currentView;\n  }\n}\nconst getNavigation = function() {\n  if (typeof window._nc_navigation === \"undefined\") {\n    window._nc_navigation = new Navigation();\n    logger.debug(\"Navigation service initialized\");\n  }\n  return window._nc_navigation;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Column {\n  _column;\n  constructor(column) {\n    isValidColumn(column);\n    this._column = column;\n  }\n  get id() {\n    return this._column.id;\n  }\n  get title() {\n    return this._column.title;\n  }\n  get render() {\n    return this._column.render;\n  }\n  get sort() {\n    return this._column.sort;\n  }\n  get summary() {\n    return this._column.summary;\n  }\n}\nconst isValidColumn = function(column) {\n  if (!column.id || typeof column.id !== \"string\") {\n    throw new Error(\"A column id is required\");\n  }\n  if (!column.title || typeof column.title !== \"string\") {\n    throw new Error(\"A column title is required\");\n  }\n  if (!column.render || typeof column.render !== \"function\") {\n    throw new Error(\"A render function is required\");\n  }\n  if (column.sort && typeof column.sort !== \"function\") {\n    throw new Error(\"Column sortFunction must be a function\");\n  }\n  if (column.summary && typeof column.summary !== \"function\") {\n    throw new Error(\"Column summary must be a function\");\n  }\n  return true;\n};\nvar validator$2 = {};\nvar util$3 = {};\n(function(exports) {\n  const nameStartChar = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\";\n  const nameChar = nameStartChar + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\";\n  const nameRegexp = \"[\" + nameStartChar + \"][\" + nameChar + \"]*\";\n  const regexName = new RegExp(\"^\" + nameRegexp + \"$\");\n  const getAllMatches = function(string, regex) {\n    const matches = [];\n    let match = regex.exec(string);\n    while (match) {\n      const allmatches = [];\n      allmatches.startIndex = regex.lastIndex - match[0].length;\n      const len = match.length;\n      for (let index = 0; index < len; index++) {\n        allmatches.push(match[index]);\n      }\n      matches.push(allmatches);\n      match = regex.exec(string);\n    }\n    return matches;\n  };\n  const isName = function(string) {\n    const match = regexName.exec(string);\n    return !(match === null || typeof match === \"undefined\");\n  };\n  exports.isExist = function(v) {\n    return typeof v !== \"undefined\";\n  };\n  exports.isEmptyObject = function(obj) {\n    return Object.keys(obj).length === 0;\n  };\n  exports.merge = function(target, a, arrayMode) {\n    if (a) {\n      const keys = Object.keys(a);\n      const len = keys.length;\n      for (let i = 0; i < len; i++) {\n        if (arrayMode === \"strict\") {\n          target[keys[i]] = [a[keys[i]]];\n        } else {\n          target[keys[i]] = a[keys[i]];\n        }\n      }\n    }\n  };\n  exports.getValue = function(v) {\n    if (exports.isExist(v)) {\n      return v;\n    } else {\n      return \"\";\n    }\n  };\n  exports.isName = isName;\n  exports.getAllMatches = getAllMatches;\n  exports.nameRegexp = nameRegexp;\n})(util$3);\nconst util$2 = util$3;\nconst defaultOptions$2 = {\n  allowBooleanAttributes: false,\n  //A tag can have attributes without any value\n  unpairedTags: []\n};\nvalidator$2.validate = function(xmlData, options) {\n  options = Object.assign({}, defaultOptions$2, options);\n  const tags = [];\n  let tagFound = false;\n  let reachedRoot = false;\n  if (xmlData[0] === \"\\uFEFF\") {\n    xmlData = xmlData.substr(1);\n  }\n  for (let i = 0; i < xmlData.length; i++) {\n    if (xmlData[i] === \"<\" && xmlData[i + 1] === \"?\") {\n      i += 2;\n      i = readPI(xmlData, i);\n      if (i.err)\n        return i;\n    } else if (xmlData[i] === \"<\") {\n      let tagStartPos = i;\n      i++;\n      if (xmlData[i] === \"!\") {\n        i = readCommentAndCDATA(xmlData, i);\n        continue;\n      } else {\n        let closingTag = false;\n        if (xmlData[i] === \"/\") {\n          closingTag = true;\n          i++;\n        }\n        let tagName = \"\";\n        for (; i < xmlData.length && xmlData[i] !== \">\" && xmlData[i] !== \" \" && xmlData[i] !== \"\t\" && xmlData[i] !== \"\\n\" && xmlData[i] !== \"\\r\"; i++) {\n          tagName += xmlData[i];\n        }\n        tagName = tagName.trim();\n        if (tagName[tagName.length - 1] === \"/\") {\n          tagName = tagName.substring(0, tagName.length - 1);\n          i--;\n        }\n        if (!validateTagName(tagName)) {\n          let msg;\n          if (tagName.trim().length === 0) {\n            msg = \"Invalid space after '<'.\";\n          } else {\n            msg = \"Tag '\" + tagName + \"' is an invalid name.\";\n          }\n          return getErrorObject(\"InvalidTag\", msg, getLineNumberForPosition(xmlData, i));\n        }\n        const result = readAttributeStr(xmlData, i);\n        if (result === false) {\n          return getErrorObject(\"InvalidAttr\", \"Attributes for '\" + tagName + \"' have open quote.\", getLineNumberForPosition(xmlData, i));\n        }\n        let attrStr = result.value;\n        i = result.index;\n        if (attrStr[attrStr.length - 1] === \"/\") {\n          const attrStrStart = i - attrStr.length;\n          attrStr = attrStr.substring(0, attrStr.length - 1);\n          const isValid = validateAttributeString(attrStr, options);\n          if (isValid === true) {\n            tagFound = true;\n          } else {\n            return getErrorObject(isValid.err.code, isValid.err.msg, getLineNumberForPosition(xmlData, attrStrStart + isValid.err.line));\n          }\n        } else if (closingTag) {\n          if (!result.tagClosed) {\n            return getErrorObject(\"InvalidTag\", \"Closing tag '\" + tagName + \"' doesn't have proper closing.\", getLineNumberForPosition(xmlData, i));\n          } else if (attrStr.trim().length > 0) {\n            return getErrorObject(\"InvalidTag\", \"Closing tag '\" + tagName + \"' can't have attributes or invalid starting.\", getLineNumberForPosition(xmlData, tagStartPos));\n          } else if (tags.length === 0) {\n            return getErrorObject(\"InvalidTag\", \"Closing tag '\" + tagName + \"' has not been opened.\", getLineNumberForPosition(xmlData, tagStartPos));\n          } else {\n            const otg = tags.pop();\n            if (tagName !== otg.tagName) {\n              let openPos = getLineNumberForPosition(xmlData, otg.tagStartPos);\n              return getErrorObject(\n                \"InvalidTag\",\n                \"Expected closing tag '\" + otg.tagName + \"' (opened in line \" + openPos.line + \", col \" + openPos.col + \") instead of closing tag '\" + tagName + \"'.\",\n                getLineNumberForPosition(xmlData, tagStartPos)\n              );\n            }\n            if (tags.length == 0) {\n              reachedRoot = true;\n            }\n          }\n        } else {\n          const isValid = validateAttributeString(attrStr, options);\n          if (isValid !== true) {\n            return getErrorObject(isValid.err.code, isValid.err.msg, getLineNumberForPosition(xmlData, i - attrStr.length + isValid.err.line));\n          }\n          if (reachedRoot === true) {\n            return getErrorObject(\"InvalidXml\", \"Multiple possible root nodes found.\", getLineNumberForPosition(xmlData, i));\n          } else if (options.unpairedTags.indexOf(tagName) !== -1)\n            ;\n          else {\n            tags.push({ tagName, tagStartPos });\n          }\n          tagFound = true;\n        }\n        for (i++; i < xmlData.length; i++) {\n          if (xmlData[i] === \"<\") {\n            if (xmlData[i + 1] === \"!\") {\n              i++;\n              i = readCommentAndCDATA(xmlData, i);\n              continue;\n            } else if (xmlData[i + 1] === \"?\") {\n              i = readPI(xmlData, ++i);\n              if (i.err)\n                return i;\n            } else {\n              break;\n            }\n          } else if (xmlData[i] === \"&\") {\n            const afterAmp = validateAmpersand(xmlData, i);\n            if (afterAmp == -1)\n              return getErrorObject(\"InvalidChar\", \"char '&' is not expected.\", getLineNumberForPosition(xmlData, i));\n            i = afterAmp;\n          } else {\n            if (reachedRoot === true && !isWhiteSpace(xmlData[i])) {\n              return getErrorObject(\"InvalidXml\", \"Extra text at the end\", getLineNumberForPosition(xmlData, i));\n            }\n          }\n        }\n        if (xmlData[i] === \"<\") {\n          i--;\n        }\n      }\n    } else {\n      if (isWhiteSpace(xmlData[i])) {\n        continue;\n      }\n      return getErrorObject(\"InvalidChar\", \"char '\" + xmlData[i] + \"' is not expected.\", getLineNumberForPosition(xmlData, i));\n    }\n  }\n  if (!tagFound) {\n    return getErrorObject(\"InvalidXml\", \"Start tag expected.\", 1);\n  } else if (tags.length == 1) {\n    return getErrorObject(\"InvalidTag\", \"Unclosed tag '\" + tags[0].tagName + \"'.\", getLineNumberForPosition(xmlData, tags[0].tagStartPos));\n  } else if (tags.length > 0) {\n    return getErrorObject(\"InvalidXml\", \"Invalid '\" + JSON.stringify(tags.map((t) => t.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n  }\n  return true;\n};\nfunction isWhiteSpace(char) {\n  return char === \" \" || char === \"\t\" || char === \"\\n\" || char === \"\\r\";\n}\nfunction readPI(xmlData, i) {\n  const start = i;\n  for (; i < xmlData.length; i++) {\n    if (xmlData[i] == \"?\" || xmlData[i] == \" \") {\n      const tagname = xmlData.substr(start, i - start);\n      if (i > 5 && tagname === \"xml\") {\n        return getErrorObject(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", getLineNumberForPosition(xmlData, i));\n      } else if (xmlData[i] == \"?\" && xmlData[i + 1] == \">\") {\n        i++;\n        break;\n      } else {\n        continue;\n      }\n    }\n  }\n  return i;\n}\nfunction readCommentAndCDATA(xmlData, i) {\n  if (xmlData.length > i + 5 && xmlData[i + 1] === \"-\" && xmlData[i + 2] === \"-\") {\n    for (i += 3; i < xmlData.length; i++) {\n      if (xmlData[i] === \"-\" && xmlData[i + 1] === \"-\" && xmlData[i + 2] === \">\") {\n        i += 2;\n        break;\n      }\n    }\n  } else if (xmlData.length > i + 8 && xmlData[i + 1] === \"D\" && xmlData[i + 2] === \"O\" && xmlData[i + 3] === \"C\" && xmlData[i + 4] === \"T\" && xmlData[i + 5] === \"Y\" && xmlData[i + 6] === \"P\" && xmlData[i + 7] === \"E\") {\n    let angleBracketsCount = 1;\n    for (i += 8; i < xmlData.length; i++) {\n      if (xmlData[i] === \"<\") {\n        angleBracketsCount++;\n      } else if (xmlData[i] === \">\") {\n        angleBracketsCount--;\n        if (angleBracketsCount === 0) {\n          break;\n        }\n      }\n    }\n  } else if (xmlData.length > i + 9 && xmlData[i + 1] === \"[\" && xmlData[i + 2] === \"C\" && xmlData[i + 3] === \"D\" && xmlData[i + 4] === \"A\" && xmlData[i + 5] === \"T\" && xmlData[i + 6] === \"A\" && xmlData[i + 7] === \"[\") {\n    for (i += 8; i < xmlData.length; i++) {\n      if (xmlData[i] === \"]\" && xmlData[i + 1] === \"]\" && xmlData[i + 2] === \">\") {\n        i += 2;\n        break;\n      }\n    }\n  }\n  return i;\n}\nconst doubleQuote = '\"';\nconst singleQuote = \"'\";\nfunction readAttributeStr(xmlData, i) {\n  let attrStr = \"\";\n  let startChar = \"\";\n  let tagClosed = false;\n  for (; i < xmlData.length; i++) {\n    if (xmlData[i] === doubleQuote || xmlData[i] === singleQuote) {\n      if (startChar === \"\") {\n        startChar = xmlData[i];\n      } else if (startChar !== xmlData[i])\n        ;\n      else {\n        startChar = \"\";\n      }\n    } else if (xmlData[i] === \">\") {\n      if (startChar === \"\") {\n        tagClosed = true;\n        break;\n      }\n    }\n    attrStr += xmlData[i];\n  }\n  if (startChar !== \"\") {\n    return false;\n  }\n  return {\n    value: attrStr,\n    index: i,\n    tagClosed\n  };\n}\nconst validAttrStrRegxp = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\nfunction validateAttributeString(attrStr, options) {\n  const matches = util$2.getAllMatches(attrStr, validAttrStrRegxp);\n  const attrNames = {};\n  for (let i = 0; i < matches.length; i++) {\n    if (matches[i][1].length === 0) {\n      return getErrorObject(\"InvalidAttr\", \"Attribute '\" + matches[i][2] + \"' has no space in starting.\", getPositionFromMatch(matches[i]));\n    } else if (matches[i][3] !== void 0 && matches[i][4] === void 0) {\n      return getErrorObject(\"InvalidAttr\", \"Attribute '\" + matches[i][2] + \"' is without value.\", getPositionFromMatch(matches[i]));\n    } else if (matches[i][3] === void 0 && !options.allowBooleanAttributes) {\n      return getErrorObject(\"InvalidAttr\", \"boolean attribute '\" + matches[i][2] + \"' is not allowed.\", getPositionFromMatch(matches[i]));\n    }\n    const attrName = matches[i][2];\n    if (!validateAttrName(attrName)) {\n      return getErrorObject(\"InvalidAttr\", \"Attribute '\" + attrName + \"' is an invalid name.\", getPositionFromMatch(matches[i]));\n    }\n    if (!attrNames.hasOwnProperty(attrName)) {\n      attrNames[attrName] = 1;\n    } else {\n      return getErrorObject(\"InvalidAttr\", \"Attribute '\" + attrName + \"' is repeated.\", getPositionFromMatch(matches[i]));\n    }\n  }\n  return true;\n}\nfunction validateNumberAmpersand(xmlData, i) {\n  let re = /\\d/;\n  if (xmlData[i] === \"x\") {\n    i++;\n    re = /[\\da-fA-F]/;\n  }\n  for (; i < xmlData.length; i++) {\n    if (xmlData[i] === \";\")\n      return i;\n    if (!xmlData[i].match(re))\n      break;\n  }\n  return -1;\n}\nfunction validateAmpersand(xmlData, i) {\n  i++;\n  if (xmlData[i] === \";\")\n    return -1;\n  if (xmlData[i] === \"#\") {\n    i++;\n    return validateNumberAmpersand(xmlData, i);\n  }\n  let count = 0;\n  for (; i < xmlData.length; i++, count++) {\n    if (xmlData[i].match(/\\w/) && count < 20)\n      continue;\n    if (xmlData[i] === \";\")\n      break;\n    return -1;\n  }\n  return i;\n}\nfunction getErrorObject(code, message, lineNumber) {\n  return {\n    err: {\n      code,\n      msg: message,\n      line: lineNumber.line || lineNumber,\n      col: lineNumber.col\n    }\n  };\n}\nfunction validateAttrName(attrName) {\n  return util$2.isName(attrName);\n}\nfunction validateTagName(tagname) {\n  return util$2.isName(tagname);\n}\nfunction getLineNumberForPosition(xmlData, index) {\n  const lines = xmlData.substring(0, index).split(/\\r?\\n/);\n  return {\n    line: lines.length,\n    // column number is last line's length + 1, because column numbering starts at 1:\n    col: lines[lines.length - 1].length + 1\n  };\n}\nfunction getPositionFromMatch(match) {\n  return match.startIndex + match[1].length;\n}\nvar OptionsBuilder = {};\nconst defaultOptions$1 = {\n  preserveOrder: false,\n  attributeNamePrefix: \"@_\",\n  attributesGroupName: false,\n  textNodeName: \"#text\",\n  ignoreAttributes: true,\n  removeNSPrefix: false,\n  // remove NS from tag name or attribute name if true\n  allowBooleanAttributes: false,\n  //a tag can have attributes without any value\n  //ignoreRootElement : false,\n  parseTagValue: true,\n  parseAttributeValue: false,\n  trimValues: true,\n  //Trim string values of tag and attributes\n  cdataPropName: false,\n  numberParseOptions: {\n    hex: true,\n    leadingZeros: true,\n    eNotation: true\n  },\n  tagValueProcessor: function(tagName, val2) {\n    return val2;\n  },\n  attributeValueProcessor: function(attrName, val2) {\n    return val2;\n  },\n  stopNodes: [],\n  //nested tags will not be parsed even for errors\n  alwaysCreateTextNode: false,\n  isArray: () => false,\n  commentPropName: false,\n  unpairedTags: [],\n  processEntities: true,\n  htmlEntities: false,\n  ignoreDeclaration: false,\n  ignorePiTags: false,\n  transformTagName: false,\n  transformAttributeName: false,\n  updateTag: function(tagName, jPath, attrs) {\n    return tagName;\n  }\n  // skipEmptyListItem: false\n};\nconst buildOptions$1 = function(options) {\n  return Object.assign({}, defaultOptions$1, options);\n};\nOptionsBuilder.buildOptions = buildOptions$1;\nOptionsBuilder.defaultOptions = defaultOptions$1;\nclass XmlNode {\n  constructor(tagname) {\n    this.tagname = tagname;\n    this.child = [];\n    this[\":@\"] = {};\n  }\n  add(key, val2) {\n    if (key === \"__proto__\")\n      key = \"#__proto__\";\n    this.child.push({ [key]: val2 });\n  }\n  addChild(node) {\n    if (node.tagname === \"__proto__\")\n      node.tagname = \"#__proto__\";\n    if (node[\":@\"] && Object.keys(node[\":@\"]).length > 0) {\n      this.child.push({ [node.tagname]: node.child, [\":@\"]: node[\":@\"] });\n    } else {\n      this.child.push({ [node.tagname]: node.child });\n    }\n  }\n}\nvar xmlNode$1 = XmlNode;\nconst util$1 = util$3;\nfunction readDocType$1(xmlData, i) {\n  const entities = {};\n  if (xmlData[i + 3] === \"O\" && xmlData[i + 4] === \"C\" && xmlData[i + 5] === \"T\" && xmlData[i + 6] === \"Y\" && xmlData[i + 7] === \"P\" && xmlData[i + 8] === \"E\") {\n    i = i + 9;\n    let angleBracketsCount = 1;\n    let hasBody = false, comment = false;\n    let exp = \"\";\n    for (; i < xmlData.length; i++) {\n      if (xmlData[i] === \"<\" && !comment) {\n        if (hasBody && isEntity(xmlData, i)) {\n          i += 7;\n          [entityName, val, i] = readEntityExp(xmlData, i + 1);\n          if (val.indexOf(\"&\") === -1)\n            entities[validateEntityName(entityName)] = {\n              regx: RegExp(`&${entityName};`, \"g\"),\n              val\n            };\n        } else if (hasBody && isElement(xmlData, i))\n          i += 8;\n        else if (hasBody && isAttlist(xmlData, i))\n          i += 8;\n        else if (hasBody && isNotation(xmlData, i))\n          i += 9;\n        else if (isComment)\n          comment = true;\n        else\n          throw new Error(\"Invalid DOCTYPE\");\n        angleBracketsCount++;\n        exp = \"\";\n      } else if (xmlData[i] === \">\") {\n        if (comment) {\n          if (xmlData[i - 1] === \"-\" && xmlData[i - 2] === \"-\") {\n            comment = false;\n            angleBracketsCount--;\n          }\n        } else {\n          angleBracketsCount--;\n        }\n        if (angleBracketsCount === 0) {\n          break;\n        }\n      } else if (xmlData[i] === \"[\") {\n        hasBody = true;\n      } else {\n        exp += xmlData[i];\n      }\n    }\n    if (angleBracketsCount !== 0) {\n      throw new Error(`Unclosed DOCTYPE`);\n    }\n  } else {\n    throw new Error(`Invalid Tag instead of DOCTYPE`);\n  }\n  return { entities, i };\n}\nfunction readEntityExp(xmlData, i) {\n  let entityName2 = \"\";\n  for (; i < xmlData.length && (xmlData[i] !== \"'\" && xmlData[i] !== '\"'); i++) {\n    entityName2 += xmlData[i];\n  }\n  entityName2 = entityName2.trim();\n  if (entityName2.indexOf(\" \") !== -1)\n    throw new Error(\"External entites are not supported\");\n  const startChar = xmlData[i++];\n  let val2 = \"\";\n  for (; i < xmlData.length && xmlData[i] !== startChar; i++) {\n    val2 += xmlData[i];\n  }\n  return [entityName2, val2, i];\n}\nfunction isComment(xmlData, i) {\n  if (xmlData[i + 1] === \"!\" && xmlData[i + 2] === \"-\" && xmlData[i + 3] === \"-\")\n    return true;\n  return false;\n}\nfunction isEntity(xmlData, i) {\n  if (xmlData[i + 1] === \"!\" && xmlData[i + 2] === \"E\" && xmlData[i + 3] === \"N\" && xmlData[i + 4] === \"T\" && xmlData[i + 5] === \"I\" && xmlData[i + 6] === \"T\" && xmlData[i + 7] === \"Y\")\n    return true;\n  return false;\n}\nfunction isElement(xmlData, i) {\n  if (xmlData[i + 1] === \"!\" && xmlData[i + 2] === \"E\" && xmlData[i + 3] === \"L\" && xmlData[i + 4] === \"E\" && xmlData[i + 5] === \"M\" && xmlData[i + 6] === \"E\" && xmlData[i + 7] === \"N\" && xmlData[i + 8] === \"T\")\n    return true;\n  return false;\n}\nfunction isAttlist(xmlData, i) {\n  if (xmlData[i + 1] === \"!\" && xmlData[i + 2] === \"A\" && xmlData[i + 3] === \"T\" && xmlData[i + 4] === \"T\" && xmlData[i + 5] === \"L\" && xmlData[i + 6] === \"I\" && xmlData[i + 7] === \"S\" && xmlData[i + 8] === \"T\")\n    return true;\n  return false;\n}\nfunction isNotation(xmlData, i) {\n  if (xmlData[i + 1] === \"!\" && xmlData[i + 2] === \"N\" && xmlData[i + 3] === \"O\" && xmlData[i + 4] === \"T\" && xmlData[i + 5] === \"A\" && xmlData[i + 6] === \"T\" && xmlData[i + 7] === \"I\" && xmlData[i + 8] === \"O\" && xmlData[i + 9] === \"N\")\n    return true;\n  return false;\n}\nfunction validateEntityName(name) {\n  if (util$1.isName(name))\n    return name;\n  else\n    throw new Error(`Invalid entity name ${name}`);\n}\nvar DocTypeReader = readDocType$1;\nconst hexRegex = /^[-+]?0x[a-fA-F0-9]+$/;\nconst numRegex = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\nif (!Number.parseInt && window.parseInt) {\n  Number.parseInt = window.parseInt;\n}\nif (!Number.parseFloat && window.parseFloat) {\n  Number.parseFloat = window.parseFloat;\n}\nconst consider = {\n  hex: true,\n  leadingZeros: true,\n  decimalPoint: \".\",\n  eNotation: true\n  //skipLike: /regex/\n};\nfunction toNumber$1(str, options = {}) {\n  options = Object.assign({}, consider, options);\n  if (!str || typeof str !== \"string\")\n    return str;\n  let trimmedStr = str.trim();\n  if (options.skipLike !== void 0 && options.skipLike.test(trimmedStr))\n    return str;\n  else if (options.hex && hexRegex.test(trimmedStr)) {\n    return Number.parseInt(trimmedStr, 16);\n  } else {\n    const match = numRegex.exec(trimmedStr);\n    if (match) {\n      const sign = match[1];\n      const leadingZeros = match[2];\n      let numTrimmedByZeros = trimZeros(match[3]);\n      const eNotation = match[4] || match[6];\n      if (!options.leadingZeros && leadingZeros.length > 0 && sign && trimmedStr[2] !== \".\")\n        return str;\n      else if (!options.leadingZeros && leadingZeros.length > 0 && !sign && trimmedStr[1] !== \".\")\n        return str;\n      else {\n        const num = Number(trimmedStr);\n        const numStr = \"\" + num;\n        if (numStr.search(/[eE]/) !== -1) {\n          if (options.eNotation)\n            return num;\n          else\n            return str;\n        } else if (eNotation) {\n          if (options.eNotation)\n            return num;\n          else\n            return str;\n        } else if (trimmedStr.indexOf(\".\") !== -1) {\n          if (numStr === \"0\" && numTrimmedByZeros === \"\")\n            return num;\n          else if (numStr === numTrimmedByZeros)\n            return num;\n          else if (sign && numStr === \"-\" + numTrimmedByZeros)\n            return num;\n          else\n            return str;\n        }\n        if (leadingZeros) {\n          if (numTrimmedByZeros === numStr)\n            return num;\n          else if (sign + numTrimmedByZeros === numStr)\n            return num;\n          else\n            return str;\n        }\n        if (trimmedStr === numStr)\n          return num;\n        else if (trimmedStr === sign + numStr)\n          return num;\n        return str;\n      }\n    } else {\n      return str;\n    }\n  }\n}\nfunction trimZeros(numStr) {\n  if (numStr && numStr.indexOf(\".\") !== -1) {\n    numStr = numStr.replace(/0+$/, \"\");\n    if (numStr === \".\")\n      numStr = \"0\";\n    else if (numStr[0] === \".\")\n      numStr = \"0\" + numStr;\n    else if (numStr[numStr.length - 1] === \".\")\n      numStr = numStr.substr(0, numStr.length - 1);\n    return numStr;\n  }\n  return numStr;\n}\nvar strnum = toNumber$1;\nconst util = util$3;\nconst xmlNode = xmlNode$1;\nconst readDocType = DocTypeReader;\nconst toNumber = strnum;\nlet OrderedObjParser$1 = class OrderedObjParser {\n  constructor(options) {\n    this.options = options;\n    this.currentNode = null;\n    this.tagsNodeStack = [];\n    this.docTypeEntities = {};\n    this.lastEntities = {\n      \"apos\": { regex: /&(apos|#39|#x27);/g, val: \"'\" },\n      \"gt\": { regex: /&(gt|#62|#x3E);/g, val: \">\" },\n      \"lt\": { regex: /&(lt|#60|#x3C);/g, val: \"<\" },\n      \"quot\": { regex: /&(quot|#34|#x22);/g, val: '\"' }\n    };\n    this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" };\n    this.htmlEntities = {\n      \"space\": { regex: /&(nbsp|#160);/g, val: \" \" },\n      // \"lt\" : { regex: /&(lt|#60);/g, val: \"<\" },\n      // \"gt\" : { regex: /&(gt|#62);/g, val: \">\" },\n      // \"amp\" : { regex: /&(amp|#38);/g, val: \"&\" },\n      // \"quot\" : { regex: /&(quot|#34);/g, val: \"\\\"\" },\n      // \"apos\" : { regex: /&(apos|#39);/g, val: \"'\" },\n      \"cent\": { regex: /&(cent|#162);/g, val: \"¢\" },\n      \"pound\": { regex: /&(pound|#163);/g, val: \"£\" },\n      \"yen\": { regex: /&(yen|#165);/g, val: \"¥\" },\n      \"euro\": { regex: /&(euro|#8364);/g, val: \"€\" },\n      \"copyright\": { regex: /&(copy|#169);/g, val: \"©\" },\n      \"reg\": { regex: /&(reg|#174);/g, val: \"®\" },\n      \"inr\": { regex: /&(inr|#8377);/g, val: \"₹\" },\n      \"num_dec\": { regex: /&#([0-9]{1,7});/g, val: (_, str) => String.fromCharCode(Number.parseInt(str, 10)) },\n      \"num_hex\": { regex: /&#x([0-9a-fA-F]{1,6});/g, val: (_, str) => String.fromCharCode(Number.parseInt(str, 16)) }\n    };\n    this.addExternalEntities = addExternalEntities;\n    this.parseXml = parseXml;\n    this.parseTextData = parseTextData;\n    this.resolveNameSpace = resolveNameSpace;\n    this.buildAttributesMap = buildAttributesMap;\n    this.isItStopNode = isItStopNode;\n    this.replaceEntitiesValue = replaceEntitiesValue$1;\n    this.readStopNodeData = readStopNodeData;\n    this.saveTextToParentTag = saveTextToParentTag;\n    this.addChild = addChild;\n  }\n};\nfunction addExternalEntities(externalEntities) {\n  const entKeys = Object.keys(externalEntities);\n  for (let i = 0; i < entKeys.length; i++) {\n    const ent = entKeys[i];\n    this.lastEntities[ent] = {\n      regex: new RegExp(\"&\" + ent + \";\", \"g\"),\n      val: externalEntities[ent]\n    };\n  }\n}\nfunction parseTextData(val2, tagName, jPath, dontTrim, hasAttributes, isLeafNode, escapeEntities) {\n  if (val2 !== void 0) {\n    if (this.options.trimValues && !dontTrim) {\n      val2 = val2.trim();\n    }\n    if (val2.length > 0) {\n      if (!escapeEntities)\n        val2 = this.replaceEntitiesValue(val2);\n      const newval = this.options.tagValueProcessor(tagName, val2, jPath, hasAttributes, isLeafNode);\n      if (newval === null || newval === void 0) {\n        return val2;\n      } else if (typeof newval !== typeof val2 || newval !== val2) {\n        return newval;\n      } else if (this.options.trimValues) {\n        return parseValue(val2, this.options.parseTagValue, this.options.numberParseOptions);\n      } else {\n        const trimmedVal = val2.trim();\n        if (trimmedVal === val2) {\n          return parseValue(val2, this.options.parseTagValue, this.options.numberParseOptions);\n        } else {\n          return val2;\n        }\n      }\n    }\n  }\n}\nfunction resolveNameSpace(tagname) {\n  if (this.options.removeNSPrefix) {\n    const tags = tagname.split(\":\");\n    const prefix = tagname.charAt(0) === \"/\" ? \"/\" : \"\";\n    if (tags[0] === \"xmlns\") {\n      return \"\";\n    }\n    if (tags.length === 2) {\n      tagname = prefix + tags[1];\n    }\n  }\n  return tagname;\n}\nconst attrsRegx = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\nfunction buildAttributesMap(attrStr, jPath, tagName) {\n  if (!this.options.ignoreAttributes && typeof attrStr === \"string\") {\n    const matches = util.getAllMatches(attrStr, attrsRegx);\n    const len = matches.length;\n    const attrs = {};\n    for (let i = 0; i < len; i++) {\n      const attrName = this.resolveNameSpace(matches[i][1]);\n      let oldVal = matches[i][4];\n      let aName = this.options.attributeNamePrefix + attrName;\n      if (attrName.length) {\n        if (this.options.transformAttributeName) {\n          aName = this.options.transformAttributeName(aName);\n        }\n        if (aName === \"__proto__\")\n          aName = \"#__proto__\";\n        if (oldVal !== void 0) {\n          if (this.options.trimValues) {\n            oldVal = oldVal.trim();\n          }\n          oldVal = this.replaceEntitiesValue(oldVal);\n          const newVal = this.options.attributeValueProcessor(attrName, oldVal, jPath);\n          if (newVal === null || newVal === void 0) {\n            attrs[aName] = oldVal;\n          } else if (typeof newVal !== typeof oldVal || newVal !== oldVal) {\n            attrs[aName] = newVal;\n          } else {\n            attrs[aName] = parseValue(\n              oldVal,\n              this.options.parseAttributeValue,\n              this.options.numberParseOptions\n            );\n          }\n        } else if (this.options.allowBooleanAttributes) {\n          attrs[aName] = true;\n        }\n      }\n    }\n    if (!Object.keys(attrs).length) {\n      return;\n    }\n    if (this.options.attributesGroupName) {\n      const attrCollection = {};\n      attrCollection[this.options.attributesGroupName] = attrs;\n      return attrCollection;\n    }\n    return attrs;\n  }\n}\nconst parseXml = function(xmlData) {\n  xmlData = xmlData.replace(/\\r\\n?/g, \"\\n\");\n  const xmlObj = new xmlNode(\"!xml\");\n  let currentNode = xmlObj;\n  let textData = \"\";\n  let jPath = \"\";\n  for (let i = 0; i < xmlData.length; i++) {\n    const ch = xmlData[i];\n    if (ch === \"<\") {\n      if (xmlData[i + 1] === \"/\") {\n        const closeIndex = findClosingIndex(xmlData, \">\", i, \"Closing Tag is not closed.\");\n        let tagName = xmlData.substring(i + 2, closeIndex).trim();\n        if (this.options.removeNSPrefix) {\n          const colonIndex = tagName.indexOf(\":\");\n          if (colonIndex !== -1) {\n            tagName = tagName.substr(colonIndex + 1);\n          }\n        }\n        if (this.options.transformTagName) {\n          tagName = this.options.transformTagName(tagName);\n        }\n        if (currentNode) {\n          textData = this.saveTextToParentTag(textData, currentNode, jPath);\n        }\n        const lastTagName = jPath.substring(jPath.lastIndexOf(\".\") + 1);\n        if (tagName && this.options.unpairedTags.indexOf(tagName) !== -1) {\n          throw new Error(`Unpaired tag can not be used as closing tag: </${tagName}>`);\n        }\n        let propIndex = 0;\n        if (lastTagName && this.options.unpairedTags.indexOf(lastTagName) !== -1) {\n          propIndex = jPath.lastIndexOf(\".\", jPath.lastIndexOf(\".\") - 1);\n          this.tagsNodeStack.pop();\n        } else {\n          propIndex = jPath.lastIndexOf(\".\");\n        }\n        jPath = jPath.substring(0, propIndex);\n        currentNode = this.tagsNodeStack.pop();\n        textData = \"\";\n        i = closeIndex;\n      } else if (xmlData[i + 1] === \"?\") {\n        let tagData = readTagExp(xmlData, i, false, \"?>\");\n        if (!tagData)\n          throw new Error(\"Pi Tag is not closed.\");\n        textData = this.saveTextToParentTag(textData, currentNode, jPath);\n        if (this.options.ignoreDeclaration && tagData.tagName === \"?xml\" || this.options.ignorePiTags)\n          ;\n        else {\n          const childNode = new xmlNode(tagData.tagName);\n          childNode.add(this.options.textNodeName, \"\");\n          if (tagData.tagName !== tagData.tagExp && tagData.attrExpPresent) {\n            childNode[\":@\"] = this.buildAttributesMap(tagData.tagExp, jPath, tagData.tagName);\n          }\n          this.addChild(currentNode, childNode, jPath);\n        }\n        i = tagData.closeIndex + 1;\n      } else if (xmlData.substr(i + 1, 3) === \"!--\") {\n        const endIndex = findClosingIndex(xmlData, \"-->\", i + 4, \"Comment is not closed.\");\n        if (this.options.commentPropName) {\n          const comment = xmlData.substring(i + 4, endIndex - 2);\n          textData = this.saveTextToParentTag(textData, currentNode, jPath);\n          currentNode.add(this.options.commentPropName, [{ [this.options.textNodeName]: comment }]);\n        }\n        i = endIndex;\n      } else if (xmlData.substr(i + 1, 2) === \"!D\") {\n        const result = readDocType(xmlData, i);\n        this.docTypeEntities = result.entities;\n        i = result.i;\n      } else if (xmlData.substr(i + 1, 2) === \"![\") {\n        const closeIndex = findClosingIndex(xmlData, \"]]>\", i, \"CDATA is not closed.\") - 2;\n        const tagExp = xmlData.substring(i + 9, closeIndex);\n        textData = this.saveTextToParentTag(textData, currentNode, jPath);\n        let val2 = this.parseTextData(tagExp, currentNode.tagname, jPath, true, false, true, true);\n        if (val2 == void 0)\n          val2 = \"\";\n        if (this.options.cdataPropName) {\n          currentNode.add(this.options.cdataPropName, [{ [this.options.textNodeName]: tagExp }]);\n        } else {\n          currentNode.add(this.options.textNodeName, val2);\n        }\n        i = closeIndex + 2;\n      } else {\n        let result = readTagExp(xmlData, i, this.options.removeNSPrefix);\n        let tagName = result.tagName;\n        const rawTagName = result.rawTagName;\n        let tagExp = result.tagExp;\n        let attrExpPresent = result.attrExpPresent;\n        let closeIndex = result.closeIndex;\n        if (this.options.transformTagName) {\n          tagName = this.options.transformTagName(tagName);\n        }\n        if (currentNode && textData) {\n          if (currentNode.tagname !== \"!xml\") {\n            textData = this.saveTextToParentTag(textData, currentNode, jPath, false);\n          }\n        }\n        const lastTag = currentNode;\n        if (lastTag && this.options.unpairedTags.indexOf(lastTag.tagname) !== -1) {\n          currentNode = this.tagsNodeStack.pop();\n          jPath = jPath.substring(0, jPath.lastIndexOf(\".\"));\n        }\n        if (tagName !== xmlObj.tagname) {\n          jPath += jPath ? \".\" + tagName : tagName;\n        }\n        if (this.isItStopNode(this.options.stopNodes, jPath, tagName)) {\n          let tagContent = \"\";\n          if (tagExp.length > 0 && tagExp.lastIndexOf(\"/\") === tagExp.length - 1) {\n            if (tagName[tagName.length - 1] === \"/\") {\n              tagName = tagName.substr(0, tagName.length - 1);\n              jPath = jPath.substr(0, jPath.length - 1);\n              tagExp = tagName;\n            } else {\n              tagExp = tagExp.substr(0, tagExp.length - 1);\n            }\n            i = result.closeIndex;\n          } else if (this.options.unpairedTags.indexOf(tagName) !== -1) {\n            i = result.closeIndex;\n          } else {\n            const result2 = this.readStopNodeData(xmlData, rawTagName, closeIndex + 1);\n            if (!result2)\n              throw new Error(`Unexpected end of ${rawTagName}`);\n            i = result2.i;\n            tagContent = result2.tagContent;\n          }\n          const childNode = new xmlNode(tagName);\n          if (tagName !== tagExp && attrExpPresent) {\n            childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n          }\n          if (tagContent) {\n            tagContent = this.parseTextData(tagContent, tagName, jPath, true, attrExpPresent, true, true);\n          }\n          jPath = jPath.substr(0, jPath.lastIndexOf(\".\"));\n          childNode.add(this.options.textNodeName, tagContent);\n          this.addChild(currentNode, childNode, jPath);\n        } else {\n          if (tagExp.length > 0 && tagExp.lastIndexOf(\"/\") === tagExp.length - 1) {\n            if (tagName[tagName.length - 1] === \"/\") {\n              tagName = tagName.substr(0, tagName.length - 1);\n              jPath = jPath.substr(0, jPath.length - 1);\n              tagExp = tagName;\n            } else {\n              tagExp = tagExp.substr(0, tagExp.length - 1);\n            }\n            if (this.options.transformTagName) {\n              tagName = this.options.transformTagName(tagName);\n            }\n            const childNode = new xmlNode(tagName);\n            if (tagName !== tagExp && attrExpPresent) {\n              childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n            }\n            this.addChild(currentNode, childNode, jPath);\n            jPath = jPath.substr(0, jPath.lastIndexOf(\".\"));\n          } else {\n            const childNode = new xmlNode(tagName);\n            this.tagsNodeStack.push(currentNode);\n            if (tagName !== tagExp && attrExpPresent) {\n              childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n            }\n            this.addChild(currentNode, childNode, jPath);\n            currentNode = childNode;\n          }\n          textData = \"\";\n          i = closeIndex;\n        }\n      }\n    } else {\n      textData += xmlData[i];\n    }\n  }\n  return xmlObj.child;\n};\nfunction addChild(currentNode, childNode, jPath) {\n  const result = this.options.updateTag(childNode.tagname, jPath, childNode[\":@\"]);\n  if (result === false)\n    ;\n  else if (typeof result === \"string\") {\n    childNode.tagname = result;\n    currentNode.addChild(childNode);\n  } else {\n    currentNode.addChild(childNode);\n  }\n}\nconst replaceEntitiesValue$1 = function(val2) {\n  if (this.options.processEntities) {\n    for (let entityName2 in this.docTypeEntities) {\n      const entity = this.docTypeEntities[entityName2];\n      val2 = val2.replace(entity.regx, entity.val);\n    }\n    for (let entityName2 in this.lastEntities) {\n      const entity = this.lastEntities[entityName2];\n      val2 = val2.replace(entity.regex, entity.val);\n    }\n    if (this.options.htmlEntities) {\n      for (let entityName2 in this.htmlEntities) {\n        const entity = this.htmlEntities[entityName2];\n        val2 = val2.replace(entity.regex, entity.val);\n      }\n    }\n    val2 = val2.replace(this.ampEntity.regex, this.ampEntity.val);\n  }\n  return val2;\n};\nfunction saveTextToParentTag(textData, currentNode, jPath, isLeafNode) {\n  if (textData) {\n    if (isLeafNode === void 0)\n      isLeafNode = Object.keys(currentNode.child).length === 0;\n    textData = this.parseTextData(\n      textData,\n      currentNode.tagname,\n      jPath,\n      false,\n      currentNode[\":@\"] ? Object.keys(currentNode[\":@\"]).length !== 0 : false,\n      isLeafNode\n    );\n    if (textData !== void 0 && textData !== \"\")\n      currentNode.add(this.options.textNodeName, textData);\n    textData = \"\";\n  }\n  return textData;\n}\nfunction isItStopNode(stopNodes, jPath, currentTagName) {\n  const allNodesExp = \"*.\" + currentTagName;\n  for (const stopNodePath in stopNodes) {\n    const stopNodeExp = stopNodes[stopNodePath];\n    if (allNodesExp === stopNodeExp || jPath === stopNodeExp)\n      return true;\n  }\n  return false;\n}\nfunction tagExpWithClosingIndex(xmlData, i, closingChar = \">\") {\n  let attrBoundary;\n  let tagExp = \"\";\n  for (let index = i; index < xmlData.length; index++) {\n    let ch = xmlData[index];\n    if (attrBoundary) {\n      if (ch === attrBoundary)\n        attrBoundary = \"\";\n    } else if (ch === '\"' || ch === \"'\") {\n      attrBoundary = ch;\n    } else if (ch === closingChar[0]) {\n      if (closingChar[1]) {\n        if (xmlData[index + 1] === closingChar[1]) {\n          return {\n            data: tagExp,\n            index\n          };\n        }\n      } else {\n        return {\n          data: tagExp,\n          index\n        };\n      }\n    } else if (ch === \"\t\") {\n      ch = \" \";\n    }\n    tagExp += ch;\n  }\n}\nfunction findClosingIndex(xmlData, str, i, errMsg) {\n  const closingIndex = xmlData.indexOf(str, i);\n  if (closingIndex === -1) {\n    throw new Error(errMsg);\n  } else {\n    return closingIndex + str.length - 1;\n  }\n}\nfunction readTagExp(xmlData, i, removeNSPrefix, closingChar = \">\") {\n  const result = tagExpWithClosingIndex(xmlData, i + 1, closingChar);\n  if (!result)\n    return;\n  let tagExp = result.data;\n  const closeIndex = result.index;\n  const separatorIndex = tagExp.search(/\\s/);\n  let tagName = tagExp;\n  let attrExpPresent = true;\n  if (separatorIndex !== -1) {\n    tagName = tagExp.substring(0, separatorIndex);\n    tagExp = tagExp.substring(separatorIndex + 1).trimStart();\n  }\n  const rawTagName = tagName;\n  if (removeNSPrefix) {\n    const colonIndex = tagName.indexOf(\":\");\n    if (colonIndex !== -1) {\n      tagName = tagName.substr(colonIndex + 1);\n      attrExpPresent = tagName !== result.data.substr(colonIndex + 1);\n    }\n  }\n  return {\n    tagName,\n    tagExp,\n    closeIndex,\n    attrExpPresent,\n    rawTagName\n  };\n}\nfunction readStopNodeData(xmlData, tagName, i) {\n  const startIndex = i;\n  let openTagCount = 1;\n  for (; i < xmlData.length; i++) {\n    if (xmlData[i] === \"<\") {\n      if (xmlData[i + 1] === \"/\") {\n        const closeIndex = findClosingIndex(xmlData, \">\", i, `${tagName} is not closed`);\n        let closeTagName = xmlData.substring(i + 2, closeIndex).trim();\n        if (closeTagName === tagName) {\n          openTagCount--;\n          if (openTagCount === 0) {\n            return {\n              tagContent: xmlData.substring(startIndex, i),\n              i: closeIndex\n            };\n          }\n        }\n        i = closeIndex;\n      } else if (xmlData[i + 1] === \"?\") {\n        const closeIndex = findClosingIndex(xmlData, \"?>\", i + 1, \"StopNode is not closed.\");\n        i = closeIndex;\n      } else if (xmlData.substr(i + 1, 3) === \"!--\") {\n        const closeIndex = findClosingIndex(xmlData, \"-->\", i + 3, \"StopNode is not closed.\");\n        i = closeIndex;\n      } else if (xmlData.substr(i + 1, 2) === \"![\") {\n        const closeIndex = findClosingIndex(xmlData, \"]]>\", i, \"StopNode is not closed.\") - 2;\n        i = closeIndex;\n      } else {\n        const tagData = readTagExp(xmlData, i, \">\");\n        if (tagData) {\n          const openTagName = tagData && tagData.tagName;\n          if (openTagName === tagName && tagData.tagExp[tagData.tagExp.length - 1] !== \"/\") {\n            openTagCount++;\n          }\n          i = tagData.closeIndex;\n        }\n      }\n    }\n  }\n}\nfunction parseValue(val2, shouldParse, options) {\n  if (shouldParse && typeof val2 === \"string\") {\n    const newval = val2.trim();\n    if (newval === \"true\")\n      return true;\n    else if (newval === \"false\")\n      return false;\n    else\n      return toNumber(val2, options);\n  } else {\n    if (util.isExist(val2)) {\n      return val2;\n    } else {\n      return \"\";\n    }\n  }\n}\nvar OrderedObjParser_1 = OrderedObjParser$1;\nvar node2json = {};\nfunction prettify$1(node, options) {\n  return compress(node, options);\n}\nfunction compress(arr, options, jPath) {\n  let text;\n  const compressedObj = {};\n  for (let i = 0; i < arr.length; i++) {\n    const tagObj = arr[i];\n    const property = propName$1(tagObj);\n    let newJpath = \"\";\n    if (jPath === void 0)\n      newJpath = property;\n    else\n      newJpath = jPath + \".\" + property;\n    if (property === options.textNodeName) {\n      if (text === void 0)\n        text = tagObj[property];\n      else\n        text += \"\" + tagObj[property];\n    } else if (property === void 0) {\n      continue;\n    } else if (tagObj[property]) {\n      let val2 = compress(tagObj[property], options, newJpath);\n      const isLeaf = isLeafTag(val2, options);\n      if (tagObj[\":@\"]) {\n        assignAttributes(val2, tagObj[\":@\"], newJpath, options);\n      } else if (Object.keys(val2).length === 1 && val2[options.textNodeName] !== void 0 && !options.alwaysCreateTextNode) {\n        val2 = val2[options.textNodeName];\n      } else if (Object.keys(val2).length === 0) {\n        if (options.alwaysCreateTextNode)\n          val2[options.textNodeName] = \"\";\n        else\n          val2 = \"\";\n      }\n      if (compressedObj[property] !== void 0 && compressedObj.hasOwnProperty(property)) {\n        if (!Array.isArray(compressedObj[property])) {\n          compressedObj[property] = [compressedObj[property]];\n        }\n        compressedObj[property].push(val2);\n      } else {\n        if (options.isArray(property, newJpath, isLeaf)) {\n          compressedObj[property] = [val2];\n        } else {\n          compressedObj[property] = val2;\n        }\n      }\n    }\n  }\n  if (typeof text === \"string\") {\n    if (text.length > 0)\n      compressedObj[options.textNodeName] = text;\n  } else if (text !== void 0)\n    compressedObj[options.textNodeName] = text;\n  return compressedObj;\n}\nfunction propName$1(obj) {\n  const keys = Object.keys(obj);\n  for (let i = 0; i < keys.length; i++) {\n    const key = keys[i];\n    if (key !== \":@\")\n      return key;\n  }\n}\nfunction assignAttributes(obj, attrMap, jpath, options) {\n  if (attrMap) {\n    const keys = Object.keys(attrMap);\n    const len = keys.length;\n    for (let i = 0; i < len; i++) {\n      const atrrName = keys[i];\n      if (options.isArray(atrrName, jpath + \".\" + atrrName, true, true)) {\n        obj[atrrName] = [attrMap[atrrName]];\n      } else {\n        obj[atrrName] = attrMap[atrrName];\n      }\n    }\n  }\n}\nfunction isLeafTag(obj, options) {\n  const { textNodeName } = options;\n  const propCount = Object.keys(obj).length;\n  if (propCount === 0) {\n    return true;\n  }\n  if (propCount === 1 && (obj[textNodeName] || typeof obj[textNodeName] === \"boolean\" || obj[textNodeName] === 0)) {\n    return true;\n  }\n  return false;\n}\nnode2json.prettify = prettify$1;\nconst { buildOptions } = OptionsBuilder;\nconst OrderedObjParser2 = OrderedObjParser_1;\nconst { prettify } = node2json;\nconst validator$1 = validator$2;\nlet XMLParser$1 = class XMLParser {\n  constructor(options) {\n    this.externalEntities = {};\n    this.options = buildOptions(options);\n  }\n  /**\n   * Parse XML dats to JS object \n   * @param {string|Buffer} xmlData \n   * @param {boolean|Object} validationOption \n   */\n  parse(xmlData, validationOption) {\n    if (typeof xmlData === \"string\")\n      ;\n    else if (xmlData.toString) {\n      xmlData = xmlData.toString();\n    } else {\n      throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n    }\n    if (validationOption) {\n      if (validationOption === true)\n        validationOption = {};\n      const result = validator$1.validate(xmlData, validationOption);\n      if (result !== true) {\n        throw Error(`${result.err.msg}:${result.err.line}:${result.err.col}`);\n      }\n    }\n    const orderedObjParser = new OrderedObjParser2(this.options);\n    orderedObjParser.addExternalEntities(this.externalEntities);\n    const orderedResult = orderedObjParser.parseXml(xmlData);\n    if (this.options.preserveOrder || orderedResult === void 0)\n      return orderedResult;\n    else\n      return prettify(orderedResult, this.options);\n  }\n  /**\n   * Add Entity which is not by default supported by this library\n   * @param {string} key \n   * @param {string} value \n   */\n  addEntity(key, value) {\n    if (value.indexOf(\"&\") !== -1) {\n      throw new Error(\"Entity value can't have '&'\");\n    } else if (key.indexOf(\"&\") !== -1 || key.indexOf(\";\") !== -1) {\n      throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for '&#xD;'\");\n    } else if (value === \"&\") {\n      throw new Error(\"An entity with value '&' is not permitted\");\n    } else {\n      this.externalEntities[key] = value;\n    }\n  }\n};\nvar XMLParser_1 = XMLParser$1;\nconst EOL = \"\\n\";\nfunction toXml(jArray, options) {\n  let indentation = \"\";\n  if (options.format && options.indentBy.length > 0) {\n    indentation = EOL;\n  }\n  return arrToStr(jArray, options, \"\", indentation);\n}\nfunction arrToStr(arr, options, jPath, indentation) {\n  let xmlStr = \"\";\n  let isPreviousElementTag = false;\n  for (let i = 0; i < arr.length; i++) {\n    const tagObj = arr[i];\n    const tagName = propName(tagObj);\n    if (tagName === void 0)\n      continue;\n    let newJPath = \"\";\n    if (jPath.length === 0)\n      newJPath = tagName;\n    else\n      newJPath = `${jPath}.${tagName}`;\n    if (tagName === options.textNodeName) {\n      let tagText = tagObj[tagName];\n      if (!isStopNode(newJPath, options)) {\n        tagText = options.tagValueProcessor(tagName, tagText);\n        tagText = replaceEntitiesValue(tagText, options);\n      }\n      if (isPreviousElementTag) {\n        xmlStr += indentation;\n      }\n      xmlStr += tagText;\n      isPreviousElementTag = false;\n      continue;\n    } else if (tagName === options.cdataPropName) {\n      if (isPreviousElementTag) {\n        xmlStr += indentation;\n      }\n      xmlStr += `<![CDATA[${tagObj[tagName][0][options.textNodeName]}]]>`;\n      isPreviousElementTag = false;\n      continue;\n    } else if (tagName === options.commentPropName) {\n      xmlStr += indentation + `<!--${tagObj[tagName][0][options.textNodeName]}-->`;\n      isPreviousElementTag = true;\n      continue;\n    } else if (tagName[0] === \"?\") {\n      const attStr2 = attr_to_str(tagObj[\":@\"], options);\n      const tempInd = tagName === \"?xml\" ? \"\" : indentation;\n      let piTextNodeName = tagObj[tagName][0][options.textNodeName];\n      piTextNodeName = piTextNodeName.length !== 0 ? \" \" + piTextNodeName : \"\";\n      xmlStr += tempInd + `<${tagName}${piTextNodeName}${attStr2}?>`;\n      isPreviousElementTag = true;\n      continue;\n    }\n    let newIdentation = indentation;\n    if (newIdentation !== \"\") {\n      newIdentation += options.indentBy;\n    }\n    const attStr = attr_to_str(tagObj[\":@\"], options);\n    const tagStart = indentation + `<${tagName}${attStr}`;\n    const tagValue = arrToStr(tagObj[tagName], options, newJPath, newIdentation);\n    if (options.unpairedTags.indexOf(tagName) !== -1) {\n      if (options.suppressUnpairedNode)\n        xmlStr += tagStart + \">\";\n      else\n        xmlStr += tagStart + \"/>\";\n    } else if ((!tagValue || tagValue.length === 0) && options.suppressEmptyNode) {\n      xmlStr += tagStart + \"/>\";\n    } else if (tagValue && tagValue.endsWith(\">\")) {\n      xmlStr += tagStart + `>${tagValue}${indentation}</${tagName}>`;\n    } else {\n      xmlStr += tagStart + \">\";\n      if (tagValue && indentation !== \"\" && (tagValue.includes(\"/>\") || tagValue.includes(\"</\"))) {\n        xmlStr += indentation + options.indentBy + tagValue + indentation;\n      } else {\n        xmlStr += tagValue;\n      }\n      xmlStr += `</${tagName}>`;\n    }\n    isPreviousElementTag = true;\n  }\n  return xmlStr;\n}\nfunction propName(obj) {\n  const keys = Object.keys(obj);\n  for (let i = 0; i < keys.length; i++) {\n    const key = keys[i];\n    if (!obj.hasOwnProperty(key))\n      continue;\n    if (key !== \":@\")\n      return key;\n  }\n}\nfunction attr_to_str(attrMap, options) {\n  let attrStr = \"\";\n  if (attrMap && !options.ignoreAttributes) {\n    for (let attr in attrMap) {\n      if (!attrMap.hasOwnProperty(attr))\n        continue;\n      let attrVal = options.attributeValueProcessor(attr, attrMap[attr]);\n      attrVal = replaceEntitiesValue(attrVal, options);\n      if (attrVal === true && options.suppressBooleanAttributes) {\n        attrStr += ` ${attr.substr(options.attributeNamePrefix.length)}`;\n      } else {\n        attrStr += ` ${attr.substr(options.attributeNamePrefix.length)}=\"${attrVal}\"`;\n      }\n    }\n  }\n  return attrStr;\n}\nfunction isStopNode(jPath, options) {\n  jPath = jPath.substr(0, jPath.length - options.textNodeName.length - 1);\n  let tagName = jPath.substr(jPath.lastIndexOf(\".\") + 1);\n  for (let index in options.stopNodes) {\n    if (options.stopNodes[index] === jPath || options.stopNodes[index] === \"*.\" + tagName)\n      return true;\n  }\n  return false;\n}\nfunction replaceEntitiesValue(textValue, options) {\n  if (textValue && textValue.length > 0 && options.processEntities) {\n    for (let i = 0; i < options.entities.length; i++) {\n      const entity = options.entities[i];\n      textValue = textValue.replace(entity.regex, entity.val);\n    }\n  }\n  return textValue;\n}\nvar orderedJs2Xml = toXml;\nconst buildFromOrderedJs = orderedJs2Xml;\nconst defaultOptions = {\n  attributeNamePrefix: \"@_\",\n  attributesGroupName: false,\n  textNodeName: \"#text\",\n  ignoreAttributes: true,\n  cdataPropName: false,\n  format: false,\n  indentBy: \"  \",\n  suppressEmptyNode: false,\n  suppressUnpairedNode: true,\n  suppressBooleanAttributes: true,\n  tagValueProcessor: function(key, a) {\n    return a;\n  },\n  attributeValueProcessor: function(attrName, a) {\n    return a;\n  },\n  preserveOrder: false,\n  commentPropName: false,\n  unpairedTags: [],\n  entities: [\n    { regex: new RegExp(\"&\", \"g\"), val: \"&amp;\" },\n    //it must be on top\n    { regex: new RegExp(\">\", \"g\"), val: \"&gt;\" },\n    { regex: new RegExp(\"<\", \"g\"), val: \"&lt;\" },\n    { regex: new RegExp(\"'\", \"g\"), val: \"&apos;\" },\n    { regex: new RegExp('\"', \"g\"), val: \"&quot;\" }\n  ],\n  processEntities: true,\n  stopNodes: [],\n  // transformTagName: false,\n  // transformAttributeName: false,\n  oneListGroup: false\n};\nfunction Builder(options) {\n  this.options = Object.assign({}, defaultOptions, options);\n  if (this.options.ignoreAttributes || this.options.attributesGroupName) {\n    this.isAttribute = function() {\n      return false;\n    };\n  } else {\n    this.attrPrefixLen = this.options.attributeNamePrefix.length;\n    this.isAttribute = isAttribute;\n  }\n  this.processTextOrObjNode = processTextOrObjNode;\n  if (this.options.format) {\n    this.indentate = indentate;\n    this.tagEndChar = \">\\n\";\n    this.newLine = \"\\n\";\n  } else {\n    this.indentate = function() {\n      return \"\";\n    };\n    this.tagEndChar = \">\";\n    this.newLine = \"\";\n  }\n}\nBuilder.prototype.build = function(jObj) {\n  if (this.options.preserveOrder) {\n    return buildFromOrderedJs(jObj, this.options);\n  } else {\n    if (Array.isArray(jObj) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1) {\n      jObj = {\n        [this.options.arrayNodeName]: jObj\n      };\n    }\n    return this.j2x(jObj, 0).val;\n  }\n};\nBuilder.prototype.j2x = function(jObj, level) {\n  let attrStr = \"\";\n  let val2 = \"\";\n  for (let key in jObj) {\n    if (!Object.prototype.hasOwnProperty.call(jObj, key))\n      continue;\n    if (typeof jObj[key] === \"undefined\") {\n      if (this.isAttribute(key)) {\n        val2 += \"\";\n      }\n    } else if (jObj[key] === null) {\n      if (this.isAttribute(key)) {\n        val2 += \"\";\n      } else if (key[0] === \"?\") {\n        val2 += this.indentate(level) + \"<\" + key + \"?\" + this.tagEndChar;\n      } else {\n        val2 += this.indentate(level) + \"<\" + key + \"/\" + this.tagEndChar;\n      }\n    } else if (jObj[key] instanceof Date) {\n      val2 += this.buildTextValNode(jObj[key], key, \"\", level);\n    } else if (typeof jObj[key] !== \"object\") {\n      const attr = this.isAttribute(key);\n      if (attr) {\n        attrStr += this.buildAttrPairStr(attr, \"\" + jObj[key]);\n      } else {\n        if (key === this.options.textNodeName) {\n          let newval = this.options.tagValueProcessor(key, \"\" + jObj[key]);\n          val2 += this.replaceEntitiesValue(newval);\n        } else {\n          val2 += this.buildTextValNode(jObj[key], key, \"\", level);\n        }\n      }\n    } else if (Array.isArray(jObj[key])) {\n      const arrLen = jObj[key].length;\n      let listTagVal = \"\";\n      for (let j = 0; j < arrLen; j++) {\n        const item = jObj[key][j];\n        if (typeof item === \"undefined\")\n          ;\n        else if (item === null) {\n          if (key[0] === \"?\")\n            val2 += this.indentate(level) + \"<\" + key + \"?\" + this.tagEndChar;\n          else\n            val2 += this.indentate(level) + \"<\" + key + \"/\" + this.tagEndChar;\n        } else if (typeof item === \"object\") {\n          if (this.options.oneListGroup) {\n            listTagVal += this.j2x(item, level + 1).val;\n          } else {\n            listTagVal += this.processTextOrObjNode(item, key, level);\n          }\n        } else {\n          listTagVal += this.buildTextValNode(item, key, \"\", level);\n        }\n      }\n      if (this.options.oneListGroup) {\n        listTagVal = this.buildObjectNode(listTagVal, key, \"\", level);\n      }\n      val2 += listTagVal;\n    } else {\n      if (this.options.attributesGroupName && key === this.options.attributesGroupName) {\n        const Ks = Object.keys(jObj[key]);\n        const L = Ks.length;\n        for (let j = 0; j < L; j++) {\n          attrStr += this.buildAttrPairStr(Ks[j], \"\" + jObj[key][Ks[j]]);\n        }\n      } else {\n        val2 += this.processTextOrObjNode(jObj[key], key, level);\n      }\n    }\n  }\n  return { attrStr, val: val2 };\n};\nBuilder.prototype.buildAttrPairStr = function(attrName, val2) {\n  val2 = this.options.attributeValueProcessor(attrName, \"\" + val2);\n  val2 = this.replaceEntitiesValue(val2);\n  if (this.options.suppressBooleanAttributes && val2 === \"true\") {\n    return \" \" + attrName;\n  } else\n    return \" \" + attrName + '=\"' + val2 + '\"';\n};\nfunction processTextOrObjNode(object, key, level) {\n  const result = this.j2x(object, level + 1);\n  if (object[this.options.textNodeName] !== void 0 && Object.keys(object).length === 1) {\n    return this.buildTextValNode(object[this.options.textNodeName], key, result.attrStr, level);\n  } else {\n    return this.buildObjectNode(result.val, key, result.attrStr, level);\n  }\n}\nBuilder.prototype.buildObjectNode = function(val2, key, attrStr, level) {\n  if (val2 === \"\") {\n    if (key[0] === \"?\")\n      return this.indentate(level) + \"<\" + key + attrStr + \"?\" + this.tagEndChar;\n    else {\n      return this.indentate(level) + \"<\" + key + attrStr + this.closeTag(key) + this.tagEndChar;\n    }\n  } else {\n    let tagEndExp = \"</\" + key + this.tagEndChar;\n    let piClosingChar = \"\";\n    if (key[0] === \"?\") {\n      piClosingChar = \"?\";\n      tagEndExp = \"\";\n    }\n    if ((attrStr || attrStr === \"\") && val2.indexOf(\"<\") === -1) {\n      return this.indentate(level) + \"<\" + key + attrStr + piClosingChar + \">\" + val2 + tagEndExp;\n    } else if (this.options.commentPropName !== false && key === this.options.commentPropName && piClosingChar.length === 0) {\n      return this.indentate(level) + `<!--${val2}-->` + this.newLine;\n    } else {\n      return this.indentate(level) + \"<\" + key + attrStr + piClosingChar + this.tagEndChar + val2 + this.indentate(level) + tagEndExp;\n    }\n  }\n};\nBuilder.prototype.closeTag = function(key) {\n  let closeTag = \"\";\n  if (this.options.unpairedTags.indexOf(key) !== -1) {\n    if (!this.options.suppressUnpairedNode)\n      closeTag = \"/\";\n  } else if (this.options.suppressEmptyNode) {\n    closeTag = \"/\";\n  } else {\n    closeTag = `></${key}`;\n  }\n  return closeTag;\n};\nBuilder.prototype.buildTextValNode = function(val2, key, attrStr, level) {\n  if (this.options.cdataPropName !== false && key === this.options.cdataPropName) {\n    return this.indentate(level) + `<![CDATA[${val2}]]>` + this.newLine;\n  } else if (this.options.commentPropName !== false && key === this.options.commentPropName) {\n    return this.indentate(level) + `<!--${val2}-->` + this.newLine;\n  } else if (key[0] === \"?\") {\n    return this.indentate(level) + \"<\" + key + attrStr + \"?\" + this.tagEndChar;\n  } else {\n    let textValue = this.options.tagValueProcessor(key, val2);\n    textValue = this.replaceEntitiesValue(textValue);\n    if (textValue === \"\") {\n      return this.indentate(level) + \"<\" + key + attrStr + this.closeTag(key) + this.tagEndChar;\n    } else {\n      return this.indentate(level) + \"<\" + key + attrStr + \">\" + textValue + \"</\" + key + this.tagEndChar;\n    }\n  }\n};\nBuilder.prototype.replaceEntitiesValue = function(textValue) {\n  if (textValue && textValue.length > 0 && this.options.processEntities) {\n    for (let i = 0; i < this.options.entities.length; i++) {\n      const entity = this.options.entities[i];\n      textValue = textValue.replace(entity.regex, entity.val);\n    }\n  }\n  return textValue;\n};\nfunction indentate(level) {\n  return this.options.indentBy.repeat(level);\n}\nfunction isAttribute(name) {\n  if (name.startsWith(this.options.attributeNamePrefix) && name !== this.options.textNodeName) {\n    return name.substr(this.attrPrefixLen);\n  } else {\n    return false;\n  }\n}\nvar json2xml = Builder;\nconst validator = validator$2;\nconst XMLParser2 = XMLParser_1;\nconst XMLBuilder = json2xml;\nvar fxp = {\n  XMLParser: XMLParser2,\n  XMLValidator: validator,\n  XMLBuilder\n};\nfunction isSvg(string) {\n  if (typeof string !== \"string\") {\n    throw new TypeError(`Expected a \\`string\\`, got \\`${typeof string}\\``);\n  }\n  string = string.trim();\n  if (string.length === 0) {\n    return false;\n  }\n  if (fxp.XMLValidator.validate(string) !== true) {\n    return false;\n  }\n  let jsonObject;\n  const parser = new fxp.XMLParser();\n  try {\n    jsonObject = parser.parse(string);\n  } catch {\n    return false;\n  }\n  if (!jsonObject) {\n    return false;\n  }\n  if (!Object.keys(jsonObject).some((x) => x.toLowerCase() === \"svg\")) {\n    return false;\n  }\n  return true;\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass View {\n  _view;\n  constructor(view) {\n    isValidView(view);\n    this._view = view;\n  }\n  get id() {\n    return this._view.id;\n  }\n  get name() {\n    return this._view.name;\n  }\n  get caption() {\n    return this._view.caption;\n  }\n  get emptyTitle() {\n    return this._view.emptyTitle;\n  }\n  get emptyCaption() {\n    return this._view.emptyCaption;\n  }\n  get getContents() {\n    return this._view.getContents;\n  }\n  get icon() {\n    return this._view.icon;\n  }\n  set icon(icon) {\n    this._view.icon = icon;\n  }\n  get order() {\n    return this._view.order;\n  }\n  set order(order) {\n    this._view.order = order;\n  }\n  get params() {\n    return this._view.params;\n  }\n  set params(params) {\n    this._view.params = params;\n  }\n  get columns() {\n    return this._view.columns;\n  }\n  get emptyView() {\n    return this._view.emptyView;\n  }\n  get parent() {\n    return this._view.parent;\n  }\n  get sticky() {\n    return this._view.sticky;\n  }\n  get expanded() {\n    return this._view.expanded;\n  }\n  set expanded(expanded) {\n    this._view.expanded = expanded;\n  }\n  get defaultSortKey() {\n    return this._view.defaultSortKey;\n  }\n}\nconst isValidView = function(view) {\n  if (!view.id || typeof view.id !== \"string\") {\n    throw new Error(\"View id is required and must be a string\");\n  }\n  if (!view.name || typeof view.name !== \"string\") {\n    throw new Error(\"View name is required and must be a string\");\n  }\n  if (view.columns && view.columns.length > 0 && (!view.caption || typeof view.caption !== \"string\")) {\n    throw new Error(\"View caption is required for top-level views and must be a string\");\n  }\n  if (!view.getContents || typeof view.getContents !== \"function\") {\n    throw new Error(\"View getContents is required and must be a function\");\n  }\n  if (!view.icon || typeof view.icon !== \"string\" || !isSvg(view.icon)) {\n    throw new Error(\"View icon is required and must be a valid svg string\");\n  }\n  if (!(\"order\" in view) || typeof view.order !== \"number\") {\n    throw new Error(\"View order is required and must be a number\");\n  }\n  if (view.columns) {\n    view.columns.forEach((column) => {\n      if (!(column instanceof Column)) {\n        throw new Error(\"View columns must be an array of Column. Invalid column found\");\n      }\n    });\n  }\n  if (view.emptyView && typeof view.emptyView !== \"function\") {\n    throw new Error(\"View emptyView must be a function\");\n  }\n  if (view.parent && typeof view.parent !== \"string\") {\n    throw new Error(\"View parent must be a string\");\n  }\n  if (\"sticky\" in view && typeof view.sticky !== \"boolean\") {\n    throw new Error(\"View sticky must be a boolean\");\n  }\n  if (\"expanded\" in view && typeof view.expanded !== \"boolean\") {\n    throw new Error(\"View expanded must be a boolean\");\n  }\n  if (view.defaultSortKey && typeof view.defaultSortKey !== \"string\") {\n    throw new Error(\"View defaultSortKey must be a string\");\n  }\n  return true;\n};\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst addNewFileMenuEntry = function(entry) {\n  const newFileMenu = getNewFileMenu();\n  return newFileMenu.registerEntry(entry);\n};\nconst removeNewFileMenuEntry = function(entry) {\n  const newFileMenu = getNewFileMenu();\n  return newFileMenu.unregisterEntry(entry);\n};\nconst getNewFileMenuEntries = function(context) {\n  const newFileMenu = getNewFileMenu();\n  return newFileMenu.getEntries(context).sort((a, b) => {\n    if (a.order !== void 0 && b.order !== void 0 && a.order !== b.order) {\n      return a.order - b.order;\n    }\n    return a.displayName.localeCompare(b.displayName, void 0, { numeric: true, sensitivity: \"base\" });\n  });\n};\nexport {\n  Column,\n  DefaultType,\n  File,\n  FileAction,\n  FileType,\n  FilesSortingMode,\n  Folder,\n  Header,\n  Navigation,\n  NewMenuEntryCategory,\n  Node,\n  NodeStatus,\n  Permission,\n  View,\n  addNewFileMenuEntry,\n  davGetClient,\n  davGetDefaultPropfind,\n  davGetFavoritesReport,\n  davGetRecentSearch,\n  davParsePermissions,\n  davRemoteURL,\n  davResultToNode,\n  davRootPath,\n  defaultDavNamespaces,\n  defaultDavProperties,\n  formatFileSize,\n  getDavNameSpaces,\n  getDavProperties,\n  getFavoriteNodes,\n  getFileActions,\n  getFileListHeaders,\n  getNavigation,\n  getNewFileMenuEntries,\n  isFilenameValid,\n  orderBy,\n  parseFileSize,\n  registerDavProperty,\n  registerFileAction,\n  registerFileListHeaders,\n  removeNewFileMenuEntry,\n  sortNodes\n};\n","\n      import API from \"!../../../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../css-loader/dist/cjs.js!./index-Ussc_ol3.css\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../css-loader/dist/cjs.js!./index-Ussc_ol3.css\";\n       export default content && content.locals ? content.locals : undefined;\n","export class CancelError extends Error {\n\tconstructor(reason) {\n\t\tsuper(reason || 'Promise was canceled');\n\t\tthis.name = 'CancelError';\n\t}\n\n\tget isCanceled() {\n\t\treturn true;\n\t}\n}\n\nconst promiseState = Object.freeze({\n\tpending: Symbol('pending'),\n\tcanceled: Symbol('canceled'),\n\tresolved: Symbol('resolved'),\n\trejected: Symbol('rejected'),\n});\n\nexport default class PCancelable {\n\tstatic fn(userFunction) {\n\t\treturn (...arguments_) => new PCancelable((resolve, reject, onCancel) => {\n\t\t\targuments_.push(onCancel);\n\t\t\tuserFunction(...arguments_).then(resolve, reject);\n\t\t});\n\t}\n\n\t#cancelHandlers = [];\n\t#rejectOnCancel = true;\n\t#state = promiseState.pending;\n\t#promise;\n\t#reject;\n\n\tconstructor(executor) {\n\t\tthis.#promise = new Promise((resolve, reject) => {\n\t\t\tthis.#reject = reject;\n\n\t\t\tconst onResolve = value => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\tresolve(value);\n\t\t\t\t\tthis.#setState(promiseState.resolved);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onReject = error => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\treject(error);\n\t\t\t\t\tthis.#setState(promiseState.rejected);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onCancel = handler => {\n\t\t\t\tif (this.#state !== promiseState.pending) {\n\t\t\t\t\tthrow new Error(`The \\`onCancel\\` handler was attached after the promise ${this.#state.description}.`);\n\t\t\t\t}\n\n\t\t\t\tthis.#cancelHandlers.push(handler);\n\t\t\t};\n\n\t\t\tObject.defineProperties(onCancel, {\n\t\t\t\tshouldReject: {\n\t\t\t\t\tget: () => this.#rejectOnCancel,\n\t\t\t\t\tset: boolean => {\n\t\t\t\t\t\tthis.#rejectOnCancel = boolean;\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t});\n\n\t\t\texecutor(onResolve, onReject, onCancel);\n\t\t});\n\t}\n\n\t// eslint-disable-next-line unicorn/no-thenable\n\tthen(onFulfilled, onRejected) {\n\t\treturn this.#promise.then(onFulfilled, onRejected);\n\t}\n\n\tcatch(onRejected) {\n\t\treturn this.#promise.catch(onRejected);\n\t}\n\n\tfinally(onFinally) {\n\t\treturn this.#promise.finally(onFinally);\n\t}\n\n\tcancel(reason) {\n\t\tif (this.#state !== promiseState.pending) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.#setState(promiseState.canceled);\n\n\t\tif (this.#cancelHandlers.length > 0) {\n\t\t\ttry {\n\t\t\t\tfor (const handler of this.#cancelHandlers) {\n\t\t\t\t\thandler();\n\t\t\t\t}\n\t\t\t} catch (error) {\n\t\t\t\tthis.#reject(error);\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\tif (this.#rejectOnCancel) {\n\t\t\tthis.#reject(new CancelError(reason));\n\t\t}\n\t}\n\n\tget isCanceled() {\n\t\treturn this.#state === promiseState.canceled;\n\t}\n\n\t#setState(state) {\n\t\tif (this.#state === promiseState.pending) {\n\t\t\tthis.#state = state;\n\t\t}\n\t}\n}\n\nObject.setPrototypeOf(PCancelable.prototype, Promise.prototype);\n","export class TimeoutError extends Error {\n\tconstructor(message) {\n\t\tsuper(message);\n\t\tthis.name = 'TimeoutError';\n\t}\n}\n\n/**\nAn error to be thrown when the request is aborted by AbortController.\nDOMException is thrown instead of this Error when DOMException is available.\n*/\nexport class AbortError extends Error {\n\tconstructor(message) {\n\t\tsuper();\n\t\tthis.name = 'AbortError';\n\t\tthis.message = message;\n\t}\n}\n\n/**\nTODO: Remove AbortError and just throw DOMException when targeting Node 18.\n*/\nconst getDOMException = errorMessage => globalThis.DOMException === undefined\n\t? new AbortError(errorMessage)\n\t: new DOMException(errorMessage);\n\n/**\nTODO: Remove below function and just 'reject(signal.reason)' when targeting Node 18.\n*/\nconst getAbortedReason = signal => {\n\tconst reason = signal.reason === undefined\n\t\t? getDOMException('This operation was aborted.')\n\t\t: signal.reason;\n\n\treturn reason instanceof Error ? reason : getDOMException(reason);\n};\n\nexport default function pTimeout(promise, options) {\n\tconst {\n\t\tmilliseconds,\n\t\tfallback,\n\t\tmessage,\n\t\tcustomTimers = {setTimeout, clearTimeout},\n\t} = options;\n\n\tlet timer;\n\n\tconst wrappedPromise = new Promise((resolve, reject) => {\n\t\tif (typeof milliseconds !== 'number' || Math.sign(milliseconds) !== 1) {\n\t\t\tthrow new TypeError(`Expected \\`milliseconds\\` to be a positive number, got \\`${milliseconds}\\``);\n\t\t}\n\n\t\tif (options.signal) {\n\t\t\tconst {signal} = options;\n\t\t\tif (signal.aborted) {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t}\n\n\t\t\tsignal.addEventListener('abort', () => {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t});\n\t\t}\n\n\t\tif (milliseconds === Number.POSITIVE_INFINITY) {\n\t\t\tpromise.then(resolve, reject);\n\t\t\treturn;\n\t\t}\n\n\t\t// We create the error outside of `setTimeout` to preserve the stack trace.\n\t\tconst timeoutError = new TimeoutError();\n\n\t\ttimer = customTimers.setTimeout.call(undefined, () => {\n\t\t\tif (fallback) {\n\t\t\t\ttry {\n\t\t\t\t\tresolve(fallback());\n\t\t\t\t} catch (error) {\n\t\t\t\t\treject(error);\n\t\t\t\t}\n\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (typeof promise.cancel === 'function') {\n\t\t\t\tpromise.cancel();\n\t\t\t}\n\n\t\t\tif (message === false) {\n\t\t\t\tresolve();\n\t\t\t} else if (message instanceof Error) {\n\t\t\t\treject(message);\n\t\t\t} else {\n\t\t\t\ttimeoutError.message = message ?? `Promise timed out after ${milliseconds} milliseconds`;\n\t\t\t\treject(timeoutError);\n\t\t\t}\n\t\t}, milliseconds);\n\n\t\t(async () => {\n\t\t\ttry {\n\t\t\t\tresolve(await promise);\n\t\t\t} catch (error) {\n\t\t\t\treject(error);\n\t\t\t}\n\t\t})();\n\t});\n\n\tconst cancelablePromise = wrappedPromise.finally(() => {\n\t\tcancelablePromise.clear();\n\t});\n\n\tcancelablePromise.clear = () => {\n\t\tcustomTimers.clearTimeout.call(undefined, timer);\n\t\ttimer = undefined;\n\t};\n\n\treturn cancelablePromise;\n}\n","import lowerBound from './lower-bound.js';\nexport default class PriorityQueue {\n    #queue = [];\n    enqueue(run, options) {\n        options = {\n            priority: 0,\n            ...options,\n        };\n        const element = {\n            priority: options.priority,\n            run,\n        };\n        if (this.size && this.#queue[this.size - 1].priority >= options.priority) {\n            this.#queue.push(element);\n            return;\n        }\n        const index = lowerBound(this.#queue, element, (a, b) => b.priority - a.priority);\n        this.#queue.splice(index, 0, element);\n    }\n    dequeue() {\n        const item = this.#queue.shift();\n        return item?.run;\n    }\n    filter(options) {\n        return this.#queue.filter((element) => element.priority === options.priority).map((element) => element.run);\n    }\n    get size() {\n        return this.#queue.length;\n    }\n}\n","// Port of lower_bound from https://en.cppreference.com/w/cpp/algorithm/lower_bound\n// Used to compute insertion index to keep queue sorted after insertion\nexport default function lowerBound(array, value, comparator) {\n    let first = 0;\n    let count = array.length;\n    while (count > 0) {\n        const step = Math.trunc(count / 2);\n        let it = first + step;\n        if (comparator(array[it], value) <= 0) {\n            first = ++it;\n            count -= step + 1;\n        }\n        else {\n            count = step;\n        }\n    }\n    return first;\n}\n","import { EventEmitter } from 'eventemitter3';\nimport pTimeout, { TimeoutError } from 'p-timeout';\nimport PriorityQueue from './priority-queue.js';\n/**\nPromise queue with concurrency control.\n*/\nexport default class PQueue extends EventEmitter {\n    #carryoverConcurrencyCount;\n    #isIntervalIgnored;\n    #intervalCount = 0;\n    #intervalCap;\n    #interval;\n    #intervalEnd = 0;\n    #intervalId;\n    #timeoutId;\n    #queue;\n    #queueClass;\n    #pending = 0;\n    // The `!` is needed because of https://github.com/microsoft/TypeScript/issues/32194\n    #concurrency;\n    #isPaused;\n    #throwOnTimeout;\n    /**\n    Per-operation timeout in milliseconds. Operations fulfill once `timeout` elapses if they haven't already.\n\n    Applies to each future operation.\n    */\n    timeout;\n    // TODO: The `throwOnTimeout` option should affect the return types of `add()` and `addAll()`\n    constructor(options) {\n        super();\n        // eslint-disable-next-line @typescript-eslint/consistent-type-assertions\n        options = {\n            carryoverConcurrencyCount: false,\n            intervalCap: Number.POSITIVE_INFINITY,\n            interval: 0,\n            concurrency: Number.POSITIVE_INFINITY,\n            autoStart: true,\n            queueClass: PriorityQueue,\n            ...options,\n        };\n        if (!(typeof options.intervalCap === 'number' && options.intervalCap >= 1)) {\n            throw new TypeError(`Expected \\`intervalCap\\` to be a number from 1 and up, got \\`${options.intervalCap?.toString() ?? ''}\\` (${typeof options.intervalCap})`);\n        }\n        if (options.interval === undefined || !(Number.isFinite(options.interval) && options.interval >= 0)) {\n            throw new TypeError(`Expected \\`interval\\` to be a finite number >= 0, got \\`${options.interval?.toString() ?? ''}\\` (${typeof options.interval})`);\n        }\n        this.#carryoverConcurrencyCount = options.carryoverConcurrencyCount;\n        this.#isIntervalIgnored = options.intervalCap === Number.POSITIVE_INFINITY || options.interval === 0;\n        this.#intervalCap = options.intervalCap;\n        this.#interval = options.interval;\n        this.#queue = new options.queueClass();\n        this.#queueClass = options.queueClass;\n        this.concurrency = options.concurrency;\n        this.timeout = options.timeout;\n        this.#throwOnTimeout = options.throwOnTimeout === true;\n        this.#isPaused = options.autoStart === false;\n    }\n    get #doesIntervalAllowAnother() {\n        return this.#isIntervalIgnored || this.#intervalCount < this.#intervalCap;\n    }\n    get #doesConcurrentAllowAnother() {\n        return this.#pending < this.#concurrency;\n    }\n    #next() {\n        this.#pending--;\n        this.#tryToStartAnother();\n        this.emit('next');\n    }\n    #onResumeInterval() {\n        this.#onInterval();\n        this.#initializeIntervalIfNeeded();\n        this.#timeoutId = undefined;\n    }\n    get #isIntervalPaused() {\n        const now = Date.now();\n        if (this.#intervalId === undefined) {\n            const delay = this.#intervalEnd - now;\n            if (delay < 0) {\n                // Act as the interval was done\n                // We don't need to resume it here because it will be resumed on line 160\n                this.#intervalCount = (this.#carryoverConcurrencyCount) ? this.#pending : 0;\n            }\n            else {\n                // Act as the interval is pending\n                if (this.#timeoutId === undefined) {\n                    this.#timeoutId = setTimeout(() => {\n                        this.#onResumeInterval();\n                    }, delay);\n                }\n                return true;\n            }\n        }\n        return false;\n    }\n    #tryToStartAnother() {\n        if (this.#queue.size === 0) {\n            // We can clear the interval (\"pause\")\n            // Because we can redo it later (\"resume\")\n            if (this.#intervalId) {\n                clearInterval(this.#intervalId);\n            }\n            this.#intervalId = undefined;\n            this.emit('empty');\n            if (this.#pending === 0) {\n                this.emit('idle');\n            }\n            return false;\n        }\n        if (!this.#isPaused) {\n            const canInitializeInterval = !this.#isIntervalPaused;\n            if (this.#doesIntervalAllowAnother && this.#doesConcurrentAllowAnother) {\n                const job = this.#queue.dequeue();\n                if (!job) {\n                    return false;\n                }\n                this.emit('active');\n                job();\n                if (canInitializeInterval) {\n                    this.#initializeIntervalIfNeeded();\n                }\n                return true;\n            }\n        }\n        return false;\n    }\n    #initializeIntervalIfNeeded() {\n        if (this.#isIntervalIgnored || this.#intervalId !== undefined) {\n            return;\n        }\n        this.#intervalId = setInterval(() => {\n            this.#onInterval();\n        }, this.#interval);\n        this.#intervalEnd = Date.now() + this.#interval;\n    }\n    #onInterval() {\n        if (this.#intervalCount === 0 && this.#pending === 0 && this.#intervalId) {\n            clearInterval(this.#intervalId);\n            this.#intervalId = undefined;\n        }\n        this.#intervalCount = this.#carryoverConcurrencyCount ? this.#pending : 0;\n        this.#processQueue();\n    }\n    /**\n    Executes all queued functions until it reaches the limit.\n    */\n    #processQueue() {\n        // eslint-disable-next-line no-empty\n        while (this.#tryToStartAnother()) { }\n    }\n    get concurrency() {\n        return this.#concurrency;\n    }\n    set concurrency(newConcurrency) {\n        if (!(typeof newConcurrency === 'number' && newConcurrency >= 1)) {\n            throw new TypeError(`Expected \\`concurrency\\` to be a number from 1 and up, got \\`${newConcurrency}\\` (${typeof newConcurrency})`);\n        }\n        this.#concurrency = newConcurrency;\n        this.#processQueue();\n    }\n    async #throwOnAbort(signal) {\n        return new Promise((_resolve, reject) => {\n            signal.addEventListener('abort', () => {\n                reject(signal.reason);\n            }, { once: true });\n        });\n    }\n    async add(function_, options = {}) {\n        options = {\n            timeout: this.timeout,\n            throwOnTimeout: this.#throwOnTimeout,\n            ...options,\n        };\n        return new Promise((resolve, reject) => {\n            this.#queue.enqueue(async () => {\n                this.#pending++;\n                this.#intervalCount++;\n                try {\n                    options.signal?.throwIfAborted();\n                    let operation = function_({ signal: options.signal });\n                    if (options.timeout) {\n                        operation = pTimeout(Promise.resolve(operation), { milliseconds: options.timeout });\n                    }\n                    if (options.signal) {\n                        operation = Promise.race([operation, this.#throwOnAbort(options.signal)]);\n                    }\n                    const result = await operation;\n                    resolve(result);\n                    this.emit('completed', result);\n                }\n                catch (error) {\n                    if (error instanceof TimeoutError && !options.throwOnTimeout) {\n                        resolve();\n                        return;\n                    }\n                    reject(error);\n                    this.emit('error', error);\n                }\n                finally {\n                    this.#next();\n                }\n            }, options);\n            this.emit('add');\n            this.#tryToStartAnother();\n        });\n    }\n    async addAll(functions, options) {\n        return Promise.all(functions.map(async (function_) => this.add(function_, options)));\n    }\n    /**\n    Start (or resume) executing enqueued tasks within concurrency limit. No need to call this if queue is not paused (via `options.autoStart = false` or by `.pause()` method.)\n    */\n    start() {\n        if (!this.#isPaused) {\n            return this;\n        }\n        this.#isPaused = false;\n        this.#processQueue();\n        return this;\n    }\n    /**\n    Put queue execution on hold.\n    */\n    pause() {\n        this.#isPaused = true;\n    }\n    /**\n    Clear the queue.\n    */\n    clear() {\n        this.#queue = new this.#queueClass();\n    }\n    /**\n    Can be called multiple times. Useful if you for example add additional items at a later time.\n\n    @returns A promise that settles when the queue becomes empty.\n    */\n    async onEmpty() {\n        // Instantly resolve if the queue is empty\n        if (this.#queue.size === 0) {\n            return;\n        }\n        await this.#onEvent('empty');\n    }\n    /**\n    @returns A promise that settles when the queue size is less than the given limit: `queue.size < limit`.\n\n    If you want to avoid having the queue grow beyond a certain size you can `await queue.onSizeLessThan()` before adding a new item.\n\n    Note that this only limits the number of items waiting to start. There could still be up to `concurrency` jobs already running that this call does not include in its calculation.\n    */\n    async onSizeLessThan(limit) {\n        // Instantly resolve if the queue is empty.\n        if (this.#queue.size < limit) {\n            return;\n        }\n        await this.#onEvent('next', () => this.#queue.size < limit);\n    }\n    /**\n    The difference with `.onEmpty` is that `.onIdle` guarantees that all work from the queue has finished. `.onEmpty` merely signals that the queue is empty, but it could mean that some promises haven't completed yet.\n\n    @returns A promise that settles when the queue becomes empty, and all promises have completed; `queue.size === 0 && queue.pending === 0`.\n    */\n    async onIdle() {\n        // Instantly resolve if none pending and if nothing else is queued\n        if (this.#pending === 0 && this.#queue.size === 0) {\n            return;\n        }\n        await this.#onEvent('idle');\n    }\n    async #onEvent(event, filter) {\n        return new Promise(resolve => {\n            const listener = () => {\n                if (filter && !filter()) {\n                    return;\n                }\n                this.off(event, listener);\n                resolve();\n            };\n            this.on(event, listener);\n        });\n    }\n    /**\n    Size of the queue, the number of queued items waiting to run.\n    */\n    get size() {\n        return this.#queue.size;\n    }\n    /**\n    Size of the queue, filtered by the given options.\n\n    For example, this can be used to find the number of items remaining in the queue with a specific priority level.\n    */\n    sizeBy(options) {\n        // eslint-disable-next-line unicorn/no-array-callback-reference\n        return this.#queue.filter(options).length;\n    }\n    /**\n    Number of running items (no longer in the queue).\n    */\n    get pending() {\n        return this.#pending;\n    }\n    /**\n    Whether the queue is currently paused.\n    */\n    get isPaused() {\n        return this.#isPaused;\n    }\n}\n","import '../assets/index-Ussc_ol3.css';\nimport { CanceledError as b } from \"axios\";\nimport { encodePath as q } from \"@nextcloud/paths\";\nimport { Folder as z, Permission as H, getNewFileMenuEntries as G } from \"@nextcloud/files\";\nimport { generateRemoteUrl as j } from \"@nextcloud/router\";\nimport { getCurrentUser as F } from \"@nextcloud/auth\";\nimport v from \"@nextcloud/axios\";\nimport Y from \"p-cancelable\";\nimport V from \"p-queue\";\nimport { getLoggerBuilder as _ } from \"@nextcloud/logger\";\nimport { showError as P } from \"@nextcloud/dialogs\";\nimport K from \"simple-eta\";\nimport E, { defineAsyncComponent as $ } from \"vue\";\nimport J from \"@nextcloud/vue/dist/Components/NcActionButton.js\";\nimport Q from \"@nextcloud/vue/dist/Components/NcActions.js\";\nimport Z from \"@nextcloud/vue/dist/Components/NcButton.js\";\nimport X from \"@nextcloud/vue/dist/Components/NcIconSvgWrapper.js\";\nimport ss from \"@nextcloud/vue/dist/Components/NcProgressBar.js\";\nimport { getGettextBuilder as es } from \"@nextcloud/l10n/gettext\";\nconst A = async function(e, s, t, n = () => {\n}, i = void 0, o = {}) {\n  let l;\n  return s instanceof Blob ? l = s : l = await s(), i && (o.Destination = i), o[\"Content-Type\"] || (o[\"Content-Type\"] = \"application/octet-stream\"), await v.request({\n    method: \"PUT\",\n    url: e,\n    data: l,\n    signal: t,\n    onUploadProgress: n,\n    headers: o\n  });\n}, B = function(e, s, t) {\n  return s === 0 && e.size <= t ? Promise.resolve(new Blob([e], { type: e.type || \"application/octet-stream\" })) : Promise.resolve(new Blob([e.slice(s, s + t)], { type: \"application/octet-stream\" }));\n}, ts = async function(e = void 0) {\n  const s = j(`dav/uploads/${F()?.uid}`), n = `web-file-upload-${[...Array(16)].map(() => Math.floor(Math.random() * 16).toString(16)).join(\"\")}`, i = `${s}/${n}`, o = e ? { Destination: e } : void 0;\n  return await v.request({\n    method: \"MKCOL\",\n    url: i,\n    headers: o\n  }), i;\n}, x = function(e = void 0) {\n  const s = window.OC?.appConfig?.files?.max_chunk_size;\n  if (s <= 0)\n    return 0;\n  if (!Number(s))\n    return 10 * 1024 * 1024;\n  const t = Math.max(Number(s), 5 * 1024 * 1024);\n  return e === void 0 ? t : Math.max(t, Math.ceil(e / 1e4));\n};\nvar c = /* @__PURE__ */ ((e) => (e[e.INITIALIZED = 0] = \"INITIALIZED\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.ASSEMBLING = 2] = \"ASSEMBLING\", e[e.FINISHED = 3] = \"FINISHED\", e[e.CANCELLED = 4] = \"CANCELLED\", e[e.FAILED = 5] = \"FAILED\", e))(c || {});\nlet ns = class {\n  _source;\n  _file;\n  _isChunked;\n  _chunks;\n  _size;\n  _uploaded = 0;\n  _startTime = 0;\n  _status = 0;\n  _controller;\n  _response = null;\n  constructor(s, t = !1, n, i) {\n    const o = Math.min(x() > 0 ? Math.ceil(n / x()) : 1, 1e4);\n    this._source = s, this._isChunked = t && x() > 0 && o > 1, this._chunks = this._isChunked ? o : 1, this._size = n, this._file = i, this._controller = new AbortController();\n  }\n  get source() {\n    return this._source;\n  }\n  get file() {\n    return this._file;\n  }\n  get isChunked() {\n    return this._isChunked;\n  }\n  get chunks() {\n    return this._chunks;\n  }\n  get size() {\n    return this._size;\n  }\n  get startTime() {\n    return this._startTime;\n  }\n  set response(s) {\n    this._response = s;\n  }\n  get response() {\n    return this._response;\n  }\n  get uploaded() {\n    return this._uploaded;\n  }\n  /**\n   * Update the uploaded bytes of this upload\n   */\n  set uploaded(s) {\n    if (s >= this._size) {\n      this._status = this._isChunked ? 2 : 3, this._uploaded = this._size;\n      return;\n    }\n    this._status = 1, this._uploaded = s, this._startTime === 0 && (this._startTime = (/* @__PURE__ */ new Date()).getTime());\n  }\n  get status() {\n    return this._status;\n  }\n  /**\n   * Update this upload status\n   */\n  set status(s) {\n    this._status = s;\n  }\n  /**\n   * Returns the axios cancel token source\n   */\n  get signal() {\n    return this._controller.signal;\n  }\n  /**\n   * Cancel any ongoing requests linked to this upload\n   */\n  cancel() {\n    this._controller.abort(), this._status = 4;\n  }\n};\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst as = (e) => e === null ? _().setApp(\"uploader\").build() : _().setApp(\"uploader\").setUid(e.uid).build(), g = as(F());\nvar I = /* @__PURE__ */ ((e) => (e[e.IDLE = 0] = \"IDLE\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.PAUSED = 2] = \"PAUSED\", e))(I || {});\nclass N {\n  // Initialized via setter in the constructor\n  _destinationFolder;\n  _isPublic;\n  // Global upload queue\n  _uploadQueue = [];\n  _jobQueue = new V({ concurrency: 3 });\n  _queueSize = 0;\n  _queueProgress = 0;\n  _queueStatus = 0;\n  _notifiers = [];\n  /**\n   * Initialize uploader\n   *\n   * @param {boolean} isPublic are we in public mode ?\n   * @param {Folder} destinationFolder the context folder to operate, relative to the root folder\n   */\n  constructor(s = !1, t) {\n    if (this._isPublic = s, !t) {\n      const n = F()?.uid, i = j(`dav/files/${n}`);\n      if (!n)\n        throw new Error(\"User is not logged in\");\n      t = new z({\n        id: 0,\n        owner: n,\n        permissions: H.ALL,\n        root: `/files/${n}`,\n        source: i\n      });\n    }\n    this.destination = t, g.debug(\"Upload workspace initialized\", {\n      destination: this.destination,\n      root: this.root,\n      isPublic: s,\n      maxChunksSize: x()\n    });\n  }\n  /**\n   * Get the upload destination path relative to the root folder\n   */\n  get destination() {\n    return this._destinationFolder;\n  }\n  /**\n   * Set the upload destination path relative to the root folder\n   */\n  set destination(s) {\n    if (!s)\n      throw new Error(\"Invalid destination folder\");\n    g.debug(\"Destination set\", { folder: s }), this._destinationFolder = s;\n  }\n  /**\n   * Get the root folder\n   */\n  get root() {\n    return this._destinationFolder.source;\n  }\n  /**\n   * Get the upload queue\n   */\n  get queue() {\n    return this._uploadQueue;\n  }\n  reset() {\n    this._uploadQueue.splice(0, this._uploadQueue.length), this._jobQueue.clear(), this._queueSize = 0, this._queueProgress = 0, this._queueStatus = 0;\n  }\n  /**\n   * Pause any ongoing upload(s)\n   */\n  pause() {\n    this._jobQueue.pause(), this._queueStatus = 2;\n  }\n  /**\n   * Resume any pending upload(s)\n   */\n  start() {\n    this._jobQueue.start(), this._queueStatus = 1, this.updateStats();\n  }\n  /**\n   * Get the upload queue stats\n   */\n  get info() {\n    return {\n      size: this._queueSize,\n      progress: this._queueProgress,\n      status: this._queueStatus\n    };\n  }\n  updateStats() {\n    const s = this._uploadQueue.map((n) => n.size).reduce((n, i) => n + i, 0), t = this._uploadQueue.map((n) => n.uploaded).reduce((n, i) => n + i, 0);\n    this._queueSize = s, this._queueProgress = t, this._queueStatus !== 2 && (this._queueStatus = this._jobQueue.size > 0 ? 1 : 0);\n  }\n  addNotifier(s) {\n    this._notifiers.push(s);\n  }\n  /**\n   * Upload a file to the given path\n   * @param {string} destinationPath the destination path relative to the root folder. e.g. /foo/bar.txt\n   * @param {File} file the file to upload\n   * @param {string} root the root folder to upload to\n   */\n  upload(s, t, n) {\n    const i = `${n || this.root}/${s.replace(/^\\//, \"\")}`, { origin: o } = new URL(i), l = o + q(i.slice(o.length));\n    g.debug(`Uploading ${t.name} to ${l}`);\n    const f = x(t.size), r = f === 0 || t.size < f || this._isPublic, a = new ns(i, !r, t.size, t);\n    return this._uploadQueue.push(a), this.updateStats(), new Y(async (T, d, U) => {\n      if (U(a.cancel), r) {\n        g.debug(\"Initializing regular upload\", { file: t, upload: a });\n        const p = await B(t, 0, a.size), L = async () => {\n          try {\n            a.response = await A(\n              l,\n              p,\n              a.signal,\n              (m) => {\n                a.uploaded = a.uploaded + m.bytes, this.updateStats();\n              },\n              void 0,\n              {\n                \"X-OC-Mtime\": t.lastModified / 1e3,\n                \"Content-Type\": t.type\n              }\n            ), a.uploaded = a.size, this.updateStats(), g.debug(`Successfully uploaded ${t.name}`, { file: t, upload: a }), T(a);\n          } catch (m) {\n            if (m instanceof b) {\n              a.status = c.FAILED, d(\"Upload has been cancelled\");\n              return;\n            }\n            m?.response && (a.response = m.response), a.status = c.FAILED, g.error(`Failed uploading ${t.name}`, { error: m, file: t, upload: a }), d(\"Failed uploading the file\");\n          }\n          this._notifiers.forEach((m) => {\n            try {\n              m(a);\n            } catch {\n            }\n          });\n        };\n        this._jobQueue.add(L), this.updateStats();\n      } else {\n        g.debug(\"Initializing chunked upload\", { file: t, upload: a });\n        const p = await ts(l), L = [];\n        for (let m = 0; m < a.chunks; m++) {\n          const w = m * f, D = Math.min(w + f, a.size), W = () => B(t, w, f), O = () => A(\n            `${p}/${m + 1}`,\n            W,\n            a.signal,\n            () => this.updateStats(),\n            l,\n            {\n              \"X-OC-Mtime\": t.lastModified / 1e3,\n              \"OC-Total-Length\": t.size,\n              \"Content-Type\": \"application/octet-stream\"\n            }\n          ).then(() => {\n            a.uploaded = a.uploaded + f;\n          }).catch((h) => {\n            throw h?.response?.status === 507 ? (g.error(\"Upload failed, not enough space on the server or quota exceeded. Cancelling the remaining chunks\", { error: h, upload: a }), a.cancel(), a.status = c.FAILED, h) : (h instanceof b || (g.error(`Chunk ${m + 1} ${w} - ${D} uploading failed`, { error: h, upload: a }), a.cancel(), a.status = c.FAILED), h);\n          });\n          L.push(this._jobQueue.add(O));\n        }\n        try {\n          await Promise.all(L), this.updateStats(), a.response = await v.request({\n            method: \"MOVE\",\n            url: `${p}/.file`,\n            headers: {\n              \"X-OC-Mtime\": t.lastModified / 1e3,\n              \"OC-Total-Length\": t.size,\n              Destination: l\n            }\n          }), this.updateStats(), a.status = c.FINISHED, g.debug(`Successfully uploaded ${t.name}`, { file: t, upload: a }), T(a);\n        } catch (m) {\n          m instanceof b ? (a.status = c.FAILED, d(\"Upload has been cancelled\")) : (a.status = c.FAILED, d(\"Failed assembling the chunks together\")), v.request({\n            method: \"DELETE\",\n            url: `${p}`\n          });\n        }\n        this._notifiers.forEach((m) => {\n          try {\n            m(a);\n          } catch {\n          }\n        });\n      }\n      return this._jobQueue.onIdle().then(() => this.reset()), a;\n    });\n  }\n}\nfunction y(e, s, t, n, i, o, l, f) {\n  var r = typeof e == \"function\" ? e.options : e;\n  s && (r.render = s, r.staticRenderFns = t, r._compiled = !0), n && (r.functional = !0), o && (r._scopeId = \"data-v-\" + o);\n  var a;\n  if (l ? (a = function(d) {\n    d = d || // cached call\n    this.$vnode && this.$vnode.ssrContext || // stateful\n    this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !d && typeof __VUE_SSR_CONTEXT__ < \"u\" && (d = __VUE_SSR_CONTEXT__), i && i.call(this, d), d && d._registeredComponents && d._registeredComponents.add(l);\n  }, r._ssrRegister = a) : i && (a = f ? function() {\n    i.call(\n      this,\n      (r.functional ? this.parent : this).$root.$options.shadowRoot\n    );\n  } : i), a)\n    if (r.functional) {\n      r._injectStyles = a;\n      var S = r.render;\n      r.render = function(U, p) {\n        return a.call(p), S(U, p);\n      };\n    } else {\n      var T = r.beforeCreate;\n      r.beforeCreate = T ? [].concat(T, a) : [a];\n    }\n  return {\n    exports: e,\n    options: r\n  };\n}\nconst is = {\n  name: \"CancelIcon\",\n  emits: [\"click\"],\n  props: {\n    title: {\n      type: String\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n};\nvar ls = function() {\n  var s = this, t = s._self._c;\n  return t(\"span\", s._b({ staticClass: \"material-design-icon cancel-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n    return s.$emit(\"click\", n);\n  } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M12 2C17.5 2 22 6.5 22 12S17.5 22 12 22 2 17.5 2 12 6.5 2 12 2M12 4C10.1 4 8.4 4.6 7.1 5.7L18.3 16.9C19.3 15.5 20 13.8 20 12C20 7.6 16.4 4 12 4M16.9 18.3L5.7 7.1C4.6 8.4 4 10.1 4 12C4 16.4 7.6 20 12 20C13.9 20 15.6 19.4 16.9 18.3Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, rs = [], os = /* @__PURE__ */ y(\n  is,\n  ls,\n  rs,\n  !1,\n  null,\n  null,\n  null,\n  null\n);\nconst ms = os.exports, ds = {\n  name: \"PlusIcon\",\n  emits: [\"click\"],\n  props: {\n    title: {\n      type: String\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n};\nvar gs = function() {\n  var s = this, t = s._self._c;\n  return t(\"span\", s._b({ staticClass: \"material-design-icon plus-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n    return s.$emit(\"click\", n);\n  } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, us = [], cs = /* @__PURE__ */ y(\n  ds,\n  gs,\n  us,\n  !1,\n  null,\n  null,\n  null,\n  null\n);\nconst fs = cs.exports, ps = {\n  name: \"UploadIcon\",\n  emits: [\"click\"],\n  props: {\n    title: {\n      type: String\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n};\nvar hs = function() {\n  var s = this, t = s._self._c;\n  return t(\"span\", s._b({ staticClass: \"material-design-icon upload-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n    return s.$emit(\"click\", n);\n  } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, Ts = [], ws = /* @__PURE__ */ y(\n  ps,\n  hs,\n  Ts,\n  !1,\n  null,\n  null,\n  null,\n  null\n);\nconst xs = ws.exports;\n/**\n * @copyright Copyright (c) 2023 Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst R = es().detectLocale();\n[{ locale: \"af\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"af\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: af\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ar\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Ali <alimahwer@yahoo.com>, 2024\", \"Language-Team\": \"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar\", \"Plural-Forms\": \"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nAli <alimahwer@yahoo.com>, 2024\n` }, msgstr: [`Last-Translator: Ali <alimahwer@yahoo.com>, 2024\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar\nPlural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} ملف متعارض\", \"{count} ملف متعارض\", \"{count} ملفان متعارضان\", \"{count} ملف متعارض\", \"{count} ملفات متعارضة\", \"{count} ملفات متعارضة\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} ملف متعارض في n {dirname}\", \"{count} ملف متعارض في n {dirname}\", \"{count} ملفان متعارضان في n {dirname}\", \"{count} ملف متعارض في n {dirname}\", \"{count} ملفات متعارضة في n {dirname}\", \"{count} ملفات متعارضة في n {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} ثانية متبقية\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} متبقية\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"باقٍ بضعُ ثوانٍ\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"إلغاء\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"إلغِ العملية بالكامل\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"إلغاء عمليات رفع الملفات\"] }, Continue: { msgid: \"Continue\", msgstr: [\"إستمر\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تقدير الوقت المتبقي\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"الإصدار الحالي\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"إذا اخترت الإبقاء على النسختين معاً، فإن الملف المنسوخ سيتم إلحاق رقم تسلسلي في نهاية اسمه.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"تاريخ آخر تعديل غير معلوم\"] }, New: { msgid: \"New\", msgstr: [\"جديد\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"نسخة جديدة\"] }, paused: { msgid: \"paused\", msgstr: [\"مُجمَّد\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"معاينة الصورة\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"حدِّد كل صناديق الخيارات\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"حدِّد كل الملفات الموجودة\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"حدِّد كل الملفات الجديدة\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"حجم غير معلوم\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"تمَّ إلغاء الرفع\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"رفع ملفات\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"تقدُّم الرفع \"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"عند تحديد مجلد وارد، أي ملفات متعارضة بداخله ستتم الكتابة فوقها.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"أيُّ الملفات ترغب في الإبقاء عليها؟\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"يجب أن تختار نسخة واحدة على الأقل من كل ملف للاستمرار.\"] } } } } }, { locale: \"ar_SA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar_SA\", \"Plural-Forms\": \"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar_SA\nPlural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ast\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"enolp <enolp@softastur.org>, 2023\", \"Language-Team\": \"Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ast\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nenolp <enolp@softastur.org>, 2023\n` }, msgstr: [`Last-Translator: enolp <enolp@softastur.org>, 2023\nLanguage-Team: Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ast\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} ficheru en coflictu\", \"{count} ficheros en coflictu\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} ficheru en coflictu en {dirname}\", \"{count} ficheros en coflictu en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Queden {seconds} segundos\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Tiempu que queda: {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"queden unos segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Encaboxar les xubes\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Siguir\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando'l tiempu que falta\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión esistente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si seleiciones dambes versiones, el ficheru copiáu va tener un númberu amestáu al so nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"La data de la última modificación ye desconocida\"] }, New: { msgid: \"New\", msgstr: [\"Nuevu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Versión nueva\"] }, paused: { msgid: \"paused\", msgstr: [\"en posa\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Previsualizar la imaxe\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marcar toles caxelles\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleicionar tolos ficheros esistentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleicionar tolos ficheros nuevos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Saltar esti ficheru\", \"Saltar {count} ficheros\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamañu desconocíu\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Encaboxóse la xuba\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Xubir ficheros\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Xuba en cursu\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"¿Qué ficheros quies caltener?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Tienes de seleicionar polo menos una versión de cada ficheru pa siguir.\"] } } } } }, { locale: \"az\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rashad Aliyev <microphprashad@gmail.com>, 2023\", \"Language-Team\": \"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"az\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRashad Aliyev <microphprashad@gmail.com>, 2023\n` }, msgstr: [`Last-Translator: Rashad Aliyev <microphprashad@gmail.com>, 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: az\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniyə qalıb\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} qalıb\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir neçə saniyə qalıb\"] }, Add: { msgid: \"Add\", msgstr: [\"Əlavə et\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yükləməni imtina et\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Təxmini qalan vaxt\"] }, paused: { msgid: \"paused\", msgstr: [\"pauzadadır\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Faylları yüklə\"] } } } } }, { locale: \"be\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"be\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: be\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bg_BG\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bg_BG\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bg_BG\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bn_BD\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bn_BD\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bn_BD\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"br\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"br\", \"Plural-Forms\": \"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bs\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bs\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ca\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\", \"Language-Team\": \"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ca\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMarc Riera <marcriera@softcatala.org>, 2022\nToni Hermoso Pulido <toniher@softcatala.cat>, 2022\n` }, msgstr: [`Last-Translator: Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Queden {seconds} segons\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Queden {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Queden uns segons\"] }, Add: { msgid: \"Add\", msgstr: [\"Afegeix\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel·la les pujades\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"S'està estimant el temps restant\"] }, paused: { msgid: \"paused\", msgstr: [\"En pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Puja els fitxers\"] } } } } }, { locale: \"cs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Pavel Borecki <pavel.borecki@gmail.com>, 2022\", \"Language-Team\": \"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPavel Borecki <pavel.borecki@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2022\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Přidat\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhadovaný zbývající čas\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] } } } } }, { locale: \"cs_CZ\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Michal Šmahel <ceskyDJ@seznam.cz>, 2024\", \"Language-Team\": \"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs_CZ\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMichal Šmahel <ceskyDJ@seznam.cz>, 2024\n` }, msgstr: [`Last-Translator: Michal Šmahel <ceskyDJ@seznam.cz>, 2024\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} kolize souborů\", \"{count} kolize souborů\", \"{count} kolizí souborů\", \"{count} kolize souborů\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} kolize souboru v {dirname}\", \"{count} kolize souboru v {dirname}\", \"{count} kolizí souborů v {dirname}\", \"{count} kolize souboru v {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Zrušit\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Zrušit celou operaci\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Pokračovat\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhaduje se zbývající čas\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Existující verze\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Pokud vyberete obě verze, zkopírovaný soubor bude mít k názvu přidáno číslo.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Neznámé datum poslední úpravy\"] }, New: { msgid: \"New\", msgstr: [\"Nové\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nová verze\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Náhled obrázku\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Označit všechny zaškrtávací kolonky\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Vybrat veškeré stávající soubory\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Vybrat veškeré nové soubory\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Přeskočit tento soubor\", \"Přeskočit {count} soubory\", \"Přeskočit {count} souborů\", \"Přeskočit {count} soubory\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Neznámá velikost\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Nahrávání zrušeno\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Nahrát soubory\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Postup v nahrávání\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Po výběru příchozí složky budou rovněž přepsány všechny v ní obsažené konfliktní soubory\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Které soubory si přejete ponechat?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Aby bylo možné pokračovat, je třeba vybrat alespoň jednu verzi od každého souboru.\"] } } } } }, { locale: \"cy_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cy_GB\", \"Plural-Forms\": \"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cy_GB\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"da\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Martin Bonde <Martin@maboni.dk>, 2024\", \"Language-Team\": \"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"da\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMartin Bonde <Martin@maboni.dk>, 2024\n` }, msgstr: [`Last-Translator: Martin Bonde <Martin@maboni.dk>, 2024\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} fil konflikt\", \"{count} filer i konflikt\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} fil konflikt i {dirname}\", \"{count} filer i konflikt i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{sekunder} sekunder tilbage\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{tid} tilbage\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"et par sekunder tilbage\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Annuller\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Annuller hele handlingen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuller uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsæt\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimering af resterende tid\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Eksisterende version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Hvis du vælger begge versioner vil den kopierede fil få et nummer tilføjet til sit navn.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Sidste modifikationsdato ukendt\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny version\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forhåndsvisning af billede\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Vælg alle felter\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Vælg alle eksisterende filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Vælg alle nye filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Spring denne fil over\", \"Spring {count} filer over\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukendt størrelse\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Upload annulleret\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Upload fremskridt\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Når en indgående mappe er valgt, vil alle modstridende filer i den også blive overskrevet.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvilke filer ønsker du at beholde?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du skal vælge mindst én version af hver fil for at fortsætte.\"] } } } } }, { locale: \"de\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mario Siegmann <mario_siegmann@web.de>, 2024\", \"Language-Team\": \"German (https://app.transifex.com/nextcloud/teams/64236/de/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n` }, msgstr: [`Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Datei-Konflikt\", \"{count} Datei-Konflikte\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} Datei-Konflikt in {dirname}\", \"{count} Datei-Konflikte in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleibend\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noch ein paar Sekunden\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Abbrechen\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Den gesamten Vorgang abbrechen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsetzen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Vorhandene Version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Wenn du beide Versionen auswählst, wird der kopierten Datei eine Nummer zum Namen hinzugefügt.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Datum der letzten Änderung unbekannt\"] }, New: { msgid: \"New\", msgstr: [\"Neu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Neue Version\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vorschaubild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Alle Kontrollkästchen aktivieren\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Alle vorhandenen Dateien auswählen\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Alle neuen Dateien auswählen\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Diese Datei überspringen\", \"{count} Dateien überspringen\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unbekannte Größe\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hochladen abgebrochen\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fortschritt beim Hochladen\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Welche Dateien möchtest du behalten?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du musst mindestens eine Version jeder Datei auswählen, um fortzufahren.\"] } } } } }, { locale: \"de_DE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mario Siegmann <mario_siegmann@web.de>, 2024\", \"Language-Team\": \"German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de_DE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n` }, msgstr: [`Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Datei-Konflikt\", \"{count} Datei-Konflikte\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} Datei-Konflikt in {dirname}\", \"{count} Datei-Konflikte in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleiben\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"ein paar Sekunden verbleiben\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Abbrechen\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Den gesamten Vorgang abbrechen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsetzen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Vorhandene Version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Wenn Sie beide Versionen auswählen, wird der kopierten Datei eine Nummer zum Namen hinzugefügt.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Datum der letzten Änderung unbekannt\"] }, New: { msgid: \"New\", msgstr: [\"Neu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Neue Version\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vorschaubild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Alle Kontrollkästchen aktivieren\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Alle vorhandenen Dateien auswählen\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Alle neuen Dateien auswählen\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"{count} Datei überspringen\", \"{count} Dateien überspringen\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unbekannte Größe\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hochladen abgebrochen\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fortschritt beim Hochladen\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Welche Dateien möchten Sie behalten?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Sie müssen mindestens eine Version jeder Datei auswählen, um fortzufahren.\"] } } } } }, { locale: \"el\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Nik Pap, 2022\", \"Language-Team\": \"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nNik Pap, 2022\n` }, msgstr: [`Last-Translator: Nik Pap, 2022\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"απομένουν {seconds} δευτερόλεπτα\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"απομένουν {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"απομένουν λίγα δευτερόλεπτα\"] }, Add: { msgid: \"Add\", msgstr: [\"Προσθήκη\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ακύρωση μεταφορτώσεων\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"εκτίμηση του χρόνου που απομένει\"] }, paused: { msgid: \"paused\", msgstr: [\"σε παύση\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Μεταφόρτωση αρχείων\"] } } } } }, { locale: \"el_GR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el_GR\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el_GR\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"en_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Andi Chandler <andi@gowling.com>, 2023\", \"Language-Team\": \"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"en_GB\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAndi Chandler <andi@gowling.com>, 2023\n` }, msgstr: [`Last-Translator: Andi Chandler <andi@gowling.com>, 2023\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: en_GB\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file conflict\", \"{count} files conflict\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file conflict in {dirname}\", \"{count} file conflicts in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} seconds left\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} left\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"a few seconds left\"] }, Add: { msgid: \"Add\", msgstr: [\"Add\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continue\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimating time left\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Existing version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"If you select both versions, the copied file will have a number added to its name.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Last modified date unknown\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"New version\"] }, paused: { msgid: \"paused\", msgstr: [\"paused\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Preview image\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Select all checkboxes\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Select all existing files\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Select all new files\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Skip this file\", \"Skip {count} files\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unknown size\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Upload cancelled\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload files\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Which files do you want to keep?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"You need to select at least one version of each file to continue.\"] } } } } }, { locale: \"eo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Julio C. Ortega, 2024\", \"Language-Team\": \"Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nFranciscoFJ <dev-ooo@satel-sa.com>, 2023\nNext Cloud <nextcloud.translator.es@cgj.es>, 2023\nJulio C. Ortega, 2024\n` }, msgstr: [`Last-Translator: Julio C. Ortega, 2024\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} archivo en conflicto\", \"{count} archivos en conflicto\", \"{count} archivos en conflicto\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} archivo en conflicto en {dirname}\", \"{count} archivos en conflicto en {dirname}\", \"{count} archivos en conflicto en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si selecciona ambas versiones, al archivo copiado se le añadirá un número en el nombre.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Última fecha de modificación desconocida\"] }, New: { msgid: \"New\", msgstr: [\"Nuevo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nueva versión\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Previsualizar imagen\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Seleccionar todas las casillas de verificación\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleccionar todos los archivos existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleccionar todos los archivos nuevos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Saltar este archivo\", \"Saltar {count} archivos\", \"Saltar {count} archivos\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamaño desconocido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Subida cancelada\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progreso de la subida\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"¿Qué archivos desea conservar?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Debe seleccionar al menos una versión de cada archivo para continuar.\"] } } } } }, { locale: \"es_419\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_419\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_419\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_AR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matias Iglesias, 2022\", \"Language-Team\": \"Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_AR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatias Iglesias, 2022\n` }, msgstr: [`Last-Translator: Matias Iglesias, 2022\nLanguage-Team: Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_AR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Añadir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_CL\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CL\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CL\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_DO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_DO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_DO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_EC\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_EC\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_EC\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_GT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_GT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_GT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_HN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_HN\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_HN\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_MX\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_MX\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nLuis Francisco Castro, 2022\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_MX\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"cancelar las cargas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"en pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"cargar archivos\"] } } } } }, { locale: \"es_NI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_NI\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_NI\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PA\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PA\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PE\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PE\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_SV\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_SV\", \"Plural-Forms\": \"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_SV\nPlural-Forms: nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_UY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_UY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_UY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"et_EE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Taavo Roos, 2023\", \"Language-Team\": \"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"et_EE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMait R, 2022\nTaavo Roos, 2023\n` }, msgstr: [`Last-Translator: Taavo Roos, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: et_EE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} jäänud sekundid\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} aega jäänud\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"jäänud mõni sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisa\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Tühista üleslaadimine\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hinnanguline järelejäänud aeg\"] }, paused: { msgid: \"paused\", msgstr: [\"pausil\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lae failid üles\"] } } } } }, { locale: \"eu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\", \"Language-Team\": \"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nUnai Tolosa Pontesta <utolosa002@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundo geratzen dira\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} geratzen da\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"segundo batzuk geratzen dira\"] }, Add: { msgid: \"Add\", msgstr: [\"Gehitu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ezeztatu igoerak\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"kalkulatutako geratzen den denbora\"] }, paused: { msgid: \"paused\", msgstr: [\"geldituta\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Igo fitxategiak\"] } } } } }, { locale: \"fa\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Fatemeh Komeily, 2023\", \"Language-Team\": \"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fa\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nFatemeh Komeily, 2023\n` }, msgstr: [`Last-Translator: Fatemeh Komeily, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fa\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"ثانیه های باقی مانده\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"باقی مانده\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"چند ثانیه مانده\"] }, Add: { msgid: \"Add\", msgstr: [\"اضافه کردن\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"کنسل کردن فایل های اپلود شده\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تخمین زمان باقی مانده\"] }, paused: { msgid: \"paused\", msgstr: [\"مکث کردن\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"بارگذاری فایل ها\"] } } } } }, { locale: \"fi_FI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\", \"Language-Team\": \"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fi_FI\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJiri Grönroos <jiri.gronroos@iki.fi>, 2022\n` }, msgstr: [`Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekuntia jäljellä\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} jäljellä\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"muutama sekunti jäljellä\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisää\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Peruuta lähetykset\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"arvioidaan jäljellä olevaa aikaa\"] }, paused: { msgid: \"paused\", msgstr: [\"keskeytetty\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lähetä tiedostoja\"] } } } } }, { locale: \"fo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"fr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"jed boulahya, 2024\", \"Language-Team\": \"French (https://app.transifex.com/nextcloud/teams/64236/fr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fr\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nBenoit Pruneau, 2024\njed boulahya, 2024\n` }, msgstr: [`Last-Translator: jed boulahya, 2024\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} fichier en conflit\", \"{count} fichiers en conflit\", \"{count} fichiers en conflit\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} fichier en conflit dans {dirname}\", \"{count} fichiers en conflit dans {dirname}\", \"{count} fichiers en conflit dans {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondes restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restant\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quelques secondes restantes\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Annuler\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Annuler l'opération entière\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuler les envois\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuer\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimation du temps restant\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Version existante\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si vous sélectionnez les deux versions, le fichier copié aura un numéro ajouté àname.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Date de la dernière modification est inconnue\"] }, New: { msgid: \"New\", msgstr: [\"Nouveau\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nouvelle version\"] }, paused: { msgid: \"paused\", msgstr: [\"en pause\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Aperçu de l'image\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Sélectionner toutes les cases à cocher\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Sélectionner tous les fichiers existants\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Sélectionner tous les nouveaux fichiers\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Ignorer ce fichier\", \"Ignorer {count} fichiers\", \"Ignorer {count} fichiers\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Taille inconnue\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\" annulé\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Téléchargement des fichiers\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progression du téléchargement\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Lorsqu'un dossier entrant est sélectionné, tous les fichiers en conflit qu'il contient seront également écrasés.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quels fichiers souhaitez-vous conserver ?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Vous devez sélectionner au moins une version de chaque fichier pour continuer.\"] } } } } }, { locale: \"gd\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gd\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gd\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"gl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\", \"Language-Team\": \"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nNacho <nacho.vfranco@gmail.com>, 2023\nMiguel Anxo Bouzada <mbouzada@gmail.com>, 2023\n` }, msgstr: [`Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} conflito de ficheiros\", \"{count} conflitos de ficheiros\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} conflito de ficheiros en {dirname}\", \"{count} conflitos de ficheiros en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltan {seconds} segundos\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"falta {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltan uns segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envíos\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calculando canto tempo falta\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se selecciona ambas as versións, o ficheiro copiado terá un número engadido ao seu nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Data da última modificación descoñecida\"] }, New: { msgid: \"New\", msgstr: [\"Nova\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nova versión\"] }, paused: { msgid: \"paused\", msgstr: [\"detido\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vista previa da imaxe\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marcar todas as caixas de selección\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleccionar todos os ficheiros existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleccionar todos os ficheiros novos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Omita este ficheiro\", \"Omitir {count} ficheiros\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamaño descoñecido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Envío cancelado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progreso do envío\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Que ficheiros quere conservar?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Debe seleccionar polo menos unha versión de cada ficheiro para continuar.\"] } } } } }, { locale: \"he\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"he\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hi_IN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hi_IN\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hi_IN\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hr\", \"Plural-Forms\": \"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hr\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hsb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hsb\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hsb\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu_HU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Balázs Úr, 2022\", \"Language-Team\": \"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu_HU\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBalázs Meskó <meskobalazs@mailbox.org>, 2022\nBalázs Úr, 2022\n` }, msgstr: [`Last-Translator: Balázs Úr, 2022\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{} másodperc van hátra\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} van hátra\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"pár másodperc van hátra\"] }, Add: { msgid: \"Add\", msgstr: [\"Hozzáadás\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Feltöltések megszakítása\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hátralévő idő becslése\"] }, paused: { msgid: \"paused\", msgstr: [\"szüneteltetve\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Fájlok feltöltése\"] } } } } }, { locale: \"hy\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hy\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hy\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ia\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ia\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ia\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"id\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Linerly <linerly@proton.me>, 2023\", \"Language-Team\": \"Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"id\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nEmpty Slot Filler, 2023\nLinerly <linerly@proton.me>, 2023\n` }, msgstr: [`Last-Translator: Linerly <linerly@proton.me>, 2023\nLanguage-Team: Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: id\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} berkas berkonflik\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} berkas berkonflik dalam {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} detik tersisa\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} tersisa\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"tinggal sebentar lagi\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Batalkan unggahan\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Lanjutkan\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"memperkirakan waktu yang tersisa\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versi yang ada\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Jika Anda memilih kedua versi, nama berkas yang disalin akan ditambahi angka.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Tanggal perubahan terakhir tidak diketahui\"] }, New: { msgid: \"New\", msgstr: [\"Baru\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Versi baru\"] }, paused: { msgid: \"paused\", msgstr: [\"dijeda\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Gambar pratinjau\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Pilih semua kotak centang\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Pilih semua berkas yang ada\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Pilih semua berkas baru\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Lewati {count} berkas\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukuran tidak diketahui\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Unggahan dibatalkan\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Unggah berkas\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Berkas mana yang Anda ingin tetap simpan?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Anda harus memilih setidaknya satu versi dari masing-masing berkas untuk melanjutkan.\"] } } } } }, { locale: \"ig\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ig\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ig\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"is\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Sveinn í Felli <sv1@fellsnet.is>, 2023\", \"Language-Team\": \"Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"is\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nSveinn í Felli <sv1@fellsnet.is>, 2023\n` }, msgstr: [`Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2023\nLanguage-Team: Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} árekstur skráa\", \"{count} árekstrar skráa\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} árekstur skráa í {dirname}\", \"{count} árekstrar skráa í {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekúndur eftir\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} eftir\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"nokkrar sekúndur eftir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hætta við innsendingar\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Halda áfram\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"áætla tíma sem eftir er\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Fyrirliggjandi útgáfa\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Ef þú velur báðar útgáfur, þá mun verða bætt tölustaf aftan við heiti afrituðu skrárinnar.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Síðasta breytingadagsetning er óþekkt\"] }, New: { msgid: \"New\", msgstr: [\"Nýtt\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ný útgáfa\"] }, paused: { msgid: \"paused\", msgstr: [\"í bið\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forskoðun myndar\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Velja gátreiti\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Velja allar fyrirliggjandi skrár\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Velja allar nýjar skrár\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Sleppa þessari skrá\", \"Sleppa {count} skrám\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Óþekkt stærð\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hætt við innsendingu\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Senda inn skrár\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvaða skrám vilt þú vilt halda eftir?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Þú verður að velja að minnsta kosti eina útgáfu af hverri skrá til að halda áfram.\"] } } } } }, { locale: \"it\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Random_R, 2023\", \"Language-Team\": \"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nLep Lep, 2023\nRandom_R, 2023\n` }, msgstr: [`Last-Translator: Random_R, 2023\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file in conflitto\", \"{count} file in conflitto\", \"{count} file in conflitto\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file in conflitto in {dirname}\", \"{count} file in conflitto in {dirname}\", \"{count} file in conflitto in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondi rimanenti \"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} rimanente\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alcuni secondi rimanenti\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annulla i caricamenti\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continua\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calcolo il tempo rimanente\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versione esistente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se selezioni entrambe le versioni, nel nome del file copiato verrà aggiunto un numero \"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Ultima modifica sconosciuta\"] }, New: { msgid: \"New\", msgstr: [\"Nuovo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nuova versione\"] }, paused: { msgid: \"paused\", msgstr: [\"pausa\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Anteprima immagine\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Seleziona tutte le caselle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleziona tutti i file esistenti\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleziona tutti i nuovi file\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Salta questo file\", \"Salta {count} file\", \"Salta {count} file\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Dimensione sconosciuta\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Caricamento cancellato\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Carica i file\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quali file vuoi mantenere?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Devi selezionare almeno una versione di ogni file per continuare\"] } } } } }, { locale: \"it_IT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it_IT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it_IT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ja_JP\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"かたかめ, 2022\", \"Language-Team\": \"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ja_JP\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nT.S, 2022\nかたかめ, 2022\n` }, msgstr: [`Last-Translator: かたかめ, 2022\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"残り {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"残り {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"残り数秒\"] }, Add: { msgid: \"Add\", msgstr: [\"追加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"アップロードをキャンセル\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"概算残り時間\"] }, paused: { msgid: \"paused\", msgstr: [\"一時停止中\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"ファイルをアップデート\"] } } } } }, { locale: \"ka\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ka_GE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka_GE\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka_GE\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kab\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ZiriSut, 2023\", \"Language-Team\": \"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kab\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nZiriSut, 2023\n` }, msgstr: [`Last-Translator: ZiriSut, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kab\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} tesdatin i d-yeqqimen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} i d-yeqqimen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"qqiment-d kra n tesdatin kan\"] }, Add: { msgid: \"Add\", msgstr: [\"Rnu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Sefsex asali\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"asizel n wakud i d-yeqqimen\"] }, paused: { msgid: \"paused\", msgstr: [\"yeḥbes\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Sali-d ifuyla\"] } } } } }, { locale: \"kk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kk\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kk\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"km\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"km\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: km\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kn\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kn\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ko\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Brandon Han, 2024\", \"Language-Team\": \"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ko\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nhosun Lee, 2023\nBrandon Han, 2024\n` }, msgstr: [`Last-Translator: Brandon Han, 2024\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ko\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count}개의 파일이 충돌함\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname}에서 {count}개의 파일이 충돌함\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} 남음\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} 남음\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"곧 완료\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"업로드 취소\"] }, Continue: { msgid: \"Continue\", msgstr: [\"확인\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"남은 시간 계산\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"현재 버전\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"두 버전을 모두 선택할 경우, 복제된 파일 이름에 숫자가 추가됩니다.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"최근 수정일 알 수 없음\"] }, New: { msgid: \"New\", msgstr: [\"새로 만들기\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"새 버전\"] }, paused: { msgid: \"paused\", msgstr: [\"일시정지됨\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"미리보기 이미지\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"모든 체크박스 선택\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"모든 파일 선택\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"모든 새 파일 선택\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"{count}개의 파일 넘기기\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"크기를 알 수 없음\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"업로드 취소됨\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"파일 업로드\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"업로드 진행도\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"어떤 파일을 보존하시겠습니까?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"계속하기 위해서는 한 파일에 최소 하나의 버전을 선택해야 합니다.\"] } } } } }, { locale: \"la\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"la\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: la\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lb\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lb\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lo\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lo\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lt_LT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lt_LT\", \"Plural-Forms\": \"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lv\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"mk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Сашко Тодоров <sasetodorov@gmail.com>, 2022\", \"Language-Team\": \"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mk\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nСашко Тодоров <sasetodorov@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Сашко Тодоров <sasetodorov@gmail.com>, 2022\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостануваат {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"преостанува {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"уште неколку секунди\"] }, Add: { msgid: \"Add\", msgstr: [\"Додади\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Прекини прикачување\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"приближно преостанато време\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Прикачување датотеки\"] } } } } }, { locale: \"mn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"BATKHUYAG Ganbold, 2023\", \"Language-Team\": \"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBATKHUYAG Ganbold, 2023\n` }, msgstr: [`Last-Translator: BATKHUYAG Ganbold, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} секунд үлдсэн\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} үлдсэн\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"хэдхэн секунд үлдсэн\"] }, Add: { msgid: \"Add\", msgstr: [\"Нэмэх\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Илгээлтийг цуцлах\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Үлдсэн хугацааг тооцоолж байна\"] }, paused: { msgid: \"paused\", msgstr: [\"түр зогсоосон\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Файл илгээх\"] } } } } }, { locale: \"mr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mr\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mr\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ms_MY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ms_MY\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ms_MY\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"my\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"my\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: my\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nb_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Syvert Fossdal, 2024\", \"Language-Team\": \"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nb_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nSyvert Fossdal, 2024\n` }, msgstr: [`Last-Translator: Syvert Fossdal, 2024\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file conflict\", \"{count} filkonflikter\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file conflict in {dirname}\", \"{count} filkonflikter i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder igjen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} igjen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noen få sekunder igjen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt opplastninger\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsett\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Estimerer tid igjen\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Gjeldende versjon\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Hvis du velger begge versjoner, vil den kopierte filen få et tall lagt til navnet.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Siste gang redigert ukjent\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny versjon\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forhåndsvis bilde\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Velg alle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Velg alle eksisterende filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Velg alle nye filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Skip this file\", \"Hopp over {count} filer\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukjent størrelse\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Opplasting avbrutt\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Last opp filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fremdrift, opplasting\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvilke filer vil du beholde?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du må velge minst en versjon av hver fil for å fortsette.\"] } } } } }, { locale: \"ne\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ne\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ne\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rico <rico-schwab@hotmail.com>, 2023\", \"Language-Team\": \"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRico <rico-schwab@hotmail.com>, 2023\n` }, msgstr: [`Last-Translator: Rico <rico-schwab@hotmail.com>, 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Nog {seconds} seconden\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{seconds} over\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Nog een paar seconden\"] }, Add: { msgid: \"Add\", msgstr: [\"Voeg toe\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Uploads annuleren\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Schatting van de resterende tijd\"] }, paused: { msgid: \"paused\", msgstr: [\"Gepauzeerd\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload bestanden\"] } } } } }, { locale: \"nn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nn_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"oc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"oc\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Valdnet, 2024\", \"Language-Team\": \"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pl\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nM H <haincu@o2.pl>, 2023\nValdnet, 2024\n` }, msgstr: [`Last-Translator: Valdnet, 2024\nLanguage-Team: Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"konflikt 1 pliku\", \"{count} konfliktów plików\", \"{count} konfliktów plików\", \"{count} konfliktów plików\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} konfliktowy plik w {dirname}\", \"{count} konfliktowych plików w {dirname}\", \"{count} konfliktowych plików w {dirname}\", \"{count} konfliktowych plików w {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Pozostało {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Pozostało {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Pozostało kilka sekund\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anuluj wysyłanie\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Kontynuuj\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Szacowanie pozostałego czasu\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Istniejąca wersja\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Jeżeli wybierzesz obie wersje to do nazw skopiowanych plików zostanie dodany numer\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Nieznana data ostatniej modyfikacji\"] }, New: { msgid: \"New\", msgstr: [\"Nowy\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nowa wersja\"] }, paused: { msgid: \"paused\", msgstr: [\"Wstrzymane\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Podgląd obrazu\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Zaznacz wszystkie boxy\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Zaznacz wszystkie istniejące pliki\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Zaznacz wszystkie nowe pliki\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Pomiń 1 plik\", \"Pomiń {count} plików\", \"Pomiń {count} plików\", \"Pomiń {count} plików\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Nieznany rozmiar\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Anulowano wysyłanie\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Wyślij pliki\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Postęp wysyłania\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Które pliki chcesz zachować\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Aby kontynuować, musisz wybrać co najmniej jedną wersję każdego pliku.\"] } } } } }, { locale: \"ps\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ps\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ps\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pt_BR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\", \"Language-Team\": \"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_BR\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nLeonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\n` }, msgstr: [`Last-Translator: Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} arquivos em conflito\", \"{count} arquivos em conflito\", \"{count} arquivos em conflito\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} conflitos de arquivo em {dirname}\", \"{count} conflitos de arquivo em {dirname}\", \"{count} conflitos de arquivo em {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alguns segundos restantes\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Cancelar\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Cancelar a operação inteira\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tempo restante\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versão existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se você selecionar ambas as versões, o arquivo copiado terá um número adicionado ao seu nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Data da última modificação desconhecida\"] }, New: { msgid: \"New\", msgstr: [\"Novo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nova versão\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Visualizar imagem\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marque todas as caixas de seleção\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Selecione todos os arquivos existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Selecione todos os novos arquivos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Ignorar {count} arquivos\", \"Ignorar {count} arquivos\", \"Ignorar {count} arquivos\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamanho desconhecido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Envio cancelado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar arquivos\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Envio em progresso\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Quando uma pasta é selecionada, quaisquer arquivos dentro dela também serão sobrescritos.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quais arquivos você deseja manter?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Você precisa selecionar pelo menos uma versão de cada arquivo para continuar.\"] } } } } }, { locale: \"pt_PT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Manuela Silva <mmsrs@sky.com>, 2022\", \"Language-Team\": \"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_PT\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nManuela Silva <mmsrs@sky.com>, 2022\n` }, msgstr: [`Last-Translator: Manuela Silva <mmsrs@sky.com>, 2022\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltam {seconds} segundo(s)\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"faltam {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltam uns segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Adicionar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envios\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"tempo em falta estimado\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] } } } } }, { locale: \"ro\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\", \"Language-Team\": \"Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ro\", \"Plural-Forms\": \"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMădălin Vasiliu <contact@madalinvasiliu.com>, 2022\n` }, msgstr: [`Last-Translator: Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\nLanguage-Team: Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ro\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secunde rămase\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} rămas\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"câteva secunde rămase\"] }, Add: { msgid: \"Add\", msgstr: [\"Adaugă\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anulați încărcările\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimarea timpului rămas\"] }, paused: { msgid: \"paused\", msgstr: [\"pus pe pauză\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Încarcă fișiere\"] } } } } }, { locale: \"ru\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Александр, 2023\", \"Language-Team\": \"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMax Smith <sevinfolds@gmail.com>, 2023\nАлександр, 2023\n` }, msgstr: [`Last-Translator: Александр, 2023\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"конфликт {count} файла\", \"конфликт {count} файлов\", \"конфликт {count} файлов\", \"конфликт {count} файлов\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"конфликт {count} файла в {dirname}\", \"конфликт {count} файлов в {dirname}\", \"конфликт {count} файлов в {dirname}\", \"конфликт {count} файлов в {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"осталось {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"осталось {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"осталось несколько секунд\"] }, Add: { msgid: \"Add\", msgstr: [\"Добавить\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Отменить загрузки\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Продолжить\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"оценка оставшегося времени\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Текущая версия\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Если вы выберете обе версии, к имени скопированного файла будет добавлен номер.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Дата последнего изменения неизвестна\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Новая версия\"] }, paused: { msgid: \"paused\", msgstr: [\"приостановлено\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Предварительный просмотр\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Установить все флажки\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Выбрать все существующие файлы\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Выбрать все новые файлы\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Пропустить файл\", \"Пропустить {count} файла\", \"Пропустить {count} файлов\", \"Пропустить {count} файлов\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Неизвестный размер\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Загрузка отменена\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Загрузка файлов\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Какие файлы вы хотите сохранить?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Для продолжения вам нужно выбрать по крайней мере одну версию каждого файла.\"] } } } } }, { locale: \"ru_RU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru_RU\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru_RU\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sc\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sc\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sk_SK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sk_SK\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matej Urbančič <>, 2022\", \"Language-Team\": \"Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatej Urbančič <>, 2022\n` }, msgstr: [`Last-Translator: Matej Urbančič <>, 2022\nLanguage-Team: Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"še {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"še {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"še nekaj sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Dodaj\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Prekliči pošiljanje\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"ocenjen čas do konca\"] }, paused: { msgid: \"paused\", msgstr: [\"v premoru\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Pošlji datoteke\"] } } } } }, { locale: \"sl_SI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl_SI\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl_SI\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sq\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sq\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sq\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Иван Пешић, 2023\", \"Language-Team\": \"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nИван Пешић, 2023\n` }, msgstr: [`Last-Translator: Иван Пешић, 2023\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} фајл конфликт\", \"{count} фајл конфликта\", \"{count} фајл конфликта\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} фајл конфликт у {dirname}\", \"{count} фајл конфликта у {dirname}\", \"{count} фајл конфликта у {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостало је {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} преостало\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"преостало је неколико секунди\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Обустави отпремања\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Настави\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"процена преосталог времена\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Постојећа верзија\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Ако изаберете обе верзије, на име копираног фајла ће се додати број.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Није познат датум последње измене\"] }, New: { msgid: \"New\", msgstr: [\"Ново\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Нова верзија\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Слика прегледа\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Штиклирај сва поља за штиклирање\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Изабери све постојеће фајлове\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Изабери све нове фајлове\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Прескочи овај фајл\", \"Прескочи {count} фајла\", \"Прескочи {count} фајлова\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Непозната величина\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Отпремање је отказано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Отпреми фајлове\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Напредак отпремања\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Које фајлове желите да задржите?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Морате да изаберете барем једну верзију сваког фајла да наставите.\"] } } } } }, { locale: \"sr@latin\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr@latin\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr@latin\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Magnus Höglund, 2024\", \"Language-Team\": \"Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sv\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMagnus Höglund, 2024\n` }, msgstr: [`Last-Translator: Magnus Höglund, 2024\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} filkonflikt\", \"{count} filkonflikter\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} filkonflikt i {dirname}\", \"{count} filkonflikter i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder kvarstår\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} kvarstår\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"några sekunder kvar\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Avbryt\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Avbryt hela operationen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt uppladdningar\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsätt\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"uppskattar kvarstående tid\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Nuvarande version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Om du väljer båda versionerna kommer den kopierade filen att få ett nummer tillagt  i namnet.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Senaste ändringsdatum okänt\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny version\"] }, paused: { msgid: \"paused\", msgstr: [\"pausad\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Förhandsgranska bild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Markera alla kryssrutor\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Välj alla befintliga filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Välj alla nya filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Hoppa över denna fil\", \"Hoppa över {count} filer\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Okänd storlek\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Uppladdningen avbröts\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Ladda upp filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Uppladdningsförlopp\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"När en inkommande mapp väljs skrivs även alla konfliktande filer i den över.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Vilka filer vill du behålla?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du måste välja minst en version av varje fil för att fortsätta.\"] } } } } }, { locale: \"sw\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sw\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sw\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th_TH\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Phongpanot Phairat <ppnplus@protonmail.com>, 2022\", \"Language-Team\": \"Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th_TH\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPhongpanot Phairat <ppnplus@protonmail.com>, 2022\n` }, msgstr: [`Last-Translator: Phongpanot Phairat <ppnplus@protonmail.com>, 2022\nLanguage-Team: Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th_TH\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"เหลืออีก {seconds} วินาที\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"เหลืออีก {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"เหลืออีกไม่กี่วินาที\"] }, Add: { msgid: \"Add\", msgstr: [\"เพิ่ม\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"ยกเลิกการอัปโหลด\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"กำลังคำนวณเวลาที่เหลือ\"] }, paused: { msgid: \"paused\", msgstr: [\"หยุดชั่วคราว\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"อัปโหลดไฟล์\"] } } } } }, { locale: \"tk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tk\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tk\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"tr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Kaya Zeren <kayazeren@gmail.com>, 2024\", \"Language-Team\": \"Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tr\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nKaya Zeren <kayazeren@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: Kaya Zeren <kayazeren@gmail.com>, 2024\nLanguage-Team: Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} dosya çakışması var\", \"{count} dosya çakışması var\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} klasöründe {count} dosya çakışması var\", \"{dirname} klasöründe {count} dosya çakışması var\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniye kaldı\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} kaldı\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir kaç saniye kaldı\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"İptal\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Tüm işlemi iptal et\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yüklemeleri iptal et\"] }, Continue: { msgid: \"Continue\", msgstr: [\"İlerle\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"öngörülen kalan süre\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Var olan sürüm\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"İki sürümü de seçerseniz, kopyalanan dosyanın adına bir sayı eklenir.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Son değiştirilme tarihi bilinmiyor\"] }, New: { msgid: \"New\", msgstr: [\"Yeni\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Yeni sürüm\"] }, paused: { msgid: \"paused\", msgstr: [\"duraklatıldı\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Görsel ön izlemesi\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Tüm kutuları işaretle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Tüm var olan dosyaları seç\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Tüm yeni dosyaları seç\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Bu dosyayı atla\", \"{count} dosyayı atla\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Boyut bilinmiyor\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Yükleme iptal edildi\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dosyaları yükle\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Yükleme ilerlemesi\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Bir gelen klasör seçildiğinde, içindeki çakışan dosyaların da üzerine yazılır.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hangi dosyaları tutmak istiyorsunuz?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"İlerlemek için her dosyanın en az bir sürümünü seçmelisiniz.\"] } } } } }, { locale: \"ug\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ug\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ug\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"O St <oleksiy.stasevych@gmail.com>, 2024\", \"Language-Team\": \"Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uk\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nO St <oleksiy.stasevych@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: O St <oleksiy.stasevych@gmail.com>, 2024\nLanguage-Team: Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} конфліктний файл\", \"{count} конфліктних файли\", \"{count} конфліктних файлів\", \"{count} конфліктних файлів\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} конфліктний файл у каталозі {dirname}\", \"{count} конфліктних файли у каталозі {dirname}\", \"{count} конфліктних файлів у каталозі {dirname}\", \"{count} конфліктних файлів у каталозі {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Залишилося {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Залишилося {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"залишилося кілька секунд\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Скасувати\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Скасувати операцію повністю\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Скасувати завантаження\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Продовжити\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"оцінка часу, що залишився\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Присутня версія\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Якщо ви виберете обидві версії, то буде створено копію файлу, до назви якої буде додано цифру.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Дата останньої зміни невідома\"] }, New: { msgid: \"New\", msgstr: [\"Нове\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Нова версія\"] }, paused: { msgid: \"paused\", msgstr: [\"призупинено\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Попередній перегляд\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Вибрати все\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Вибрати усі присутні файли\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Вибрати усі нові файли\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Пропустити файл\", \"Пропустити {count} файли\", \"Пропустити {count} файлів\", \"Пропустити {count} файлів\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Невідомий розмір\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Завантаження скасовано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Завантажити файли\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Поступ завантаження\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Усі конфліктні файли у вибраному каталозі призначення буде перезаписано поверх.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Які файли залишити?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Для продовження потрібно вибрати принаймні одну версію для кожного файлу.\"] } } } } }, { locale: \"ur_PK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ur_PK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ur_PK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uz\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uz\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uz\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"vi\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Tung DangQuang, 2023\", \"Language-Team\": \"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"vi\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nTung DangQuang, 2023\n` }, msgstr: [`Last-Translator: Tung DangQuang, 2023\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: vi\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Tập tin xung đột\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} tập tin lỗi trong {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Còn {second} giây\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Còn lại {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Còn lại một vài giây\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Huỷ tải lên\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Tiếp Tục\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Thời gian còn lại dự kiến\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Phiên Bản Hiện Tại\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Nếu bạn chọn cả hai phiên bản, tệp được sao chép sẽ có thêm một số vào tên của nó.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Ngày sửa dổi lần cuối không xác định\"] }, New: { msgid: \"New\", msgstr: [\"Tạo Mới\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Phiên Bản Mới\"] }, paused: { msgid: \"paused\", msgstr: [\"đã tạm dừng\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Xem Trước Ảnh\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Chọn tất cả hộp checkbox\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Chọn tất cả các tập tin có sẵn\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Chọn tất cả các tập tin mới\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Bỏ Qua {count} tập tin\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Không rõ dung lượng\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Dừng Tải Lên\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Tập tin tải lên\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Đang Tải Lên\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Bạn muốn giữ tập tin nào?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Bạn cần chọn ít nhất một phiên bản tập tin mới có thể tiếp tục\"] } } } } }, { locale: \"zh_CN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Hongbo Chen, 2023\", \"Language-Team\": \"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_CN\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nHongbo Chen, 2023\n` }, msgstr: [`Last-Translator: Hongbo Chen, 2023\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count}文件冲突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"在{dirname}目录下有{count}个文件冲突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩余 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩余 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"还剩几秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上传\"] }, Continue: { msgid: \"Continue\", msgstr: [\"继续\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估计剩余时间\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"版本已存在\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"如果选择所有的版本,新增版本的文件名为原文件名加数字\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"文件最后修改日期未知\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本\"] }, paused: { msgid: \"paused\", msgstr: [\"已暂停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"图片预览\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"选择所有的选择框\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"选择所有存在的文件\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"选择所有的新文件\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"跳过{count}个文件\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"文件大小未知\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"取消上传\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上传文件\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"你要保留哪些文件?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"每个文件至少选择一个版本\"] } } } } }, { locale: \"zh_HK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Café Tango, 2023\", \"Language-Team\": \"Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_HK\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nCafé Tango, 2023\n` }, msgstr: [`Last-Translator: Café Tango, 2023\nLanguage-Team: Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_HK\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} 個檔案衝突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} 中有 {count} 個檔案衝突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, Continue: { msgid: \"Continue\", msgstr: [\"繼續\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"既有版本\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"若您選取兩個版本,複製的檔案的名稱將會新增編號。\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"最後修改日期不詳\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本 \"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"預覽圖片\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"選取所有核取方塊\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"選取所有既有檔案\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"選取所有新檔案\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"略過 {count} 個檔案\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"大小不詳\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"已取消上傳\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"您想保留哪些檔案?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"您必須為每個檔案都至少選取一個版本以繼續。\"] } } } } }, { locale: \"zh_TW\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"黃柏諺 <s8321414@gmail.com>, 2024\", \"Language-Team\": \"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_TW\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\n黃柏諺 <s8321414@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2024\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} 個檔案衝突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} 中有 {count} 個檔案衝突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"取消\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"取消整個操作\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, Continue: { msgid: \"Continue\", msgstr: [\"繼續\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"既有版本\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"若您選取兩個版本,複製的檔案的名稱將會新增編號。\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"最後修改日期未知\"] }, New: { msgid: \"New\", msgstr: [\"新增\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本\"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"預覽圖片\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"選取所有核取方塊\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"選取所有既有檔案\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"選取所有新檔案\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"略過 {count} 檔案\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"未知大小\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"已取消上傳\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"上傳進度\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"選取傳入資料夾後,其中任何的衝突檔案都會被覆寫。\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"您想保留哪些檔案?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"您必須為每個檔案都至少選取一個版本以繼續。\"] } } } } }].map((e) => R.addTranslation(e.locale, e.json));\nconst C = R.build(), Gs = C.ngettext.bind(C), u = C.gettext.bind(C), Ls = E.extend({\n  name: \"UploadPicker\",\n  components: {\n    Cancel: ms,\n    NcActionButton: J,\n    NcActions: Q,\n    NcButton: Z,\n    NcIconSvgWrapper: X,\n    NcProgressBar: ss,\n    Plus: fs,\n    Upload: xs\n  },\n  props: {\n    accept: {\n      type: Array,\n      default: null\n    },\n    disabled: {\n      type: Boolean,\n      default: !1\n    },\n    multiple: {\n      type: Boolean,\n      default: !1\n    },\n    destination: {\n      type: z,\n      default: void 0\n    },\n    /**\n     * List of file present in the destination folder\n     */\n    content: {\n      type: Array,\n      default: () => []\n    },\n    forbiddenCharacters: {\n      type: Array,\n      default: () => []\n    }\n  },\n  data() {\n    return {\n      addLabel: u(\"New\"),\n      cancelLabel: u(\"Cancel uploads\"),\n      uploadLabel: u(\"Upload files\"),\n      progressLabel: u(\"Upload progress\"),\n      progressTimeId: `nc-uploader-progress-${Math.random().toString(36).slice(7)}`,\n      eta: null,\n      timeLeft: \"\",\n      newFileMenuEntries: [],\n      uploadManager: M()\n    };\n  },\n  computed: {\n    totalQueueSize() {\n      return this.uploadManager.info?.size || 0;\n    },\n    uploadedQueueSize() {\n      return this.uploadManager.info?.progress || 0;\n    },\n    progress() {\n      return Math.round(this.uploadedQueueSize / this.totalQueueSize * 100) || 0;\n    },\n    queue() {\n      return this.uploadManager.queue;\n    },\n    hasFailure() {\n      return this.queue?.filter((e) => e.status === c.FAILED).length !== 0;\n    },\n    isUploading() {\n      return this.queue?.length > 0;\n    },\n    isAssembling() {\n      return this.queue?.filter((e) => e.status === c.ASSEMBLING).length !== 0;\n    },\n    isPaused() {\n      return this.uploadManager.info?.status === I.PAUSED;\n    },\n    // Hide the button text if we're uploading\n    buttonName() {\n      if (!this.isUploading)\n        return this.addLabel;\n    }\n  },\n  watch: {\n    destination(e) {\n      this.setDestination(e);\n    },\n    totalQueueSize(e) {\n      this.eta = K({ min: 0, max: e }), this.updateStatus();\n    },\n    uploadedQueueSize(e) {\n      this.eta?.report?.(e), this.updateStatus();\n    },\n    isPaused(e) {\n      e ? this.$emit(\"paused\", this.queue) : this.$emit(\"resumed\", this.queue);\n    }\n  },\n  beforeMount() {\n    this.destination && this.setDestination(this.destination), this.uploadManager.addNotifier(this.onUploadCompletion), g.debug(\"UploadPicker initialised\");\n  },\n  methods: {\n    /**\n     * Trigger file picker\n     */\n    onClick() {\n      this.$refs.input.click();\n    },\n    /**\n     * Start uploading\n     */\n    async onPick() {\n      let e = [...this.$refs.input.files];\n      if (Us(e, this.content)) {\n        const s = e.filter((n) => this.content.find((i) => i.basename === n.name)).filter(Boolean), t = e.filter((n) => !s.includes(n));\n        try {\n          const { selected: n, renamed: i } = await ys(this.destination.basename, s, this.content);\n          e = [...t, ...n, ...i];\n        } catch {\n          P(u(\"Upload cancelled\"));\n          return;\n        }\n      }\n      e.forEach((s) => {\n        const n = (this.forbiddenCharacters || []).find((i) => s.name.includes(i));\n        n ? P(u(`\"${n}\" is not allowed inside a file name.`)) : this.uploadManager.upload(s.name, s).catch(() => {\n        });\n      }), this.$refs.form.reset();\n    },\n    /**\n     * Cancel ongoing queue\n     */\n    onCancel() {\n      this.uploadManager.queue.forEach((e) => {\n        e.cancel();\n      }), this.$refs.form.reset();\n    },\n    updateStatus() {\n      if (this.isPaused) {\n        this.timeLeft = u(\"paused\");\n        return;\n      }\n      const e = Math.round(this.eta.estimate());\n      if (e === 1 / 0) {\n        this.timeLeft = u(\"estimating time left\");\n        return;\n      }\n      if (e < 10) {\n        this.timeLeft = u(\"a few seconds left\");\n        return;\n      }\n      if (e > 60) {\n        const s = /* @__PURE__ */ new Date(0);\n        s.setSeconds(e);\n        const t = s.toISOString().slice(11, 19);\n        this.timeLeft = u(\"{time} left\", { time: t });\n        return;\n      }\n      this.timeLeft = u(\"{seconds} seconds left\", { seconds: e });\n    },\n    setDestination(e) {\n      if (!this.destination) {\n        g.debug(\"Invalid destination\");\n        return;\n      }\n      this.uploadManager.destination = e, this.newFileMenuEntries = G(e);\n    },\n    onUploadCompletion(e) {\n      e.status === c.FAILED ? this.$emit(\"failed\", e) : this.$emit(\"uploaded\", e);\n    }\n  }\n});\nvar ks = function() {\n  var s = this, t = s._self._c;\n  return s._self._setupProxy, s.destination ? t(\"form\", { ref: \"form\", staticClass: \"upload-picker\", class: { \"upload-picker--uploading\": s.isUploading, \"upload-picker--paused\": s.isPaused }, attrs: { \"data-cy-upload-picker\": \"\" } }, [s.newFileMenuEntries && s.newFileMenuEntries.length === 0 ? t(\"NcButton\", { attrs: { disabled: s.disabled, \"data-cy-upload-picker-add\": \"\", type: \"secondary\" }, on: { click: s.onClick }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n    return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n  }, proxy: !0 }], null, !1, 2954875042) }, [s._v(\" \" + s._s(s.buttonName) + \" \")]) : t(\"NcActions\", { attrs: { \"menu-name\": s.buttonName, \"menu-title\": s.addLabel, type: \"secondary\" }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n    return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n  }, proxy: !0 }], null, !1, 2954875042) }, [t(\"NcActionButton\", { attrs: { \"data-cy-upload-picker-add\": \"\", \"close-after-click\": !0 }, on: { click: s.onClick }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n    return [t(\"Upload\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n  }, proxy: !0 }], null, !1, 3606034491) }, [s._v(\" \" + s._s(s.uploadLabel) + \" \")]), s._l(s.newFileMenuEntries, function(n) {\n    return t(\"NcActionButton\", { key: n.id, staticClass: \"upload-picker__menu-entry\", attrs: { icon: n.iconClass, \"close-after-click\": !0 }, on: { click: function(i) {\n      return n.handler(s.destination, s.content);\n    } }, scopedSlots: s._u([n.iconSvgInline ? { key: \"icon\", fn: function() {\n      return [t(\"NcIconSvgWrapper\", { attrs: { svg: n.iconSvgInline } })];\n    }, proxy: !0 } : null], null, !0) }, [s._v(\" \" + s._s(n.displayName) + \" \")]);\n  })], 2), t(\"div\", { directives: [{ name: \"show\", rawName: \"v-show\", value: s.isUploading, expression: \"isUploading\" }], staticClass: \"upload-picker__progress\" }, [t(\"NcProgressBar\", { attrs: { \"aria-label\": s.progressLabel, \"aria-describedby\": s.progressTimeId, error: s.hasFailure, value: s.progress, size: \"medium\" } }), t(\"p\", { attrs: { id: s.progressTimeId } }, [s._v(\" \" + s._s(s.timeLeft) + \" \")])], 1), s.isUploading ? t(\"NcButton\", { staticClass: \"upload-picker__cancel\", attrs: { type: \"tertiary\", \"aria-label\": s.cancelLabel, \"data-cy-upload-picker-cancel\": \"\" }, on: { click: s.onCancel }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n    return [t(\"Cancel\", { attrs: { title: \"\", size: 20 } })];\n  }, proxy: !0 }], null, !1, 4076886712) }) : s._e(), t(\"input\", { directives: [{ name: \"show\", rawName: \"v-show\", value: !1, expression: \"false\" }], ref: \"input\", attrs: { type: \"file\", accept: s.accept?.join?.(\", \"), multiple: s.multiple, \"data-cy-upload-picker-input\": \"\" }, on: { change: s.onPick } })], 1) : s._e();\n}, vs = [], Cs = /* @__PURE__ */ y(\n  Ls,\n  ks,\n  vs,\n  !1,\n  null,\n  \"eca9500a\",\n  null,\n  null\n);\nconst Ys = Cs.exports;\nlet k = null;\nfunction M() {\n  const e = document.querySelector('input[name=\"isPublic\"][value=\"1\"]') !== null;\n  return k instanceof N || (k = new N(e)), k;\n}\nfunction Vs(e, s) {\n  const t = M();\n  return t.upload(e, s), t;\n}\nasync function ys(e, s, t) {\n  const n = $(() => import(\"./ConflictPicker-Bif6rCp6.mjs\"));\n  return new Promise((i, o) => {\n    const l = new E({\n      name: \"ConflictPickerRoot\",\n      render: (f) => f(n, {\n        props: {\n          dirname: e,\n          conflicts: s,\n          content: t\n        },\n        on: {\n          submit(r) {\n            i(r), l.$destroy(), l.$el?.parentNode?.removeChild(l.$el);\n          },\n          cancel(r) {\n            o(r ?? new Error(\"Canceled\")), l.$destroy(), l.$el?.parentNode?.removeChild(l.$el);\n          }\n        }\n      })\n    });\n    l.$mount(), document.body.appendChild(l.$el);\n  });\n}\nfunction Us(e, s) {\n  const t = s.map((i) => i.basename);\n  return e.filter((i) => {\n    const o = i instanceof File ? i.name : i.basename;\n    return t.indexOf(o) !== -1;\n  }).length > 0;\n}\nexport {\n  I as S,\n  Ys as U,\n  Gs as a,\n  ns as b,\n  c,\n  M as g,\n  Us as h,\n  g as l,\n  y as n,\n  ys as o,\n  u as t,\n  Vs as u\n};\n","import axios from './lib/axios.js';\n\n// This module is intended to unwrap Axios default export as named.\n// Keep top-level export same with static properties\n// so that it can keep same with es module or cjs\nconst {\n  Axios,\n  AxiosError,\n  CanceledError,\n  isCancel,\n  CancelToken,\n  VERSION,\n  all,\n  Cancel,\n  isAxiosError,\n  spread,\n  toFormData,\n  AxiosHeaders,\n  HttpStatusCode,\n  formToJSON,\n  getAdapter,\n  mergeConfig\n} = axios;\n\nexport {\n  axios as default,\n  Axios,\n  AxiosError,\n  CanceledError,\n  isCancel,\n  CancelToken,\n  VERSION,\n  all,\n  Cancel,\n  isAxiosError,\n  spread,\n  toFormData,\n  AxiosHeaders,\n  HttpStatusCode,\n  formToJSON,\n  getAdapter,\n  mergeConfig\n}\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = (chunkId) => {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = (chunkId) => {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \"-\" + chunkId + \".js?v=\" + {\"6075\":\"b0265ee919d9196a6424\",\"7560\":\"8bb59db6d769c5865c25\",\"8618\":\"d30d39583cd1936d2676\"}[chunkId] + \"\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = (module) => {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.j = 2882;","var scriptUrl;\nif (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + \"\";\nvar document = __webpack_require__.g.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript)\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t2882: 0\n};\n\n__webpack_require__.f.j = (chunkId, promises) => {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = (event) => {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunknextcloud\"] = self[\"webpackChunknextcloud\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [4208], () => (__webpack_require__(34898)))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["deferred","inProgress","dataWebpackPrefix","has","Object","prototype","hasOwnProperty","prefix","Events","EE","fn","context","once","this","addListener","emitter","event","TypeError","listener","evt","_events","push","_eventsCount","clearEvent","EventEmitter","create","__proto__","eventNames","events","name","names","call","slice","getOwnPropertySymbols","concat","listeners","handlers","i","l","length","ee","Array","listenerCount","emit","a1","a2","a3","a4","a5","args","len","arguments","removeListener","undefined","apply","j","on","removeAllListeners","off","prefixed","module","exports","pinia","createPinia","token","singleMatcher","RegExp","multiMatcher","decodeComponents","components","split","decodeURIComponent","join","left","right","decode","input","tokens","match","splitOnFirst","string","separator","separatorIndex","indexOf","includeKeys","object","predicate","result","isArray","key","descriptor","getOwnPropertyDescriptor","enumerable","defineProperty","Reflect","ownKeys","isNullOrUndefined","value","strictUriEncode","encodeURIComponent","replaceAll","x","charCodeAt","toString","toUpperCase","encodeFragmentIdentifier","Symbol","validateArrayFormatSeparator","encode","options","strict","encodedURI","replaceMap","exec","entries","keys","replace","customDecodeURIComponent","keysSorter","sort","a","b","Number","map","removeHash","hashStart","parseValue","parseNumbers","isNaN","trim","parseBooleans","toLowerCase","extract","queryStart","parse","query","arrayFormat","arrayFormatSeparator","formatter","accumulator","includes","isEncodedArray","newValue","item","test","arrayValue","flat","parserForArrayFormat","returnValue","parameter","parameter_","key2","value2","reduce","Boolean","stringify","shouldFilter","skipNull","skipEmptyString","index","keyValueSeparator","encoderForArrayFormat","objectCopy","filter","parseUrl","url","url_","hash","parseFragmentIdentifier","fragmentIdentifier","stringifyUrl","queryString","getHash","urlObjectForFragmentEncode","URL","pick","exclude","extend","encodeReserveRE","encodeReserveReplacer","c","commaRE","str","err","castQueryParamValue","String","parseQuery","res","forEach","param","parts","shift","val","stringifyQuery","obj","val2","trailingSlashRE","createRoute","record","location","redirectedFrom","router","clone","e","route","meta","path","params","fullPath","getFullPath","matched","formatMatch","freeze","START","unshift","parent","ref","_stringifyQuery","isSameRoute","onlyPath","isObjectEqual","aKeys","bKeys","every","aVal","bVal","handleRouteEntered","instances","instance","cbs","enteredCbs","i$1","_isBeingDestroyed","View","functional","props","type","default","render","_","children","data","routerView","h","$createElement","$route","cache","_routerViewCache","depth","inactive","_routerRoot","vnodeData","$vnode","keepAlive","_directInactive","_inactive","$parent","routerViewDepth","cachedData","cachedComponent","component","configProps","fillPropsinData","registerRouteInstance","vm","current","hook","prepatch","vnode","componentInstance","init","propsToPass","config","resolveProps","attrs","resolvePath","relative","base","append","firstChar","charAt","stack","pop","segments","segment","cleanPath","isarray","arr","pathToRegexp_1","pathToRegexp","groups","source","delimiter","optional","repeat","partial","asterisk","pattern","attachKeys","regexpToRegexp","flags","arrayToRegexp","tokensToRegExp","stringToRegexp","parse_1","tokensToFunction_1","tokensToFunction","tokensToRegExp_1","PATH_REGEXP","defaultDelimiter","m","escaped","offset","next","capture","group","modifier","escapeGroup","escapeString","substr","encodeURIComponentPretty","encodeURI","matches","opts","pretty","JSON","re","sensitive","end","endsWithDelimiter","compile","regexpCompileCache","fillParams","routeMsg","filler","pathMatch","normalizeLocation","raw","_normalized","params$1","rawPath","parsedPath","hashIndex","queryIndex","parsePath","basePath","extraQuery","_parseQuery","parsedQuery","resolveQuery","_Vue","noop","Link","to","required","tag","custom","exact","exactPath","activeClass","exactActiveClass","ariaCurrentValue","this$1$1","$router","resolve","href","classes","globalActiveClass","linkActiveClass","globalExactActiveClass","linkExactActiveClass","activeClassFallback","exactActiveClassFallback","compareTarget","target","queryIncludes","isIncludedRoute","handler","guardEvent","click","class","scopedSlot","$scopedSlots","$hasNormal","navigate","isActive","isExactActive","findAnchor","$slots","isStatic","aData","handler$1","event$1","aAttrs","metaKey","altKey","ctrlKey","shiftKey","defaultPrevented","button","currentTarget","getAttribute","preventDefault","child","inBrowser","window","createRouteMap","routes","oldPathList","oldPathMap","oldNameMap","parentRoute","pathList","pathMap","nameMap","addRouteRecord","splice","matchAs","pathToRegexpOptions","normalizedPath","normalizePath","caseSensitive","regex","compileRouteRegex","alias","redirect","beforeEnter","childMatchAs","aliases","aliasRoute","createMatcher","currentRoute","_createRoute","paramNames","record$1","matchRoute","originalRedirect","resolveRecordPath","aliasedMatch","aliasedRecord","addRoute","parentOrRoute","getRoutes","addRoutes","Time","performance","now","Date","genStateKey","toFixed","_key","getStateKey","setStateKey","positionStore","setupScroll","history","scrollRestoration","protocolAndPath","protocol","host","absolutePath","stateCopy","state","replaceState","addEventListener","handlePopState","removeEventListener","handleScroll","from","isPop","app","behavior","scrollBehavior","$nextTick","position","getScrollPosition","shouldScroll","then","scrollToPosition","catch","saveScrollPosition","pageXOffset","y","pageYOffset","isValidPosition","isNumber","normalizePosition","v","hashStartsWithNumberRE","isObject","selector","el","document","getElementById","querySelector","docRect","documentElement","getBoundingClientRect","elRect","top","getElementPosition","style","scrollTo","ua","supportsPushState","navigator","userAgent","pushState","NavigationFailureType","redirected","aborted","cancelled","duplicated","createNavigationCancelledError","createRouterError","message","error","Error","_isRouter","propertiesToLog","isError","isNavigationFailure","errorType","runQueue","queue","cb","step","flatMapComponents","flatten","hasSymbol","toStringTag","called","History","baseEl","normalizeBase","pending","ready","readyCbs","readyErrorCbs","errorCbs","extractGuards","records","bind","reverse","guards","def","guard","extractGuard","bindGuard","listen","onReady","errorCb","onError","transitionTo","onComplete","onAbort","prev","confirmTransition","updateRoute","ensureURL","afterHooks","abort","console","lastRouteIndex","lastCurrentIndex","max","Math","updated","activated","deactivated","resolveQueue","extractLeaveGuards","beforeHooks","extractUpdateHooks","hasAsync","cid","resolvedDef","__esModule","resolved","reject","reason","msg","comp","iterator","createNavigationAbortedError","createNavigationRedirectedError","enterGuards","bindEnterGuard","extractEnterGuards","resolveHooks","setupListeners","teardown","cleanupListener","HTML5History","_startLocation","getLocation","constructor","expectScroll","supportsScroll","handleRoutingEvent","go","n","fromRoute","getCurrentLocation","pathname","pathLowerCase","baseLowerCase","search","HashHistory","fallback","checkFallback","ensureSlash","replaceHash","eventType","pushHash","getUrl","AbstractHistory","targetIndex","VueRouter","apps","matcher","mode","prototypeAccessors","configurable","get","$once","routeOrError","handleInitialScroll","_route","beforeEach","registerHook","beforeResolve","afterEach","Promise","back","forward","getMatchedComponents","createHref","normalizedTo","defineProperties","VueRouter$1","list","install","Vue","installed","isDef","registerInstance","callVal","$options","_parentVnode","mixin","beforeCreate","_router","util","defineReactive","destroyed","strats","optionMergeStrategies","beforeRouteEnter","beforeRouteLeave","beforeRouteUpdate","created","version","START_LOCATION","use","Router","originalPush","generateUrl","view","emits","title","fillColor","size","_vm","_c","_self","_b","staticClass","$event","$emit","$attrs","_v","_s","_e","viewConfig","loadState","useViewConfigStore","store","defineStore","getters","getConfig","actions","onUpdate","update","axios","put","setSortingBy","toggleSortingDirection","newDirection","sorting_direction","viewConfigStore","_initialized","subscribe","_ref","getLoggerBuilder","setApp","detectUser","build","throttle","delay","callback","timeoutID","_ref$noTrailing","noTrailing","_ref$noLeading","noLeading","_ref$debounceMode","debounceMode","lastExec","clearExistingTimeout","clearTimeout","wrapper","_len","arguments_","self","elapsed","clear","setTimeout","cancel","_ref2$upcomingOnly","upcomingOnly","ChartPie","NcAppNavigationItem","NcProgressBar","loadingStorageStats","storageStats","computed","storageStatsTitle","_this$storageStats","_this$storageStats2","_this$storageStats3","usedQuotaByte","formatFileSize","used","quotaByte","quota","t","storageStatsTooltip","beforeMount","setInterval","throttleUpdateStorageStats","mounted","_this$storageStats4","_this$storageStats5","free","showStorageFullWarning","methods","debounceUpdateStorageStats","_ref$atBegin","atBegin","updateStorageStats","_response$data","_this$storageStats6","_response$data$data","_response$data$data2","response","logger","showError","translate","styleTagTransform","setAttributes","insert","domAPI","insertStyleElement","locals","stopPropagation","slot","min","Function","$el","appendChild","userConfig","show_hidden","crop_image_previews","sort_favorites_first","sort_folders_first","grid_view","useUserConfigStore","userConfigStore","Clipboard","NcAppSettingsDialog","NcAppSettingsSection","NcCheckboxRadioSwitch","NcInputField","Setting","open","setup","_window$OCA","_getCurrentUser","_loadState$enable_non","settings","OCA","Files","Settings","webdavUrl","generateRemoteUrl","getCurrentUser","uid","webdavDocs","appPasswordUrl","webdavUrlCopied","enableGridView","setting","beforeDestroy","close","onClose","setConfig","copyCloudId","select","clipboard","writeText","showSuccess","_l","scopedSlots","_u","proxy","Cog","NavigationQuota","NcAppNavigation","NcIconSvgWrapper","SettingsModal","settingsOpened","currentViewId","_this$$route","currentView","views","find","id","$navigation","parentViews","order","childViews","watch","oldView","setActive","debug","showView","useExactRouteMatching","_this$childViews$view","_window","_window$close","Sidebar","onToggleExpand","isExpanded","expanded","_this$viewConfigStore","generateToNavigation","dir","openSettings","onSettingsClose","iconClass","sticky","icon","action","FileAction","displayName","iconSvgInline","InformationSvg","enabled","nodes","_nodes$0$root","root","startsWith","permissions","Permission","NONE","node","OCP","goToRoute","fileid","useFilesStore","fileStore","files","roots","getNode","getNodes","ids","getRoot","service","updateNodes","acc","deleteNodes","delete","setRoot","onDeletedNode","onCreatedNode","onUpdatedNode","usePathsStore","pathsStore","paths","getPath","addPath","payload","_getNavigation","getNavigation","active","FileType","Folder","dirname","_children","parentId","parentFolder","useSelectionStore","selected","lastSelection","lastSelectedIndex","set","selection","Set","setLastIndex","reset","uploader","useUploaderStore","getUploader","toISOString","Directory","File","contents","super","_contents","_computeDirectorySize","lastModified","_computeDirectoryMtime","directory","file","entry","traverseTree","async","isFile","readDirectory","all","dirReader","createReader","getEntries","readEntries","results","createDirectoryIfNotExists","davClient","davGetClient","exists","createDirectory","recursive","stat","details","davGetDefaultPropfind","davResultToNode","resolveConflict","destination","conflicts","basename","uploads","renamed","openConflictPicker","showInfo","info","getQueue","PQueue","concurrency","MoveCopyAction","canMove","ALL","UPDATE","canCopy","_node$attributes$shar","_node$attributes","attributes","some","attribute","scope","canDownload","rootPath","defaultRootUrl","hashCode","client","rootUrl","createClient","setHeaders","requesttoken","onRequestTokenUpdate","getRequestToken","getPatcher","patch","headers","method","fetch","getClient","resultToNode","userId","davParsePermissions","owner","filename","nodeData","mtime","lastmod","mime","hasPreview","failed","getContents","controller","AbortController","propfindPayload","CancelablePromise","onCancel","contentsResponse","getDirectoryContents","includeSelf","signal","folder","getSummaryFor","fileCount","folderCount","getActionForNodes","MOVE_OR_COPY","MOVE","COPY","handleCopyMoveNodeTo","overwrite","NodeStatus","LOADING","add","copySuffix","currentPath","davRootPath","destinationPath","otherNodes","otherNames","suffix","ignoreFileExtension","newName","ext","extname","getUniqueName","copyFile","hasConflict","deleteFile","moveFile","AxiosError","_error$response","_error$response2","_error$response3","status","openFilePickerForAction","fileIDs","filePicker","getFilePickerBuilder","allowDirectories","setFilter","CREATE","setMimeTypeFilter","setMultiSelect","startAt","setButtonFactory","_selection","buttons","dirnames","label","escape","sanitize","CopyIconSvg","FolderMoveSvg","FilePickerClosed","_node$root","execBatch","promises","dataTransferToFileTree","items","kind","_item$getAsEntry","_item$getAsEntry2","_item$webkitGetAsEntr","getAsEntry","webkitGetAsEntry","warned","fileTree","DataTransferItem","warn","getAsFile","showWarning","onDropExternalFiles","uploadDirectoryContents","relativePath","joinPaths","upload","pause","start","errors","allSettled","onDropInternalFiles","isCopy","useDragAndDropStore","dragging","filesListWidth","_fileListEl$clientWid","fileListEl","clientWidth","$resizeObserver","ResizeObserver","contentRect","width","observe","disconnect","defineComponent","NcBreadcrumbs","NcBreadcrumb","mixins","filesListWidthMixin","draggingStore","filesStore","selectionStore","uploaderStore","dirs","sections","getFileIdFromPath","getDirDisplayName","disableDrop","isUploadInProgress","wrapUploadProgressBar","viewIcon","_this$currentView$ico","_this$currentView","selectedFiles","draggingFiles","getNodeFromId","_this$currentView2","_this$$navigation","fileId","onClick","_to$query","onDragOver","dataTransfer","dropEffect","onDrop","_event$dataTransfer","_event$dataTransfer2","_this$currentView3","canDrop","titleForSection","section","_section$to","ariaForSection","_section$to2","_setupProxy","_t","nativeOn","useActionsMenuStore","opened","useRenamingStore","renamingStore","renamingNode","FileMultipleIcon","FolderIcon","isSingleNode","isSingleFolder","summary","totalSize","total","parseInt","$refs","previewImg","replaceChildren","preview","parentNode","cloneNode","Preview","DragAndDropPreview","directive","vOnClickOutside","NcFile","Node","loading","dragover","gridMode","currentDir","currentFileId","_this$$route$params","_this$$route$query","_this$source","uniqueId","isLoading","extension","_this$source$attribut","isSelected","isRenaming","isRenamingSmallScreen","_this$fileid","_this$fileid$toString","_this$currentFileId","_this$currentFileId$t","canDrag","openedMenu","actionsMenuStore","_this$$el","closest","removeProperty","resetState","_this$$refs","_this$$refs$reset","onRightClick","_this$$el2","setProperty","clientX","clientY","isMoreThanOneSelected","execDefaultAction","openDetailsIfAvailable","_sidebarAction$enable","sidebarAction","onDragLeave","contains","relatedTarget","onDragStart","_event$dataTransfer$c","clearData","$reset","image","$mount","body","$on","$off","getDragAndDropPreview","setDragImage","onDragEnd","_event$dataTransfer3","_event$dataTransfer4","updateRootElement","element","getFileActions","ArrowLeftIcon","CustomElementRender","NcActionButton","NcActions","NcActionSeparator","NcLoadingIcon","openedSubmenu","enabledActions","enabledInlineActions","_action$inline","inline","enabledRenderActions","renderInline","enabledDefaultActions","enabledMenuActions","DefaultType","HIDDEN","findIndex","topActionsIds","enabledSubmenuActions","getBoundariesElement","mountType","_attributes","actionDisplayName","onActionClick","isSubmenu","success","isMenu","_this$enabledSubmenuA","onBackToMenuClick","menuAction","_menuAction$$el$query","focus","_vm$openedSubmenu","_vm$openedSubmenu2","_action$title","refInFor","_action$title2","keyboardStore","onEvent","useKeyboardStore","ariaLabel","onSelectionChange","_this$keyboardStore","newSelectedIndex","isAlreadySelected","filesToSelect","resetSelection","_k","keyCode","forbiddenCharacters","NcTextField","renameLabel","linkTo","_this$$parent","is","role","tabindex","READ","download","immediate","renaming","startRenaming","checkInputValidity","_this$newName$trim","_this$newName","isFileNameValid","setCustomValidity","reportValidity","trimmedName","OC","blacklist_files_regex","checkIfNodeExists","char","_this$$refs$renameInp","extLength","renameInput","inputField","setSelectionRange","dispatchEvent","Event","stopRenaming","onRename","_this$newName$trim2","_this$newName2","oldName","oldEncodedSource","encodedSource","rename","Destination","Overwrite","directives","rawName","expression","domProps","StarSvg","_el$setAttribute","setAttribute","AccountGroupIcon","AccountPlusIcon","CollectivesIcon","FavoriteIcon","FileIcon","FolderOpenIcon","KeyIcon","LinkIcon","NetworkIcon","TagIcon","backgroundFailed","_this$source$toString","isFavorite","favorite","cropPreviews","previewUrl","origin","searchParams","fileOverlay","PlayCircleIcon","folderOverlay","_this$source2","_this$source3","_this$source4","_this$source5","shareTypes","values","ShareType","SHARE_TYPE_LINK","SHARE_TYPE_EMAIL","src","onBackgroundError","_event$target","_m","FileEntryActions","FileEntryCheckbox","FileEntryName","FileEntryPreview","NcDateTime","FileEntryMixin","isMtimeAvailable","isSizeAvailable","compact","rowListeners","dragstart","contextmenu","dragleave","dragend","drop","columns","sizeOpacity","ratio","round","pow","color","mtimeOpacity","_this$source$mtime","_this$source$mtime$ge","maxOpacityTime","getTime","mtimeTitle","moment","format","_g","column","_vm$currentView","inheritAttrs","header","currentFolder","mount","_this$currentFolder","classForColumn","_column$summary","mapState","sortingMode","_this$getConfig","sorting_mode","defaultSortKey","isAscSorting","_this$getConfig2","toggleSortBy","MenuDown","MenuUp","NcButton","filesSortingMixin","FilesListTableHeaderButton","selectAllBind","checked","isAllSelected","indeterminate","isSomeSelected","selectedNodes","isNoneSelected","ariaSortForMode","onToggleAll","dataComponent","dataKey","dataSources","extraProps","scrollToIndex","caption","beforeHeight","headerHeight","tableHeight","resizeObserver","isReady","bufferItems","columnCount","itemHeight","itemWidth","rowCount","ceil","floor","startIndex","shownItems","renderedItems","oldItemsKeys","$_recycledPool","unusedKeys","random","tbodyStyle","isOverScrolled","lastIndex","hiddenAfterItems","paddingTop","paddingBottom","oldColumnCount","_this$$refs2","before","thead","debounce","_before$clientHeight","_thead$clientHeight","_root$clientHeight","clientHeight","onScroll","passive","targetRow","scrollTop","_this$_onScrollHandle","_onScrollHandle","requestAnimationFrame","topScroll","areSomeNodesLoading","inlineActions","selectionIds","failedIds","FilesListHeader","FilesListTableFooter","FilesListTableHeader","VirtualList","FilesListTableHeaderActions","FileEntry","FileEntryGrid","getFileListHeaders","openFileId","openFile","openfile","sortedHeaders","defaultCaption","viewCaption","sortableCaption","virtualListNote","scrollToFile","handleOpenFile","openSidebarForFile","getFileId","types","tableTop","table","tableBottom","height","count","TrayArrowDownIcon","canUpload","isQuotaExceeded","cantUploadLabel","mainContent","onContentDrop","_event$relatedTarget","_this$$el$querySelect","lastUpload","findLast","_upload$response","UploadStatus","FAILED","webkitRelativePath","_this$$route$params$v","isSharingEnabled","_getCapabilities","getCapabilities","files_sharing","BreadCrumbs","DragAndDropNotice","FilesListVirtual","ListViewIcon","NcAppContent","NcEmptyContent","PlusIcon","UploadPicker","ViewGridIcon","filterText","promise","Type","_unsubscribeStore","pageHeading","_this$currentView$nam","sortingParameters","_v$attributes","_v$attributes2","dirContentsSorted","filteredDirContent","dirContents","customColumn","collection","identifiers","orders","_identifiers","_orders","sorting","_orders$index","collator","Intl","Collator","getLanguage","getCanonicalLocale","numeric","usage","identifier","compare","orderBy","_this$userConfigStore","showHidden","_file$attributes","hidden","isEmptyDir","isRefreshing","toPreviousDir","shareAttributes","_this$currentFolder2","_this$currentFolder3","shareButtonLabel","shareButtonType","SHARE_TYPE_USER","gridViewButtonLabel","_this$currentFolder4","canShare","SHARE","newView","resetSearch","fetchContent","newDir","oldDir","filesListVirtual","onSearch","$subscribe","deep","unmounted","unsubscribe","_this$promise","$set","onUpload","_this$currentFolder5","onUploadFail","_upload$response2","parser","Parser","explicitRoot","parseStringPromise","_this$currentFolder6","searchEvent","openSharingSidebar","setActiveTab","toggleGridView","translatePlural","_vm$currentView2","emptyTitle","emptyCaption","NcContent","FilesList","Navigation","__webpack_nonce__","btoa","_window$OCA$Files","_window$OCP$Files","goTo","assign","PiniaVuePlugin","observable","_settings","register","_defineProperty","_name","_el","_open","_close","FilesApp","___CSS_LOADER_EXPORT___","ReflectOwnKeys","R","ReflectApply","receiver","getOwnPropertyNames","NumberIsNaN","errorListener","resolver","eventTargetAgnosticAddListener","addErrorHandlerIfEventEmitter","_maxListeners","defaultMaxListeners","checkListener","_getMaxListeners","that","_addListener","prepend","existing","warning","newListener","w","onceWrapper","fired","wrapFn","_onceWrap","wrapped","_listeners","unwrap","evlistener","ret","unwrapListeners","arrayClone","copy","wrapListener","arg","RangeError","getPrototypeOf","setMaxListeners","getMaxListeners","doError","er","prependListener","prependOnceListener","originalListener","spliceOne","rawListeners","codes","createErrorType","code","Base","NodeError","_Base","subClass","superClass","arg1","arg2","arg3","getMessage","oneOf","expected","thing","actual","determiner","this_len","substring","endsWith","objectKeys","Duplex","Readable","Writable","allowHalfOpen","readable","writable","onend","_writableState","ended","process","nextTick","onEndNT","highWaterMark","getBuffer","_readableState","PassThrough","Transform","_transform","chunk","encoding","ReadableState","EElistenerCount","Stream","Buffer","OurUint8Array","g","Uint8Array","debugUtil","debuglog","StringDecoder","createReadableStreamAsyncIterator","BufferList","destroyImpl","getHighWaterMark","_require$codes","ERR_INVALID_ARG_TYPE","ERR_STREAM_PUSH_AFTER_EOF","ERR_METHOD_NOT_IMPLEMENTED","ERR_STREAM_UNSHIFT_AFTER_END_EVENT","errorOrDestroy","kProxyEvents","stream","isDuplex","objectMode","readableObjectMode","buffer","pipes","pipesCount","flowing","endEmitted","reading","sync","needReadable","emittedReadable","readableListening","resumeScheduled","paused","emitClose","autoDestroy","defaultEncoding","awaitDrain","readingMore","decoder","read","_read","destroy","_destroy","readableAddChunk","addToFront","skipChunkCheck","emitReadable","emitReadable_","onEofChunk","isBuffer","chunkInvalid","_uint8ArrayToBuffer","addChunk","write","maybeReadMore","_undestroy","undestroy","isPaused","setEncoding","enc","p","head","content","MAX_HWM","howMuchToRead","computeNewHighWaterMark","flow","maybeReadMore_","updateReadableListening","resume","nReadingNextTick","resume_","fromList","first","consume","endReadable","endReadableNT","wState","finished","xs","nOrig","doRead","pipe","dest","pipeOpts","endFn","stdout","stderr","unpipe","onunpipe","unpipeInfo","hasUnpiped","onclose","onfinish","ondrain","onerror","ondata","cleanedUp","needDrain","pipeOnDrain","dests","ev","wrap","_this","asyncIterator","_fromList","iterable","ERR_MULTIPLE_CALLBACK","ERR_TRANSFORM_ALREADY_TRANSFORMING","ERR_TRANSFORM_WITH_LENGTH_0","afterTransform","ts","_transformState","transforming","writecb","writechunk","rs","needTransform","writeencoding","transform","flush","_flush","prefinish","done","_write","err2","CorkedRequest","finish","corkReq","pendingcb","onCorkedFinish","corkedRequestsFree","WritableState","realHasInstance","internalUtil","deprecate","ERR_STREAM_CANNOT_PIPE","ERR_STREAM_DESTROYED","ERR_STREAM_NULL_VALUES","ERR_STREAM_WRITE_AFTER_END","ERR_UNKNOWN_ENCODING","nop","writableObjectMode","finalCalled","ending","noDecode","decodeStrings","writing","corked","bufferProcessing","onwrite","writelen","onwriteStateUpdate","finishMaybe","errorEmitted","onwriteError","needFinish","bufferedRequest","clearBuffer","afterWrite","lastBufferedRequest","prefinished","bufferedRequestCount","writev","_writev","final","_final","doWrite","onwriteDrain","holder","allBuffers","isBuf","callFinal","need","rState","out","hasInstance","writeAfterEnd","validChunk","newChunk","decodeChunk","last","writeOrBuffer","cork","uncork","setDefaultEncoding","endWritable","_Object$setPrototypeO","hint","prim","toPrimitive","_toPrimitive","_toPropertyKey","kLastResolve","kLastReject","kError","kEnded","kLastPromise","kHandlePromise","kStream","createIterResult","readAndResolve","iter","onReadable","AsyncIteratorPrototype","ReadableStreamAsyncIteratorPrototype","setPrototypeOf","lastPromise","wrapForNext","_this2","_Object$create","enumerableOnly","symbols","sym","_objectSpread","getOwnPropertyDescriptors","_defineProperties","inspect","Constructor","_classCallCheck","tail","protoProps","s","alloc","allocUnsafe","hasStrings","_getString","_getBuffer","nb","buf","customInspect","emitErrorAndCloseNT","emitErrorNT","emitCloseNT","readableDestroyed","writableDestroyed","ERR_STREAM_PREMATURE_CLOSE","eos","onlegacyfinish","writableEnded","readableEnded","onrequest","req","setHeader","isRequest","ERR_MISSING_ARGS","streams","popCallback","destroys","closed","destroyer","ERR_INVALID_OPT_VALUE","duplexKey","hwm","highWaterMarkFrom","isFinite","copyProps","dst","SafeBuffer","encodingOrOffset","allocUnsafeSlow","fill","SlowBuffer","sax","opt","SAXParser","SAXStream","createStream","MAX_BUFFER_LENGTH","buffers","clearBuffers","q","bufferCheckPosition","lowercase","lowercasetags","looseCase","tags","closedRoot","sawRoot","noscript","S","BEGIN","strictEntities","ENTITIES","XML_ENTITIES","attribList","xmlns","ns","rootNS","trackPosition","line","EVENTS","o","F","BEGIN_WHITESPACE","beginWhiteSpace","TEXT","starti","textNode","isWhitespace","strictFail","TEXT_ENTITY","OPEN_WAKA","startTagPosition","SCRIPT","SCRIPT_ENDING","script","CLOSE_TAG","SGML_DECL","sgmlDecl","isMatch","nameStart","OPEN_TAG","tagName","PROC_INST","procInstName","procInstBody","pad","CDATA","emitNode","cdata","COMMENT","comment","DOCTYPE","doctype","isQuote","SGML_DECL_QUOTED","DOCTYPE_DTD","DOCTYPE_QUOTED","DOCTYPE_DTD_QUOTED","COMMENT_ENDING","COMMENT_ENDED","textopts","CDATA_ENDING","CDATA_ENDING_2","PROC_INST_ENDING","PROC_INST_BODY","nameBody","newTag","openTag","OPEN_TAG_SLASH","ATTRIB","closeTag","attribName","attribValue","ATTRIB_NAME","ATTRIB_VALUE","attrib","ATTRIB_NAME_SAW_WHITE","ATTRIB_VALUE_QUOTED","ATTRIB_VALUE_UNQUOTED","ATTRIB_VALUE_ENTITY_Q","ATTRIB_VALUE_CLOSED","isAttribEnd","ATTRIB_VALUE_ENTITY_U","CLOSE_TAG_SAW_WHITE","notMatch","returnState","unparsedEntities","parsedEntity","parseEntity","entity","entityBody","entityStart","maxAllowed","maxActual","closeText","checkBufferLength","ex","streamWraps","_parser","me","_decoder","SD","XML_NAMESPACE","XMLNS_NAMESPACE","xml","stringFromCharCode","fromCodePoint","STATE","COMMENT_STARTING","fromCharCode","nodeType","text","normalize","qname","qualName","local","qn","selfClosing","uri","nv","isSelfClosing","closeTo","num","entityLC","numStr","highSurrogate","lowSurrogate","codeUnits","codePoint","global","setImmediate","registerImmediate","html","channel","messagePrefix","onGlobalMessage","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","handle","runIfPresent","postMessage","importScripts","postMessageIsAsynchronous","oldOnMessage","onmessage","canUsePostMessage","attachEvent","MessageChannel","port1","port2","createElement","onreadystatechange","removeChild","task","clearImmediate","run","d","RC","autostart","ignoreSameProgress","rate","lastTimestamp","lastProgress","historyTimeConstant","previousOutput","dt","report","progress","timestamp","deltaTimestamp","currentRate","estimate","Infinity","estimatedTime","inherits","pipeline","_isStdio","didOnEnd","cleanup","isEncoding","nenc","retried","_normalizeEncoding","normalizeEncoding","utf16Text","utf16End","fillLast","utf8FillLast","base64Text","base64End","simpleWrite","simpleEnd","lastNeed","lastTotal","lastChar","utf8CheckByte","byte","r","utf8CheckExtraBytes","utf8CheckIncomplete","Timeout","clearFn","_id","_clearFn","clearInterval","timeout","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","localStorage","trace","stripBOM","builder","defaults","escapeCDATA","requiresCDATA","wrapCDATA","hasProp","Builder","buildObject","rootObj","attrkey","charkey","rootElement","rootName","attr","txt","ele","up","att","xmldec","headless","allowSurrogateChars","renderOpts","explicitCharkey","normalizeTags","explicitArray","ignoreAttrs","mergeAttrs","validator","explicitChildren","childkey","charsAsChildren","includeWhiteChars","attrNameProcessors","attrValueProcessors","tagNameProcessors","valueProcessors","emptyTag","preserveChildrenOrder","chunkSize","bom","isEmpty","processItem","processors","parseString","assignOrPush","processAsync","xmlnskey","ctor","__super__","remaining","saxParser","error1","errThrown","ontext","resultObject","EXPLICIT_CHARKEY","onopentag","processedKey","onclosetag","emptyStr","nodeName","objClone","old","xpath","charChild","oncdata","prefixMatch","firstCharLowerCase","stripPrefix","parseFloat","ValidationError","Disconnected","Preceding","Following","Contains","ContainedBy","ImplementationSpecific","Element","Attribute","Text","CData","EntityReference","EntityDeclaration","ProcessingInstruction","Comment","Document","DocType","DocumentFragment","NotationDeclaration","Declaration","Raw","AttributeDeclaration","ElementDeclaration","Dummy","getValue","isFunction","isPlainObject","sources","proto","valueOf","None","OpenTag","InsideTag","CloseTag","NodeType","XMLAttribute","debugInfo","attValue","isId","schemaTypeInfo","writer","filterOptions","isEqualNode","namespaceURI","localName","XMLCharacterData","XMLCData","XMLNode","substringData","appendData","insertData","deleteData","replaceData","XMLComment","XMLDOMErrorHandler","XMLDOMStringList","XMLDOMConfiguration","defaultParams","getParameter","canSetParameter","setParameter","handleError","XMLDOMImplementation","hasFeature","feature","createDocumentType","qualifiedName","publicId","systemId","createDocument","createHTMLDocument","getFeature","XMLDTDAttList","elementName","attributeName","attributeType","defaultValueType","defaultValue","dtdAttType","dtdAttDefault","dtdAttList","XMLDTDElement","dtdElementValue","dtdElement","XMLDTDEntity","pe","pubID","sysID","internal","dtdPubID","dtdSysID","nData","dtdNData","dtdEntityValue","dtdEntity","XMLDTDNotation","dtdNotation","XMLDeclaration","standalone","xmlVersion","xmlEncoding","xmlStandalone","declaration","XMLNamedNodeMap","XMLDocType","ref1","ref2","documentObject","attList","pEntity","notation","docType","ent","pent","not","XMLStringWriter","XMLStringifier","XMLDocument","documentURI","domConfig","rootObject","writerOptions","createDocumentFragment","createTextNode","createComment","createCDATASection","createProcessingInstruction","createAttribute","createEntityReference","getElementsByTagName","tagname","importNode","importedNode","createElementNS","createAttributeNS","getElementsByTagNameNS","elementId","adoptNode","normalizeDocument","renameNode","getElementsByClassName","classNames","createEvent","eventInterface","createRange","createNodeIterator","whatToShow","createTreeWalker","WriterState","XMLElement","XMLProcessingInstruction","XMLRaw","XMLText","XMLDocumentCB","onData","onEnd","onDataCallback","onEndCallback","currentNode","currentLevel","openTags","documentStarted","documentCompleted","createChildNode","attName","attribs","dummy","instruction","openCurrent","oldValidationFlag","noValidation","keepNullAttributes","insTarget","insValue","processingInstruction","rootNodeName","closeNode","openNode","isOpen","indent","endline","isClosed","level","nod","dat","com","ins","dec","dtd","XMLDummy","isRoot","attributeMap","clonedSelf","clonedChild","removeAttribute","getAttributeNode","setAttributeNode","newAttr","removeAttributeNode","oldAttr","getAttributeNS","setAttributeNS","removeAttributeNS","getAttributeNodeNS","setAttributeNodeNS","hasAttribute","hasAttributeNS","setIdAttribute","setIdAttributeNS","setIdAttributeNode","idAttr","getNamedItem","setNamedItem","oldNode","removeNamedItem","getNamedItemNS","setNamedItemNS","removeNamedItemNS","DocumentPosition","XMLNodeList","parent1","baseURI","childNodeList","textContent","setParent","childNode","k","lastChild","len1","ref3","ignoreDecorators","convertAttKey","separateArrayItems","keepNullNodes","convertTextKey","convertCDataKey","convertCommentKey","convertRawKey","convertPIKey","insertBefore","newChild","refChild","removed","insertAfter","remove","commentBefore","commentAfter","instructionBefore","instructionAfter","importDocument","clonedRoot","u","importXMLBuilder","replaceChild","oldChild","hasChildNodes","isSupported","hasAttributes","compareDocumentPosition","other","isAncestor","isDescendant","isPreceding","isSameNode","lookupPrefix","isDefaultNamespace","lookupNamespaceURI","setUserData","getUserData","nodePos","thisPos","treePosition","isFollowing","found","pos","foreachTreeNode","func","XMLWriterBase","XMLStreamWriter","isLastRootNode","writeChildNode","spaceBeforeSlash","childNodeCount","firstChildNode","allowEmpty","suppressPrettyCount","newline","assertLegalName","assertLegalChar","textEscape","attEscape","ampregex","noDoubleEncoding","previousSibling","nextSibling","splitText","replaceWholeText","filteredOptions","ref4","ref5","ref6","dontPrettyTextNodes","dontprettytextnodes","spacebeforeslash","user","indentLevel","openAttribute","closeAttribute","prettySuppressed","begin","stringWriter","streamWriter","implementation","writerState","setUid","NewFileMenu","_entries","registerEntry","validateEntry","category","unregisterEntry","entryIndex","getEntryIndex","DefaultType2","_action","validateAction","_nc_fileactions","_nc_filelistheader","Permission2","defaultDavProperties","defaultDavNamespaces","nc","oc","ocs","getDavProperties","_nc_dav_properties","prop","getDavNameSpaces","_nc_dav_namespaces","davGetRecentSearch","permString","DELETE","FileType2","isDavRessource","davService","validateData","crtime","NodeStatus2","_data","_knownDavService","readonlyAttributes","deleteProperty","Proxy","firstMatch","updateMtime","move","basename2","davRemoteURL","remoteURL","headers2","getFavoriteNodes","davRoot","filesRoot","isPublic","getcontentlength","_oc_config","humanList","humanListBinary","skipSmallSizes","binaryPrefixes","base1000","log","readableFormat","relativeSize","toLocaleString","_views","_currentView","_nc_navigation","Column","_column","isValidColumn","validator$2","util$3","nameStartChar","nameRegexp","regexName","isExist","isEmptyObject","merge","arrayMode","isName","getAllMatches","allmatches","util$2","defaultOptions$2","allowBooleanAttributes","unpairedTags","isWhiteSpace","readPI","xmlData","getErrorObject","getLineNumberForPosition","readCommentAndCDATA","angleBracketsCount","validate","tagFound","reachedRoot","tagStartPos","closingTag","readAttributeStr","attrStr","attrStrStart","isValid","validateAttributeString","tagClosed","otg","openPos","col","afterAmp","validateAmpersand","doubleQuote","singleQuote","startChar","validAttrStrRegxp","attrNames","getPositionFromMatch","attrName","validateAttrName","validateNumberAmpersand","lineNumber","lines","OptionsBuilder","defaultOptions$1","preserveOrder","attributeNamePrefix","attributesGroupName","textNodeName","ignoreAttributes","removeNSPrefix","parseTagValue","parseAttributeValue","trimValues","cdataPropName","numberParseOptions","hex","leadingZeros","eNotation","tagValueProcessor","attributeValueProcessor","stopNodes","alwaysCreateTextNode","commentPropName","processEntities","htmlEntities","ignoreDeclaration","ignorePiTags","transformTagName","transformAttributeName","updateTag","jPath","buildOptions","defaultOptions","util$1","readEntityExp","entityName2","isComment","isEntity","isElement","isAttlist","isNotation","validateEntityName","hexRegex","numRegex","consider","decimalPoint","xmlNode","addChild","readDocType","entities","hasBody","exp","entityName","regx","toNumber","trimmedStr","skipLike","sign","numTrimmedByZeros","addExternalEntities","externalEntities","entKeys","lastEntities","parseTextData","dontTrim","isLeafNode","escapeEntities","replaceEntitiesValue","newval","resolveNameSpace","attrsRegx","buildAttributesMap","oldVal","aName","newVal","attrCollection","parseXml","xmlObj","textData","closeIndex","findClosingIndex","colonIndex","saveTextToParentTag","lastTagName","lastIndexOf","propIndex","tagsNodeStack","tagData","readTagExp","tagExp","attrExpPresent","endIndex","docTypeEntities","rawTagName","lastTag","isItStopNode","tagContent","result2","readStopNodeData","replaceEntitiesValue$1","ampEntity","currentTagName","allNodesExp","stopNodePath","stopNodeExp","errMsg","closingIndex","closingChar","attrBoundary","ch","tagExpWithClosingIndex","trimStart","openTagCount","shouldParse","node2json","compress","compressedObj","tagObj","property","propName$1","newJpath","isLeaf","isLeafTag","assignAttributes","attrMap","jpath","atrrName","propCount","prettify","OrderedObjParser2","validator$1","arrToStr","indentation","xmlStr","isPreviousElementTag","propName","newJPath","tagText","isStopNode","attStr2","attr_to_str","tempInd","piTextNodeName","newIdentation","indentBy","tagStart","tagValue","suppressUnpairedNode","suppressEmptyNode","attrVal","suppressBooleanAttributes","textValue","buildFromOrderedJs","jArray","oneListGroup","isAttribute","attrPrefixLen","processTextOrObjNode","indentate","tagEndChar","newLine","j2x","buildTextValNode","buildObjectNode","jObj","arrayNodeName","buildAttrPairStr","arrLen","listTagVal","Ks","L","tagEndExp","piClosingChar","fxp","XMLParser","validationOption","orderedObjParser","orderedResult","addEntity","XMLValidator","XMLBuilder","_view","isValidView","emptyView","jsonObject","isSvg","getNewFileMenuEntries","_nc_newfilemenu","localeCompare","sensitivity","CancelError","isCanceled","promiseState","canceled","rejected","PCancelable","userFunction","executor","description","shouldReject","boolean","onFulfilled","onRejected","onFinally","finally","TimeoutError","AbortError","getDOMException","errorMessage","globalThis","DOMException","getAbortedReason","PriorityQueue","enqueue","priority","array","comparator","trunc","it","lowerBound","dequeue","carryoverConcurrencyCount","intervalCap","POSITIVE_INFINITY","interval","autoStart","queueClass","throwOnTimeout","canInitializeInterval","job","newConcurrency","_resolve","function_","throwIfAborted","operation","milliseconds","customTimers","timer","cancelablePromise","timeoutError","pTimeout","race","addAll","functions","onEmpty","onSizeLessThan","limit","onIdle","sizeBy","A","Blob","request","onUploadProgress","B","appConfig","max_chunk_size","INITIALIZED","UPLOADING","ASSEMBLING","FINISHED","CANCELLED","_source","_file","_isChunked","_chunks","_size","_uploaded","_startTime","_status","_controller","_response","isChunked","chunks","startTime","uploaded","I","IDLE","PAUSED","N","_destinationFolder","_isPublic","_uploadQueue","_jobQueue","_queueSize","_queueProgress","_queueStatus","_notifiers","maxChunksSize","updateStats","addNotifier","f","T","U","bytes","D","W","O","staticRenderFns","_compiled","_scopeId","ssrContext","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","$root","shadowRoot","_injectStyles","ms","viewBox","fs","detectLocale","locale","json","charset","Language","translations","msgid","comments","translator","msgstr","Add","msgid_plural","extracted","Cancel","Continue","New","addTranslation","C","Gs","ngettext","gettext","Ls","Plus","Upload","accept","disabled","multiple","addLabel","cancelLabel","uploadLabel","progressLabel","progressTimeId","eta","timeLeft","newFileMenuEntries","uploadManager","M","totalQueueSize","uploadedQueueSize","hasFailure","isUploading","isAssembling","buttonName","setDestination","updateStatus","onUploadCompletion","onPick","Us","ys","form","setSeconds","time","seconds","Ys","decorative","svg","change","submit","$destroy","Axios","CanceledError","isCancel","CancelToken","VERSION","isAxiosError","spread","toFormData","AxiosHeaders","HttpStatusCode","formToJSON","getAdapter","mergeConfig","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","loaded","__webpack_modules__","chunkIds","notFulfilled","fulfilled","getter","definition","chunkId","needAttach","scripts","onScriptComplete","onload","doneFns","nmd","scriptUrl","currentScript","installedChunks","installedChunkData","realSrc","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""}
\ No newline at end of file
+{"version":3,"file":"files-main.js?v=bde1d16dd7e5c368dd4f","mappings":"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","sources":["webpack:///nextcloud/webpack/runtime/chunk loaded","webpack:///nextcloud/webpack/runtime/load script","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/eventemitter3/index.js","webpack:///nextcloud/apps/files/src/store/index.ts","webpack:///nextcloud/node_modules/decode-uri-component/index.js","webpack:///nextcloud/node_modules/split-on-first/index.js","webpack:///nextcloud/node_modules/query-string/node_modules/filter-obj/index.js","webpack:///nextcloud/node_modules/query-string/base.js","webpack:///nextcloud/node_modules/query-string/index.js","webpack:///nextcloud/node_modules/vue-router/dist/vue-router.esm.js","webpack:///nextcloud/apps/files/src/router/router.ts","webpack:///nextcloud/apps/files/src/FilesApp.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/Cog.vue?4d6d","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue?vue&type=template&id=89df8f2e","webpack:///nextcloud/apps/files/src/store/viewConfig.ts","webpack:///nextcloud/apps/files/src/logger.js","webpack:///nextcloud/node_modules/throttle-debounce/esm/index.js","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/ChartPie.vue?421f","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue?vue&type=template&id=b117066e","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?ebc6","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?2966","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?08cb","webpack://nextcloud/./apps/files/src/views/Settings.vue?84f7","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/Clipboard.vue?68c7","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue?vue&type=template&id=0c133921","webpack:///nextcloud/apps/files/src/components/Setting.vue","webpack:///nextcloud/apps/files/src/components/Setting.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/components/Setting.vue?98ea","webpack://nextcloud/./apps/files/src/components/Setting.vue?8d57","webpack:///nextcloud/apps/files/src/store/userconfig.ts","webpack:///nextcloud/apps/files/src/views/Settings.vue","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/views/Settings.vue?8bf3","webpack://nextcloud/./apps/files/src/views/Settings.vue?b81b","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/views/Navigation.vue","webpack://nextcloud/./apps/files/src/views/Navigation.vue?113b","webpack://nextcloud/./apps/files/src/views/Navigation.vue?74b9","webpack:///nextcloud/apps/files/src/views/FilesList.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?5dae","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?vue&type=template&id=00aea13f","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/AccountPlus.vue?2818","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue?vue&type=template&id=a16afc28","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/ViewGrid.vue?4e55","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue?vue&type=template&id=7b96a104","webpack:///nextcloud/apps/files/src/actions/sidebarAction.ts","webpack:///nextcloud/apps/files/src/store/files.ts","webpack:///nextcloud/apps/files/src/store/paths.ts","webpack:///nextcloud/apps/files/src/store/selection.ts","webpack:///nextcloud/apps/files/src/store/uploader.ts","webpack:///nextcloud/apps/files/src/services/SortingService.ts","webpack:///nextcloud/apps/files/src/services/DropServiceUtils.ts","webpack:///nextcloud/apps/files/src/actions/moveOrCopyActionUtils.ts","webpack:///nextcloud/apps/files/src/services/WebdavClient.ts","webpack:///nextcloud/apps/files/src/utils/hashUtils.ts","webpack:///nextcloud/apps/files/src/services/Files.ts","webpack:///nextcloud/apps/files/src/utils/fileUtils.ts","webpack:///nextcloud/apps/files/src/actions/moveOrCopyAction.ts","webpack:///nextcloud/apps/files/src/services/DropService.ts","webpack:///nextcloud/apps/files/src/store/dragging.ts","webpack:///nextcloud/apps/files/src/mixins/filesListWidth.ts","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?0684","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?d357","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue","webpack:///nextcloud/apps/files/src/store/actionsmenu.ts","webpack:///nextcloud/apps/files/src/store/renaming.ts","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/FileMultiple.vue?6e9d","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue?vue&type=template&id=27b46e04","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/DragAndDropPreview.vue?3906","webpack://nextcloud/./apps/files/src/components/DragAndDropPreview.vue?36f6","webpack:///nextcloud/apps/files/src/utils/dragUtils.ts","webpack:///nextcloud/apps/files/src/components/FileEntryMixin.ts","webpack:///nextcloud/apps/files/src/components/CustomElementRender.vue","webpack:///nextcloud/apps/files/src/components/CustomElementRender.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/CustomElementRender.vue?5f5c","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/ArrowLeft.vue?f857","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue?vue&type=template&id=214c9a86","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?c4f3","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?d908","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?7b52","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryCheckbox.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryCheckbox.vue","webpack:///nextcloud/apps/files/src/store/keyboard.ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryCheckbox.vue?a18b","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryName.vue","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryName.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryName.vue?98a4","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryPreview.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/File.vue?245d","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue?vue&type=template&id=e3c8d598","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/FolderOpen.vue?6818","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue?vue&type=template&id=79cee0a4","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Key.vue?157c","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue?vue&type=template&id=01a06d54","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Network.vue?11eb","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue?vue&type=template&id=29f8873c","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Tag.vue?6116","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue?vue&type=template&id=75dd05e4","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/PlayCircle.vue?0c26","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue?vue&type=template&id=6901b3e6","webpack:///nextcloud/apps/files/src/components/FileEntry/CollectivesIcon.vue?vue&type=script&lang=js","webpack:///nextcloud/apps/files/src/components/FileEntry/CollectivesIcon.vue","webpack://nextcloud/./apps/files/src/components/FileEntry/CollectivesIcon.vue?1937","webpack://nextcloud/./apps/files/src/components/FileEntry/CollectivesIcon.vue?949d","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue","webpack://nextcloud/./apps/files/src/components/FileEntry/FavoriteIcon.vue?238d","webpack://nextcloud/./apps/files/src/components/FileEntry/FavoriteIcon.vue?62c6","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryPreview.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/services/LivePhotos.ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryPreview.vue?8c1f","webpack:///nextcloud/apps/files/src/components/FileEntry.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry.vue","webpack://nextcloud/./apps/files/src/components/FileEntry.vue?da7c","webpack:///nextcloud/apps/files/src/components/FileEntryGrid.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntryGrid.vue","webpack://nextcloud/./apps/files/src/components/FileEntryGrid.vue?bb8e","webpack:///nextcloud/apps/files/src/components/FilesListHeader.vue","webpack:///nextcloud/apps/files/src/components/FilesListHeader.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListHeader.vue?349b","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue","webpack://nextcloud/./apps/files/src/components/FilesListTableFooter.vue?975a","webpack://nextcloud/./apps/files/src/components/FilesListTableFooter.vue?fa4c","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue","webpack:///nextcloud/apps/files/src/mixins/filesSorting.ts","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderButton.vue?39b1","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderButton.vue?e364","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListTableHeader.vue?1b05","webpack://nextcloud/./apps/files/src/components/FilesListTableHeader.vue?b1c9","webpack:///nextcloud/apps/files/src/components/VirtualList.vue","webpack:///nextcloud/apps/files/src/components/VirtualList.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/VirtualList.vue?37fa","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderActions.vue?0445","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderActions.vue?9494","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?97e6","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?5a2b","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?3555","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/TrayArrowDown.vue?a897","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue?vue&type=template&id=447c2cd4","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue","webpack://nextcloud/./apps/files/src/components/DragAndDropNotice.vue?c924","webpack://nextcloud/./apps/files/src/components/DragAndDropNotice.vue?a2e0","webpack:///nextcloud/apps/files/src/views/FilesList.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/views/FilesList.vue?31f4","webpack://nextcloud/./apps/files/src/views/FilesList.vue?1e5b","webpack:///nextcloud/apps/files/src/FilesApp.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/FilesApp.vue?597e","webpack:///nextcloud/apps/files/src/main.ts","webpack:///nextcloud/apps/files/src/services/RouterService.ts","webpack:///nextcloud/apps/files/src/services/Settings.js","webpack:///nextcloud/apps/files/src/models/Setting.js","webpack:///nextcloud/node_modules/@nextcloud/upload/dist/assets/index-Ussc_ol3.css","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue?vue&type=style&index=0&id=499e1525&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue?vue&type=style&index=0&id=42ea6dd4&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=0&id=5edd44ea&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=1&id=5edd44ea&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=style&index=0&id=2dd1845e&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=0&id=2e1b1dc8&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=1&id=2e1b1dc8&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/views/FilesList.vue?vue&type=style&index=0&id=5c37291f&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=style&index=0&id=476b6b93&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=style&index=0&id=00f09e69&prod&lang=scss&scoped=true","webpack:///nextcloud/node_modules/events/events.js","webpack:///nextcloud/node_modules/readable-stream/errors-browser.js","webpack:///nextcloud/node_modules/readable-stream/lib/_stream_duplex.js","webpack:///nextcloud/node_modules/readable-stream/lib/_stream_passthrough.js","webpack:///nextcloud/node_modules/readable-stream/lib/_stream_readable.js","webpack:///nextcloud/node_modules/readable-stream/lib/_stream_transform.js","webpack:///nextcloud/node_modules/readable-stream/lib/_stream_writable.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/async_iterator.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/buffer_list.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/destroy.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/end-of-stream.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/from-browser.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/pipeline.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/state.js","webpack:///nextcloud/node_modules/readable-stream/lib/internal/streams/stream-browser.js","webpack:///nextcloud/node_modules/safe-buffer/index.js","webpack:///nextcloud/node_modules/sax/lib/sax.js","webpack:///nextcloud/node_modules/setimmediate/setImmediate.js","webpack:///nextcloud/node_modules/simple-eta/index.js","webpack:///nextcloud/node_modules/stream-browserify/index.js","webpack:///nextcloud/node_modules/string_decoder/lib/string_decoder.js","webpack:///nextcloud/node_modules/timers-browserify/main.js","webpack:///nextcloud/node_modules/util-deprecate/browser.js","webpack:///nextcloud/node_modules/xml2js/lib/bom.js","webpack:///nextcloud/node_modules/xml2js/lib/builder.js","webpack:///nextcloud/node_modules/xml2js/lib/defaults.js","webpack:///nextcloud/node_modules/xml2js/lib/parser.js","webpack:///nextcloud/node_modules/xml2js/lib/processors.js","webpack:///nextcloud/node_modules/xml2js/lib/xml2js.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/DocumentPosition.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/NodeType.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/Utility.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/WriterState.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLAttribute.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLCData.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLCharacterData.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLComment.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMImplementation.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMStringList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDAttList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDElement.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDEntity.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDNotation.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDeclaration.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocType.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocument.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocumentCB.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDummy.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLElement.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNode.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNodeList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLRaw.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStreamWriter.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStringWriter.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStringifier.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLText.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLWriterBase.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/index.js","webpack:///nextcloud/node_modules/@nextcloud/files/dist/index.mjs","webpack://nextcloud/./node_modules/@nextcloud/upload/dist/assets/index-Ussc_ol3.css?40cd","webpack:///nextcloud/node_modules/p-cancelable/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-timeout/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/priority-queue.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/lower-bound.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/dist/chunks/index-DM2X1kc6.mjs","webpack:///nextcloud/node_modules/axios/index.js","webpack:///nextcloud/webpack/bootstrap","webpack:///nextcloud/webpack/runtime/compat get default export","webpack:///nextcloud/webpack/runtime/define property getters","webpack:///nextcloud/webpack/runtime/ensure chunk","webpack:///nextcloud/webpack/runtime/get javascript chunk filename","webpack:///nextcloud/webpack/runtime/global","webpack:///nextcloud/webpack/runtime/hasOwnProperty shorthand","webpack:///nextcloud/webpack/runtime/make namespace object","webpack:///nextcloud/webpack/runtime/node module decorator","webpack:///nextcloud/webpack/runtime/runtimeId","webpack:///nextcloud/webpack/runtime/publicPath","webpack:///nextcloud/webpack/runtime/jsonp chunk loading","webpack:///nextcloud/webpack/runtime/nonce","webpack:///nextcloud/webpack/startup"],"sourcesContent":["var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","var inProgress = {};\nvar dataWebpackPrefix = \"nextcloud:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = (url, done, key, chunkId) => {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tscript.timeout = 120;\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = (prev, event) => {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach((fn) => (fn(event)));\n\t\tif(prev) return prev(event);\n\t}\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n  , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n  Events.prototype = Object.create(null);\n\n  //\n  // This hack is needed because the `__proto__` property is still inherited in\n  // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n  //\n  if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n  this.fn = fn;\n  this.context = context;\n  this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n  if (typeof fn !== 'function') {\n    throw new TypeError('The listener must be a function');\n  }\n\n  var listener = new EE(fn, context || emitter, once)\n    , evt = prefix ? prefix + event : event;\n\n  if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n  else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n  else emitter._events[evt] = [emitter._events[evt], listener];\n\n  return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n  if (--emitter._eventsCount === 0) emitter._events = new Events();\n  else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n  this._events = new Events();\n  this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n  var names = []\n    , events\n    , name;\n\n  if (this._eventsCount === 0) return names;\n\n  for (name in (events = this._events)) {\n    if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n  }\n\n  if (Object.getOwnPropertySymbols) {\n    return names.concat(Object.getOwnPropertySymbols(events));\n  }\n\n  return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n  var evt = prefix ? prefix + event : event\n    , handlers = this._events[evt];\n\n  if (!handlers) return [];\n  if (handlers.fn) return [handlers.fn];\n\n  for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n    ee[i] = handlers[i].fn;\n  }\n\n  return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n  var evt = prefix ? prefix + event : event\n    , listeners = this._events[evt];\n\n  if (!listeners) return 0;\n  if (listeners.fn) return 1;\n  return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n  var evt = prefix ? prefix + event : event;\n\n  if (!this._events[evt]) return false;\n\n  var listeners = this._events[evt]\n    , len = arguments.length\n    , args\n    , i;\n\n  if (listeners.fn) {\n    if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n    switch (len) {\n      case 1: return listeners.fn.call(listeners.context), true;\n      case 2: return listeners.fn.call(listeners.context, a1), true;\n      case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n      case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n      case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n      case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n    }\n\n    for (i = 1, args = new Array(len -1); i < len; i++) {\n      args[i - 1] = arguments[i];\n    }\n\n    listeners.fn.apply(listeners.context, args);\n  } else {\n    var length = listeners.length\n      , j;\n\n    for (i = 0; i < length; i++) {\n      if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n      switch (len) {\n        case 1: listeners[i].fn.call(listeners[i].context); break;\n        case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n        case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n        case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n        default:\n          if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n            args[j - 1] = arguments[j];\n          }\n\n          listeners[i].fn.apply(listeners[i].context, args);\n      }\n    }\n  }\n\n  return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n  return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n  return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n  var evt = prefix ? prefix + event : event;\n\n  if (!this._events[evt]) return this;\n  if (!fn) {\n    clearEvent(this, evt);\n    return this;\n  }\n\n  var listeners = this._events[evt];\n\n  if (listeners.fn) {\n    if (\n      listeners.fn === fn &&\n      (!once || listeners.once) &&\n      (!context || listeners.context === context)\n    ) {\n      clearEvent(this, evt);\n    }\n  } else {\n    for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n      if (\n        listeners[i].fn !== fn ||\n        (once && !listeners[i].once) ||\n        (context && listeners[i].context !== context)\n      ) {\n        events.push(listeners[i]);\n      }\n    }\n\n    //\n    // Reset the array, or remove it completely if we have no more listeners.\n    //\n    if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n    else clearEvent(this, evt);\n  }\n\n  return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n  var evt;\n\n  if (event) {\n    evt = prefix ? prefix + event : event;\n    if (this._events[evt]) clearEvent(this, evt);\n  } else {\n    this._events = new Events();\n    this._eventsCount = 0;\n  }\n\n  return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n  module.exports = EventEmitter;\n}\n","/**\n * @copyright Copyright (c) 2024 Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { createPinia } from 'pinia';\nexport const pinia = createPinia();\n","const token = '%[a-f0-9]{2}';\nconst singleMatcher = new RegExp('(' + token + ')|([^%]+?)', 'gi');\nconst multiMatcher = new RegExp('(' + token + ')+', 'gi');\n\nfunction decodeComponents(components, split) {\n\ttry {\n\t\t// Try to decode the entire string first\n\t\treturn [decodeURIComponent(components.join(''))];\n\t} catch {\n\t\t// Do nothing\n\t}\n\n\tif (components.length === 1) {\n\t\treturn components;\n\t}\n\n\tsplit = split || 1;\n\n\t// Split the array in 2 parts\n\tconst left = components.slice(0, split);\n\tconst right = components.slice(split);\n\n\treturn Array.prototype.concat.call([], decodeComponents(left), decodeComponents(right));\n}\n\nfunction decode(input) {\n\ttry {\n\t\treturn decodeURIComponent(input);\n\t} catch {\n\t\tlet tokens = input.match(singleMatcher) || [];\n\n\t\tfor (let i = 1; i < tokens.length; i++) {\n\t\t\tinput = decodeComponents(tokens, i).join('');\n\n\t\t\ttokens = input.match(singleMatcher) || [];\n\t\t}\n\n\t\treturn input;\n\t}\n}\n\nfunction customDecodeURIComponent(input) {\n\t// Keep track of all the replacements and prefill the map with the `BOM`\n\tconst replaceMap = {\n\t\t'%FE%FF': '\\uFFFD\\uFFFD',\n\t\t'%FF%FE': '\\uFFFD\\uFFFD',\n\t};\n\n\tlet match = multiMatcher.exec(input);\n\twhile (match) {\n\t\ttry {\n\t\t\t// Decode as big chunks as possible\n\t\t\treplaceMap[match[0]] = decodeURIComponent(match[0]);\n\t\t} catch {\n\t\t\tconst result = decode(match[0]);\n\n\t\t\tif (result !== match[0]) {\n\t\t\t\treplaceMap[match[0]] = result;\n\t\t\t}\n\t\t}\n\n\t\tmatch = multiMatcher.exec(input);\n\t}\n\n\t// Add `%C2` at the end of the map to make sure it does not replace the combinator before everything else\n\treplaceMap['%C2'] = '\\uFFFD';\n\n\tconst entries = Object.keys(replaceMap);\n\n\tfor (const key of entries) {\n\t\t// Replace all decoded components\n\t\tinput = input.replace(new RegExp(key, 'g'), replaceMap[key]);\n\t}\n\n\treturn input;\n}\n\nexport default function decodeUriComponent(encodedURI) {\n\tif (typeof encodedURI !== 'string') {\n\t\tthrow new TypeError('Expected `encodedURI` to be of type `string`, got `' + typeof encodedURI + '`');\n\t}\n\n\ttry {\n\t\t// Try the built in decoder first\n\t\treturn decodeURIComponent(encodedURI);\n\t} catch {\n\t\t// Fallback to a more advanced decoder\n\t\treturn customDecodeURIComponent(encodedURI);\n\t}\n}\n","export default function splitOnFirst(string, separator) {\n\tif (!(typeof string === 'string' && typeof separator === 'string')) {\n\t\tthrow new TypeError('Expected the arguments to be of type `string`');\n\t}\n\n\tif (string === '' || separator === '') {\n\t\treturn [];\n\t}\n\n\tconst separatorIndex = string.indexOf(separator);\n\n\tif (separatorIndex === -1) {\n\t\treturn [];\n\t}\n\n\treturn [\n\t\tstring.slice(0, separatorIndex),\n\t\tstring.slice(separatorIndex + separator.length)\n\t];\n}\n","export function includeKeys(object, predicate) {\n\tconst result = {};\n\n\tif (Array.isArray(predicate)) {\n\t\tfor (const key of predicate) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor?.enumerable) {\n\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// `Reflect.ownKeys()` is required to retrieve symbol properties\n\t\tfor (const key of Reflect.ownKeys(object)) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor.enumerable) {\n\t\t\t\tconst value = object[key];\n\t\t\t\tif (predicate(key, value, object)) {\n\t\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n\nexport function excludeKeys(object, predicate) {\n\tif (Array.isArray(predicate)) {\n\t\tconst set = new Set(predicate);\n\t\treturn includeKeys(object, key => !set.has(key));\n\t}\n\n\treturn includeKeys(object, (key, value, object) => !predicate(key, value, object));\n}\n","import decodeComponent from 'decode-uri-component';\nimport splitOnFirst from 'split-on-first';\nimport {includeKeys} from 'filter-obj';\n\nconst isNullOrUndefined = value => value === null || value === undefined;\n\n// eslint-disable-next-line unicorn/prefer-code-point\nconst strictUriEncode = string => encodeURIComponent(string).replaceAll(/[!'()*]/g, x => `%${x.charCodeAt(0).toString(16).toUpperCase()}`);\n\nconst encodeFragmentIdentifier = Symbol('encodeFragmentIdentifier');\n\nfunction encoderForArrayFormat(options) {\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tconst index = result.length;\n\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result, [encode(key, options), '[', index, ']'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[', encode(index, options), ']=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), '[]'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[]=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), ':list='].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), ':list=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator':\n\t\tcase 'bracket-separator': {\n\t\t\tconst keyValueSeparator = options.arrayFormat === 'bracket-separator'\n\t\t\t\t? '[]='\n\t\t\t\t: '=';\n\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\t// Translate null to an empty string so that it doesn't serialize as 'null'\n\t\t\t\tvalue = value === null ? '' : value;\n\n\t\t\t\tif (result.length === 0) {\n\t\t\t\t\treturn [[encode(key, options), keyValueSeparator, encode(value, options)].join('')];\n\t\t\t\t}\n\n\t\t\t\treturn [[result, encode(value, options)].join(options.arrayFormatSeparator)];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\tencode(key, options),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction parserForArrayFormat(options) {\n\tlet result;\n\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /\\[(\\d*)]$/.exec(key);\n\n\t\t\t\tkey = key.replace(/\\[\\d*]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = {};\n\t\t\t\t}\n\n\t\t\t\taccumulator[key][result[1]] = value;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(\\[])$/.exec(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(:list)$/.exec(key);\n\t\t\t\tkey = key.replace(/:list$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = typeof value === 'string' && value.includes(options.arrayFormatSeparator);\n\t\t\t\tconst isEncodedArray = (typeof value === 'string' && !isArray && decode(value, options).includes(options.arrayFormatSeparator));\n\t\t\t\tvalue = isEncodedArray ? decode(value, options) : value;\n\t\t\t\tconst newValue = isArray || isEncodedArray ? value.split(options.arrayFormatSeparator).map(item => decode(item, options)) : (value === null ? value : decode(value, options));\n\t\t\t\taccumulator[key] = newValue;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = /(\\[])$/.test(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!isArray) {\n\t\t\t\t\taccumulator[key] = value ? decode(value, options) : value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tconst arrayValue = value === null\n\t\t\t\t\t? []\n\t\t\t\t\t: value.split(options.arrayFormatSeparator).map(item => decode(item, options));\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = arrayValue;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], ...arrayValue];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...[accumulator[key]].flat(), value];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction validateArrayFormatSeparator(value) {\n\tif (typeof value !== 'string' || value.length !== 1) {\n\t\tthrow new TypeError('arrayFormatSeparator must be single character string');\n\t}\n}\n\nfunction encode(value, options) {\n\tif (options.encode) {\n\t\treturn options.strict ? strictUriEncode(value) : encodeURIComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction decode(value, options) {\n\tif (options.decode) {\n\t\treturn decodeComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction keysSorter(input) {\n\tif (Array.isArray(input)) {\n\t\treturn input.sort();\n\t}\n\n\tif (typeof input === 'object') {\n\t\treturn keysSorter(Object.keys(input))\n\t\t\t.sort((a, b) => Number(a) - Number(b))\n\t\t\t.map(key => input[key]);\n\t}\n\n\treturn input;\n}\n\nfunction removeHash(input) {\n\tconst hashStart = input.indexOf('#');\n\tif (hashStart !== -1) {\n\t\tinput = input.slice(0, hashStart);\n\t}\n\n\treturn input;\n}\n\nfunction getHash(url) {\n\tlet hash = '';\n\tconst hashStart = url.indexOf('#');\n\tif (hashStart !== -1) {\n\t\thash = url.slice(hashStart);\n\t}\n\n\treturn hash;\n}\n\nfunction parseValue(value, options) {\n\tif (options.parseNumbers && !Number.isNaN(Number(value)) && (typeof value === 'string' && value.trim() !== '')) {\n\t\tvalue = Number(value);\n\t} else if (options.parseBooleans && value !== null && (value.toLowerCase() === 'true' || value.toLowerCase() === 'false')) {\n\t\tvalue = value.toLowerCase() === 'true';\n\t}\n\n\treturn value;\n}\n\nexport function extract(input) {\n\tinput = removeHash(input);\n\tconst queryStart = input.indexOf('?');\n\tif (queryStart === -1) {\n\t\treturn '';\n\t}\n\n\treturn input.slice(queryStart + 1);\n}\n\nexport function parse(query, options) {\n\toptions = {\n\t\tdecode: true,\n\t\tsort: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',',\n\t\tparseNumbers: false,\n\t\tparseBooleans: false,\n\t\t...options,\n\t};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst formatter = parserForArrayFormat(options);\n\n\t// Create an object with no prototype\n\tconst returnValue = Object.create(null);\n\n\tif (typeof query !== 'string') {\n\t\treturn returnValue;\n\t}\n\n\tquery = query.trim().replace(/^[?#&]/, '');\n\n\tif (!query) {\n\t\treturn returnValue;\n\t}\n\n\tfor (const parameter of query.split('&')) {\n\t\tif (parameter === '') {\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst parameter_ = options.decode ? parameter.replaceAll('+', ' ') : parameter;\n\n\t\tlet [key, value] = splitOnFirst(parameter_, '=');\n\n\t\tif (key === undefined) {\n\t\t\tkey = parameter_;\n\t\t}\n\n\t\t// Missing `=` should be `null`:\n\t\t// http://w3.org/TR/2012/WD-url-20120524/#collect-url-parameters\n\t\tvalue = value === undefined ? null : (['comma', 'separator', 'bracket-separator'].includes(options.arrayFormat) ? value : decode(value, options));\n\t\tformatter(decode(key, options), value, returnValue);\n\t}\n\n\tfor (const [key, value] of Object.entries(returnValue)) {\n\t\tif (typeof value === 'object' && value !== null) {\n\t\t\tfor (const [key2, value2] of Object.entries(value)) {\n\t\t\t\tvalue[key2] = parseValue(value2, options);\n\t\t\t}\n\t\t} else {\n\t\t\treturnValue[key] = parseValue(value, options);\n\t\t}\n\t}\n\n\tif (options.sort === false) {\n\t\treturn returnValue;\n\t}\n\n\t// TODO: Remove the use of `reduce`.\n\t// eslint-disable-next-line unicorn/no-array-reduce\n\treturn (options.sort === true ? Object.keys(returnValue).sort() : Object.keys(returnValue).sort(options.sort)).reduce((result, key) => {\n\t\tconst value = returnValue[key];\n\t\tresult[key] = Boolean(value) && typeof value === 'object' && !Array.isArray(value) ? keysSorter(value) : value;\n\t\treturn result;\n\t}, Object.create(null));\n}\n\nexport function stringify(object, options) {\n\tif (!object) {\n\t\treturn '';\n\t}\n\n\toptions = {\n\t\tencode: true,\n\t\tstrict: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',',\n\t\t...options,\n\t};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst shouldFilter = key => (\n\t\t(options.skipNull && isNullOrUndefined(object[key]))\n\t\t|| (options.skipEmptyString && object[key] === '')\n\t);\n\n\tconst formatter = encoderForArrayFormat(options);\n\n\tconst objectCopy = {};\n\n\tfor (const [key, value] of Object.entries(object)) {\n\t\tif (!shouldFilter(key)) {\n\t\t\tobjectCopy[key] = value;\n\t\t}\n\t}\n\n\tconst keys = Object.keys(objectCopy);\n\n\tif (options.sort !== false) {\n\t\tkeys.sort(options.sort);\n\t}\n\n\treturn keys.map(key => {\n\t\tconst value = object[key];\n\n\t\tif (value === undefined) {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (value === null) {\n\t\t\treturn encode(key, options);\n\t\t}\n\n\t\tif (Array.isArray(value)) {\n\t\t\tif (value.length === 0 && options.arrayFormat === 'bracket-separator') {\n\t\t\t\treturn encode(key, options) + '[]';\n\t\t\t}\n\n\t\t\treturn value\n\t\t\t\t.reduce(formatter(key), [])\n\t\t\t\t.join('&');\n\t\t}\n\n\t\treturn encode(key, options) + '=' + encode(value, options);\n\t}).filter(x => x.length > 0).join('&');\n}\n\nexport function parseUrl(url, options) {\n\toptions = {\n\t\tdecode: true,\n\t\t...options,\n\t};\n\n\tlet [url_, hash] = splitOnFirst(url, '#');\n\n\tif (url_ === undefined) {\n\t\turl_ = url;\n\t}\n\n\treturn {\n\t\turl: url_?.split('?')?.[0] ?? '',\n\t\tquery: parse(extract(url), options),\n\t\t...(options && options.parseFragmentIdentifier && hash ? {fragmentIdentifier: decode(hash, options)} : {}),\n\t};\n}\n\nexport function stringifyUrl(object, options) {\n\toptions = {\n\t\tencode: true,\n\t\tstrict: true,\n\t\t[encodeFragmentIdentifier]: true,\n\t\t...options,\n\t};\n\n\tconst url = removeHash(object.url).split('?')[0] || '';\n\tconst queryFromUrl = extract(object.url);\n\n\tconst query = {\n\t\t...parse(queryFromUrl, {sort: false}),\n\t\t...object.query,\n\t};\n\n\tlet queryString = stringify(query, options);\n\tqueryString &&= `?${queryString}`;\n\n\tlet hash = getHash(object.url);\n\tif (typeof object.fragmentIdentifier === 'string') {\n\t\tconst urlObjectForFragmentEncode = new URL(url);\n\t\turlObjectForFragmentEncode.hash = object.fragmentIdentifier;\n\t\thash = options[encodeFragmentIdentifier] ? urlObjectForFragmentEncode.hash : `#${object.fragmentIdentifier}`;\n\t}\n\n\treturn `${url}${queryString}${hash}`;\n}\n\nexport function pick(input, filter, options) {\n\toptions = {\n\t\tparseFragmentIdentifier: true,\n\t\t[encodeFragmentIdentifier]: false,\n\t\t...options,\n\t};\n\n\tconst {url, query, fragmentIdentifier} = parseUrl(input, options);\n\n\treturn stringifyUrl({\n\t\turl,\n\t\tquery: includeKeys(query, filter),\n\t\tfragmentIdentifier,\n\t}, options);\n}\n\nexport function exclude(input, filter, options) {\n\tconst exclusionFilter = Array.isArray(filter) ? key => !filter.includes(key) : (key, value) => !filter(key, value);\n\n\treturn pick(input, exclusionFilter, options);\n}\n","import * as queryString from './base.js';\n\nexport default queryString;\n","/*!\n  * vue-router v3.6.5\n  * (c) 2022 Evan You\n  * @license MIT\n  */\n/*  */\n\nfunction assert (condition, message) {\n  if (!condition) {\n    throw new Error((\"[vue-router] \" + message))\n  }\n}\n\nfunction warn (condition, message) {\n  if (!condition) {\n    typeof console !== 'undefined' && console.warn((\"[vue-router] \" + message));\n  }\n}\n\nfunction extend (a, b) {\n  for (var key in b) {\n    a[key] = b[key];\n  }\n  return a\n}\n\n/*  */\n\nvar encodeReserveRE = /[!'()*]/g;\nvar encodeReserveReplacer = function (c) { return '%' + c.charCodeAt(0).toString(16); };\nvar commaRE = /%2C/g;\n\n// fixed encodeURIComponent which is more conformant to RFC3986:\n// - escapes [!'()*]\n// - preserve commas\nvar encode = function (str) { return encodeURIComponent(str)\n    .replace(encodeReserveRE, encodeReserveReplacer)\n    .replace(commaRE, ','); };\n\nfunction decode (str) {\n  try {\n    return decodeURIComponent(str)\n  } catch (err) {\n    if (process.env.NODE_ENV !== 'production') {\n      warn(false, (\"Error decoding \\\"\" + str + \"\\\". Leaving it intact.\"));\n    }\n  }\n  return str\n}\n\nfunction resolveQuery (\n  query,\n  extraQuery,\n  _parseQuery\n) {\n  if ( extraQuery === void 0 ) extraQuery = {};\n\n  var parse = _parseQuery || parseQuery;\n  var parsedQuery;\n  try {\n    parsedQuery = parse(query || '');\n  } catch (e) {\n    process.env.NODE_ENV !== 'production' && warn(false, e.message);\n    parsedQuery = {};\n  }\n  for (var key in extraQuery) {\n    var value = extraQuery[key];\n    parsedQuery[key] = Array.isArray(value)\n      ? value.map(castQueryParamValue)\n      : castQueryParamValue(value);\n  }\n  return parsedQuery\n}\n\nvar castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };\n\nfunction parseQuery (query) {\n  var res = {};\n\n  query = query.trim().replace(/^(\\?|#|&)/, '');\n\n  if (!query) {\n    return res\n  }\n\n  query.split('&').forEach(function (param) {\n    var parts = param.replace(/\\+/g, ' ').split('=');\n    var key = decode(parts.shift());\n    var val = parts.length > 0 ? decode(parts.join('=')) : null;\n\n    if (res[key] === undefined) {\n      res[key] = val;\n    } else if (Array.isArray(res[key])) {\n      res[key].push(val);\n    } else {\n      res[key] = [res[key], val];\n    }\n  });\n\n  return res\n}\n\nfunction stringifyQuery (obj) {\n  var res = obj\n    ? Object.keys(obj)\n      .map(function (key) {\n        var val = obj[key];\n\n        if (val === undefined) {\n          return ''\n        }\n\n        if (val === null) {\n          return encode(key)\n        }\n\n        if (Array.isArray(val)) {\n          var result = [];\n          val.forEach(function (val2) {\n            if (val2 === undefined) {\n              return\n            }\n            if (val2 === null) {\n              result.push(encode(key));\n            } else {\n              result.push(encode(key) + '=' + encode(val2));\n            }\n          });\n          return result.join('&')\n        }\n\n        return encode(key) + '=' + encode(val)\n      })\n      .filter(function (x) { return x.length > 0; })\n      .join('&')\n    : null;\n  return res ? (\"?\" + res) : ''\n}\n\n/*  */\n\nvar trailingSlashRE = /\\/?$/;\n\nfunction createRoute (\n  record,\n  location,\n  redirectedFrom,\n  router\n) {\n  var stringifyQuery = router && router.options.stringifyQuery;\n\n  var query = location.query || {};\n  try {\n    query = clone(query);\n  } catch (e) {}\n\n  var route = {\n    name: location.name || (record && record.name),\n    meta: (record && record.meta) || {},\n    path: location.path || '/',\n    hash: location.hash || '',\n    query: query,\n    params: location.params || {},\n    fullPath: getFullPath(location, stringifyQuery),\n    matched: record ? formatMatch(record) : []\n  };\n  if (redirectedFrom) {\n    route.redirectedFrom = getFullPath(redirectedFrom, stringifyQuery);\n  }\n  return Object.freeze(route)\n}\n\nfunction clone (value) {\n  if (Array.isArray(value)) {\n    return value.map(clone)\n  } else if (value && typeof value === 'object') {\n    var res = {};\n    for (var key in value) {\n      res[key] = clone(value[key]);\n    }\n    return res\n  } else {\n    return value\n  }\n}\n\n// the starting route that represents the initial state\nvar START = createRoute(null, {\n  path: '/'\n});\n\nfunction formatMatch (record) {\n  var res = [];\n  while (record) {\n    res.unshift(record);\n    record = record.parent;\n  }\n  return res\n}\n\nfunction getFullPath (\n  ref,\n  _stringifyQuery\n) {\n  var path = ref.path;\n  var query = ref.query; if ( query === void 0 ) query = {};\n  var hash = ref.hash; if ( hash === void 0 ) hash = '';\n\n  var stringify = _stringifyQuery || stringifyQuery;\n  return (path || '/') + stringify(query) + hash\n}\n\nfunction isSameRoute (a, b, onlyPath) {\n  if (b === START) {\n    return a === b\n  } else if (!b) {\n    return false\n  } else if (a.path && b.path) {\n    return a.path.replace(trailingSlashRE, '') === b.path.replace(trailingSlashRE, '') && (onlyPath ||\n      a.hash === b.hash &&\n      isObjectEqual(a.query, b.query))\n  } else if (a.name && b.name) {\n    return (\n      a.name === b.name &&\n      (onlyPath || (\n        a.hash === b.hash &&\n      isObjectEqual(a.query, b.query) &&\n      isObjectEqual(a.params, b.params))\n      )\n    )\n  } else {\n    return false\n  }\n}\n\nfunction isObjectEqual (a, b) {\n  if ( a === void 0 ) a = {};\n  if ( b === void 0 ) b = {};\n\n  // handle null value #1566\n  if (!a || !b) { return a === b }\n  var aKeys = Object.keys(a).sort();\n  var bKeys = Object.keys(b).sort();\n  if (aKeys.length !== bKeys.length) {\n    return false\n  }\n  return aKeys.every(function (key, i) {\n    var aVal = a[key];\n    var bKey = bKeys[i];\n    if (bKey !== key) { return false }\n    var bVal = b[key];\n    // query values can be null and undefined\n    if (aVal == null || bVal == null) { return aVal === bVal }\n    // check nested equality\n    if (typeof aVal === 'object' && typeof bVal === 'object') {\n      return isObjectEqual(aVal, bVal)\n    }\n    return String(aVal) === String(bVal)\n  })\n}\n\nfunction isIncludedRoute (current, target) {\n  return (\n    current.path.replace(trailingSlashRE, '/').indexOf(\n      target.path.replace(trailingSlashRE, '/')\n    ) === 0 &&\n    (!target.hash || current.hash === target.hash) &&\n    queryIncludes(current.query, target.query)\n  )\n}\n\nfunction queryIncludes (current, target) {\n  for (var key in target) {\n    if (!(key in current)) {\n      return false\n    }\n  }\n  return true\n}\n\nfunction handleRouteEntered (route) {\n  for (var i = 0; i < route.matched.length; i++) {\n    var record = route.matched[i];\n    for (var name in record.instances) {\n      var instance = record.instances[name];\n      var cbs = record.enteredCbs[name];\n      if (!instance || !cbs) { continue }\n      delete record.enteredCbs[name];\n      for (var i$1 = 0; i$1 < cbs.length; i$1++) {\n        if (!instance._isBeingDestroyed) { cbs[i$1](instance); }\n      }\n    }\n  }\n}\n\nvar View = {\n  name: 'RouterView',\n  functional: true,\n  props: {\n    name: {\n      type: String,\n      default: 'default'\n    }\n  },\n  render: function render (_, ref) {\n    var props = ref.props;\n    var children = ref.children;\n    var parent = ref.parent;\n    var data = ref.data;\n\n    // used by devtools to display a router-view badge\n    data.routerView = true;\n\n    // directly use parent context's createElement() function\n    // so that components rendered by router-view can resolve named slots\n    var h = parent.$createElement;\n    var name = props.name;\n    var route = parent.$route;\n    var cache = parent._routerViewCache || (parent._routerViewCache = {});\n\n    // determine current view depth, also check to see if the tree\n    // has been toggled inactive but kept-alive.\n    var depth = 0;\n    var inactive = false;\n    while (parent && parent._routerRoot !== parent) {\n      var vnodeData = parent.$vnode ? parent.$vnode.data : {};\n      if (vnodeData.routerView) {\n        depth++;\n      }\n      if (vnodeData.keepAlive && parent._directInactive && parent._inactive) {\n        inactive = true;\n      }\n      parent = parent.$parent;\n    }\n    data.routerViewDepth = depth;\n\n    // render previous view if the tree is inactive and kept-alive\n    if (inactive) {\n      var cachedData = cache[name];\n      var cachedComponent = cachedData && cachedData.component;\n      if (cachedComponent) {\n        // #2301\n        // pass props\n        if (cachedData.configProps) {\n          fillPropsinData(cachedComponent, data, cachedData.route, cachedData.configProps);\n        }\n        return h(cachedComponent, data, children)\n      } else {\n        // render previous empty view\n        return h()\n      }\n    }\n\n    var matched = route.matched[depth];\n    var component = matched && matched.components[name];\n\n    // render empty node if no matched route or no config component\n    if (!matched || !component) {\n      cache[name] = null;\n      return h()\n    }\n\n    // cache component\n    cache[name] = { component: component };\n\n    // attach instance registration hook\n    // this will be called in the instance's injected lifecycle hooks\n    data.registerRouteInstance = function (vm, val) {\n      // val could be undefined for unregistration\n      var current = matched.instances[name];\n      if (\n        (val && current !== vm) ||\n        (!val && current === vm)\n      ) {\n        matched.instances[name] = val;\n      }\n    }\n\n    // also register instance in prepatch hook\n    // in case the same component instance is reused across different routes\n    ;(data.hook || (data.hook = {})).prepatch = function (_, vnode) {\n      matched.instances[name] = vnode.componentInstance;\n    };\n\n    // register instance in init hook\n    // in case kept-alive component be actived when routes changed\n    data.hook.init = function (vnode) {\n      if (vnode.data.keepAlive &&\n        vnode.componentInstance &&\n        vnode.componentInstance !== matched.instances[name]\n      ) {\n        matched.instances[name] = vnode.componentInstance;\n      }\n\n      // if the route transition has already been confirmed then we weren't\n      // able to call the cbs during confirmation as the component was not\n      // registered yet, so we call it here.\n      handleRouteEntered(route);\n    };\n\n    var configProps = matched.props && matched.props[name];\n    // save route and configProps in cache\n    if (configProps) {\n      extend(cache[name], {\n        route: route,\n        configProps: configProps\n      });\n      fillPropsinData(component, data, route, configProps);\n    }\n\n    return h(component, data, children)\n  }\n};\n\nfunction fillPropsinData (component, data, route, configProps) {\n  // resolve props\n  var propsToPass = data.props = resolveProps(route, configProps);\n  if (propsToPass) {\n    // clone to prevent mutation\n    propsToPass = data.props = extend({}, propsToPass);\n    // pass non-declared props as attrs\n    var attrs = data.attrs = data.attrs || {};\n    for (var key in propsToPass) {\n      if (!component.props || !(key in component.props)) {\n        attrs[key] = propsToPass[key];\n        delete propsToPass[key];\n      }\n    }\n  }\n}\n\nfunction resolveProps (route, config) {\n  switch (typeof config) {\n    case 'undefined':\n      return\n    case 'object':\n      return config\n    case 'function':\n      return config(route)\n    case 'boolean':\n      return config ? route.params : undefined\n    default:\n      if (process.env.NODE_ENV !== 'production') {\n        warn(\n          false,\n          \"props in \\\"\" + (route.path) + \"\\\" is a \" + (typeof config) + \", \" +\n          \"expecting an object, function or boolean.\"\n        );\n      }\n  }\n}\n\n/*  */\n\nfunction resolvePath (\n  relative,\n  base,\n  append\n) {\n  var firstChar = relative.charAt(0);\n  if (firstChar === '/') {\n    return relative\n  }\n\n  if (firstChar === '?' || firstChar === '#') {\n    return base + relative\n  }\n\n  var stack = base.split('/');\n\n  // remove trailing segment if:\n  // - not appending\n  // - appending to trailing slash (last segment is empty)\n  if (!append || !stack[stack.length - 1]) {\n    stack.pop();\n  }\n\n  // resolve relative path\n  var segments = relative.replace(/^\\//, '').split('/');\n  for (var i = 0; i < segments.length; i++) {\n    var segment = segments[i];\n    if (segment === '..') {\n      stack.pop();\n    } else if (segment !== '.') {\n      stack.push(segment);\n    }\n  }\n\n  // ensure leading slash\n  if (stack[0] !== '') {\n    stack.unshift('');\n  }\n\n  return stack.join('/')\n}\n\nfunction parsePath (path) {\n  var hash = '';\n  var query = '';\n\n  var hashIndex = path.indexOf('#');\n  if (hashIndex >= 0) {\n    hash = path.slice(hashIndex);\n    path = path.slice(0, hashIndex);\n  }\n\n  var queryIndex = path.indexOf('?');\n  if (queryIndex >= 0) {\n    query = path.slice(queryIndex + 1);\n    path = path.slice(0, queryIndex);\n  }\n\n  return {\n    path: path,\n    query: query,\n    hash: hash\n  }\n}\n\nfunction cleanPath (path) {\n  return path.replace(/\\/(?:\\s*\\/)+/g, '/')\n}\n\nvar isarray = Array.isArray || function (arr) {\n  return Object.prototype.toString.call(arr) == '[object Array]';\n};\n\n/**\n * Expose `pathToRegexp`.\n */\nvar pathToRegexp_1 = pathToRegexp;\nvar parse_1 = parse;\nvar compile_1 = compile;\nvar tokensToFunction_1 = tokensToFunction;\nvar tokensToRegExp_1 = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n  // Match escaped characters that would otherwise appear in future matches.\n  // This allows the user to escape special characters that won't transform.\n  '(\\\\\\\\.)',\n  // Match Express-style parameters and un-named parameters with a prefix\n  // and optional suffixes. Matches appear as:\n  //\n  // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n  // \"/route(\\\\d+)\"  => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n  // \"/*\"            => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n  '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param  {string}  str\n * @param  {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n  var tokens = [];\n  var key = 0;\n  var index = 0;\n  var path = '';\n  var defaultDelimiter = options && options.delimiter || '/';\n  var res;\n\n  while ((res = PATH_REGEXP.exec(str)) != null) {\n    var m = res[0];\n    var escaped = res[1];\n    var offset = res.index;\n    path += str.slice(index, offset);\n    index = offset + m.length;\n\n    // Ignore already escaped sequences.\n    if (escaped) {\n      path += escaped[1];\n      continue\n    }\n\n    var next = str[index];\n    var prefix = res[2];\n    var name = res[3];\n    var capture = res[4];\n    var group = res[5];\n    var modifier = res[6];\n    var asterisk = res[7];\n\n    // Push the current path onto the tokens.\n    if (path) {\n      tokens.push(path);\n      path = '';\n    }\n\n    var partial = prefix != null && next != null && next !== prefix;\n    var repeat = modifier === '+' || modifier === '*';\n    var optional = modifier === '?' || modifier === '*';\n    var delimiter = res[2] || defaultDelimiter;\n    var pattern = capture || group;\n\n    tokens.push({\n      name: name || key++,\n      prefix: prefix || '',\n      delimiter: delimiter,\n      optional: optional,\n      repeat: repeat,\n      partial: partial,\n      asterisk: !!asterisk,\n      pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n    });\n  }\n\n  // Match any characters still remaining.\n  if (index < str.length) {\n    path += str.substr(index);\n  }\n\n  // If the path exists, push it onto the end.\n  if (path) {\n    tokens.push(path);\n  }\n\n  return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param  {string}             str\n * @param  {Object=}            options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n  return tokensToFunction(parse(str, options), options)\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param  {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n  return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n    return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n  })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param  {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n  return encodeURI(str).replace(/[?#]/g, function (c) {\n    return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n  })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens, options) {\n  // Compile all the tokens into regexps.\n  var matches = new Array(tokens.length);\n\n  // Compile all the patterns before compilation.\n  for (var i = 0; i < tokens.length; i++) {\n    if (typeof tokens[i] === 'object') {\n      matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options));\n    }\n  }\n\n  return function (obj, opts) {\n    var path = '';\n    var data = obj || {};\n    var options = opts || {};\n    var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n\n    for (var i = 0; i < tokens.length; i++) {\n      var token = tokens[i];\n\n      if (typeof token === 'string') {\n        path += token;\n\n        continue\n      }\n\n      var value = data[token.name];\n      var segment;\n\n      if (value == null) {\n        if (token.optional) {\n          // Prepend partial segment prefixes.\n          if (token.partial) {\n            path += token.prefix;\n          }\n\n          continue\n        } else {\n          throw new TypeError('Expected \"' + token.name + '\" to be defined')\n        }\n      }\n\n      if (isarray(value)) {\n        if (!token.repeat) {\n          throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n        }\n\n        if (value.length === 0) {\n          if (token.optional) {\n            continue\n          } else {\n            throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n          }\n        }\n\n        for (var j = 0; j < value.length; j++) {\n          segment = encode(value[j]);\n\n          if (!matches[i].test(segment)) {\n            throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n          }\n\n          path += (j === 0 ? token.prefix : token.delimiter) + segment;\n        }\n\n        continue\n      }\n\n      segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n\n      if (!matches[i].test(segment)) {\n        throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n      }\n\n      path += token.prefix + segment;\n    }\n\n    return path\n  }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param  {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n  return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param  {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n  return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param  {!RegExp} re\n * @param  {Array}   keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n  re.keys = keys;\n  return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param  {Object} options\n * @return {string}\n */\nfunction flags (options) {\n  return options && options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param  {!RegExp} path\n * @param  {!Array}  keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n  // Use a negative lookahead to match only capturing groups.\n  var groups = path.source.match(/\\((?!\\?)/g);\n\n  if (groups) {\n    for (var i = 0; i < groups.length; i++) {\n      keys.push({\n        name: i,\n        prefix: null,\n        delimiter: null,\n        optional: false,\n        repeat: false,\n        partial: false,\n        asterisk: false,\n        pattern: null\n      });\n    }\n  }\n\n  return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param  {!Array}  path\n * @param  {Array}   keys\n * @param  {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n  var parts = [];\n\n  for (var i = 0; i < path.length; i++) {\n    parts.push(pathToRegexp(path[i], keys, options).source);\n  }\n\n  var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n\n  return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param  {string}  path\n * @param  {!Array}  keys\n * @param  {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n  return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param  {!Array}          tokens\n * @param  {(Array|Object)=} keys\n * @param  {Object=}         options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n  if (!isarray(keys)) {\n    options = /** @type {!Object} */ (keys || options);\n    keys = [];\n  }\n\n  options = options || {};\n\n  var strict = options.strict;\n  var end = options.end !== false;\n  var route = '';\n\n  // Iterate over the tokens and create our regexp string.\n  for (var i = 0; i < tokens.length; i++) {\n    var token = tokens[i];\n\n    if (typeof token === 'string') {\n      route += escapeString(token);\n    } else {\n      var prefix = escapeString(token.prefix);\n      var capture = '(?:' + token.pattern + ')';\n\n      keys.push(token);\n\n      if (token.repeat) {\n        capture += '(?:' + prefix + capture + ')*';\n      }\n\n      if (token.optional) {\n        if (!token.partial) {\n          capture = '(?:' + prefix + '(' + capture + '))?';\n        } else {\n          capture = prefix + '(' + capture + ')?';\n        }\n      } else {\n        capture = prefix + '(' + capture + ')';\n      }\n\n      route += capture;\n    }\n  }\n\n  var delimiter = escapeString(options.delimiter || '/');\n  var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n  // In non-strict mode we allow a slash at the end of match. If the path to\n  // match already ends with a slash, we remove it for consistency. The slash\n  // is valid at the end of a path match, not in the middle. This is important\n  // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n  if (!strict) {\n    route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n  }\n\n  if (end) {\n    route += '$';\n  } else {\n    // In non-ending mode, we need the capturing groups to match as much as\n    // possible by using a positive lookahead to the end or next path segment.\n    route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n  }\n\n  return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param  {(string|RegExp|Array)} path\n * @param  {(Array|Object)=}       keys\n * @param  {Object=}               options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n  if (!isarray(keys)) {\n    options = /** @type {!Object} */ (keys || options);\n    keys = [];\n  }\n\n  options = options || {};\n\n  if (path instanceof RegExp) {\n    return regexpToRegexp(path, /** @type {!Array} */ (keys))\n  }\n\n  if (isarray(path)) {\n    return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n  }\n\n  return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\npathToRegexp_1.parse = parse_1;\npathToRegexp_1.compile = compile_1;\npathToRegexp_1.tokensToFunction = tokensToFunction_1;\npathToRegexp_1.tokensToRegExp = tokensToRegExp_1;\n\n/*  */\n\n// $flow-disable-line\nvar regexpCompileCache = Object.create(null);\n\nfunction fillParams (\n  path,\n  params,\n  routeMsg\n) {\n  params = params || {};\n  try {\n    var filler =\n      regexpCompileCache[path] ||\n      (regexpCompileCache[path] = pathToRegexp_1.compile(path));\n\n    // Fix #2505 resolving asterisk routes { name: 'not-found', params: { pathMatch: '/not-found' }}\n    // and fix #3106 so that you can work with location descriptor object having params.pathMatch equal to empty string\n    if (typeof params.pathMatch === 'string') { params[0] = params.pathMatch; }\n\n    return filler(params, { pretty: true })\n  } catch (e) {\n    if (process.env.NODE_ENV !== 'production') {\n      // Fix #3072 no warn if `pathMatch` is string\n      warn(typeof params.pathMatch === 'string', (\"missing param for \" + routeMsg + \": \" + (e.message)));\n    }\n    return ''\n  } finally {\n    // delete the 0 if it was added\n    delete params[0];\n  }\n}\n\n/*  */\n\nfunction normalizeLocation (\n  raw,\n  current,\n  append,\n  router\n) {\n  var next = typeof raw === 'string' ? { path: raw } : raw;\n  // named target\n  if (next._normalized) {\n    return next\n  } else if (next.name) {\n    next = extend({}, raw);\n    var params = next.params;\n    if (params && typeof params === 'object') {\n      next.params = extend({}, params);\n    }\n    return next\n  }\n\n  // relative params\n  if (!next.path && next.params && current) {\n    next = extend({}, next);\n    next._normalized = true;\n    var params$1 = extend(extend({}, current.params), next.params);\n    if (current.name) {\n      next.name = current.name;\n      next.params = params$1;\n    } else if (current.matched.length) {\n      var rawPath = current.matched[current.matched.length - 1].path;\n      next.path = fillParams(rawPath, params$1, (\"path \" + (current.path)));\n    } else if (process.env.NODE_ENV !== 'production') {\n      warn(false, \"relative params navigation requires a current route.\");\n    }\n    return next\n  }\n\n  var parsedPath = parsePath(next.path || '');\n  var basePath = (current && current.path) || '/';\n  var path = parsedPath.path\n    ? resolvePath(parsedPath.path, basePath, append || next.append)\n    : basePath;\n\n  var query = resolveQuery(\n    parsedPath.query,\n    next.query,\n    router && router.options.parseQuery\n  );\n\n  var hash = next.hash || parsedPath.hash;\n  if (hash && hash.charAt(0) !== '#') {\n    hash = \"#\" + hash;\n  }\n\n  return {\n    _normalized: true,\n    path: path,\n    query: query,\n    hash: hash\n  }\n}\n\n/*  */\n\n// work around weird flow bug\nvar toTypes = [String, Object];\nvar eventTypes = [String, Array];\n\nvar noop = function () {};\n\nvar warnedCustomSlot;\nvar warnedTagProp;\nvar warnedEventProp;\n\nvar Link = {\n  name: 'RouterLink',\n  props: {\n    to: {\n      type: toTypes,\n      required: true\n    },\n    tag: {\n      type: String,\n      default: 'a'\n    },\n    custom: Boolean,\n    exact: Boolean,\n    exactPath: Boolean,\n    append: Boolean,\n    replace: Boolean,\n    activeClass: String,\n    exactActiveClass: String,\n    ariaCurrentValue: {\n      type: String,\n      default: 'page'\n    },\n    event: {\n      type: eventTypes,\n      default: 'click'\n    }\n  },\n  render: function render (h) {\n    var this$1$1 = this;\n\n    var router = this.$router;\n    var current = this.$route;\n    var ref = router.resolve(\n      this.to,\n      current,\n      this.append\n    );\n    var location = ref.location;\n    var route = ref.route;\n    var href = ref.href;\n\n    var classes = {};\n    var globalActiveClass = router.options.linkActiveClass;\n    var globalExactActiveClass = router.options.linkExactActiveClass;\n    // Support global empty active class\n    var activeClassFallback =\n      globalActiveClass == null ? 'router-link-active' : globalActiveClass;\n    var exactActiveClassFallback =\n      globalExactActiveClass == null\n        ? 'router-link-exact-active'\n        : globalExactActiveClass;\n    var activeClass =\n      this.activeClass == null ? activeClassFallback : this.activeClass;\n    var exactActiveClass =\n      this.exactActiveClass == null\n        ? exactActiveClassFallback\n        : this.exactActiveClass;\n\n    var compareTarget = route.redirectedFrom\n      ? createRoute(null, normalizeLocation(route.redirectedFrom), null, router)\n      : route;\n\n    classes[exactActiveClass] = isSameRoute(current, compareTarget, this.exactPath);\n    classes[activeClass] = this.exact || this.exactPath\n      ? classes[exactActiveClass]\n      : isIncludedRoute(current, compareTarget);\n\n    var ariaCurrentValue = classes[exactActiveClass] ? this.ariaCurrentValue : null;\n\n    var handler = function (e) {\n      if (guardEvent(e)) {\n        if (this$1$1.replace) {\n          router.replace(location, noop);\n        } else {\n          router.push(location, noop);\n        }\n      }\n    };\n\n    var on = { click: guardEvent };\n    if (Array.isArray(this.event)) {\n      this.event.forEach(function (e) {\n        on[e] = handler;\n      });\n    } else {\n      on[this.event] = handler;\n    }\n\n    var data = { class: classes };\n\n    var scopedSlot =\n      !this.$scopedSlots.$hasNormal &&\n      this.$scopedSlots.default &&\n      this.$scopedSlots.default({\n        href: href,\n        route: route,\n        navigate: handler,\n        isActive: classes[activeClass],\n        isExactActive: classes[exactActiveClass]\n      });\n\n    if (scopedSlot) {\n      if (process.env.NODE_ENV !== 'production' && !this.custom) {\n        !warnedCustomSlot && warn(false, 'In Vue Router 4, the v-slot API will by default wrap its content with an <a> element. Use the custom prop to remove this warning:\\n<router-link v-slot=\"{ navigate, href }\" custom></router-link>\\n');\n        warnedCustomSlot = true;\n      }\n      if (scopedSlot.length === 1) {\n        return scopedSlot[0]\n      } else if (scopedSlot.length > 1 || !scopedSlot.length) {\n        if (process.env.NODE_ENV !== 'production') {\n          warn(\n            false,\n            (\"<router-link> with to=\\\"\" + (this.to) + \"\\\" is trying to use a scoped slot but it didn't provide exactly one child. Wrapping the content with a span element.\")\n          );\n        }\n        return scopedSlot.length === 0 ? h() : h('span', {}, scopedSlot)\n      }\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      if ('tag' in this.$options.propsData && !warnedTagProp) {\n        warn(\n          false,\n          \"<router-link>'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n        );\n        warnedTagProp = true;\n      }\n      if ('event' in this.$options.propsData && !warnedEventProp) {\n        warn(\n          false,\n          \"<router-link>'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n        );\n        warnedEventProp = true;\n      }\n    }\n\n    if (this.tag === 'a') {\n      data.on = on;\n      data.attrs = { href: href, 'aria-current': ariaCurrentValue };\n    } else {\n      // find the first <a> child and apply listener and href\n      var a = findAnchor(this.$slots.default);\n      if (a) {\n        // in case the <a> is a static node\n        a.isStatic = false;\n        var aData = (a.data = extend({}, a.data));\n        aData.on = aData.on || {};\n        // transform existing events in both objects into arrays so we can push later\n        for (var event in aData.on) {\n          var handler$1 = aData.on[event];\n          if (event in on) {\n            aData.on[event] = Array.isArray(handler$1) ? handler$1 : [handler$1];\n          }\n        }\n        // append new listeners for router-link\n        for (var event$1 in on) {\n          if (event$1 in aData.on) {\n            // on[event] is always a function\n            aData.on[event$1].push(on[event$1]);\n          } else {\n            aData.on[event$1] = handler;\n          }\n        }\n\n        var aAttrs = (a.data.attrs = extend({}, a.data.attrs));\n        aAttrs.href = href;\n        aAttrs['aria-current'] = ariaCurrentValue;\n      } else {\n        // doesn't have <a> child, apply listener to self\n        data.on = on;\n      }\n    }\n\n    return h(this.tag, data, this.$slots.default)\n  }\n};\n\nfunction guardEvent (e) {\n  // don't redirect with control keys\n  if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) { return }\n  // don't redirect when preventDefault called\n  if (e.defaultPrevented) { return }\n  // don't redirect on right click\n  if (e.button !== undefined && e.button !== 0) { return }\n  // don't redirect if `target=\"_blank\"`\n  if (e.currentTarget && e.currentTarget.getAttribute) {\n    var target = e.currentTarget.getAttribute('target');\n    if (/\\b_blank\\b/i.test(target)) { return }\n  }\n  // this may be a Weex event which doesn't have this method\n  if (e.preventDefault) {\n    e.preventDefault();\n  }\n  return true\n}\n\nfunction findAnchor (children) {\n  if (children) {\n    var child;\n    for (var i = 0; i < children.length; i++) {\n      child = children[i];\n      if (child.tag === 'a') {\n        return child\n      }\n      if (child.children && (child = findAnchor(child.children))) {\n        return child\n      }\n    }\n  }\n}\n\nvar _Vue;\n\nfunction install (Vue) {\n  if (install.installed && _Vue === Vue) { return }\n  install.installed = true;\n\n  _Vue = Vue;\n\n  var isDef = function (v) { return v !== undefined; };\n\n  var registerInstance = function (vm, callVal) {\n    var i = vm.$options._parentVnode;\n    if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {\n      i(vm, callVal);\n    }\n  };\n\n  Vue.mixin({\n    beforeCreate: function beforeCreate () {\n      if (isDef(this.$options.router)) {\n        this._routerRoot = this;\n        this._router = this.$options.router;\n        this._router.init(this);\n        Vue.util.defineReactive(this, '_route', this._router.history.current);\n      } else {\n        this._routerRoot = (this.$parent && this.$parent._routerRoot) || this;\n      }\n      registerInstance(this, this);\n    },\n    destroyed: function destroyed () {\n      registerInstance(this);\n    }\n  });\n\n  Object.defineProperty(Vue.prototype, '$router', {\n    get: function get () { return this._routerRoot._router }\n  });\n\n  Object.defineProperty(Vue.prototype, '$route', {\n    get: function get () { return this._routerRoot._route }\n  });\n\n  Vue.component('RouterView', View);\n  Vue.component('RouterLink', Link);\n\n  var strats = Vue.config.optionMergeStrategies;\n  // use the same hook merging strategy for route hooks\n  strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created;\n}\n\n/*  */\n\nvar inBrowser = typeof window !== 'undefined';\n\n/*  */\n\nfunction createRouteMap (\n  routes,\n  oldPathList,\n  oldPathMap,\n  oldNameMap,\n  parentRoute\n) {\n  // the path list is used to control path matching priority\n  var pathList = oldPathList || [];\n  // $flow-disable-line\n  var pathMap = oldPathMap || Object.create(null);\n  // $flow-disable-line\n  var nameMap = oldNameMap || Object.create(null);\n\n  routes.forEach(function (route) {\n    addRouteRecord(pathList, pathMap, nameMap, route, parentRoute);\n  });\n\n  // ensure wildcard routes are always at the end\n  for (var i = 0, l = pathList.length; i < l; i++) {\n    if (pathList[i] === '*') {\n      pathList.push(pathList.splice(i, 1)[0]);\n      l--;\n      i--;\n    }\n  }\n\n  if (process.env.NODE_ENV === 'development') {\n    // warn if routes do not include leading slashes\n    var found = pathList\n    // check for missing leading slash\n      .filter(function (path) { return path && path.charAt(0) !== '*' && path.charAt(0) !== '/'; });\n\n    if (found.length > 0) {\n      var pathNames = found.map(function (path) { return (\"- \" + path); }).join('\\n');\n      warn(false, (\"Non-nested routes must include a leading slash character. Fix the following routes: \\n\" + pathNames));\n    }\n  }\n\n  return {\n    pathList: pathList,\n    pathMap: pathMap,\n    nameMap: nameMap\n  }\n}\n\nfunction addRouteRecord (\n  pathList,\n  pathMap,\n  nameMap,\n  route,\n  parent,\n  matchAs\n) {\n  var path = route.path;\n  var name = route.name;\n  if (process.env.NODE_ENV !== 'production') {\n    assert(path != null, \"\\\"path\\\" is required in a route configuration.\");\n    assert(\n      typeof route.component !== 'string',\n      \"route config \\\"component\\\" for path: \" + (String(\n        path || name\n      )) + \" cannot be a \" + \"string id. Use an actual component instead.\"\n    );\n\n    warn(\n      // eslint-disable-next-line no-control-regex\n      !/[^\\u0000-\\u007F]+/.test(path),\n      \"Route with path \\\"\" + path + \"\\\" contains unencoded characters, make sure \" +\n        \"your path is correctly encoded before passing it to the router. Use \" +\n        \"encodeURI to encode static segments of your path.\"\n    );\n  }\n\n  var pathToRegexpOptions =\n    route.pathToRegexpOptions || {};\n  var normalizedPath = normalizePath(path, parent, pathToRegexpOptions.strict);\n\n  if (typeof route.caseSensitive === 'boolean') {\n    pathToRegexpOptions.sensitive = route.caseSensitive;\n  }\n\n  var record = {\n    path: normalizedPath,\n    regex: compileRouteRegex(normalizedPath, pathToRegexpOptions),\n    components: route.components || { default: route.component },\n    alias: route.alias\n      ? typeof route.alias === 'string'\n        ? [route.alias]\n        : route.alias\n      : [],\n    instances: {},\n    enteredCbs: {},\n    name: name,\n    parent: parent,\n    matchAs: matchAs,\n    redirect: route.redirect,\n    beforeEnter: route.beforeEnter,\n    meta: route.meta || {},\n    props:\n      route.props == null\n        ? {}\n        : route.components\n          ? route.props\n          : { default: route.props }\n  };\n\n  if (route.children) {\n    // Warn if route is named, does not redirect and has a default child route.\n    // If users navigate to this route by name, the default child will\n    // not be rendered (GH Issue #629)\n    if (process.env.NODE_ENV !== 'production') {\n      if (\n        route.name &&\n        !route.redirect &&\n        route.children.some(function (child) { return /^\\/?$/.test(child.path); })\n      ) {\n        warn(\n          false,\n          \"Named Route '\" + (route.name) + \"' has a default child route. \" +\n            \"When navigating to this named route (:to=\\\"{name: '\" + (route.name) + \"'}\\\"), \" +\n            \"the default child route will not be rendered. Remove the name from \" +\n            \"this route and use the name of the default child route for named \" +\n            \"links instead.\"\n        );\n      }\n    }\n    route.children.forEach(function (child) {\n      var childMatchAs = matchAs\n        ? cleanPath((matchAs + \"/\" + (child.path)))\n        : undefined;\n      addRouteRecord(pathList, pathMap, nameMap, child, record, childMatchAs);\n    });\n  }\n\n  if (!pathMap[record.path]) {\n    pathList.push(record.path);\n    pathMap[record.path] = record;\n  }\n\n  if (route.alias !== undefined) {\n    var aliases = Array.isArray(route.alias) ? route.alias : [route.alias];\n    for (var i = 0; i < aliases.length; ++i) {\n      var alias = aliases[i];\n      if (process.env.NODE_ENV !== 'production' && alias === path) {\n        warn(\n          false,\n          (\"Found an alias with the same value as the path: \\\"\" + path + \"\\\". You have to remove that alias. It will be ignored in development.\")\n        );\n        // skip in dev to make it work\n        continue\n      }\n\n      var aliasRoute = {\n        path: alias,\n        children: route.children\n      };\n      addRouteRecord(\n        pathList,\n        pathMap,\n        nameMap,\n        aliasRoute,\n        parent,\n        record.path || '/' // matchAs\n      );\n    }\n  }\n\n  if (name) {\n    if (!nameMap[name]) {\n      nameMap[name] = record;\n    } else if (process.env.NODE_ENV !== 'production' && !matchAs) {\n      warn(\n        false,\n        \"Duplicate named routes definition: \" +\n          \"{ name: \\\"\" + name + \"\\\", path: \\\"\" + (record.path) + \"\\\" }\"\n      );\n    }\n  }\n}\n\nfunction compileRouteRegex (\n  path,\n  pathToRegexpOptions\n) {\n  var regex = pathToRegexp_1(path, [], pathToRegexpOptions);\n  if (process.env.NODE_ENV !== 'production') {\n    var keys = Object.create(null);\n    regex.keys.forEach(function (key) {\n      warn(\n        !keys[key.name],\n        (\"Duplicate param keys in route with path: \\\"\" + path + \"\\\"\")\n      );\n      keys[key.name] = true;\n    });\n  }\n  return regex\n}\n\nfunction normalizePath (\n  path,\n  parent,\n  strict\n) {\n  if (!strict) { path = path.replace(/\\/$/, ''); }\n  if (path[0] === '/') { return path }\n  if (parent == null) { return path }\n  return cleanPath(((parent.path) + \"/\" + path))\n}\n\n/*  */\n\n\n\nfunction createMatcher (\n  routes,\n  router\n) {\n  var ref = createRouteMap(routes);\n  var pathList = ref.pathList;\n  var pathMap = ref.pathMap;\n  var nameMap = ref.nameMap;\n\n  function addRoutes (routes) {\n    createRouteMap(routes, pathList, pathMap, nameMap);\n  }\n\n  function addRoute (parentOrRoute, route) {\n    var parent = (typeof parentOrRoute !== 'object') ? nameMap[parentOrRoute] : undefined;\n    // $flow-disable-line\n    createRouteMap([route || parentOrRoute], pathList, pathMap, nameMap, parent);\n\n    // add aliases of parent\n    if (parent && parent.alias.length) {\n      createRouteMap(\n        // $flow-disable-line route is defined if parent is\n        parent.alias.map(function (alias) { return ({ path: alias, children: [route] }); }),\n        pathList,\n        pathMap,\n        nameMap,\n        parent\n      );\n    }\n  }\n\n  function getRoutes () {\n    return pathList.map(function (path) { return pathMap[path]; })\n  }\n\n  function match (\n    raw,\n    currentRoute,\n    redirectedFrom\n  ) {\n    var location = normalizeLocation(raw, currentRoute, false, router);\n    var name = location.name;\n\n    if (name) {\n      var record = nameMap[name];\n      if (process.env.NODE_ENV !== 'production') {\n        warn(record, (\"Route with name '\" + name + \"' does not exist\"));\n      }\n      if (!record) { return _createRoute(null, location) }\n      var paramNames = record.regex.keys\n        .filter(function (key) { return !key.optional; })\n        .map(function (key) { return key.name; });\n\n      if (typeof location.params !== 'object') {\n        location.params = {};\n      }\n\n      if (currentRoute && typeof currentRoute.params === 'object') {\n        for (var key in currentRoute.params) {\n          if (!(key in location.params) && paramNames.indexOf(key) > -1) {\n            location.params[key] = currentRoute.params[key];\n          }\n        }\n      }\n\n      location.path = fillParams(record.path, location.params, (\"named route \\\"\" + name + \"\\\"\"));\n      return _createRoute(record, location, redirectedFrom)\n    } else if (location.path) {\n      location.params = {};\n      for (var i = 0; i < pathList.length; i++) {\n        var path = pathList[i];\n        var record$1 = pathMap[path];\n        if (matchRoute(record$1.regex, location.path, location.params)) {\n          return _createRoute(record$1, location, redirectedFrom)\n        }\n      }\n    }\n    // no match\n    return _createRoute(null, location)\n  }\n\n  function redirect (\n    record,\n    location\n  ) {\n    var originalRedirect = record.redirect;\n    var redirect = typeof originalRedirect === 'function'\n      ? originalRedirect(createRoute(record, location, null, router))\n      : originalRedirect;\n\n    if (typeof redirect === 'string') {\n      redirect = { path: redirect };\n    }\n\n    if (!redirect || typeof redirect !== 'object') {\n      if (process.env.NODE_ENV !== 'production') {\n        warn(\n          false, (\"invalid redirect option: \" + (JSON.stringify(redirect)))\n        );\n      }\n      return _createRoute(null, location)\n    }\n\n    var re = redirect;\n    var name = re.name;\n    var path = re.path;\n    var query = location.query;\n    var hash = location.hash;\n    var params = location.params;\n    query = re.hasOwnProperty('query') ? re.query : query;\n    hash = re.hasOwnProperty('hash') ? re.hash : hash;\n    params = re.hasOwnProperty('params') ? re.params : params;\n\n    if (name) {\n      // resolved named direct\n      var targetRecord = nameMap[name];\n      if (process.env.NODE_ENV !== 'production') {\n        assert(targetRecord, (\"redirect failed: named route \\\"\" + name + \"\\\" not found.\"));\n      }\n      return match({\n        _normalized: true,\n        name: name,\n        query: query,\n        hash: hash,\n        params: params\n      }, undefined, location)\n    } else if (path) {\n      // 1. resolve relative redirect\n      var rawPath = resolveRecordPath(path, record);\n      // 2. resolve params\n      var resolvedPath = fillParams(rawPath, params, (\"redirect route with path \\\"\" + rawPath + \"\\\"\"));\n      // 3. rematch with existing query and hash\n      return match({\n        _normalized: true,\n        path: resolvedPath,\n        query: query,\n        hash: hash\n      }, undefined, location)\n    } else {\n      if (process.env.NODE_ENV !== 'production') {\n        warn(false, (\"invalid redirect option: \" + (JSON.stringify(redirect))));\n      }\n      return _createRoute(null, location)\n    }\n  }\n\n  function alias (\n    record,\n    location,\n    matchAs\n  ) {\n    var aliasedPath = fillParams(matchAs, location.params, (\"aliased route with path \\\"\" + matchAs + \"\\\"\"));\n    var aliasedMatch = match({\n      _normalized: true,\n      path: aliasedPath\n    });\n    if (aliasedMatch) {\n      var matched = aliasedMatch.matched;\n      var aliasedRecord = matched[matched.length - 1];\n      location.params = aliasedMatch.params;\n      return _createRoute(aliasedRecord, location)\n    }\n    return _createRoute(null, location)\n  }\n\n  function _createRoute (\n    record,\n    location,\n    redirectedFrom\n  ) {\n    if (record && record.redirect) {\n      return redirect(record, redirectedFrom || location)\n    }\n    if (record && record.matchAs) {\n      return alias(record, location, record.matchAs)\n    }\n    return createRoute(record, location, redirectedFrom, router)\n  }\n\n  return {\n    match: match,\n    addRoute: addRoute,\n    getRoutes: getRoutes,\n    addRoutes: addRoutes\n  }\n}\n\nfunction matchRoute (\n  regex,\n  path,\n  params\n) {\n  var m = path.match(regex);\n\n  if (!m) {\n    return false\n  } else if (!params) {\n    return true\n  }\n\n  for (var i = 1, len = m.length; i < len; ++i) {\n    var key = regex.keys[i - 1];\n    if (key) {\n      // Fix #1994: using * with props: true generates a param named 0\n      params[key.name || 'pathMatch'] = typeof m[i] === 'string' ? decode(m[i]) : m[i];\n    }\n  }\n\n  return true\n}\n\nfunction resolveRecordPath (path, record) {\n  return resolvePath(path, record.parent ? record.parent.path : '/', true)\n}\n\n/*  */\n\n// use User Timing api (if present) for more accurate key precision\nvar Time =\n  inBrowser && window.performance && window.performance.now\n    ? window.performance\n    : Date;\n\nfunction genStateKey () {\n  return Time.now().toFixed(3)\n}\n\nvar _key = genStateKey();\n\nfunction getStateKey () {\n  return _key\n}\n\nfunction setStateKey (key) {\n  return (_key = key)\n}\n\n/*  */\n\nvar positionStore = Object.create(null);\n\nfunction setupScroll () {\n  // Prevent browser scroll behavior on History popstate\n  if ('scrollRestoration' in window.history) {\n    window.history.scrollRestoration = 'manual';\n  }\n  // Fix for #1585 for Firefox\n  // Fix for #2195 Add optional third attribute to workaround a bug in safari https://bugs.webkit.org/show_bug.cgi?id=182678\n  // Fix for #2774 Support for apps loaded from Windows file shares not mapped to network drives: replaced location.origin with\n  // window.location.protocol + '//' + window.location.host\n  // location.host contains the port and location.hostname doesn't\n  var protocolAndPath = window.location.protocol + '//' + window.location.host;\n  var absolutePath = window.location.href.replace(protocolAndPath, '');\n  // preserve existing history state as it could be overriden by the user\n  var stateCopy = extend({}, window.history.state);\n  stateCopy.key = getStateKey();\n  window.history.replaceState(stateCopy, '', absolutePath);\n  window.addEventListener('popstate', handlePopState);\n  return function () {\n    window.removeEventListener('popstate', handlePopState);\n  }\n}\n\nfunction handleScroll (\n  router,\n  to,\n  from,\n  isPop\n) {\n  if (!router.app) {\n    return\n  }\n\n  var behavior = router.options.scrollBehavior;\n  if (!behavior) {\n    return\n  }\n\n  if (process.env.NODE_ENV !== 'production') {\n    assert(typeof behavior === 'function', \"scrollBehavior must be a function\");\n  }\n\n  // wait until re-render finishes before scrolling\n  router.app.$nextTick(function () {\n    var position = getScrollPosition();\n    var shouldScroll = behavior.call(\n      router,\n      to,\n      from,\n      isPop ? position : null\n    );\n\n    if (!shouldScroll) {\n      return\n    }\n\n    if (typeof shouldScroll.then === 'function') {\n      shouldScroll\n        .then(function (shouldScroll) {\n          scrollToPosition((shouldScroll), position);\n        })\n        .catch(function (err) {\n          if (process.env.NODE_ENV !== 'production') {\n            assert(false, err.toString());\n          }\n        });\n    } else {\n      scrollToPosition(shouldScroll, position);\n    }\n  });\n}\n\nfunction saveScrollPosition () {\n  var key = getStateKey();\n  if (key) {\n    positionStore[key] = {\n      x: window.pageXOffset,\n      y: window.pageYOffset\n    };\n  }\n}\n\nfunction handlePopState (e) {\n  saveScrollPosition();\n  if (e.state && e.state.key) {\n    setStateKey(e.state.key);\n  }\n}\n\nfunction getScrollPosition () {\n  var key = getStateKey();\n  if (key) {\n    return positionStore[key]\n  }\n}\n\nfunction getElementPosition (el, offset) {\n  var docEl = document.documentElement;\n  var docRect = docEl.getBoundingClientRect();\n  var elRect = el.getBoundingClientRect();\n  return {\n    x: elRect.left - docRect.left - offset.x,\n    y: elRect.top - docRect.top - offset.y\n  }\n}\n\nfunction isValidPosition (obj) {\n  return isNumber(obj.x) || isNumber(obj.y)\n}\n\nfunction normalizePosition (obj) {\n  return {\n    x: isNumber(obj.x) ? obj.x : window.pageXOffset,\n    y: isNumber(obj.y) ? obj.y : window.pageYOffset\n  }\n}\n\nfunction normalizeOffset (obj) {\n  return {\n    x: isNumber(obj.x) ? obj.x : 0,\n    y: isNumber(obj.y) ? obj.y : 0\n  }\n}\n\nfunction isNumber (v) {\n  return typeof v === 'number'\n}\n\nvar hashStartsWithNumberRE = /^#\\d/;\n\nfunction scrollToPosition (shouldScroll, position) {\n  var isObject = typeof shouldScroll === 'object';\n  if (isObject && typeof shouldScroll.selector === 'string') {\n    // getElementById would still fail if the selector contains a more complicated query like #main[data-attr]\n    // but at the same time, it doesn't make much sense to select an element with an id and an extra selector\n    var el = hashStartsWithNumberRE.test(shouldScroll.selector) // $flow-disable-line\n      ? document.getElementById(shouldScroll.selector.slice(1)) // $flow-disable-line\n      : document.querySelector(shouldScroll.selector);\n\n    if (el) {\n      var offset =\n        shouldScroll.offset && typeof shouldScroll.offset === 'object'\n          ? shouldScroll.offset\n          : {};\n      offset = normalizeOffset(offset);\n      position = getElementPosition(el, offset);\n    } else if (isValidPosition(shouldScroll)) {\n      position = normalizePosition(shouldScroll);\n    }\n  } else if (isObject && isValidPosition(shouldScroll)) {\n    position = normalizePosition(shouldScroll);\n  }\n\n  if (position) {\n    // $flow-disable-line\n    if ('scrollBehavior' in document.documentElement.style) {\n      window.scrollTo({\n        left: position.x,\n        top: position.y,\n        // $flow-disable-line\n        behavior: shouldScroll.behavior\n      });\n    } else {\n      window.scrollTo(position.x, position.y);\n    }\n  }\n}\n\n/*  */\n\nvar supportsPushState =\n  inBrowser &&\n  (function () {\n    var ua = window.navigator.userAgent;\n\n    if (\n      (ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) &&\n      ua.indexOf('Mobile Safari') !== -1 &&\n      ua.indexOf('Chrome') === -1 &&\n      ua.indexOf('Windows Phone') === -1\n    ) {\n      return false\n    }\n\n    return window.history && typeof window.history.pushState === 'function'\n  })();\n\nfunction pushState (url, replace) {\n  saveScrollPosition();\n  // try...catch the pushState call to get around Safari\n  // DOM Exception 18 where it limits to 100 pushState calls\n  var history = window.history;\n  try {\n    if (replace) {\n      // preserve existing history state as it could be overriden by the user\n      var stateCopy = extend({}, history.state);\n      stateCopy.key = getStateKey();\n      history.replaceState(stateCopy, '', url);\n    } else {\n      history.pushState({ key: setStateKey(genStateKey()) }, '', url);\n    }\n  } catch (e) {\n    window.location[replace ? 'replace' : 'assign'](url);\n  }\n}\n\nfunction replaceState (url) {\n  pushState(url, true);\n}\n\n// When changing thing, also edit router.d.ts\nvar NavigationFailureType = {\n  redirected: 2,\n  aborted: 4,\n  cancelled: 8,\n  duplicated: 16\n};\n\nfunction createNavigationRedirectedError (from, to) {\n  return createRouterError(\n    from,\n    to,\n    NavigationFailureType.redirected,\n    (\"Redirected when going from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (stringifyRoute(\n      to\n    )) + \"\\\" via a navigation guard.\")\n  )\n}\n\nfunction createNavigationDuplicatedError (from, to) {\n  var error = createRouterError(\n    from,\n    to,\n    NavigationFailureType.duplicated,\n    (\"Avoided redundant navigation to current location: \\\"\" + (from.fullPath) + \"\\\".\")\n  );\n  // backwards compatible with the first introduction of Errors\n  error.name = 'NavigationDuplicated';\n  return error\n}\n\nfunction createNavigationCancelledError (from, to) {\n  return createRouterError(\n    from,\n    to,\n    NavigationFailureType.cancelled,\n    (\"Navigation cancelled from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" with a new navigation.\")\n  )\n}\n\nfunction createNavigationAbortedError (from, to) {\n  return createRouterError(\n    from,\n    to,\n    NavigationFailureType.aborted,\n    (\"Navigation aborted from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" via a navigation guard.\")\n  )\n}\n\nfunction createRouterError (from, to, type, message) {\n  var error = new Error(message);\n  error._isRouter = true;\n  error.from = from;\n  error.to = to;\n  error.type = type;\n\n  return error\n}\n\nvar propertiesToLog = ['params', 'query', 'hash'];\n\nfunction stringifyRoute (to) {\n  if (typeof to === 'string') { return to }\n  if ('path' in to) { return to.path }\n  var location = {};\n  propertiesToLog.forEach(function (key) {\n    if (key in to) { location[key] = to[key]; }\n  });\n  return JSON.stringify(location, null, 2)\n}\n\nfunction isError (err) {\n  return Object.prototype.toString.call(err).indexOf('Error') > -1\n}\n\nfunction isNavigationFailure (err, errorType) {\n  return (\n    isError(err) &&\n    err._isRouter &&\n    (errorType == null || err.type === errorType)\n  )\n}\n\n/*  */\n\nfunction runQueue (queue, fn, cb) {\n  var step = function (index) {\n    if (index >= queue.length) {\n      cb();\n    } else {\n      if (queue[index]) {\n        fn(queue[index], function () {\n          step(index + 1);\n        });\n      } else {\n        step(index + 1);\n      }\n    }\n  };\n  step(0);\n}\n\n/*  */\n\nfunction resolveAsyncComponents (matched) {\n  return function (to, from, next) {\n    var hasAsync = false;\n    var pending = 0;\n    var error = null;\n\n    flatMapComponents(matched, function (def, _, match, key) {\n      // if it's a function and doesn't have cid attached,\n      // assume it's an async component resolve function.\n      // we are not using Vue's default async resolving mechanism because\n      // we want to halt the navigation until the incoming component has been\n      // resolved.\n      if (typeof def === 'function' && def.cid === undefined) {\n        hasAsync = true;\n        pending++;\n\n        var resolve = once(function (resolvedDef) {\n          if (isESModule(resolvedDef)) {\n            resolvedDef = resolvedDef.default;\n          }\n          // save resolved on async factory in case it's used elsewhere\n          def.resolved = typeof resolvedDef === 'function'\n            ? resolvedDef\n            : _Vue.extend(resolvedDef);\n          match.components[key] = resolvedDef;\n          pending--;\n          if (pending <= 0) {\n            next();\n          }\n        });\n\n        var reject = once(function (reason) {\n          var msg = \"Failed to resolve async component \" + key + \": \" + reason;\n          process.env.NODE_ENV !== 'production' && warn(false, msg);\n          if (!error) {\n            error = isError(reason)\n              ? reason\n              : new Error(msg);\n            next(error);\n          }\n        });\n\n        var res;\n        try {\n          res = def(resolve, reject);\n        } catch (e) {\n          reject(e);\n        }\n        if (res) {\n          if (typeof res.then === 'function') {\n            res.then(resolve, reject);\n          } else {\n            // new syntax in Vue 2.3\n            var comp = res.component;\n            if (comp && typeof comp.then === 'function') {\n              comp.then(resolve, reject);\n            }\n          }\n        }\n      }\n    });\n\n    if (!hasAsync) { next(); }\n  }\n}\n\nfunction flatMapComponents (\n  matched,\n  fn\n) {\n  return flatten(matched.map(function (m) {\n    return Object.keys(m.components).map(function (key) { return fn(\n      m.components[key],\n      m.instances[key],\n      m, key\n    ); })\n  }))\n}\n\nfunction flatten (arr) {\n  return Array.prototype.concat.apply([], arr)\n}\n\nvar hasSymbol =\n  typeof Symbol === 'function' &&\n  typeof Symbol.toStringTag === 'symbol';\n\nfunction isESModule (obj) {\n  return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module')\n}\n\n// in Webpack 2, require.ensure now also returns a Promise\n// so the resolve/reject functions may get called an extra time\n// if the user uses an arrow function shorthand that happens to\n// return that Promise.\nfunction once (fn) {\n  var called = false;\n  return function () {\n    var args = [], len = arguments.length;\n    while ( len-- ) args[ len ] = arguments[ len ];\n\n    if (called) { return }\n    called = true;\n    return fn.apply(this, args)\n  }\n}\n\n/*  */\n\nvar History = function History (router, base) {\n  this.router = router;\n  this.base = normalizeBase(base);\n  // start with a route object that stands for \"nowhere\"\n  this.current = START;\n  this.pending = null;\n  this.ready = false;\n  this.readyCbs = [];\n  this.readyErrorCbs = [];\n  this.errorCbs = [];\n  this.listeners = [];\n};\n\nHistory.prototype.listen = function listen (cb) {\n  this.cb = cb;\n};\n\nHistory.prototype.onReady = function onReady (cb, errorCb) {\n  if (this.ready) {\n    cb();\n  } else {\n    this.readyCbs.push(cb);\n    if (errorCb) {\n      this.readyErrorCbs.push(errorCb);\n    }\n  }\n};\n\nHistory.prototype.onError = function onError (errorCb) {\n  this.errorCbs.push(errorCb);\n};\n\nHistory.prototype.transitionTo = function transitionTo (\n  location,\n  onComplete,\n  onAbort\n) {\n    var this$1$1 = this;\n\n  var route;\n  // catch redirect option https://github.com/vuejs/vue-router/issues/3201\n  try {\n    route = this.router.match(location, this.current);\n  } catch (e) {\n    this.errorCbs.forEach(function (cb) {\n      cb(e);\n    });\n    // Exception should still be thrown\n    throw e\n  }\n  var prev = this.current;\n  this.confirmTransition(\n    route,\n    function () {\n      this$1$1.updateRoute(route);\n      onComplete && onComplete(route);\n      this$1$1.ensureURL();\n      this$1$1.router.afterHooks.forEach(function (hook) {\n        hook && hook(route, prev);\n      });\n\n      // fire ready cbs once\n      if (!this$1$1.ready) {\n        this$1$1.ready = true;\n        this$1$1.readyCbs.forEach(function (cb) {\n          cb(route);\n        });\n      }\n    },\n    function (err) {\n      if (onAbort) {\n        onAbort(err);\n      }\n      if (err && !this$1$1.ready) {\n        // Initial redirection should not mark the history as ready yet\n        // because it's triggered by the redirection instead\n        // https://github.com/vuejs/vue-router/issues/3225\n        // https://github.com/vuejs/vue-router/issues/3331\n        if (!isNavigationFailure(err, NavigationFailureType.redirected) || prev !== START) {\n          this$1$1.ready = true;\n          this$1$1.readyErrorCbs.forEach(function (cb) {\n            cb(err);\n          });\n        }\n      }\n    }\n  );\n};\n\nHistory.prototype.confirmTransition = function confirmTransition (route, onComplete, onAbort) {\n    var this$1$1 = this;\n\n  var current = this.current;\n  this.pending = route;\n  var abort = function (err) {\n    // changed after adding errors with\n    // https://github.com/vuejs/vue-router/pull/3047 before that change,\n    // redirect and aborted navigation would produce an err == null\n    if (!isNavigationFailure(err) && isError(err)) {\n      if (this$1$1.errorCbs.length) {\n        this$1$1.errorCbs.forEach(function (cb) {\n          cb(err);\n        });\n      } else {\n        if (process.env.NODE_ENV !== 'production') {\n          warn(false, 'uncaught error during route navigation:');\n        }\n        console.error(err);\n      }\n    }\n    onAbort && onAbort(err);\n  };\n  var lastRouteIndex = route.matched.length - 1;\n  var lastCurrentIndex = current.matched.length - 1;\n  if (\n    isSameRoute(route, current) &&\n    // in the case the route map has been dynamically appended to\n    lastRouteIndex === lastCurrentIndex &&\n    route.matched[lastRouteIndex] === current.matched[lastCurrentIndex]\n  ) {\n    this.ensureURL();\n    if (route.hash) {\n      handleScroll(this.router, current, route, false);\n    }\n    return abort(createNavigationDuplicatedError(current, route))\n  }\n\n  var ref = resolveQueue(\n    this.current.matched,\n    route.matched\n  );\n    var updated = ref.updated;\n    var deactivated = ref.deactivated;\n    var activated = ref.activated;\n\n  var queue = [].concat(\n    // in-component leave guards\n    extractLeaveGuards(deactivated),\n    // global before hooks\n    this.router.beforeHooks,\n    // in-component update hooks\n    extractUpdateHooks(updated),\n    // in-config enter guards\n    activated.map(function (m) { return m.beforeEnter; }),\n    // async components\n    resolveAsyncComponents(activated)\n  );\n\n  var iterator = function (hook, next) {\n    if (this$1$1.pending !== route) {\n      return abort(createNavigationCancelledError(current, route))\n    }\n    try {\n      hook(route, current, function (to) {\n        if (to === false) {\n          // next(false) -> abort navigation, ensure current URL\n          this$1$1.ensureURL(true);\n          abort(createNavigationAbortedError(current, route));\n        } else if (isError(to)) {\n          this$1$1.ensureURL(true);\n          abort(to);\n        } else if (\n          typeof to === 'string' ||\n          (typeof to === 'object' &&\n            (typeof to.path === 'string' || typeof to.name === 'string'))\n        ) {\n          // next('/') or next({ path: '/' }) -> redirect\n          abort(createNavigationRedirectedError(current, route));\n          if (typeof to === 'object' && to.replace) {\n            this$1$1.replace(to);\n          } else {\n            this$1$1.push(to);\n          }\n        } else {\n          // confirm transition and pass on the value\n          next(to);\n        }\n      });\n    } catch (e) {\n      abort(e);\n    }\n  };\n\n  runQueue(queue, iterator, function () {\n    // wait until async components are resolved before\n    // extracting in-component enter guards\n    var enterGuards = extractEnterGuards(activated);\n    var queue = enterGuards.concat(this$1$1.router.resolveHooks);\n    runQueue(queue, iterator, function () {\n      if (this$1$1.pending !== route) {\n        return abort(createNavigationCancelledError(current, route))\n      }\n      this$1$1.pending = null;\n      onComplete(route);\n      if (this$1$1.router.app) {\n        this$1$1.router.app.$nextTick(function () {\n          handleRouteEntered(route);\n        });\n      }\n    });\n  });\n};\n\nHistory.prototype.updateRoute = function updateRoute (route) {\n  this.current = route;\n  this.cb && this.cb(route);\n};\n\nHistory.prototype.setupListeners = function setupListeners () {\n  // Default implementation is empty\n};\n\nHistory.prototype.teardown = function teardown () {\n  // clean up event listeners\n  // https://github.com/vuejs/vue-router/issues/2341\n  this.listeners.forEach(function (cleanupListener) {\n    cleanupListener();\n  });\n  this.listeners = [];\n\n  // reset current history route\n  // https://github.com/vuejs/vue-router/issues/3294\n  this.current = START;\n  this.pending = null;\n};\n\nfunction normalizeBase (base) {\n  if (!base) {\n    if (inBrowser) {\n      // respect <base> tag\n      var baseEl = document.querySelector('base');\n      base = (baseEl && baseEl.getAttribute('href')) || '/';\n      // strip full URL origin\n      base = base.replace(/^https?:\\/\\/[^\\/]+/, '');\n    } else {\n      base = '/';\n    }\n  }\n  // make sure there's the starting slash\n  if (base.charAt(0) !== '/') {\n    base = '/' + base;\n  }\n  // remove trailing slash\n  return base.replace(/\\/$/, '')\n}\n\nfunction resolveQueue (\n  current,\n  next\n) {\n  var i;\n  var max = Math.max(current.length, next.length);\n  for (i = 0; i < max; i++) {\n    if (current[i] !== next[i]) {\n      break\n    }\n  }\n  return {\n    updated: next.slice(0, i),\n    activated: next.slice(i),\n    deactivated: current.slice(i)\n  }\n}\n\nfunction extractGuards (\n  records,\n  name,\n  bind,\n  reverse\n) {\n  var guards = flatMapComponents(records, function (def, instance, match, key) {\n    var guard = extractGuard(def, name);\n    if (guard) {\n      return Array.isArray(guard)\n        ? guard.map(function (guard) { return bind(guard, instance, match, key); })\n        : bind(guard, instance, match, key)\n    }\n  });\n  return flatten(reverse ? guards.reverse() : guards)\n}\n\nfunction extractGuard (\n  def,\n  key\n) {\n  if (typeof def !== 'function') {\n    // extend now so that global mixins are applied.\n    def = _Vue.extend(def);\n  }\n  return def.options[key]\n}\n\nfunction extractLeaveGuards (deactivated) {\n  return extractGuards(deactivated, 'beforeRouteLeave', bindGuard, true)\n}\n\nfunction extractUpdateHooks (updated) {\n  return extractGuards(updated, 'beforeRouteUpdate', bindGuard)\n}\n\nfunction bindGuard (guard, instance) {\n  if (instance) {\n    return function boundRouteGuard () {\n      return guard.apply(instance, arguments)\n    }\n  }\n}\n\nfunction extractEnterGuards (\n  activated\n) {\n  return extractGuards(\n    activated,\n    'beforeRouteEnter',\n    function (guard, _, match, key) {\n      return bindEnterGuard(guard, match, key)\n    }\n  )\n}\n\nfunction bindEnterGuard (\n  guard,\n  match,\n  key\n) {\n  return function routeEnterGuard (to, from, next) {\n    return guard(to, from, function (cb) {\n      if (typeof cb === 'function') {\n        if (!match.enteredCbs[key]) {\n          match.enteredCbs[key] = [];\n        }\n        match.enteredCbs[key].push(cb);\n      }\n      next(cb);\n    })\n  }\n}\n\n/*  */\n\nvar HTML5History = /*@__PURE__*/(function (History) {\n  function HTML5History (router, base) {\n    History.call(this, router, base);\n\n    this._startLocation = getLocation(this.base);\n  }\n\n  if ( History ) HTML5History.__proto__ = History;\n  HTML5History.prototype = Object.create( History && History.prototype );\n  HTML5History.prototype.constructor = HTML5History;\n\n  HTML5History.prototype.setupListeners = function setupListeners () {\n    var this$1$1 = this;\n\n    if (this.listeners.length > 0) {\n      return\n    }\n\n    var router = this.router;\n    var expectScroll = router.options.scrollBehavior;\n    var supportsScroll = supportsPushState && expectScroll;\n\n    if (supportsScroll) {\n      this.listeners.push(setupScroll());\n    }\n\n    var handleRoutingEvent = function () {\n      var current = this$1$1.current;\n\n      // Avoiding first `popstate` event dispatched in some browsers but first\n      // history route not updated since async guard at the same time.\n      var location = getLocation(this$1$1.base);\n      if (this$1$1.current === START && location === this$1$1._startLocation) {\n        return\n      }\n\n      this$1$1.transitionTo(location, function (route) {\n        if (supportsScroll) {\n          handleScroll(router, route, current, true);\n        }\n      });\n    };\n    window.addEventListener('popstate', handleRoutingEvent);\n    this.listeners.push(function () {\n      window.removeEventListener('popstate', handleRoutingEvent);\n    });\n  };\n\n  HTML5History.prototype.go = function go (n) {\n    window.history.go(n);\n  };\n\n  HTML5History.prototype.push = function push (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    var ref = this;\n    var fromRoute = ref.current;\n    this.transitionTo(location, function (route) {\n      pushState(cleanPath(this$1$1.base + route.fullPath));\n      handleScroll(this$1$1.router, route, fromRoute, false);\n      onComplete && onComplete(route);\n    }, onAbort);\n  };\n\n  HTML5History.prototype.replace = function replace (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    var ref = this;\n    var fromRoute = ref.current;\n    this.transitionTo(location, function (route) {\n      replaceState(cleanPath(this$1$1.base + route.fullPath));\n      handleScroll(this$1$1.router, route, fromRoute, false);\n      onComplete && onComplete(route);\n    }, onAbort);\n  };\n\n  HTML5History.prototype.ensureURL = function ensureURL (push) {\n    if (getLocation(this.base) !== this.current.fullPath) {\n      var current = cleanPath(this.base + this.current.fullPath);\n      push ? pushState(current) : replaceState(current);\n    }\n  };\n\n  HTML5History.prototype.getCurrentLocation = function getCurrentLocation () {\n    return getLocation(this.base)\n  };\n\n  return HTML5History;\n}(History));\n\nfunction getLocation (base) {\n  var path = window.location.pathname;\n  var pathLowerCase = path.toLowerCase();\n  var baseLowerCase = base.toLowerCase();\n  // base=\"/a\" shouldn't turn path=\"/app\" into \"/a/pp\"\n  // https://github.com/vuejs/vue-router/issues/3555\n  // so we ensure the trailing slash in the base\n  if (base && ((pathLowerCase === baseLowerCase) ||\n    (pathLowerCase.indexOf(cleanPath(baseLowerCase + '/')) === 0))) {\n    path = path.slice(base.length);\n  }\n  return (path || '/') + window.location.search + window.location.hash\n}\n\n/*  */\n\nvar HashHistory = /*@__PURE__*/(function (History) {\n  function HashHistory (router, base, fallback) {\n    History.call(this, router, base);\n    // check history fallback deeplinking\n    if (fallback && checkFallback(this.base)) {\n      return\n    }\n    ensureSlash();\n  }\n\n  if ( History ) HashHistory.__proto__ = History;\n  HashHistory.prototype = Object.create( History && History.prototype );\n  HashHistory.prototype.constructor = HashHistory;\n\n  // this is delayed until the app mounts\n  // to avoid the hashchange listener being fired too early\n  HashHistory.prototype.setupListeners = function setupListeners () {\n    var this$1$1 = this;\n\n    if (this.listeners.length > 0) {\n      return\n    }\n\n    var router = this.router;\n    var expectScroll = router.options.scrollBehavior;\n    var supportsScroll = supportsPushState && expectScroll;\n\n    if (supportsScroll) {\n      this.listeners.push(setupScroll());\n    }\n\n    var handleRoutingEvent = function () {\n      var current = this$1$1.current;\n      if (!ensureSlash()) {\n        return\n      }\n      this$1$1.transitionTo(getHash(), function (route) {\n        if (supportsScroll) {\n          handleScroll(this$1$1.router, route, current, true);\n        }\n        if (!supportsPushState) {\n          replaceHash(route.fullPath);\n        }\n      });\n    };\n    var eventType = supportsPushState ? 'popstate' : 'hashchange';\n    window.addEventListener(\n      eventType,\n      handleRoutingEvent\n    );\n    this.listeners.push(function () {\n      window.removeEventListener(eventType, handleRoutingEvent);\n    });\n  };\n\n  HashHistory.prototype.push = function push (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    var ref = this;\n    var fromRoute = ref.current;\n    this.transitionTo(\n      location,\n      function (route) {\n        pushHash(route.fullPath);\n        handleScroll(this$1$1.router, route, fromRoute, false);\n        onComplete && onComplete(route);\n      },\n      onAbort\n    );\n  };\n\n  HashHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    var ref = this;\n    var fromRoute = ref.current;\n    this.transitionTo(\n      location,\n      function (route) {\n        replaceHash(route.fullPath);\n        handleScroll(this$1$1.router, route, fromRoute, false);\n        onComplete && onComplete(route);\n      },\n      onAbort\n    );\n  };\n\n  HashHistory.prototype.go = function go (n) {\n    window.history.go(n);\n  };\n\n  HashHistory.prototype.ensureURL = function ensureURL (push) {\n    var current = this.current.fullPath;\n    if (getHash() !== current) {\n      push ? pushHash(current) : replaceHash(current);\n    }\n  };\n\n  HashHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n    return getHash()\n  };\n\n  return HashHistory;\n}(History));\n\nfunction checkFallback (base) {\n  var location = getLocation(base);\n  if (!/^\\/#/.test(location)) {\n    window.location.replace(cleanPath(base + '/#' + location));\n    return true\n  }\n}\n\nfunction ensureSlash () {\n  var path = getHash();\n  if (path.charAt(0) === '/') {\n    return true\n  }\n  replaceHash('/' + path);\n  return false\n}\n\nfunction getHash () {\n  // We can't use window.location.hash here because it's not\n  // consistent across browsers - Firefox will pre-decode it!\n  var href = window.location.href;\n  var index = href.indexOf('#');\n  // empty path\n  if (index < 0) { return '' }\n\n  href = href.slice(index + 1);\n\n  return href\n}\n\nfunction getUrl (path) {\n  var href = window.location.href;\n  var i = href.indexOf('#');\n  var base = i >= 0 ? href.slice(0, i) : href;\n  return (base + \"#\" + path)\n}\n\nfunction pushHash (path) {\n  if (supportsPushState) {\n    pushState(getUrl(path));\n  } else {\n    window.location.hash = path;\n  }\n}\n\nfunction replaceHash (path) {\n  if (supportsPushState) {\n    replaceState(getUrl(path));\n  } else {\n    window.location.replace(getUrl(path));\n  }\n}\n\n/*  */\n\nvar AbstractHistory = /*@__PURE__*/(function (History) {\n  function AbstractHistory (router, base) {\n    History.call(this, router, base);\n    this.stack = [];\n    this.index = -1;\n  }\n\n  if ( History ) AbstractHistory.__proto__ = History;\n  AbstractHistory.prototype = Object.create( History && History.prototype );\n  AbstractHistory.prototype.constructor = AbstractHistory;\n\n  AbstractHistory.prototype.push = function push (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    this.transitionTo(\n      location,\n      function (route) {\n        this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index + 1).concat(route);\n        this$1$1.index++;\n        onComplete && onComplete(route);\n      },\n      onAbort\n    );\n  };\n\n  AbstractHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n    this.transitionTo(\n      location,\n      function (route) {\n        this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index).concat(route);\n        onComplete && onComplete(route);\n      },\n      onAbort\n    );\n  };\n\n  AbstractHistory.prototype.go = function go (n) {\n    var this$1$1 = this;\n\n    var targetIndex = this.index + n;\n    if (targetIndex < 0 || targetIndex >= this.stack.length) {\n      return\n    }\n    var route = this.stack[targetIndex];\n    this.confirmTransition(\n      route,\n      function () {\n        var prev = this$1$1.current;\n        this$1$1.index = targetIndex;\n        this$1$1.updateRoute(route);\n        this$1$1.router.afterHooks.forEach(function (hook) {\n          hook && hook(route, prev);\n        });\n      },\n      function (err) {\n        if (isNavigationFailure(err, NavigationFailureType.duplicated)) {\n          this$1$1.index = targetIndex;\n        }\n      }\n    );\n  };\n\n  AbstractHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n    var current = this.stack[this.stack.length - 1];\n    return current ? current.fullPath : '/'\n  };\n\n  AbstractHistory.prototype.ensureURL = function ensureURL () {\n    // noop\n  };\n\n  return AbstractHistory;\n}(History));\n\n/*  */\n\n\n\nvar VueRouter = function VueRouter (options) {\n  if ( options === void 0 ) options = {};\n\n  if (process.env.NODE_ENV !== 'production') {\n    warn(this instanceof VueRouter, \"Router must be called with the new operator.\");\n  }\n  this.app = null;\n  this.apps = [];\n  this.options = options;\n  this.beforeHooks = [];\n  this.resolveHooks = [];\n  this.afterHooks = [];\n  this.matcher = createMatcher(options.routes || [], this);\n\n  var mode = options.mode || 'hash';\n  this.fallback =\n    mode === 'history' && !supportsPushState && options.fallback !== false;\n  if (this.fallback) {\n    mode = 'hash';\n  }\n  if (!inBrowser) {\n    mode = 'abstract';\n  }\n  this.mode = mode;\n\n  switch (mode) {\n    case 'history':\n      this.history = new HTML5History(this, options.base);\n      break\n    case 'hash':\n      this.history = new HashHistory(this, options.base, this.fallback);\n      break\n    case 'abstract':\n      this.history = new AbstractHistory(this, options.base);\n      break\n    default:\n      if (process.env.NODE_ENV !== 'production') {\n        assert(false, (\"invalid mode: \" + mode));\n      }\n  }\n};\n\nvar prototypeAccessors = { currentRoute: { configurable: true } };\n\nVueRouter.prototype.match = function match (raw, current, redirectedFrom) {\n  return this.matcher.match(raw, current, redirectedFrom)\n};\n\nprototypeAccessors.currentRoute.get = function () {\n  return this.history && this.history.current\n};\n\nVueRouter.prototype.init = function init (app /* Vue component instance */) {\n    var this$1$1 = this;\n\n  process.env.NODE_ENV !== 'production' &&\n    assert(\n      install.installed,\n      \"not installed. Make sure to call `Vue.use(VueRouter)` \" +\n        \"before creating root instance.\"\n    );\n\n  this.apps.push(app);\n\n  // set up app destroyed handler\n  // https://github.com/vuejs/vue-router/issues/2639\n  app.$once('hook:destroyed', function () {\n    // clean out app from this.apps array once destroyed\n    var index = this$1$1.apps.indexOf(app);\n    if (index > -1) { this$1$1.apps.splice(index, 1); }\n    // ensure we still have a main app or null if no apps\n    // we do not release the router so it can be reused\n    if (this$1$1.app === app) { this$1$1.app = this$1$1.apps[0] || null; }\n\n    if (!this$1$1.app) { this$1$1.history.teardown(); }\n  });\n\n  // main app previously initialized\n  // return as we don't need to set up new history listener\n  if (this.app) {\n    return\n  }\n\n  this.app = app;\n\n  var history = this.history;\n\n  if (history instanceof HTML5History || history instanceof HashHistory) {\n    var handleInitialScroll = function (routeOrError) {\n      var from = history.current;\n      var expectScroll = this$1$1.options.scrollBehavior;\n      var supportsScroll = supportsPushState && expectScroll;\n\n      if (supportsScroll && 'fullPath' in routeOrError) {\n        handleScroll(this$1$1, routeOrError, from, false);\n      }\n    };\n    var setupListeners = function (routeOrError) {\n      history.setupListeners();\n      handleInitialScroll(routeOrError);\n    };\n    history.transitionTo(\n      history.getCurrentLocation(),\n      setupListeners,\n      setupListeners\n    );\n  }\n\n  history.listen(function (route) {\n    this$1$1.apps.forEach(function (app) {\n      app._route = route;\n    });\n  });\n};\n\nVueRouter.prototype.beforeEach = function beforeEach (fn) {\n  return registerHook(this.beforeHooks, fn)\n};\n\nVueRouter.prototype.beforeResolve = function beforeResolve (fn) {\n  return registerHook(this.resolveHooks, fn)\n};\n\nVueRouter.prototype.afterEach = function afterEach (fn) {\n  return registerHook(this.afterHooks, fn)\n};\n\nVueRouter.prototype.onReady = function onReady (cb, errorCb) {\n  this.history.onReady(cb, errorCb);\n};\n\nVueRouter.prototype.onError = function onError (errorCb) {\n  this.history.onError(errorCb);\n};\n\nVueRouter.prototype.push = function push (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n  // $flow-disable-line\n  if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n    return new Promise(function (resolve, reject) {\n      this$1$1.history.push(location, resolve, reject);\n    })\n  } else {\n    this.history.push(location, onComplete, onAbort);\n  }\n};\n\nVueRouter.prototype.replace = function replace (location, onComplete, onAbort) {\n    var this$1$1 = this;\n\n  // $flow-disable-line\n  if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n    return new Promise(function (resolve, reject) {\n      this$1$1.history.replace(location, resolve, reject);\n    })\n  } else {\n    this.history.replace(location, onComplete, onAbort);\n  }\n};\n\nVueRouter.prototype.go = function go (n) {\n  this.history.go(n);\n};\n\nVueRouter.prototype.back = function back () {\n  this.go(-1);\n};\n\nVueRouter.prototype.forward = function forward () {\n  this.go(1);\n};\n\nVueRouter.prototype.getMatchedComponents = function getMatchedComponents (to) {\n  var route = to\n    ? to.matched\n      ? to\n      : this.resolve(to).route\n    : this.currentRoute;\n  if (!route) {\n    return []\n  }\n  return [].concat.apply(\n    [],\n    route.matched.map(function (m) {\n      return Object.keys(m.components).map(function (key) {\n        return m.components[key]\n      })\n    })\n  )\n};\n\nVueRouter.prototype.resolve = function resolve (\n  to,\n  current,\n  append\n) {\n  current = current || this.history.current;\n  var location = normalizeLocation(to, current, append, this);\n  var route = this.match(location, current);\n  var fullPath = route.redirectedFrom || route.fullPath;\n  var base = this.history.base;\n  var href = createHref(base, fullPath, this.mode);\n  return {\n    location: location,\n    route: route,\n    href: href,\n    // for backwards compat\n    normalizedTo: location,\n    resolved: route\n  }\n};\n\nVueRouter.prototype.getRoutes = function getRoutes () {\n  return this.matcher.getRoutes()\n};\n\nVueRouter.prototype.addRoute = function addRoute (parentOrRoute, route) {\n  this.matcher.addRoute(parentOrRoute, route);\n  if (this.history.current !== START) {\n    this.history.transitionTo(this.history.getCurrentLocation());\n  }\n};\n\nVueRouter.prototype.addRoutes = function addRoutes (routes) {\n  if (process.env.NODE_ENV !== 'production') {\n    warn(false, 'router.addRoutes() is deprecated and has been removed in Vue Router 4. Use router.addRoute() instead.');\n  }\n  this.matcher.addRoutes(routes);\n  if (this.history.current !== START) {\n    this.history.transitionTo(this.history.getCurrentLocation());\n  }\n};\n\nObject.defineProperties( VueRouter.prototype, prototypeAccessors );\n\nvar VueRouter$1 = VueRouter;\n\nfunction registerHook (list, fn) {\n  list.push(fn);\n  return function () {\n    var i = list.indexOf(fn);\n    if (i > -1) { list.splice(i, 1); }\n  }\n}\n\nfunction createHref (base, fullPath, mode) {\n  var path = mode === 'hash' ? '#' + fullPath : fullPath;\n  return base ? cleanPath(base + '/' + path) : path\n}\n\n// We cannot remove this as it would be a breaking change\nVueRouter.install = install;\nVueRouter.version = '3.6.5';\nVueRouter.isNavigationFailure = isNavigationFailure;\nVueRouter.NavigationFailureType = NavigationFailureType;\nVueRouter.START_LOCATION = START;\n\nif (inBrowser && window.Vue) {\n  window.Vue.use(VueRouter);\n}\n\nvar version = '3.6.5';\n\nexport { NavigationFailureType, Link as RouterLink, View as RouterView, START as START_LOCATION, VueRouter$1 as default, isNavigationFailure, version };\n","import { generateUrl } from '@nextcloud/router';\nimport queryString from 'query-string';\nimport Router from 'vue-router';\nimport Vue from 'vue';\nVue.use(Router);\n// Prevent router from throwing errors when we're already on the page we're trying to go to\nconst originalPush = Router.prototype.push;\nRouter.prototype.push = function push(to, onComplete, onAbort) {\n    if (onComplete || onAbort)\n        return originalPush.call(this, to, onComplete, onAbort);\n    return originalPush.call(this, to).catch(err => err);\n};\nconst router = new Router({\n    mode: 'history',\n    // if index.php is in the url AND we got this far, then it's working:\n    // let's keep using index.php in the url\n    base: generateUrl('/apps/files'),\n    linkActiveClass: 'active',\n    routes: [\n        {\n            path: '/',\n            // Pretending we're using the default view\n            redirect: { name: 'filelist', params: { view: 'files' } },\n        },\n        {\n            path: '/:view/:fileid(\\\\d+)?',\n            name: 'filelist',\n            props: true,\n        },\n    ],\n    // Custom stringifyQuery to prevent encoding of slashes in the url\n    stringifyQuery(query) {\n        const result = queryString.stringify(query).replace(/%2F/gmi, '/');\n        return result ? ('?' + result) : '';\n    },\n});\nexport default router;\n","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcContent',{attrs:{\"app-name\":\"files\"}},[_c('Navigation'),_vm._v(\" \"),_c('FilesList')],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon cog-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"CogIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Cog.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Cog.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Cog.vue?vue&type=template&id=89df8f2e\"\nimport script from \"./Cog.vue?vue&type=script&lang=js\"\nexport * from \"./Cog.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon cog-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst viewConfig = loadState('files', 'viewConfigs', {});\nexport const useViewConfigStore = function (...args) {\n    const store = defineStore('viewconfig', {\n        state: () => ({\n            viewConfig,\n        }),\n        getters: {\n            getConfig: (state) => (view) => state.viewConfig[view] || {},\n        },\n        actions: {\n            /**\n             * Update the view config local store\n             */\n            onUpdate(view, key, value) {\n                if (!this.viewConfig[view]) {\n                    Vue.set(this.viewConfig, view, {});\n                }\n                Vue.set(this.viewConfig[view], key, value);\n            },\n            /**\n             * Update the view config local store AND on server side\n             */\n            async update(view, key, value) {\n                axios.put(generateUrl(`/apps/files/api/v1/views/${view}/${key}`), {\n                    value,\n                });\n                emit('files:viewconfig:updated', { view, key, value });\n            },\n            /**\n             * Set the sorting key AND sort by ASC\n             * The key param must be a valid key of a File object\n             * If not found, will be searched within the File attributes\n             */\n            setSortingBy(key = 'basename', view = 'files') {\n                // Save new config\n                this.update(view, 'sorting_mode', key);\n                this.update(view, 'sorting_direction', 'asc');\n            },\n            /**\n             * Toggle the sorting direction\n             */\n            toggleSortingDirection(view = 'files') {\n                const config = this.getConfig(view) || { sorting_direction: 'asc' };\n                const newDirection = config.sorting_direction === 'asc' ? 'desc' : 'asc';\n                // Save new config\n                this.update(view, 'sorting_direction', newDirection);\n            },\n        },\n    });\n    const viewConfigStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!viewConfigStore._initialized) {\n        subscribe('files:viewconfig:updated', function ({ view, key, value }) {\n            viewConfigStore.onUpdate(view, key, value);\n        });\n        viewConfigStore._initialized = true;\n    }\n    return viewConfigStore;\n};\n","/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger'\n\nexport default getLoggerBuilder()\n\t.setApp('files')\n\t.detectUser()\n\t.build()\n","/* eslint-disable no-undefined,no-param-reassign,no-shadow */\n\n/**\n * Throttle execution of a function. Especially useful for rate limiting\n * execution of handlers on events like resize and scroll.\n *\n * @param {number} delay -                  A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher)\n *                                            are most useful.\n * @param {Function} callback -               A function to be executed after delay milliseconds. The `this` context and all arguments are passed through,\n *                                            as-is, to `callback` when the throttled-function is executed.\n * @param {object} [options] -              An object to configure options.\n * @param {boolean} [options.noTrailing] -   Optional, defaults to false. If noTrailing is true, callback will only execute every `delay` milliseconds\n *                                            while the throttled-function is being called. If noTrailing is false or unspecified, callback will be executed\n *                                            one final time after the last throttled-function call. (After the throttled-function has not been called for\n *                                            `delay` milliseconds, the internal counter is reset).\n * @param {boolean} [options.noLeading] -   Optional, defaults to false. If noLeading is false, the first throttled-function call will execute callback\n *                                            immediately. If noLeading is true, the first the callback execution will be skipped. It should be noted that\n *                                            callback will never executed if both noLeading = true and noTrailing = true.\n * @param {boolean} [options.debounceMode] - If `debounceMode` is true (at begin), schedule `clear` to execute after `delay` ms. If `debounceMode` is\n *                                            false (at end), schedule `callback` to execute after `delay` ms.\n *\n * @returns {Function} A new, throttled, function.\n */\nfunction throttle (delay, callback, options) {\n  var _ref = options || {},\n      _ref$noTrailing = _ref.noTrailing,\n      noTrailing = _ref$noTrailing === void 0 ? false : _ref$noTrailing,\n      _ref$noLeading = _ref.noLeading,\n      noLeading = _ref$noLeading === void 0 ? false : _ref$noLeading,\n      _ref$debounceMode = _ref.debounceMode,\n      debounceMode = _ref$debounceMode === void 0 ? undefined : _ref$debounceMode;\n  /*\n   * After wrapper has stopped being called, this timeout ensures that\n   * `callback` is executed at the proper times in `throttle` and `end`\n   * debounce modes.\n   */\n\n\n  var timeoutID;\n  var cancelled = false; // Keep track of the last time `callback` was executed.\n\n  var lastExec = 0; // Function to clear existing timeout\n\n  function clearExistingTimeout() {\n    if (timeoutID) {\n      clearTimeout(timeoutID);\n    }\n  } // Function to cancel next exec\n\n\n  function cancel(options) {\n    var _ref2 = options || {},\n        _ref2$upcomingOnly = _ref2.upcomingOnly,\n        upcomingOnly = _ref2$upcomingOnly === void 0 ? false : _ref2$upcomingOnly;\n\n    clearExistingTimeout();\n    cancelled = !upcomingOnly;\n  }\n  /*\n   * The `wrapper` function encapsulates all of the throttling / debouncing\n   * functionality and when executed will limit the rate at which `callback`\n   * is executed.\n   */\n\n\n  function wrapper() {\n    for (var _len = arguments.length, arguments_ = new Array(_len), _key = 0; _key < _len; _key++) {\n      arguments_[_key] = arguments[_key];\n    }\n\n    var self = this;\n    var elapsed = Date.now() - lastExec;\n\n    if (cancelled) {\n      return;\n    } // Execute `callback` and update the `lastExec` timestamp.\n\n\n    function exec() {\n      lastExec = Date.now();\n      callback.apply(self, arguments_);\n    }\n    /*\n     * If `debounceMode` is true (at begin) this is used to clear the flag\n     * to allow future `callback` executions.\n     */\n\n\n    function clear() {\n      timeoutID = undefined;\n    }\n\n    if (!noLeading && debounceMode && !timeoutID) {\n      /*\n       * Since `wrapper` is being called for the first time and\n       * `debounceMode` is true (at begin), execute `callback`\n       * and noLeading != true.\n       */\n      exec();\n    }\n\n    clearExistingTimeout();\n\n    if (debounceMode === undefined && elapsed > delay) {\n      if (noLeading) {\n        /*\n         * In throttle mode with noLeading, if `delay` time has\n         * been exceeded, update `lastExec` and schedule `callback`\n         * to execute after `delay` ms.\n         */\n        lastExec = Date.now();\n\n        if (!noTrailing) {\n          timeoutID = setTimeout(debounceMode ? clear : exec, delay);\n        }\n      } else {\n        /*\n         * In throttle mode without noLeading, if `delay` time has been exceeded, execute\n         * `callback`.\n         */\n        exec();\n      }\n    } else if (noTrailing !== true) {\n      /*\n       * In trailing throttle mode, since `delay` time has not been\n       * exceeded, schedule `callback` to execute `delay` ms after most\n       * recent execution.\n       *\n       * If `debounceMode` is true (at begin), schedule `clear` to execute\n       * after `delay` ms.\n       *\n       * If `debounceMode` is false (at end), schedule `callback` to\n       * execute after `delay` ms.\n       */\n      timeoutID = setTimeout(debounceMode ? clear : exec, debounceMode === undefined ? delay - elapsed : delay);\n    }\n  }\n\n  wrapper.cancel = cancel; // Return the wrapper function.\n\n  return wrapper;\n}\n\n/* eslint-disable no-undefined */\n/**\n * Debounce execution of a function. Debouncing, unlike throttling,\n * guarantees that a function is only executed a single time, either at the\n * very beginning of a series of calls, or at the very end.\n *\n * @param {number} delay -               A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher) are most useful.\n * @param {Function} callback -          A function to be executed after delay milliseconds. The `this` context and all arguments are passed through, as-is,\n *                                        to `callback` when the debounced-function is executed.\n * @param {object} [options] -           An object to configure options.\n * @param {boolean} [options.atBegin] -  Optional, defaults to false. If atBegin is false or unspecified, callback will only be executed `delay` milliseconds\n *                                        after the last debounced-function call. If atBegin is true, callback will be executed only at the first debounced-function call.\n *                                        (After the throttled-function has not been called for `delay` milliseconds, the internal counter is reset).\n *\n * @returns {Function} A new, debounced function.\n */\n\nfunction debounce (delay, callback, options) {\n  var _ref = options || {},\n      _ref$atBegin = _ref.atBegin,\n      atBegin = _ref$atBegin === void 0 ? false : _ref$atBegin;\n\n  return throttle(delay, callback, {\n    debounceMode: atBegin !== false\n  });\n}\n\nexport { debounce, throttle };\n//# sourceMappingURL=index.js.map\n","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon chart-pie-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"ChartPieIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./ChartPie.vue?vue&type=template&id=b117066e\"\nimport script from \"./ChartPie.vue?vue&type=script&lang=js\"\nexport * from \"./ChartPie.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon chart-pie-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n\t<NcAppNavigationItem v-if=\"storageStats\"\n\t\t:aria-label=\"t('files', 'Storage informations')\"\n\t\t:class=\"{ 'app-navigation-entry__settings-quota--not-unlimited': storageStats.quota >= 0}\"\n\t\t:loading=\"loadingStorageStats\"\n\t\t:name=\"storageStatsTitle\"\n\t\t:title=\"storageStatsTooltip\"\n\t\tclass=\"app-navigation-entry__settings-quota\"\n\t\tdata-cy-files-navigation-settings-quota\n\t\t@click.stop.prevent=\"debounceUpdateStorageStats\">\n\t\t<ChartPie slot=\"icon\" :size=\"20\" />\n\n\t\t<!-- Progress bar -->\n\t\t<NcProgressBar v-if=\"storageStats.quota >= 0\"\n\t\t\tslot=\"extra\"\n\t\t\t:error=\"storageStats.relative > 80\"\n\t\t\t:value=\"Math.min(storageStats.relative, 100)\" />\n\t</NcAppNavigationItem>\n</template>\n\n<script>\nimport { debounce, throttle } from 'throttle-debounce'\nimport { formatFileSize } from '@nextcloud/files'\nimport { generateUrl } from '@nextcloud/router'\nimport { loadState } from '@nextcloud/initial-state'\nimport { showError } from '@nextcloud/dialogs'\nimport { subscribe } from '@nextcloud/event-bus'\nimport { translate } from '@nextcloud/l10n'\nimport axios from '@nextcloud/axios'\n\nimport ChartPie from 'vue-material-design-icons/ChartPie.vue'\nimport NcAppNavigationItem from '@nextcloud/vue/dist/Components/NcAppNavigationItem.js'\nimport NcProgressBar from '@nextcloud/vue/dist/Components/NcProgressBar.js'\n\nimport logger from '../logger.js'\n\nexport default {\n\tname: 'NavigationQuota',\n\n\tcomponents: {\n\t\tChartPie,\n\t\tNcAppNavigationItem,\n\t\tNcProgressBar,\n\t},\n\n\tdata() {\n\t\treturn {\n\t\t\tloadingStorageStats: false,\n\t\t\tstorageStats: loadState('files', 'storageStats', null),\n\t\t}\n\t},\n\n\tcomputed: {\n\t\tstorageStatsTitle() {\n\t\t\tconst usedQuotaByte = formatFileSize(this.storageStats?.used, false, false)\n\t\t\tconst quotaByte = formatFileSize(this.storageStats?.quota, false, false)\n\n\t\t\t// If no quota set\n\t\t\tif (this.storageStats?.quota < 0) {\n\t\t\t\treturn this.t('files', '{usedQuotaByte} used', { usedQuotaByte })\n\t\t\t}\n\n\t\t\treturn this.t('files', '{used} of {quota} used', {\n\t\t\t\tused: usedQuotaByte,\n\t\t\t\tquota: quotaByte,\n\t\t\t})\n\t\t},\n\t\tstorageStatsTooltip() {\n\t\t\tif (!this.storageStats.relative) {\n\t\t\t\treturn ''\n\t\t\t}\n\n\t\t\treturn this.t('files', '{relative}% used', this.storageStats)\n\t\t},\n\t},\n\n\tbeforeMount() {\n\t\t/**\n\t\t * Update storage stats every minute\n\t\t * TODO: remove when all views are migrated to Vue\n\t\t */\n\t\tsetInterval(this.throttleUpdateStorageStats, 60 * 1000)\n\n\t\tsubscribe('files:node:created', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:deleted', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:moved', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:updated', this.throttleUpdateStorageStats)\n\t},\n\n\tmounted() {\n\t\t// If the user has a quota set, warn if the available account storage is <=0\n\t\t//\n\t\t// NOTE: This doesn't catch situations where actual *server* \n\t\t// disk (non-quota) space is low, but those should probably\n\t\t// be handled differently anyway since a regular user can't\n\t\t// can't do much about them (If we did want to indicate server disk \n\t\t// space matters to users, we'd probably want to use a warning\n\t\t// specific to that situation anyhow. So this covers warning covers \n\t\t// our primary day-to-day concern (individual account quota usage).\n\t\t//\n\t\tif (this.storageStats?.quota > 0 && this.storageStats?.free <= 0) {\n\t\t\tthis.showStorageFullWarning()\n\t\t}\n\t},\n\n\tmethods: {\n\t\t// From user input\n\t\tdebounceUpdateStorageStats: debounce(200, function(event) {\n\t\t\tthis.updateStorageStats(event)\n\t\t}),\n\t\t// From interval or event bus\n\t\tthrottleUpdateStorageStats: throttle(1000, function(event) {\n\t\t\tthis.updateStorageStats(event)\n\t\t}),\n\n\t\t/**\n\t\t * Update the storage stats\n\t\t * Throttled at max 1 refresh per minute\n\t\t *\n\t\t * @param {Event} [event = null] if user interaction\n\t\t */\n\t\tasync updateStorageStats(event = null) {\n\t\t\tif (this.loadingStorageStats) {\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tthis.loadingStorageStats = true\n\t\t\ttry {\n\t\t\t\tconst response = await axios.get(generateUrl('/apps/files/api/v1/stats'))\n\t\t\t\tif (!response?.data?.data) {\n\t\t\t\t\tthrow new Error('Invalid storage stats')\n\t\t\t\t}\n\n\t\t\t\t// Warn the user if the available account storage changed from > 0 to 0 \n\t\t\t\t// (unless only because quota was intentionally set to 0 by admin in the interim)\n\t\t\t\tif (this.storageStats?.free > 0 && response.data.data?.free <= 0 && response.data.data?.quota > 0) {\n\t\t\t\t\tthis.showStorageFullWarning()\n\t\t\t\t}\n\n\t\t\t\tthis.storageStats = response.data.data\n\t\t\t} catch (error) {\n\t\t\t\tlogger.error('Could not refresh storage stats', { error })\n\t\t\t\t// Only show to the user if it was manually triggered\n\t\t\t\tif (event) {\n\t\t\t\t\tshowError(t('files', 'Could not refresh storage stats'))\n\t\t\t\t}\n\t\t\t} finally {\n\t\t\t\tthis.loadingStorageStats = false\n\t\t\t}\n\t\t},\n\n\t\tshowStorageFullWarning() {\n\t\t\tshowError(this.t('files', 'Your storage is full, files can not be updated or synced anymore!'))\n\t\t},\n\n\t\tt: translate,\n\t},\n}\n</script>\n\n<style lang=\"scss\" scoped>\n// User storage stats display\n.app-navigation-entry__settings-quota {\n\t// Align title with progress and icon\n\t&--not-unlimited::v-deep .app-navigation-entry__name {\n\t\tmargin-top: -6px;\n\t}\n\n\tprogress {\n\t\tposition: absolute;\n\t\tbottom: 12px;\n\t\tmargin-left: 44px;\n\t\twidth: calc(100% - 44px - 22px);\n\t}\n}\n</style>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./NavigationQuota.vue?vue&type=template&id=063ed938&scoped=true\"\nimport script from \"./NavigationQuota.vue?vue&type=script&lang=js\"\nexport * from \"./NavigationQuota.vue?vue&type=script&lang=js\"\nimport style0 from \"./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"063ed938\",\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return (_vm.storageStats)?_c('NcAppNavigationItem',{staticClass:\"app-navigation-entry__settings-quota\",class:{ 'app-navigation-entry__settings-quota--not-unlimited': _vm.storageStats.quota >= 0},attrs:{\"aria-label\":_vm.t('files', 'Storage informations'),\"loading\":_vm.loadingStorageStats,\"name\":_vm.storageStatsTitle,\"title\":_vm.storageStatsTooltip,\"data-cy-files-navigation-settings-quota\":\"\"},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.debounceUpdateStorageStats.apply(null, arguments)}}},[_c('ChartPie',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"}),_vm._v(\" \"),(_vm.storageStats.quota >= 0)?_c('NcProgressBar',{attrs:{\"slot\":\"extra\",\"error\":_vm.storageStats.relative > 80,\"value\":Math.min(_vm.storageStats.relative, 100)},slot:\"extra\"}):_vm._e()],1):_vm._e()\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppSettingsDialog',{attrs:{\"open\":_vm.open,\"show-navigation\":true,\"name\":_vm.t('files', 'Files settings')},on:{\"update:open\":_vm.onClose}},[_c('NcAppSettingsSection',{attrs:{\"id\":\"settings\",\"name\":_vm.t('files', 'Files settings')}},[_c('NcCheckboxRadioSwitch',{attrs:{\"data-cy-files-settings-setting\":\"sort_favorites_first\",\"checked\":_vm.userConfig.sort_favorites_first},on:{\"update:checked\":function($event){return _vm.setConfig('sort_favorites_first', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Sort favorites first'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"data-cy-files-settings-setting\":\"sort_folders_first\",\"checked\":_vm.userConfig.sort_folders_first},on:{\"update:checked\":function($event){return _vm.setConfig('sort_folders_first', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Sort folders before files'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"data-cy-files-settings-setting\":\"show_hidden\",\"checked\":_vm.userConfig.show_hidden},on:{\"update:checked\":function($event){return _vm.setConfig('show_hidden', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Show hidden files'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"data-cy-files-settings-setting\":\"crop_image_previews\",\"checked\":_vm.userConfig.crop_image_previews},on:{\"update:checked\":function($event){return _vm.setConfig('crop_image_previews', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Crop image previews'))+\"\\n\\t\\t\")]),_vm._v(\" \"),(_vm.enableGridView)?_c('NcCheckboxRadioSwitch',{attrs:{\"data-cy-files-settings-setting\":\"grid_view\",\"checked\":_vm.userConfig.grid_view},on:{\"update:checked\":function($event){return _vm.setConfig('grid_view', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Enable the grid view'))+\"\\n\\t\\t\")]):_vm._e()],1),_vm._v(\" \"),(_vm.settings.length !== 0)?_c('NcAppSettingsSection',{attrs:{\"id\":\"more-settings\",\"name\":_vm.t('files', 'Additional settings')}},[_vm._l((_vm.settings),function(setting){return [_c('Setting',{key:setting.name,attrs:{\"el\":setting.el}})]})],2):_vm._e(),_vm._v(\" \"),_c('NcAppSettingsSection',{attrs:{\"id\":\"webdav\",\"name\":_vm.t('files', 'WebDAV')}},[_c('NcInputField',{attrs:{\"id\":\"webdav-url-input\",\"label\":_vm.t('files', 'WebDAV URL'),\"show-trailing-button\":true,\"success\":_vm.webdavUrlCopied,\"trailing-button-label\":_vm.t('files', 'Copy to clipboard'),\"value\":_vm.webdavUrl,\"readonly\":\"readonly\",\"type\":\"url\"},on:{\"focus\":function($event){return $event.target.select()},\"trailing-button-click\":_vm.copyCloudId},scopedSlots:_vm._u([{key:\"trailing-button-icon\",fn:function(){return [_c('Clipboard',{attrs:{\"size\":20}})]},proxy:true}])}),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.webdavDocs,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Use this address to access your Files via WebDAV'))+\" ↗\\n\\t\\t\\t\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.appPasswordUrl}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'If you have enabled 2FA, you must create and use a new app password by clicking here.'))+\" ↗\\n\\t\\t\\t\")])])],1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon clipboard-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"ClipboardIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Clipboard.vue?vue&type=template&id=0c133921\"\nimport script from \"./Clipboard.vue?vue&type=script&lang=js\"\nexport * from \"./Clipboard.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon clipboard-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<!--\n  - @copyright Copyright (c) 2020 Gary Kim <gary@garykim.dev>\n  -\n  - @author John Molakvoæ <skjnldsv@protonmail.com>\n  -\n  - @license GNU AGPL version 3 or any later version\n  -\n  - This program is free software: you can redistribute it and/or modify\n  - it under the terms of the GNU Affero General Public License as\n  - published by the Free Software Foundation, either version 3 of the\n  - License, or (at your option) any later version.\n  -\n  - This program is distributed in the hope that it will be useful,\n  - but WITHOUT ANY WARRANTY; without even the implied warranty of\n  - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  - GNU Affero General Public License for more details.\n  -\n  - You should have received a copy of the GNU Affero General Public License\n  - along with this program. If not, see <http://www.gnu.org/licenses/>.\n  -\n  -->\n\n<template>\n\t<div />\n</template>\n<script>\nexport default {\n\tname: 'Setting',\n\tprops: {\n\t\tel: {\n\t\t\ttype: Function,\n\t\t\trequired: true,\n\t\t},\n\t},\n\tmounted() {\n\t\tthis.$el.appendChild(this.el())\n\t},\n}\n</script>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Setting.vue?vue&type=template&id=61d69eae\"\nimport script from \"./Setting.vue?vue&type=script&lang=js\"\nexport * from \"./Setting.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst userConfig = loadState('files', 'config', {\n    show_hidden: false,\n    crop_image_previews: true,\n    sort_favorites_first: true,\n    sort_folders_first: true,\n    grid_view: false,\n});\nexport const useUserConfigStore = function (...args) {\n    const store = defineStore('userconfig', {\n        state: () => ({\n            userConfig,\n        }),\n        actions: {\n            /**\n             * Update the user config local store\n             */\n            onUpdate(key, value) {\n                Vue.set(this.userConfig, key, value);\n            },\n            /**\n             * Update the user config local store AND on server side\n             */\n            async update(key, value) {\n                await axios.put(generateUrl('/apps/files/api/v1/config/' + key), {\n                    value,\n                });\n                emit('files:config:updated', { key, value });\n            },\n        },\n    });\n    const userConfigStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!userConfigStore._initialized) {\n        subscribe('files:config:updated', function ({ key, value }) {\n            userConfigStore.onUpdate(key, value);\n        });\n        userConfigStore._initialized = true;\n    }\n    return userConfigStore;\n};\n","<!--\n  - @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n  -\n  - @author John Molakvoæ <skjnldsv@protonmail.com>\n  -\n  - @license GNU AGPL version 3 or any later version\n  -\n  - This program is free software: you can redistribute it and/or modify\n  - it under the terms of the GNU Affero General Public License as\n  - published by the Free Software Foundation, either version 3 of the\n  - License, or (at your option) any later version.\n  -\n  - This program is distributed in the hope that it will be useful,\n  - but WITHOUT ANY WARRANTY; without even the implied warranty of\n  - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  - GNU Affero General Public License for more details.\n  -\n  - You should have received a copy of the GNU Affero General Public License\n  - along with this program. If not, see <http://www.gnu.org/licenses/>.\n  -\n  -->\n<template>\n\t<NcAppSettingsDialog :open=\"open\"\n\t\t:show-navigation=\"true\"\n\t\t:name=\"t('files', 'Files settings')\"\n\t\t@update:open=\"onClose\">\n\t\t<!-- Settings API-->\n\t\t<NcAppSettingsSection id=\"settings\" :name=\"t('files', 'Files settings')\">\n\t\t\t<NcCheckboxRadioSwitch data-cy-files-settings-setting=\"sort_favorites_first\"\n\t\t\t\t:checked=\"userConfig.sort_favorites_first\"\n\t\t\t\t@update:checked=\"setConfig('sort_favorites_first', $event)\">\n\t\t\t\t{{ t('files', 'Sort favorites first') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch data-cy-files-settings-setting=\"sort_folders_first\"\n\t\t\t\t:checked=\"userConfig.sort_folders_first\"\n\t\t\t\t@update:checked=\"setConfig('sort_folders_first', $event)\">\n\t\t\t\t{{ t('files', 'Sort folders before files') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch data-cy-files-settings-setting=\"show_hidden\"\n\t\t\t\t:checked=\"userConfig.show_hidden\"\n\t\t\t\t@update:checked=\"setConfig('show_hidden', $event)\">\n\t\t\t\t{{ t('files', 'Show hidden files') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch data-cy-files-settings-setting=\"crop_image_previews\"\n\t\t\t\t:checked=\"userConfig.crop_image_previews\"\n\t\t\t\t@update:checked=\"setConfig('crop_image_previews', $event)\">\n\t\t\t\t{{ t('files', 'Crop image previews') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch v-if=\"enableGridView\"\n\t\t\t\tdata-cy-files-settings-setting=\"grid_view\"\n\t\t\t\t:checked=\"userConfig.grid_view\"\n\t\t\t\t@update:checked=\"setConfig('grid_view', $event)\">\n\t\t\t\t{{ t('files', 'Enable the grid view') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t</NcAppSettingsSection>\n\n\t\t<!-- Settings API-->\n\t\t<NcAppSettingsSection v-if=\"settings.length !== 0\"\n\t\t\tid=\"more-settings\"\n\t\t\t:name=\"t('files', 'Additional settings')\">\n\t\t\t<template v-for=\"setting in settings\">\n\t\t\t\t<Setting :key=\"setting.name\" :el=\"setting.el\" />\n\t\t\t</template>\n\t\t</NcAppSettingsSection>\n\n\t\t<!-- Webdav URL-->\n\t\t<NcAppSettingsSection id=\"webdav\" :name=\"t('files', 'WebDAV')\">\n\t\t\t<NcInputField id=\"webdav-url-input\"\n\t\t\t\t:label=\"t('files', 'WebDAV URL')\"\n\t\t\t\t:show-trailing-button=\"true\"\n\t\t\t\t:success=\"webdavUrlCopied\"\n\t\t\t\t:trailing-button-label=\"t('files', 'Copy to clipboard')\"\n\t\t\t\t:value=\"webdavUrl\"\n\t\t\t\treadonly=\"readonly\"\n\t\t\t\ttype=\"url\"\n\t\t\t\t@focus=\"$event.target.select()\"\n\t\t\t\t@trailing-button-click=\"copyCloudId\">\n\t\t\t\t<template #trailing-button-icon>\n\t\t\t\t\t<Clipboard :size=\"20\" />\n\t\t\t\t</template>\n\t\t\t</NcInputField>\n\t\t\t<em>\n\t\t\t\t<a class=\"setting-link\"\n\t\t\t\t\t:href=\"webdavDocs\"\n\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\trel=\"noreferrer noopener\">\n\t\t\t\t\t{{ t('files', 'Use this address to access your Files via WebDAV') }} ↗\n\t\t\t\t</a>\n\t\t\t</em>\n\t\t\t<br>\n\t\t\t<em>\n\t\t\t\t<a class=\"setting-link\" :href=\"appPasswordUrl\">\n\t\t\t\t\t{{ t('files', 'If you have enabled 2FA, you must create and use a new app password by clicking here.') }} ↗\n\t\t\t\t</a>\n\t\t\t</em>\n\t\t</NcAppSettingsSection>\n\t</NcAppSettingsDialog>\n</template>\n\n<script>\nimport NcAppSettingsDialog from '@nextcloud/vue/dist/Components/NcAppSettingsDialog.js'\nimport NcAppSettingsSection from '@nextcloud/vue/dist/Components/NcAppSettingsSection.js'\nimport NcCheckboxRadioSwitch from '@nextcloud/vue/dist/Components/NcCheckboxRadioSwitch.js'\nimport Clipboard from 'vue-material-design-icons/Clipboard.vue'\nimport NcInputField from '@nextcloud/vue/dist/Components/NcInputField.js'\nimport Setting from '../components/Setting.vue'\n\nimport { generateRemoteUrl, generateUrl } from '@nextcloud/router'\nimport { getCurrentUser } from '@nextcloud/auth'\nimport { showError, showSuccess } from '@nextcloud/dialogs'\nimport { translate } from '@nextcloud/l10n'\nimport { loadState } from '@nextcloud/initial-state'\nimport { useUserConfigStore } from '../store/userconfig.ts'\n\nexport default {\n\tname: 'Settings',\n\tcomponents: {\n\t\tClipboard,\n\t\tNcAppSettingsDialog,\n\t\tNcAppSettingsSection,\n\t\tNcCheckboxRadioSwitch,\n\t\tNcInputField,\n\t\tSetting,\n\t},\n\n\tprops: {\n\t\topen: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: false,\n\t\t},\n\t},\n\n\tsetup() {\n\t\tconst userConfigStore = useUserConfigStore()\n\t\treturn {\n\t\t\tuserConfigStore,\n\t\t}\n\t},\n\n\tdata() {\n\t\treturn {\n\t\t\t// Settings API\n\t\t\tsettings: window.OCA?.Files?.Settings?.settings || [],\n\n\t\t\t// Webdav infos\n\t\t\twebdavUrl: generateRemoteUrl('dav/files/' + encodeURIComponent(getCurrentUser()?.uid)),\n\t\t\twebdavDocs: 'https://docs.nextcloud.com/server/stable/go.php?to=user-webdav',\n\t\t\tappPasswordUrl: generateUrl('/settings/user/security#generate-app-token-section'),\n\t\t\twebdavUrlCopied: false,\n\t\t\tenableGridView: (loadState('core', 'config', [])['enable_non-accessible_features'] ?? true),\n\t\t}\n\t},\n\n\tcomputed: {\n\t\tuserConfig() {\n\t\t\treturn this.userConfigStore.userConfig\n\t\t},\n\t},\n\n\tbeforeMount() {\n\t\t// Update the settings API entries state\n\t\tthis.settings.forEach(setting => setting.open())\n\t},\n\n\tbeforeDestroy() {\n\t\t// Update the settings API entries state\n\t\tthis.settings.forEach(setting => setting.close())\n\t},\n\n\tmethods: {\n\t\tonClose() {\n\t\t\tthis.$emit('close')\n\t\t},\n\n\t\tsetConfig(key, value) {\n\t\t\tthis.userConfigStore.update(key, value)\n\t\t},\n\n\t\tasync copyCloudId() {\n\t\t\tdocument.querySelector('input#webdav-url-input').select()\n\n\t\t\tif (!navigator.clipboard) {\n\t\t\t\t// Clipboard API not available\n\t\t\t\tshowError(t('files', 'Clipboard is not available'))\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tawait navigator.clipboard.writeText(this.webdavUrl)\n\t\t\tthis.webdavUrlCopied = true\n\t\t\tshowSuccess(t('files', 'WebDAV URL copied to clipboard'))\n\t\t\tsetTimeout(() => {\n\t\t\t\tthis.webdavUrlCopied = false\n\t\t\t}, 5000)\n\t\t},\n\n\t\tt: translate,\n\t},\n}\n</script>\n\n<style lang=\"scss\" scoped>\n.setting-link:hover {\n\ttext-decoration: underline;\n}\n</style>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=00f09e69&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=00f09e69&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Settings.vue?vue&type=template&id=00f09e69&scoped=true\"\nimport script from \"./Settings.vue?vue&type=script&lang=js\"\nexport * from \"./Settings.vue?vue&type=script&lang=js\"\nimport style0 from \"./Settings.vue?vue&type=style&index=0&id=00f09e69&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"00f09e69\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppNavigation',{attrs:{\"data-cy-files-navigation\":\"\",\"aria-label\":_vm.t('files', 'Files')},scopedSlots:_vm._u([{key:\"list\",fn:function(){return _vm._l((_vm.parentViews),function(view){return _c('NcAppNavigationItem',{key:view.id,attrs:{\"allow-collapse\":true,\"data-cy-files-navigation-item\":view.id,\"exact\":_vm.useExactRouteMatching(view),\"icon\":view.iconClass,\"name\":view.name,\"open\":_vm.isExpanded(view),\"pinned\":view.sticky,\"to\":_vm.generateToNavigation(view)},on:{\"update:open\":function($event){return _vm.onToggleExpand(view)}}},[(view.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":view.icon},slot:\"icon\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.childViews[view.id]),function(child){return _c('NcAppNavigationItem',{key:child.id,attrs:{\"data-cy-files-navigation-item\":child.id,\"exact-path\":true,\"icon\":child.iconClass,\"name\":child.name,\"to\":_vm.generateToNavigation(child)}},[(child.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":child.icon},slot:\"icon\"}):_vm._e()],1)})],2)})},proxy:true},{key:\"footer\",fn:function(){return [_c('ul',{staticClass:\"app-navigation-entry__settings\"},[_c('NavigationQuota'),_vm._v(\" \"),_c('NcAppNavigationItem',{attrs:{\"aria-label\":_vm.t('files', 'Open the files app settings'),\"name\":_vm.t('files', 'Files settings'),\"data-cy-files-navigation-settings-button\":\"\"},on:{\"click\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.openSettings.apply(null, arguments)}}},[_c('Cog',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"})],1)],1)]},proxy:true}])},[_vm._v(\" \"),_vm._v(\" \"),_c('SettingsModal',{attrs:{\"open\":_vm.settingsOpened,\"data-cy-files-navigation-settings\":\"\"},on:{\"close\":_vm.onSettingsClose}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=476b6b93&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=476b6b93&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Navigation.vue?vue&type=template&id=476b6b93&scoped=true\"\nimport script from \"./Navigation.vue?vue&type=script&lang=ts\"\nexport * from \"./Navigation.vue?vue&type=script&lang=ts\"\nimport style0 from \"./Navigation.vue?vue&type=style&index=0&id=476b6b93&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"476b6b93\",\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcAppContent',{attrs:{\"page-heading\":_vm.pageHeading,\"data-cy-files-content\":\"\"}},[_c('div',{staticClass:\"files-list__header\"},[_c('BreadCrumbs',{attrs:{\"path\":_vm.dir},on:{\"reload\":_vm.fetchContent},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [(_vm.canShare && _vm.filesListWidth >= 512)?_c('NcButton',{staticClass:\"files-list__header-share-button\",class:{ 'files-list__header-share-button--shared': _vm.shareButtonType },attrs:{\"aria-label\":_vm.shareButtonLabel,\"title\":_vm.shareButtonLabel,\"type\":\"tertiary\"},on:{\"click\":_vm.openSharingSidebar},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.shareButtonType === _vm.Type.SHARE_TYPE_LINK)?_c('LinkIcon'):_c('AccountPlusIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,2969853559)}):_vm._e(),_vm._v(\" \"),(!_vm.canUpload || _vm.isQuotaExceeded)?_c('NcButton',{staticClass:\"files-list__header-upload-button--disabled\",attrs:{\"aria-label\":_vm.cantUploadLabel,\"title\":_vm.cantUploadLabel,\"disabled\":true,\"type\":\"secondary\"},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [_c('PlusIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,2953566425)},[_vm._v(\"\\n\\t\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'New'))+\"\\n\\t\\t\\t\\t\")]):(_vm.currentFolder)?_c('UploadPicker',{staticClass:\"files-list__header-upload-button\",attrs:{\"content\":_vm.dirContents,\"destination\":_vm.currentFolder,\"multiple\":true},on:{\"failed\":_vm.onUploadFail,\"uploaded\":_vm.onUpload}}):_vm._e()]},proxy:true}])}),_vm._v(\" \"),(_vm.filesListWidth >= 512 && _vm.enableGridView)?_c('NcButton',{staticClass:\"files-list__header-grid-button\",attrs:{\"aria-label\":_vm.gridViewButtonLabel,\"title\":_vm.gridViewButtonLabel,\"type\":\"tertiary\"},on:{\"click\":_vm.toggleGridView},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.userConfig.grid_view)?_c('ListViewIcon'):_c('ViewGridIcon')]},proxy:true}],null,false,1682960703)}):_vm._e(),_vm._v(\" \"),(_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__refresh-icon\"}):_vm._e()],1),_vm._v(\" \"),(!_vm.loading && _vm.canUpload)?_c('DragAndDropNotice',{attrs:{\"current-folder\":_vm.currentFolder}}):_vm._e(),_vm._v(\" \"),(_vm.loading && !_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__loading-icon\",attrs:{\"size\":38,\"name\":_vm.t('files', 'Loading current folder')}}):(!_vm.loading && _vm.isEmptyDir)?_c('NcEmptyContent',{attrs:{\"name\":_vm.currentView?.emptyTitle || _vm.t('files', 'No files in here'),\"description\":_vm.currentView?.emptyCaption || _vm.t('files', 'Upload some content or sync with your devices!'),\"data-cy-files-content-empty\":\"\"},scopedSlots:_vm._u([{key:\"action\",fn:function(){return [(_vm.dir !== '/')?_c('NcButton',{attrs:{\"aria-label\":_vm.t('files', 'Go to the previous folder'),\"type\":\"primary\",\"to\":_vm.toPreviousDir}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Go back'))+\"\\n\\t\\t\\t\")]):_vm._e()]},proxy:true},{key:\"icon\",fn:function(){return [_c('NcIconSvgWrapper',{attrs:{\"svg\":_vm.currentView.icon}})]},proxy:true}])}):_c('FilesListVirtual',{ref:\"filesListVirtual\",attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"nodes\":_vm.dirContentsSorted}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon format-list-bulleted-square-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"FormatListBulletedSquareIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FormatListBulletedSquare.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FormatListBulletedSquare.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./FormatListBulletedSquare.vue?vue&type=template&id=00aea13f\"\nimport script from \"./FormatListBulletedSquare.vue?vue&type=script&lang=js\"\nexport * from \"./FormatListBulletedSquare.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon format-list-bulleted-square-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon account-plus-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"AccountPlusIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./AccountPlus.vue?vue&type=template&id=a16afc28\"\nimport script from \"./AccountPlus.vue?vue&type=script&lang=js\"\nexport * from \"./AccountPlus.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon account-plus-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ViewGrid.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ViewGrid.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon view-grid-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"ViewGridIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./ViewGrid.vue?vue&type=template&id=7b96a104\"\nimport script from \"./ViewGrid.vue?vue&type=script&lang=js\"\nexport * from \"./ViewGrid.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon view-grid-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Permission, View, FileAction, FileType } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport InformationSvg from '@mdi/svg/svg/information-variant.svg?raw';\nimport logger from '../logger.js';\nexport const ACTION_DETAILS = 'details';\nexport const action = new FileAction({\n    id: ACTION_DETAILS,\n    displayName: () => t('files', 'Open details'),\n    iconSvgInline: () => InformationSvg,\n    // Sidebar currently supports user folder only, /files/USER\n    enabled: (nodes) => {\n        // Only works on single node\n        if (nodes.length !== 1) {\n            return false;\n        }\n        if (!nodes[0]) {\n            return false;\n        }\n        // Only work if the sidebar is available\n        if (!window?.OCA?.Files?.Sidebar) {\n            return false;\n        }\n        return (nodes[0].root?.startsWith('/files/') && nodes[0].permissions !== Permission.NONE) ?? false;\n    },\n    async exec(node, view, dir) {\n        try {\n            // TODO: migrate Sidebar to use a Node instead\n            await window.OCA.Files.Sidebar.open(node.path);\n            // Silently update current fileid\n            window.OCP.Files.Router.goToRoute(null, { view: view.id, fileid: node.fileid }, { dir }, true);\n            return null;\n        }\n        catch (error) {\n            logger.error('Error while opening sidebar', { error });\n            return false;\n        }\n    },\n    order: -50,\n});\n","import { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nimport logger from '../logger';\nimport Vue from 'vue';\nexport const useFilesStore = function (...args) {\n    const store = defineStore('files', {\n        state: () => ({\n            files: {},\n            roots: {},\n        }),\n        getters: {\n            /**\n             * Get a file or folder by id\n             */\n            getNode: (state) => (id) => state.files[id],\n            /**\n             * Get a list of files or folders by their IDs\n             * Does not return undefined values\n             */\n            getNodes: (state) => (ids) => ids\n                .map(id => state.files[id])\n                .filter(Boolean),\n            /**\n             * Get a file or folder by id\n             */\n            getRoot: (state) => (service) => state.roots[service],\n        },\n        actions: {\n            updateNodes(nodes) {\n                // Update the store all at once\n                const files = nodes.reduce((acc, node) => {\n                    if (!node.fileid) {\n                        logger.error('Trying to update/set a node without fileid', node);\n                        return acc;\n                    }\n                    acc[node.fileid] = node;\n                    return acc;\n                }, {});\n                Vue.set(this, 'files', { ...this.files, ...files });\n            },\n            deleteNodes(nodes) {\n                nodes.forEach(node => {\n                    if (node.fileid) {\n                        Vue.delete(this.files, node.fileid);\n                    }\n                });\n            },\n            setRoot({ service, root }) {\n                Vue.set(this.roots, service, root);\n            },\n            onDeletedNode(node) {\n                this.deleteNodes([node]);\n            },\n            onCreatedNode(node) {\n                this.updateNodes([node]);\n            },\n            onUpdatedNode(node) {\n                this.updateNodes([node]);\n            },\n        },\n    });\n    const fileStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!fileStore._initialized) {\n        subscribe('files:node:created', fileStore.onCreatedNode);\n        subscribe('files:node:deleted', fileStore.onDeletedNode);\n        subscribe('files:node:updated', fileStore.onUpdatedNode);\n        fileStore._initialized = true;\n    }\n    return fileStore;\n};\n","import { defineStore } from 'pinia';\nimport { FileType, Folder, Node, getNavigation } from '@nextcloud/files';\nimport { subscribe } from '@nextcloud/event-bus';\nimport Vue from 'vue';\nimport logger from '../logger';\nimport { useFilesStore } from './files';\nexport const usePathsStore = function (...args) {\n    const files = useFilesStore();\n    const store = defineStore('paths', {\n        state: () => ({\n            paths: {},\n        }),\n        getters: {\n            getPath: (state) => {\n                return (service, path) => {\n                    if (!state.paths[service]) {\n                        return undefined;\n                    }\n                    return state.paths[service][path];\n                };\n            },\n        },\n        actions: {\n            addPath(payload) {\n                // If it doesn't exists, init the service state\n                if (!this.paths[payload.service]) {\n                    Vue.set(this.paths, payload.service, {});\n                }\n                // Now we can set the provided path\n                Vue.set(this.paths[payload.service], payload.path, payload.fileid);\n            },\n            onCreatedNode(node) {\n                const service = getNavigation()?.active?.id || 'files';\n                if (!node.fileid) {\n                    logger.error('Node has no fileid', { node });\n                    return;\n                }\n                // Only add path if it's a folder\n                if (node.type === FileType.Folder) {\n                    this.addPath({\n                        service,\n                        path: node.path,\n                        fileid: node.fileid,\n                    });\n                }\n                // Update parent folder children if exists\n                // If the folder is the root, get it and update it\n                if (node.dirname === '/') {\n                    const root = files.getRoot(service);\n                    if (!root._children) {\n                        Vue.set(root, '_children', []);\n                    }\n                    root._children.push(node.fileid);\n                    return;\n                }\n                // If the folder doesn't exists yet, it will be\n                // fetched later and its children updated anyway.\n                if (this.paths[service][node.dirname]) {\n                    const parentId = this.paths[service][node.dirname];\n                    const parentFolder = files.getNode(parentId);\n                    logger.debug('Path already exists, updating children', { parentFolder, node });\n                    if (!parentFolder) {\n                        logger.error('Parent folder not found', { parentId });\n                        return;\n                    }\n                    if (!parentFolder._children) {\n                        Vue.set(parentFolder, '_children', []);\n                    }\n                    parentFolder._children.push(node.fileid);\n                    return;\n                }\n                logger.debug('Parent path does not exists, skipping children update', { node });\n            },\n        },\n    });\n    const pathsStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!pathsStore._initialized) {\n        // TODO: watch folders to update paths?\n        subscribe('files:node:created', pathsStore.onCreatedNode);\n        // subscribe('files:node:deleted', pathsStore.onDeletedNode)\n        // subscribe('files:node:moved', pathsStore.onMovedNode)\n        pathsStore._initialized = true;\n    }\n    return pathsStore;\n};\n","import { defineStore } from 'pinia';\nimport Vue from 'vue';\nexport const useSelectionStore = defineStore('selection', {\n    state: () => ({\n        selected: [],\n        lastSelection: [],\n        lastSelectedIndex: null,\n    }),\n    actions: {\n        /**\n         * Set the selection of fileIds\n         */\n        set(selection = []) {\n            Vue.set(this, 'selected', [...new Set(selection)]);\n        },\n        /**\n         * Set the last selected index\n         */\n        setLastIndex(lastSelectedIndex = null) {\n            // Update the last selection if we provided a new selection starting point\n            Vue.set(this, 'lastSelection', lastSelectedIndex ? this.selected : []);\n            Vue.set(this, 'lastSelectedIndex', lastSelectedIndex);\n        },\n        /**\n         * Reset the selection\n         */\n        reset() {\n            Vue.set(this, 'selected', []);\n            Vue.set(this, 'lastSelection', []);\n            Vue.set(this, 'lastSelectedIndex', null);\n        },\n    },\n});\n","import { defineStore } from 'pinia';\nimport { getUploader } from '@nextcloud/upload';\nlet uploader;\nexport const useUploaderStore = function (...args) {\n    // Only init on runtime\n    uploader = getUploader();\n    const store = defineStore('uploader', {\n        state: () => ({\n            queue: uploader.queue,\n        }),\n    });\n    return store(...args);\n};\n","/**\n * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\nimport { getCanonicalLocale, getLanguage } from '@nextcloud/l10n';\n/**\n * Helper to create string representation\n * @param value Value to stringify\n */\nfunction stringify(value) {\n    // The default representation of Date is not sortable because of the weekday names in front of it\n    if (value instanceof Date) {\n        return value.toISOString();\n    }\n    return String(value);\n}\n/**\n * Natural order a collection\n * You can define identifiers as callback functions, that get the element and return the value to sort.\n *\n * @param collection The collection to order\n * @param identifiers An array of identifiers to use, by default the identity of the element is used\n * @param orders Array of orders, by default all identifiers are sorted ascening\n */\nexport function orderBy(collection, identifiers, orders) {\n    // If not identifiers are set we use the identity of the value\n    identifiers = identifiers ?? [(value) => value];\n    // By default sort the collection ascending\n    orders = orders ?? [];\n    const sorting = identifiers.map((_, index) => (orders[index] ?? 'asc') === 'asc' ? 1 : -1);\n    const collator = Intl.Collator([getLanguage(), getCanonicalLocale()], {\n        // handle 10 as ten and not as one-zero\n        numeric: true,\n        usage: 'sort',\n    });\n    return [...collection].sort((a, b) => {\n        for (const [index, identifier] of identifiers.entries()) {\n            // Get the local compare of stringified value a and b\n            const value = collator.compare(stringify(identifier(a)), stringify(identifier(b)));\n            // If they do not match return the order\n            if (value !== 0) {\n                return value * sorting[index];\n            }\n            // If they match we need to continue with the next identifier\n        }\n        // If all are equal we need to return equality\n        return 0;\n    });\n}\n","import { emit } from '@nextcloud/event-bus';\nimport { Folder, Node, davGetClient, davGetDefaultPropfind, davResultToNode } from '@nextcloud/files';\nimport { openConflictPicker } from '@nextcloud/upload';\nimport { showError, showInfo } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport logger from '../logger.js';\n/**\n * This represents a Directory in the file tree\n * We extend the File class to better handling uploading\n * and stay as close as possible as the Filesystem API.\n * This also allow us to hijack the size or lastModified\n * properties to compute them dynamically.\n */\nexport class Directory extends File {\n    /* eslint-disable no-use-before-define */\n    _contents;\n    constructor(name, contents = []) {\n        super([], name, { type: 'httpd/unix-directory' });\n        this._contents = contents;\n    }\n    set contents(contents) {\n        this._contents = contents;\n    }\n    get contents() {\n        return this._contents;\n    }\n    get size() {\n        return this._computeDirectorySize(this);\n    }\n    get lastModified() {\n        if (this._contents.length === 0) {\n            return Date.now();\n        }\n        return this._computeDirectoryMtime(this);\n    }\n    /**\n     * Get the last modification time of a file tree\n     * This is not perfect, but will get us a pretty good approximation\n     * @param directory the directory to traverse\n     */\n    _computeDirectoryMtime(directory) {\n        return directory.contents.reduce((acc, file) => {\n            return file.lastModified > acc\n                // If the file is a directory, the lastModified will\n                // also return the results of its _computeDirectoryMtime method\n                // Fancy recursion, huh?\n                ? file.lastModified\n                : acc;\n        }, 0);\n    }\n    /**\n     * Get the size of a file tree\n     * @param directory the directory to traverse\n     */\n    _computeDirectorySize(directory) {\n        return directory.contents.reduce((acc, entry) => {\n            // If the file is a directory, the size will\n            // also return the results of its _computeDirectorySize method\n            // Fancy recursion, huh?\n            return acc + entry.size;\n        }, 0);\n    }\n}\n/**\n * Traverse a file tree using the Filesystem API\n * @param entry the entry to traverse\n */\nexport const traverseTree = async (entry) => {\n    // Handle file\n    if (entry.isFile) {\n        return new Promise((resolve, reject) => {\n            entry.file(resolve, reject);\n        });\n    }\n    // Handle directory\n    logger.debug('Handling recursive file tree', { entry: entry.name });\n    const directory = entry;\n    const entries = await readDirectory(directory);\n    const contents = (await Promise.all(entries.map(traverseTree))).flat();\n    return new Directory(directory.name, contents);\n};\n/**\n * Read a directory using Filesystem API\n * @param directory the directory to read\n */\nconst readDirectory = (directory) => {\n    const dirReader = directory.createReader();\n    return new Promise((resolve, reject) => {\n        const entries = [];\n        const getEntries = () => {\n            dirReader.readEntries((results) => {\n                if (results.length) {\n                    entries.push(...results);\n                    getEntries();\n                }\n                else {\n                    resolve(entries);\n                }\n            }, (error) => {\n                reject(error);\n            });\n        };\n        getEntries();\n    });\n};\nexport const createDirectoryIfNotExists = async (absolutePath) => {\n    const davClient = davGetClient();\n    const dirExists = await davClient.exists(absolutePath);\n    if (!dirExists) {\n        logger.debug('Directory does not exist, creating it', { absolutePath });\n        await davClient.createDirectory(absolutePath, { recursive: true });\n        const stat = await davClient.stat(absolutePath, { details: true, data: davGetDefaultPropfind() });\n        emit('files:node:created', davResultToNode(stat.data));\n    }\n};\nexport const resolveConflict = async (files, destination, contents) => {\n    try {\n        // List all conflicting files\n        const conflicts = files.filter((file) => {\n            return contents.find((node) => node.basename === (file instanceof File ? file.name : file.basename));\n        }).filter(Boolean);\n        // List of incoming files that are NOT in conflict\n        const uploads = files.filter((file) => {\n            return !conflicts.includes(file);\n        });\n        // Let the user choose what to do with the conflicting files\n        const { selected, renamed } = await openConflictPicker(destination.path, conflicts, contents);\n        logger.debug('Conflict resolution', { uploads, selected, renamed });\n        // If the user selected nothing, we cancel the upload\n        if (selected.length === 0 && renamed.length === 0) {\n            // User skipped\n            showInfo(t('files', 'Conflicts resolution skipped'));\n            logger.info('User skipped the conflict resolution');\n            return [];\n        }\n        // Update the list of files to upload\n        return [...uploads, ...selected, ...renamed];\n    }\n    catch (error) {\n        console.error(error);\n        // User cancelled\n        showError(t('files', 'Upload cancelled'));\n        logger.error('User cancelled the upload');\n    }\n    return [];\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport '@nextcloud/dialogs/style.css';\nimport { Permission } from '@nextcloud/files';\nimport PQueue from 'p-queue';\n// This is the processing queue. We only want to allow 3 concurrent requests\nlet queue;\n/**\n * Get the processing queue\n */\nexport const getQueue = () => {\n    if (!queue) {\n        queue = new PQueue({ concurrency: 3 });\n    }\n    return queue;\n};\nexport var MoveCopyAction;\n(function (MoveCopyAction) {\n    MoveCopyAction[\"MOVE\"] = \"Move\";\n    MoveCopyAction[\"COPY\"] = \"Copy\";\n    MoveCopyAction[\"MOVE_OR_COPY\"] = \"move-or-copy\";\n})(MoveCopyAction || (MoveCopyAction = {}));\nexport const canMove = (nodes) => {\n    const minPermission = nodes.reduce((min, node) => Math.min(min, node.permissions), Permission.ALL);\n    return (minPermission & Permission.UPDATE) !== 0;\n};\nexport const canDownload = (nodes) => {\n    return nodes.every(node => {\n        const shareAttributes = JSON.parse(node.attributes?.['share-attributes'] ?? '[]');\n        return !shareAttributes.some(attribute => attribute.scope === 'permissions' && attribute.enabled === false && attribute.key === 'download');\n    });\n};\nexport const canCopy = (nodes) => {\n    // For now the only restriction is that a shared file\n    // cannot be copied if the download is disabled\n    return canDownload(nodes);\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { createClient, getPatcher } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser, getRequestToken, onRequestTokenUpdate } from '@nextcloud/auth';\nexport const rootPath = `/files/${getCurrentUser()?.uid}`;\nexport const defaultRootUrl = generateRemoteUrl('dav' + rootPath);\nexport const getClient = (rootUrl = defaultRootUrl) => {\n    const client = createClient(rootUrl);\n    // set CSRF token header\n    const setHeaders = (token) => {\n        client?.setHeaders({\n            // Add this so the server knows it is an request from the browser\n            'X-Requested-With': 'XMLHttpRequest',\n            // Inject user auth\n            requesttoken: token ?? '',\n        });\n    };\n    // refresh headers when request token changes\n    onRequestTokenUpdate(setHeaders);\n    setHeaders(getRequestToken());\n    /**\n     * Allow to override the METHOD to support dav REPORT\n     *\n     * @see https://github.com/perry-mitchell/webdav-client/blob/8d9694613c978ce7404e26a401c39a41f125f87f/source/request.ts\n     */\n    const patcher = getPatcher();\n    // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n    // @ts-ignore\n    // https://github.com/perry-mitchell/hot-patcher/issues/6\n    patcher.patch('fetch', (url, options) => {\n        const headers = options.headers;\n        if (headers?.method) {\n            options.method = headers.method;\n            delete headers.method;\n        }\n        return fetch(url, options);\n    });\n    return client;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nexport const hashCode = function (str) {\n    return str.split('').reduce(function (a, b) {\n        a = ((a << 5) - a) + b.charCodeAt(0);\n        return a & a;\n    }, 0);\n};\n","import { CancelablePromise } from 'cancelable-promise';\nimport { File, Folder, davParsePermissions, davGetDefaultPropfind } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { hashCode } from '../utils/hashUtils';\nimport logger from '../logger';\nconst client = getClient();\nexport const resultToNode = function (node) {\n    const userId = getCurrentUser()?.uid;\n    if (!userId) {\n        throw new Error('No user id found');\n    }\n    const props = node.props;\n    const permissions = davParsePermissions(props?.permissions);\n    const owner = (props['owner-id'] || userId).toString();\n    const source = generateRemoteUrl('dav' + rootPath + node.filename);\n    const id = props?.fileid < 0\n        ? hashCode(source)\n        : props?.fileid || 0;\n    const nodeData = {\n        id,\n        source,\n        mtime: new Date(node.lastmod),\n        mime: node.mime || 'application/octet-stream',\n        size: props?.size || 0,\n        permissions,\n        owner,\n        root: rootPath,\n        attributes: {\n            ...node,\n            ...props,\n            hasPreview: props?.['has-preview'],\n            failed: props?.fileid < 0,\n        },\n    };\n    delete nodeData.attributes.props;\n    return node.type === 'file'\n        ? new File(nodeData)\n        : new Folder(nodeData);\n};\nexport const getContents = (path = '/') => {\n    const controller = new AbortController();\n    const propfindPayload = davGetDefaultPropfind();\n    return new CancelablePromise(async (resolve, reject, onCancel) => {\n        onCancel(() => controller.abort());\n        try {\n            const contentsResponse = await client.getDirectoryContents(path, {\n                details: true,\n                data: propfindPayload,\n                includeSelf: true,\n                signal: controller.signal,\n            });\n            const root = contentsResponse.data[0];\n            const contents = contentsResponse.data.slice(1);\n            if (root.filename !== path) {\n                throw new Error('Root node does not match requested path');\n            }\n            resolve({\n                folder: resultToNode(root),\n                contents: contents.map(result => {\n                    try {\n                        return resultToNode(result);\n                    }\n                    catch (error) {\n                        logger.error(`Invalid node detected '${result.basename}'`, { error });\n                        return null;\n                    }\n                }).filter(Boolean),\n            });\n        }\n        catch (error) {\n            reject(error);\n        }\n    });\n};\n","/**\n * @copyright Copyright (c) 2021 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { basename, extname } from 'path';\nimport { FileType } from '@nextcloud/files';\nimport { translate as t, translatePlural as n } from '@nextcloud/l10n';\n// TODO: move to @nextcloud/files\n/**\n * Create an unique file name\n * @param name The initial name to use\n * @param otherNames Other names that are already used\n * @param options Optional parameters for tuning the behavior\n * @param options.suffix A function that takes an index and returns a suffix to add to the file name, defaults to '(index)'\n * @param options.ignoreFileExtension Set to true to ignore the file extension when adding the suffix (when getting a unique directory name)\n * @return Either the initial name, if unique, or the name with the suffix so that the name is unique\n */\nexport const getUniqueName = (name, otherNames, options = {}) => {\n    const opts = {\n        suffix: (n) => `(${n})`,\n        ignoreFileExtension: false,\n        ...options,\n    };\n    let newName = name;\n    let i = 1;\n    while (otherNames.includes(newName)) {\n        const ext = opts.ignoreFileExtension ? '' : extname(name);\n        const base = basename(name, ext);\n        newName = `${base} ${opts.suffix(i++)}${ext}`;\n    }\n    return newName;\n};\n/**\n * Extract dir and name from file path\n *\n * @param {string} path the full path\n * @return {string[]} [dirPath, fileName]\n */\nexport const extractFilePaths = function (path) {\n    const pathSections = path.split('/');\n    const fileName = pathSections[pathSections.length - 1];\n    const dirPath = pathSections.slice(0, pathSections.length - 1).join('/');\n    return [dirPath, fileName];\n};\n/**\n * Generate a translated summary of an array of nodes\n * @param {Node[]} nodes the nodes to summarize\n * @return {string}\n */\nexport const getSummaryFor = (nodes) => {\n    const fileCount = nodes.filter(node => node.type === FileType.File).length;\n    const folderCount = nodes.filter(node => node.type === FileType.Folder).length;\n    if (fileCount === 0) {\n        return n('files', '{folderCount} folder', '{folderCount} folders', folderCount, { folderCount });\n    }\n    else if (folderCount === 0) {\n        return n('files', '{fileCount} file', '{fileCount} files', fileCount, { fileCount });\n    }\n    if (fileCount === 1) {\n        return n('files', '1 file and {folderCount} folder', '1 file and {folderCount} folders', folderCount, { folderCount });\n    }\n    if (folderCount === 1) {\n        return n('files', '{fileCount} file and 1 folder', '{fileCount} files and 1 folder', fileCount, { fileCount });\n    }\n    return t('files', '{fileCount} files and {folderCount} folders', { fileCount, folderCount });\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport '@nextcloud/dialogs/style.css';\n// eslint-disable-next-line n/no-extraneous-import\nimport { AxiosError } from 'axios';\nimport { basename, join } from 'path';\nimport { emit } from '@nextcloud/event-bus';\nimport { FilePickerClosed, getFilePickerBuilder, showError } from '@nextcloud/dialogs';\nimport { Permission, FileAction, FileType, NodeStatus, davGetClient, davRootPath, davResultToNode, davGetDefaultPropfind } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport { openConflictPicker, hasConflict } from '@nextcloud/upload';\nimport Vue from 'vue';\nimport CopyIconSvg from '@mdi/svg/svg/folder-multiple.svg?raw';\nimport FolderMoveSvg from '@mdi/svg/svg/folder-move.svg?raw';\nimport { MoveCopyAction, canCopy, canMove, getQueue } from './moveOrCopyActionUtils';\nimport { getContents } from '../services/Files';\nimport logger from '../logger';\nimport { getUniqueName } from '../utils/fileUtils';\n/**\n * Return the action that is possible for the given nodes\n * @param {Node[]} nodes The nodes to check against\n * @return {MoveCopyAction} The action that is possible for the given nodes\n */\nconst getActionForNodes = (nodes) => {\n    if (canMove(nodes)) {\n        if (canCopy(nodes)) {\n            return MoveCopyAction.MOVE_OR_COPY;\n        }\n        return MoveCopyAction.MOVE;\n    }\n    // Assuming we can copy as the enabled checks for copy permissions\n    return MoveCopyAction.COPY;\n};\n/**\n * Handle the copy/move of a node to a destination\n * This can be imported and used by other scripts/components on server\n * @param {Node} node The node to copy/move\n * @param {Folder} destination The destination to copy/move the node to\n * @param {MoveCopyAction} method The method to use for the copy/move\n * @param {boolean} overwrite Whether to overwrite the destination if it exists\n * @return {Promise<void>} A promise that resolves when the copy/move is done\n */\nexport const handleCopyMoveNodeTo = async (node, destination, method, overwrite = false) => {\n    if (!destination) {\n        return;\n    }\n    if (destination.type !== FileType.Folder) {\n        throw new Error(t('files', 'Destination is not a folder'));\n    }\n    // Do not allow to MOVE a node to the same folder it is already located\n    if (method === MoveCopyAction.MOVE && node.dirname === destination.path) {\n        throw new Error(t('files', 'This file/folder is already in that directory'));\n    }\n    /**\n     * Example:\n     * - node: /foo/bar/file.txt -> path = /foo/bar/file.txt, destination: /foo\n     *   Allow move of /foo does not start with /foo/bar/file.txt so allow\n     * - node: /foo , destination: /foo/bar\n     *   Do not allow as it would copy foo within itself\n     * - node: /foo/bar.txt, destination: /foo\n     *   Allow copy a file to the same directory\n     * - node: \"/foo/bar\", destination: \"/foo/bar 1\"\n     *   Allow to move or copy but we need to check with trailing / otherwise it would report false positive\n     */\n    if (`${destination.path}/`.startsWith(`${node.path}/`)) {\n        throw new Error(t('files', 'You cannot move a file/folder onto itself or into a subfolder of itself'));\n    }\n    // Set loading state\n    Vue.set(node, 'status', NodeStatus.LOADING);\n    const queue = getQueue();\n    return await queue.add(async () => {\n        const copySuffix = (index) => {\n            if (index === 1) {\n                return t('files', '(copy)'); // TRANSLATORS: Mark a file as a copy of another file\n            }\n            return t('files', '(copy %n)', undefined, index); // TRANSLATORS: Meaning it is the n'th copy of a file\n        };\n        try {\n            const client = davGetClient();\n            const currentPath = join(davRootPath, node.path);\n            const destinationPath = join(davRootPath, destination.path);\n            if (method === MoveCopyAction.COPY) {\n                let target = node.basename;\n                // If we do not allow overwriting then find an unique name\n                if (!overwrite) {\n                    const otherNodes = await client.getDirectoryContents(destinationPath);\n                    target = getUniqueName(node.basename, otherNodes.map((n) => n.basename), {\n                        suffix: copySuffix,\n                        ignoreFileExtension: node.type === FileType.Folder,\n                    });\n                }\n                await client.copyFile(currentPath, join(destinationPath, target));\n                // If the node is copied into current directory the view needs to be updated\n                if (node.dirname === destination.path) {\n                    const { data } = await client.stat(join(destinationPath, target), {\n                        details: true,\n                        data: davGetDefaultPropfind(),\n                    });\n                    emit('files:node:created', davResultToNode(data));\n                }\n            }\n            else {\n                // show conflict file popup if we do not allow overwriting\n                const otherNodes = await getContents(destination.path);\n                if (hasConflict([node], otherNodes.contents)) {\n                    try {\n                        // Let the user choose what to do with the conflicting files\n                        const { selected, renamed } = await openConflictPicker(destination.path, [node], otherNodes.contents);\n                        // if the user selected to keep the old file, and did not select the new file\n                        // that means they opted to delete the current node\n                        if (!selected.length && !renamed.length) {\n                            await client.deleteFile(currentPath);\n                            emit('files:node:deleted', node);\n                            return;\n                        }\n                    }\n                    catch (error) {\n                        // User cancelled\n                        showError(t('files', 'Move cancelled'));\n                        return;\n                    }\n                }\n                // getting here means either no conflict, file was renamed to keep both files\n                // in a conflict, or the selected file was chosen to be kept during the conflict\n                await client.moveFile(currentPath, join(destinationPath, node.basename));\n                // Delete the node as it will be fetched again\n                // when navigating to the destination folder\n                emit('files:node:deleted', node);\n            }\n        }\n        catch (error) {\n            if (error instanceof AxiosError) {\n                if (error?.response?.status === 412) {\n                    throw new Error(t('files', 'A file or folder with that name already exists in this folder'));\n                }\n                else if (error?.response?.status === 423) {\n                    throw new Error(t('files', 'The files are locked'));\n                }\n                else if (error?.response?.status === 404) {\n                    throw new Error(t('files', 'The file does not exist anymore'));\n                }\n                else if (error.message) {\n                    throw new Error(error.message);\n                }\n            }\n            logger.debug(error);\n            throw new Error();\n        }\n        finally {\n            Vue.set(node, 'status', undefined);\n        }\n    });\n};\n/**\n * Open a file picker for the given action\n * @param {MoveCopyAction} action The action to open the file picker for\n * @param {string} dir The directory to start the file picker in\n * @param {Node[]} nodes The nodes to move/copy\n * @return {Promise<MoveCopyResult>} The picked destination\n */\nconst openFilePickerForAction = async (action, dir = '/', nodes) => {\n    const fileIDs = nodes.map(node => node.fileid).filter(Boolean);\n    const filePicker = getFilePickerBuilder(t('files', 'Choose destination'))\n        .allowDirectories(true)\n        .setFilter((n) => {\n        // We only want to show folders that we can create nodes in\n        return (n.permissions & Permission.CREATE) !== 0\n            // We don't want to show the current nodes in the file picker\n            && !fileIDs.includes(n.fileid);\n    })\n        .setMimeTypeFilter([])\n        .setMultiSelect(false)\n        .startAt(dir);\n    return new Promise((resolve, reject) => {\n        filePicker.setButtonFactory((_selection, path) => {\n            const buttons = [];\n            const target = basename(path);\n            const dirnames = nodes.map(node => node.dirname);\n            const paths = nodes.map(node => node.path);\n            if (action === MoveCopyAction.COPY || action === MoveCopyAction.MOVE_OR_COPY) {\n                buttons.push({\n                    label: target ? t('files', 'Copy to {target}', { target }, undefined, { escape: false, sanitize: false }) : t('files', 'Copy'),\n                    type: 'primary',\n                    icon: CopyIconSvg,\n                    async callback(destination) {\n                        resolve({\n                            destination: destination[0],\n                            action: MoveCopyAction.COPY,\n                        });\n                    },\n                });\n            }\n            // Invalid MOVE targets (but valid copy targets)\n            if (dirnames.includes(path)) {\n                // This file/folder is already in that directory\n                return buttons;\n            }\n            if (paths.includes(path)) {\n                // You cannot move a file/folder onto itself\n                return buttons;\n            }\n            if (action === MoveCopyAction.MOVE || action === MoveCopyAction.MOVE_OR_COPY) {\n                buttons.push({\n                    label: target ? t('files', 'Move to {target}', { target }, undefined, { escape: false, sanitize: false }) : t('files', 'Move'),\n                    type: action === MoveCopyAction.MOVE ? 'primary' : 'secondary',\n                    icon: FolderMoveSvg,\n                    async callback(destination) {\n                        resolve({\n                            destination: destination[0],\n                            action: MoveCopyAction.MOVE,\n                        });\n                    },\n                });\n            }\n            return buttons;\n        });\n        const picker = filePicker.build();\n        picker.pick().catch((error) => {\n            logger.debug(error);\n            if (error instanceof FilePickerClosed) {\n                reject(new Error(t('files', 'Cancelled move or copy operation')));\n            }\n            else {\n                reject(new Error(t('files', 'Move or copy operation failed')));\n            }\n        });\n    });\n};\nexport const action = new FileAction({\n    id: 'move-copy',\n    displayName(nodes) {\n        switch (getActionForNodes(nodes)) {\n            case MoveCopyAction.MOVE:\n                return t('files', 'Move');\n            case MoveCopyAction.COPY:\n                return t('files', 'Copy');\n            case MoveCopyAction.MOVE_OR_COPY:\n                return t('files', 'Move or copy');\n        }\n    },\n    iconSvgInline: () => FolderMoveSvg,\n    enabled(nodes) {\n        // We only support moving/copying files within the user folder\n        if (!nodes.every(node => node.root?.startsWith('/files/'))) {\n            return false;\n        }\n        return nodes.length > 0 && (canMove(nodes) || canCopy(nodes));\n    },\n    async exec(node, view, dir) {\n        const action = getActionForNodes([node]);\n        let result;\n        try {\n            result = await openFilePickerForAction(action, dir, [node]);\n        }\n        catch (e) {\n            logger.error(e);\n            return false;\n        }\n        try {\n            await handleCopyMoveNodeTo(node, result.destination, result.action);\n            return true;\n        }\n        catch (error) {\n            if (error instanceof Error && !!error.message) {\n                showError(error.message);\n                // Silent action as we handle the toast\n                return null;\n            }\n            return false;\n        }\n    },\n    async execBatch(nodes, view, dir) {\n        const action = getActionForNodes(nodes);\n        const result = await openFilePickerForAction(action, dir, nodes);\n        const promises = nodes.map(async (node) => {\n            try {\n                await handleCopyMoveNodeTo(node, result.destination, result.action);\n                return true;\n            }\n            catch (error) {\n                logger.error(`Failed to ${result.action} node`, { node, error });\n                return false;\n            }\n        });\n        // We need to keep the selection on error!\n        // So we do not return null, and for batch action\n        // we let the front handle the error.\n        return await Promise.all(promises);\n    },\n    order: 15,\n});\n","/**\n * @copyright Copyright (c) 2023 Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Folder, Node, NodeStatus, davRootPath } from '@nextcloud/files';\nimport { getUploader, hasConflict } from '@nextcloud/upload';\nimport { join } from 'path';\nimport { joinPaths } from '@nextcloud/paths';\nimport { showError, showInfo, showSuccess, showWarning } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport Vue from 'vue';\nimport { Directory, traverseTree, resolveConflict, createDirectoryIfNotExists } from './DropServiceUtils';\nimport { handleCopyMoveNodeTo } from '../actions/moveOrCopyAction';\nimport { MoveCopyAction } from '../actions/moveOrCopyActionUtils';\nimport logger from '../logger.js';\n/**\n * This function converts a list of DataTransferItems to a file tree.\n * It uses the Filesystem API if available, otherwise it falls back to the File API.\n * The File API will NOT be available if the browser is not in a secure context (e.g. HTTP).\n * ⚠️ When using this method, you need to use it as fast as possible, as the DataTransferItems\n * will be cleared after the first access to the props of one of the entries.\n *\n * @param items the list of DataTransferItems\n */\nexport const dataTransferToFileTree = async (items) => {\n    // Check if the browser supports the Filesystem API\n    // We need to cache the entries to prevent Blink engine bug that clears\n    // the list (`data.items`) after first access props of one of the entries\n    const entries = items\n        .filter((item) => {\n        if (item.kind !== 'file') {\n            logger.debug('Skipping dropped item', { kind: item.kind, type: item.type });\n            return false;\n        }\n        return true;\n    }).map((item) => {\n        // MDN recommends to try both, as it might be renamed in the future\n        return item?.getAsEntry?.()\n            ?? item?.webkitGetAsEntry?.()\n            ?? item;\n    });\n    let warned = false;\n    const fileTree = new Directory('root');\n    // Traverse the file tree\n    for (const entry of entries) {\n        // Handle browser issues if Filesystem API is not available. Fallback to File API\n        if (entry instanceof DataTransferItem) {\n            logger.warn('Could not get FilesystemEntry of item, falling back to file');\n            const file = entry.getAsFile();\n            if (file === null) {\n                logger.warn('Could not process DataTransferItem', { type: entry.type, kind: entry.kind });\n                showError(t('files', 'One of the dropped files could not be processed'));\n                continue;\n            }\n            // Warn the user that the browser does not support the Filesystem API\n            // we therefore cannot upload directories recursively.\n            if (file.type === 'httpd/unix-directory' || !file.type) {\n                if (!warned) {\n                    logger.warn('Browser does not support Filesystem API. Directories will not be uploaded');\n                    showWarning(t('files', 'Your browser does not support the Filesystem API. Directories will not be uploaded'));\n                    warned = true;\n                }\n                continue;\n            }\n            fileTree.contents.push(file);\n            continue;\n        }\n        // Use Filesystem API\n        try {\n            fileTree.contents.push(await traverseTree(entry));\n        }\n        catch (error) {\n            // Do not throw, as we want to continue with the other files\n            logger.error('Error while traversing file tree', { error });\n        }\n    }\n    return fileTree;\n};\nexport const onDropExternalFiles = async (root, destination, contents) => {\n    const uploader = getUploader();\n    // Check for conflicts on root elements\n    if (await hasConflict(root.contents, contents)) {\n        root.contents = await resolveConflict(root.contents, destination, contents);\n    }\n    if (root.contents.length === 0) {\n        logger.info('No files to upload', { root });\n        showInfo(t('files', 'No files to upload'));\n        return [];\n    }\n    // Let's process the files\n    logger.debug(`Uploading files to ${destination.path}`, { root, contents: root.contents });\n    const queue = [];\n    const uploadDirectoryContents = async (directory, path) => {\n        for (const file of directory.contents) {\n            // This is the relative path to the resource\n            // from the current uploader destination\n            const relativePath = join(path, file.name);\n            // If the file is a directory, we need to create it first\n            // then browse its tree and upload its contents.\n            if (file instanceof Directory) {\n                const absolutePath = joinPaths(davRootPath, destination.path, relativePath);\n                try {\n                    console.debug('Processing directory', { relativePath });\n                    await createDirectoryIfNotExists(absolutePath);\n                    await uploadDirectoryContents(file, relativePath);\n                }\n                catch (error) {\n                    showError(t('files', 'Unable to create the directory {directory}', { directory: file.name }));\n                    logger.error('', { error, absolutePath, directory: file });\n                }\n                continue;\n            }\n            // If we've reached a file, we can upload it\n            logger.debug('Uploading file to ' + join(destination.path, relativePath), { file });\n            // Overriding the root to avoid changing the current uploader context\n            queue.push(uploader.upload(relativePath, file, destination.source));\n        }\n    };\n    // Pause the uploader to prevent it from starting\n    // while we compute the queue\n    uploader.pause();\n    // Upload the files. Using '/' as the starting point\n    // as we already adjusted the uploader destination\n    await uploadDirectoryContents(root, '/');\n    uploader.start();\n    // Wait for all promises to settle\n    const results = await Promise.allSettled(queue);\n    // Check for errors\n    const errors = results.filter(result => result.status === 'rejected');\n    if (errors.length > 0) {\n        logger.error('Error while uploading files', { errors });\n        showError(t('files', 'Some files could not be uploaded'));\n        return [];\n    }\n    logger.debug('Files uploaded successfully');\n    showSuccess(t('files', 'Files uploaded successfully'));\n    return Promise.all(queue);\n};\nexport const onDropInternalFiles = async (nodes, destination, contents, isCopy = false) => {\n    const queue = [];\n    // Check for conflicts on root elements\n    if (await hasConflict(nodes, contents)) {\n        nodes = await resolveConflict(nodes, destination, contents);\n    }\n    if (nodes.length === 0) {\n        logger.info('No files to process', { nodes });\n        showInfo(t('files', 'No files to process'));\n        return;\n    }\n    for (const node of nodes) {\n        Vue.set(node, 'status', NodeStatus.LOADING);\n        // TODO: resolve potential conflicts prior and force overwrite\n        queue.push(handleCopyMoveNodeTo(node, destination, isCopy ? MoveCopyAction.COPY : MoveCopyAction.MOVE));\n    }\n    // Wait for all promises to settle\n    const results = await Promise.allSettled(queue);\n    nodes.forEach(node => Vue.set(node, 'status', undefined));\n    // Check for errors\n    const errors = results.filter(result => result.status === 'rejected');\n    if (errors.length > 0) {\n        logger.error('Error while copying or moving files', { errors });\n        showError(isCopy ? t('files', 'Some files could not be copied') : t('files', 'Some files could not be moved'));\n        return;\n    }\n    logger.debug('Files copy/move successful');\n    showSuccess(isCopy ? t('files', 'Files copied successfully') : t('files', 'Files moved successfully'));\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\nexport const useDragAndDropStore = defineStore('dragging', {\n    state: () => ({\n        dragging: [],\n    }),\n    actions: {\n        /**\n         * Set the selection of fileIds\n         */\n        set(selection = []) {\n            Vue.set(this, 'dragging', selection);\n        },\n        /**\n         * Reset the selection\n         */\n        reset() {\n            Vue.set(this, 'dragging', []);\n        },\n    },\n});\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport Vue from 'vue';\nexport default Vue.extend({\n    data() {\n        return {\n            filesListWidth: null,\n        };\n    },\n    mounted() {\n        const fileListEl = document.querySelector('#app-content-vue');\n        this.filesListWidth = fileListEl?.clientWidth ?? null;\n        this.$resizeObserver = new ResizeObserver((entries) => {\n            if (entries.length > 0 && entries[0].target === fileListEl) {\n                this.filesListWidth = entries[0].contentRect.width;\n            }\n        });\n        this.$resizeObserver.observe(fileListEl);\n    },\n    beforeDestroy() {\n        this.$resizeObserver.disconnect();\n    },\n});\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcBreadcrumbs',{staticClass:\"files-list__breadcrumbs\",class:{ 'files-list__breadcrumbs--with-progress': _vm.wrapUploadProgressBar },attrs:{\"data-cy-files-content-breadcrumbs\":\"\",\"aria-label\":_vm.t('files', 'Current directory path')},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [_vm._t(\"actions\")]},proxy:true}],null,true)},_vm._l((_vm.sections),function(section,index){return _c('NcBreadcrumb',_vm._b({key:section.dir,attrs:{\"dir\":\"auto\",\"to\":section.to,\"force-icon-text\":index === 0 && _vm.filesListWidth >= 486,\"title\":_vm.titleForSection(index, section),\"aria-description\":_vm.ariaForSection(section)},on:{\"drop\":function($event){return _vm.onDrop($event, section.dir)}},nativeOn:{\"click\":function($event){return _vm.onClick(section.to)},\"dragover\":function($event){return _vm.onDragOver($event, section.dir)}},scopedSlots:_vm._u([(index === 0)?{key:\"icon\",fn:function(){return [_c('NcIconSvgWrapper',{attrs:{\"size\":20,\"svg\":_vm.viewIcon}})]},proxy:true}:null],null,true)},'NcBreadcrumb',section,false))}),1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=499e1525&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=499e1525&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./BreadCrumbs.vue?vue&type=template&id=499e1525&scoped=true\"\nimport script from \"./BreadCrumbs.vue?vue&type=script&lang=ts\"\nexport * from \"./BreadCrumbs.vue?vue&type=script&lang=ts\"\nimport style0 from \"./BreadCrumbs.vue?vue&type=style&index=0&id=499e1525&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"499e1525\",\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('VirtualList',{ref:\"table\",attrs:{\"data-component\":_vm.userConfig.grid_view ? _vm.FileEntryGrid : _vm.FileEntry,\"data-key\":'source',\"data-sources\":_vm.nodes,\"grid-mode\":_vm.userConfig.grid_view,\"extra-props\":{\n\t\tisMtimeAvailable: _vm.isMtimeAvailable,\n\t\tisSizeAvailable: _vm.isSizeAvailable,\n\t\tnodes: _vm.nodes,\n\t\tfilesListWidth: _vm.filesListWidth,\n\t},\"scroll-to-index\":_vm.scrollToIndex,\"caption\":_vm.caption},scopedSlots:_vm._u([(!_vm.isNoneSelected)?{key:\"header-overlay\",fn:function(){return [_c('span',{staticClass:\"files-list__selected\"},[_vm._v(_vm._s(_vm.t('files', '{count} selected', { count: _vm.selectedNodes.length })))]),_vm._v(\" \"),_c('FilesListTableHeaderActions',{attrs:{\"current-view\":_vm.currentView,\"selected-nodes\":_vm.selectedNodes}})]},proxy:true}:null,{key:\"before\",fn:function(){return _vm._l((_vm.sortedHeaders),function(header){return _c('FilesListHeader',{key:header.id,attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"header\":header}})})},proxy:true},{key:\"header\",fn:function(){return [_c('FilesListTableHeader',{ref:\"thead\",attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes}})]},proxy:true},{key:\"footer\",fn:function(){return [_c('FilesListTableFooter',{attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes,\"summary\":_vm.summary}})]},proxy:true}],null,true)})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nexport const useActionsMenuStore = defineStore('actionsmenu', {\n    state: () => ({\n        opened: null,\n    }),\n});\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nexport const useRenamingStore = function (...args) {\n    const store = defineStore('renaming', {\n        state: () => ({\n            renamingNode: undefined,\n            newName: '',\n        }),\n    });\n    const renamingStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!renamingStore._initialized) {\n        subscribe('files:node:rename', function (node) {\n            renamingStore.renamingNode = node;\n            renamingStore.newName = node.basename;\n        });\n        renamingStore._initialized = true;\n    }\n    return renamingStore;\n};\n","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon file-multiple-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"FileMultipleIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FileMultiple.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FileMultiple.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./FileMultiple.vue?vue&type=template&id=27b46e04\"\nimport script from \"./FileMultiple.vue?vue&type=script&lang=js\"\nexport * from \"./FileMultiple.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon file-multiple-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list-drag-image\"},[_c('span',{staticClass:\"files-list-drag-image__icon\"},[_c('span',{ref:\"previewImg\"}),_vm._v(\" \"),(_vm.isSingleFolder)?_c('FolderIcon'):_c('FileMultipleIcon')],1),_vm._v(\" \"),_c('span',{staticClass:\"files-list-drag-image__name\"},[_vm._v(_vm._s(_vm.name))])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./DragAndDropPreview.vue?vue&type=template&id=578d5cf6\"\nimport script from \"./DragAndDropPreview.vue?vue&type=script&lang=ts\"\nexport * from \"./DragAndDropPreview.vue?vue&type=script&lang=ts\"\nimport style0 from \"./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","import DragAndDropPreview from '../components/DragAndDropPreview.vue';\nimport Vue from 'vue';\nconst Preview = Vue.extend(DragAndDropPreview);\nlet preview;\nexport const getDragAndDropPreview = async (nodes) => {\n    return new Promise((resolve) => {\n        if (!preview) {\n            preview = new Preview().$mount();\n            document.body.appendChild(preview.$el);\n        }\n        preview.update(nodes);\n        preview.$on('loaded', () => {\n            resolve(preview.$el);\n            preview.$off('loaded');\n        });\n    });\n};\n","/**\n * @copyright Copyright (c) 2024 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { extname } from 'path';\nimport { FileType, Permission, Folder, File as NcFile, NodeStatus, Node, View } from '@nextcloud/files';\nimport { generateUrl } from '@nextcloud/router';\nimport { translate as t } from '@nextcloud/l10n';\nimport { vOnClickOutside } from '@vueuse/components';\nimport Vue, { defineComponent } from 'vue';\nimport { action as sidebarAction } from '../actions/sidebarAction.ts';\nimport { getDragAndDropPreview } from '../utils/dragUtils.ts';\nimport { hashCode } from '../utils/hashUtils.ts';\nimport { dataTransferToFileTree, onDropExternalFiles, onDropInternalFiles } from '../services/DropService.ts';\nimport logger from '../logger.js';\nimport { showError } from '@nextcloud/dialogs';\nVue.directive('onClickOutside', vOnClickOutside);\nexport default defineComponent({\n    props: {\n        source: {\n            type: [Folder, NcFile, Node],\n            required: true,\n        },\n        nodes: {\n            type: Array,\n            required: true,\n        },\n        filesListWidth: {\n            type: Number,\n            default: 0,\n        },\n    },\n    data() {\n        return {\n            loading: '',\n            dragover: false,\n            gridMode: false,\n        };\n    },\n    computed: {\n        currentView() {\n            return this.$navigation.active;\n        },\n        currentDir() {\n            // Remove any trailing slash but leave root slash\n            return (this.$route?.query?.dir?.toString() || '/').replace(/^(.+)\\/$/, '$1');\n        },\n        currentFileId() {\n            return this.$route.params?.fileid || this.$route.query?.fileid || null;\n        },\n        fileid() {\n            return this.source?.fileid;\n        },\n        uniqueId() {\n            return hashCode(this.source.source);\n        },\n        isLoading() {\n            return this.source.status === NodeStatus.LOADING;\n        },\n        extension() {\n            if (this.source.attributes?.displayName) {\n                return extname(this.source.attributes.displayName);\n            }\n            return this.source.extension || '';\n        },\n        displayName() {\n            const ext = this.extension;\n            const name = (this.source.attributes.displayName\n                || this.source.basename);\n            // Strip extension from name if defined\n            return !ext ? name : name.slice(0, 0 - ext.length);\n        },\n        draggingFiles() {\n            return this.draggingStore.dragging;\n        },\n        selectedFiles() {\n            return this.selectionStore.selected;\n        },\n        isSelected() {\n            return this.fileid && this.selectedFiles.includes(this.fileid);\n        },\n        isRenaming() {\n            return this.renamingStore.renamingNode === this.source;\n        },\n        isRenamingSmallScreen() {\n            return this.isRenaming && this.filesListWidth < 512;\n        },\n        isActive() {\n            return this.fileid?.toString?.() === this.currentFileId?.toString?.();\n        },\n        canDrag() {\n            if (this.isRenaming) {\n                return false;\n            }\n            const canDrag = (node) => {\n                return (node?.permissions & Permission.UPDATE) !== 0;\n            };\n            // If we're dragging a selection, we need to check all files\n            if (this.selectedFiles.length > 0) {\n                const nodes = this.selectedFiles.map(fileid => this.filesStore.getNode(fileid));\n                return nodes.every(canDrag);\n            }\n            return canDrag(this.source);\n        },\n        canDrop() {\n            if (this.source.type !== FileType.Folder) {\n                return false;\n            }\n            // If the current folder is also being dragged, we can't drop it on itself\n            if (this.fileid && this.draggingFiles.includes(this.fileid)) {\n                return false;\n            }\n            return (this.source.permissions & Permission.CREATE) !== 0;\n        },\n        openedMenu: {\n            get() {\n                return this.actionsMenuStore.opened === this.uniqueId.toString();\n            },\n            set(opened) {\n                // Only reset when opening a new menu\n                if (opened) {\n                    // Reset any right click position override on close\n                    // Wait for css animation to be done\n                    const root = this.$el?.closest('main.app-content');\n                    root.style.removeProperty('--mouse-pos-x');\n                    root.style.removeProperty('--mouse-pos-y');\n                }\n                this.actionsMenuStore.opened = opened ? this.uniqueId.toString() : null;\n            },\n        },\n    },\n    watch: {\n        /**\n         * When the source changes, reset the preview\n         * and fetch the new one.\n         */\n        source(a, b) {\n            if (a.source !== b.source) {\n                this.resetState();\n            }\n        },\n    },\n    beforeDestroy() {\n        this.resetState();\n    },\n    methods: {\n        resetState() {\n            // Reset loading state\n            this.loading = '';\n            // Reset the preview state\n            this.$refs?.preview?.reset?.();\n            // Close menu\n            this.openedMenu = false;\n        },\n        // Open the actions menu on right click\n        onRightClick(event) {\n            // If already opened, fallback to default browser\n            if (this.openedMenu) {\n                return;\n            }\n            // The grid mode is compact enough to not care about\n            // the actions menu mouse position\n            if (!this.gridMode) {\n                // Actions menu is contained within the app content\n                const root = this.$el?.closest('main.app-content');\n                const contentRect = root.getBoundingClientRect();\n                // Using Math.min/max to prevent the menu from going out of the AppContent\n                // 200 = max width of the menu\n                root.style.setProperty('--mouse-pos-x', Math.max(0, event.clientX - contentRect.left - 200) + 'px');\n                root.style.setProperty('--mouse-pos-y', Math.max(0, event.clientY - contentRect.top) + 'px');\n            }\n            // If the clicked row is in the selection, open global menu\n            const isMoreThanOneSelected = this.selectedFiles.length > 1;\n            this.actionsMenuStore.opened = this.isSelected && isMoreThanOneSelected ? 'global' : this.uniqueId.toString();\n            // Prevent any browser defaults\n            event.preventDefault();\n            event.stopPropagation();\n        },\n        execDefaultAction(event) {\n            if (event.ctrlKey || event.metaKey) {\n                event.preventDefault();\n                window.open(generateUrl('/f/{fileId}', { fileId: this.fileid }));\n                return false;\n            }\n            this.$refs.actions.execDefaultAction(event);\n        },\n        openDetailsIfAvailable(event) {\n            event.preventDefault();\n            event.stopPropagation();\n            if (sidebarAction?.enabled?.([this.source], this.currentView)) {\n                sidebarAction.exec(this.source, this.currentView, this.currentDir);\n            }\n        },\n        onDragOver(event) {\n            this.dragover = this.canDrop;\n            if (!this.canDrop) {\n                event.dataTransfer.dropEffect = 'none';\n                return;\n            }\n            // Handle copy/move drag and drop\n            if (event.ctrlKey) {\n                event.dataTransfer.dropEffect = 'copy';\n            }\n            else {\n                event.dataTransfer.dropEffect = 'move';\n            }\n        },\n        onDragLeave(event) {\n            // Counter bubbling, make sure we're ending the drag\n            // only when we're leaving the current element\n            const currentTarget = event.currentTarget;\n            if (currentTarget?.contains(event.relatedTarget)) {\n                return;\n            }\n            this.dragover = false;\n        },\n        async onDragStart(event) {\n            event.stopPropagation();\n            if (!this.canDrag || !this.fileid) {\n                event.preventDefault();\n                event.stopPropagation();\n                return;\n            }\n            logger.debug('Drag started', { event });\n            // Make sure that we're not dragging a file like the preview\n            event.dataTransfer?.clearData?.();\n            // Reset any renaming\n            this.renamingStore.$reset();\n            // Dragging set of files, if we're dragging a file\n            // that is already selected, we use the entire selection\n            if (this.selectedFiles.includes(this.fileid)) {\n                this.draggingStore.set(this.selectedFiles);\n            }\n            else {\n                this.draggingStore.set([this.fileid]);\n            }\n            const nodes = this.draggingStore.dragging\n                .map(fileid => this.filesStore.getNode(fileid));\n            const image = await getDragAndDropPreview(nodes);\n            event.dataTransfer?.setDragImage(image, -10, -10);\n        },\n        onDragEnd() {\n            this.draggingStore.reset();\n            this.dragover = false;\n            logger.debug('Drag ended');\n        },\n        async onDrop(event) {\n            // skip if native drop like text drag and drop from files names\n            if (!this.draggingFiles && !event.dataTransfer?.items?.length) {\n                return;\n            }\n            event.preventDefault();\n            event.stopPropagation();\n            // Caching the selection\n            const selection = this.draggingFiles;\n            const items = [...event.dataTransfer?.items || []];\n            // We need to process the dataTransfer ASAP before the\n            // browser clears it. This is why we cache the items too.\n            const fileTree = await dataTransferToFileTree(items);\n            // We might not have the target directory fetched yet\n            const contents = await this.currentView?.getContents(this.source.path);\n            const folder = contents?.folder;\n            if (!folder) {\n                showError(this.t('files', 'Target folder does not exist any more'));\n                return;\n            }\n            // If another button is pressed, cancel it. This\n            // allows cancelling the drag with the right click.\n            if (!this.canDrop || event.button) {\n                return;\n            }\n            const isCopy = event.ctrlKey;\n            this.dragover = false;\n            logger.debug('Dropped', { event, folder, selection, fileTree });\n            // Check whether we're uploading files\n            if (fileTree.contents.length > 0) {\n                await onDropExternalFiles(fileTree, folder, contents.contents);\n                return;\n            }\n            // Else we're moving/copying files\n            const nodes = selection.map(fileid => this.filesStore.getNode(fileid));\n            await onDropInternalFiles(nodes, folder, contents.contents, isCopy);\n            // Reset selection after we dropped the files\n            // if the dropped files are within the selection\n            if (selection.some(fileid => this.selectedFiles.includes(fileid))) {\n                logger.debug('Dropped selection, resetting select store...');\n                this.selectionStore.reset();\n            }\n        },\n        t,\n    },\n});\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./CustomElementRender.vue?vue&type=template&id=08a118c6\"\nimport script from \"./CustomElementRender.vue?vue&type=script&lang=ts\"\nexport * from \"./CustomElementRender.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('td',{staticClass:\"files-list__row-actions\",attrs:{\"data-cy-files-list-row-actions\":\"\"}},[_vm._l((_vm.enabledRenderActions),function(action){return _c('CustomElementRender',{key:action.id,staticClass:\"files-list__row-action--inline\",class:'files-list__row-action-' + action.id,attrs:{\"current-view\":_vm.currentView,\"render\":action.renderInline,\"source\":_vm.source}})}),_vm._v(\" \"),_c('NcActions',{ref:\"actionsMenu\",attrs:{\"boundaries-element\":_vm.getBoundariesElement,\"container\":_vm.getBoundariesElement,\"force-name\":true,\"type\":\"tertiary\",\"force-menu\":_vm.enabledInlineActions.length === 0 /* forceMenu only if no inline actions */,\"inline\":_vm.enabledInlineActions.length,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event},\"close\":function($event){_vm.openedSubmenu = null}}},[_vm._l((_vm.enabledMenuActions),function(action){return _c('NcActionButton',{key:action.id,ref:`action-${action.id}`,refInFor:true,class:{\n\t\t\t\t[`files-list__row-action-${action.id}`]: true,\n\t\t\t\t[`files-list__row-action--menu`]: _vm.isMenu(action.id)\n\t\t\t},attrs:{\"close-after-click\":!_vm.isMenu(action.id),\"data-cy-files-list-row-action\":action.id,\"is-menu\":_vm.isMenu(action.id),\"title\":action.title?.([_vm.source], _vm.currentView)},on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline([_vm.source], _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.mountType === 'shared' && action.id === 'sharing-status' ? '' : _vm.actionDisplayName(action))+\"\\n\\t\\t\")])}),_vm._v(\" \"),(_vm.openedSubmenu && _vm.enabledSubmenuActions[_vm.openedSubmenu?.id])?[_c('NcActionButton',{staticClass:\"files-list__row-action-back\",on:{\"click\":function($event){return _vm.onBackToMenuClick(_vm.openedSubmenu)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [_c('ArrowLeftIcon')]},proxy:true}],null,false,3001860362)},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.actionDisplayName(_vm.openedSubmenu))+\"\\n\\t\\t\\t\")]),_vm._v(\" \"),_c('NcActionSeparator'),_vm._v(\" \"),_vm._l((_vm.enabledSubmenuActions[_vm.openedSubmenu?.id]),function(action){return _c('NcActionButton',{key:action.id,staticClass:\"files-list__row-action--submenu\",class:`files-list__row-action-${action.id}`,attrs:{\"close-after-click\":\"\",\"data-cy-files-list-row-action\":action.id,\"title\":action.title?.([_vm.source], _vm.currentView)},on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline([_vm.source], _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.actionDisplayName(action))+\"\\n\\t\\t\\t\")])})]:_vm._e()],2)],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon arrow-left-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"ArrowLeftIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ArrowLeft.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ArrowLeft.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./ArrowLeft.vue?vue&type=template&id=214c9a86\"\nimport script from \"./ArrowLeft.vue?vue&type=script&lang=js\"\nexport * from \"./ArrowLeft.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon arrow-left-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=0&id=5edd44ea&prod&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=0&id=5edd44ea&prod&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","\n      import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=1&id=5edd44ea&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=1&id=5edd44ea&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FileEntryActions.vue?vue&type=template&id=5edd44ea&scoped=true\"\nimport script from \"./FileEntryActions.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryActions.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FileEntryActions.vue?vue&type=style&index=0&id=5edd44ea&prod&lang=scss\"\nimport style1 from \"./FileEntryActions.vue?vue&type=style&index=1&id=5edd44ea&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"5edd44ea\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryCheckbox.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryCheckbox.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('td',{staticClass:\"files-list__row-checkbox\",on:{\"keyup\":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey)return null;return _vm.resetSelection.apply(null, arguments)}}},[(_vm.isLoading)?_c('NcLoadingIcon'):_c('NcCheckboxRadioSwitch',{attrs:{\"aria-label\":_vm.ariaLabel,\"checked\":_vm.isSelected},on:{\"update:checked\":_vm.onSelectionChange}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\n/**\n * Observe various events and save the current\n * special keys states. Useful for checking the\n * current status of a key when executing a method.\n */\nexport const useKeyboardStore = function (...args) {\n    const store = defineStore('keyboard', {\n        state: () => ({\n            altKey: false,\n            ctrlKey: false,\n            metaKey: false,\n            shiftKey: false,\n        }),\n        actions: {\n            onEvent(event) {\n                if (!event) {\n                    event = window.event;\n                }\n                Vue.set(this, 'altKey', !!event.altKey);\n                Vue.set(this, 'ctrlKey', !!event.ctrlKey);\n                Vue.set(this, 'metaKey', !!event.metaKey);\n                Vue.set(this, 'shiftKey', !!event.shiftKey);\n            },\n        },\n    });\n    const keyboardStore = store(...args);\n    // Make sure we only register the listeners once\n    if (!keyboardStore._initialized) {\n        window.addEventListener('keydown', keyboardStore.onEvent);\n        window.addEventListener('keyup', keyboardStore.onEvent);\n        window.addEventListener('mousemove', keyboardStore.onEvent);\n        keyboardStore._initialized = true;\n    }\n    return keyboardStore;\n};\n","import { render, staticRenderFns } from \"./FileEntryCheckbox.vue?vue&type=template&id=6992c304\"\nimport script from \"./FileEntryCheckbox.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryCheckbox.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return (_vm.isRenaming)?_c('form',{directives:[{name:\"on-click-outside\",rawName:\"v-on-click-outside\",value:(_vm.stopRenaming),expression:\"stopRenaming\"}],staticClass:\"files-list__row-rename\",attrs:{\"aria-label\":_vm.t('files', 'Rename file')},on:{\"submit\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.onRename.apply(null, arguments)}}},[_c('NcTextField',{ref:\"renameInput\",attrs:{\"label\":_vm.renameLabel,\"autofocus\":true,\"minlength\":1,\"required\":true,\"value\":_vm.newName,\"enterkeyhint\":\"done\"},on:{\"update:value\":function($event){_vm.newName=$event},\"keyup\":[_vm.checkInputValidity,function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;return _vm.stopRenaming.apply(null, arguments)}]}})],1):_c(_vm.linkTo.is,_vm._b({ref:\"basename\",tag:\"component\",staticClass:\"files-list__row-name-link\",attrs:{\"aria-hidden\":_vm.isRenaming,\"data-cy-files-list-row-name-link\":\"\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'component',_vm.linkTo.params,false),[_c('span',{staticClass:\"files-list__row-name-text\"},[_c('span',{staticClass:\"files-list__row-name-\",domProps:{\"textContent\":_vm._s(_vm.displayName)}}),_vm._v(\" \"),_c('span',{staticClass:\"files-list__row-name-ext\",domProps:{\"textContent\":_vm._s(_vm.extension)}})])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryName.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryName.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FileEntryName.vue?vue&type=template&id=637facfc\"\nimport script from \"./FileEntryName.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryName.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('span',{staticClass:\"files-list__row-icon\"},[(_vm.source.type === 'folder')?[(_vm.dragover)?_vm._m(0):[_vm._m(1),_vm._v(\" \"),(_vm.folderOverlay)?_c(_vm.folderOverlay,{tag:\"OverlayIcon\",staticClass:\"files-list__row-icon-overlay\"}):_vm._e()]]:(_vm.previewUrl && _vm.backgroundFailed !== true)?_c('img',{ref:\"previewImg\",staticClass:\"files-list__row-icon-preview\",class:{'files-list__row-icon-preview--loaded': _vm.backgroundFailed === false},attrs:{\"alt\":\"\",\"loading\":\"lazy\",\"src\":_vm.previewUrl},on:{\"error\":_vm.onBackgroundError,\"load\":function($event){_vm.backgroundFailed = false}}}):_vm._m(2),_vm._v(\" \"),(_vm.isFavorite)?_c('span',{staticClass:\"files-list__row-icon-favorite\"},[_vm._m(3)],1):_vm._e(),_vm._v(\" \"),(_vm.fileOverlay)?_c(_vm.fileOverlay,{tag:\"OverlayIcon\",staticClass:\"files-list__row-icon-overlay files-list__row-icon-overlay--file\"}):_vm._e()],2)\n}\nvar staticRenderFns = [function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FolderOpenIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FolderIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FileIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FavoriteIcon')\n}]\n\nexport { render, staticRenderFns }","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon file-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"FileIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./File.vue?vue&type=template&id=e3c8d598\"\nimport script from \"./File.vue?vue&type=script&lang=js\"\nexport * from \"./File.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon file-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FolderOpen.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FolderOpen.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon folder-open-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"FolderOpenIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./FolderOpen.vue?vue&type=template&id=79cee0a4\"\nimport script from \"./FolderOpen.vue?vue&type=script&lang=js\"\nexport * from \"./FolderOpen.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon folder-open-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon key-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"KeyIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./Key.vue?vue&type=template&id=01a06d54\"\nimport script from \"./Key.vue?vue&type=script&lang=js\"\nexport * from \"./Key.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon key-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon network-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"NetworkIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./Network.vue?vue&type=template&id=29f8873c\"\nimport script from \"./Network.vue?vue&type=script&lang=js\"\nexport * from \"./Network.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon network-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon tag-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"TagIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./Tag.vue?vue&type=template&id=75dd05e4\"\nimport script from \"./Tag.vue?vue&type=script&lang=js\"\nexport * from \"./Tag.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon tag-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./PlayCircle.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./PlayCircle.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon play-circle-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"PlayCircleIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./PlayCircle.vue?vue&type=template&id=6901b3e6\"\nimport script from \"./PlayCircle.vue?vue&type=script&lang=js\"\nexport * from \"./PlayCircle.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon play-circle-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CollectivesIcon.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CollectivesIcon.vue?vue&type=script&lang=js\"","<template>\n\t<span :aria-hidden=\"!title\"\n\t\t:aria-label=\"title\"\n\t\tclass=\"material-design-icon collectives-icon\"\n\t\trole=\"img\"\n\t\tv-bind=\"$attrs\"\n\t\t@click=\"$emit('click', $event)\">\n\t\t<svg :fill=\"fillColor\"\n\t\t\tclass=\"material-design-icon__svg\"\n\t\t\t:width=\"size\"\n\t\t\t:height=\"size\"\n\t\t\tviewBox=\"0 0 16 16\">\n\t\t\t<path d=\"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z\" />\n\t\t\t<path d=\"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z\" />\n\t\t\t<path d=\"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z\" />\n\t\t\t<path d=\"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z\" />\n\t\t\t<path d=\"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z\" />\n\t\t\t<path d=\"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z\" />\n\t\t</svg>\n\t</span>\n</template>\n\n<script>\nexport default {\n\tname: 'CollectivesIcon',\n\tprops: {\n\t\ttitle: {\n\t\t\ttype: String,\n\t\t\tdefault: '',\n\t\t},\n\t\tfillColor: {\n\t\t\ttype: String,\n\t\t\tdefault: 'currentColor',\n\t\t},\n\t\tsize: {\n\t\t\ttype: Number,\n\t\t\tdefault: 24,\n\t\t},\n\t},\n}\n</script>\n","import { render, staticRenderFns } from \"./CollectivesIcon.vue?vue&type=template&id=18541dcc\"\nimport script from \"./CollectivesIcon.vue?vue&type=script&lang=js\"\nexport * from \"./CollectivesIcon.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon collectives-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 16 16\"}},[_c('path',{attrs:{\"d\":\"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z\"}})])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcIconSvgWrapper',{staticClass:\"favorite-marker-icon\",attrs:{\"name\":_vm.t('files', 'Favorite'),\"svg\":_vm.StarSvg}})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=42ea6dd4&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=42ea6dd4&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FavoriteIcon.vue?vue&type=template&id=42ea6dd4&scoped=true\"\nimport script from \"./FavoriteIcon.vue?vue&type=script&lang=ts\"\nexport * from \"./FavoriteIcon.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FavoriteIcon.vue?vue&type=style&index=0&id=42ea6dd4&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"42ea6dd4\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryPreview.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryPreview.vue?vue&type=script&lang=ts\"","/**\n * @copyright Copyright (c) 2023 Louis Chmn <louis@chmn.me>\n *\n * @author Louis Chmn <louis@chmn.me>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Node, registerDavProperty } from '@nextcloud/files';\nexport function initLivePhotos() {\n    registerDavProperty('nc:metadata-files-live-photo', { nc: 'http://nextcloud.org/ns' });\n}\n/**\n * @param {Node} node - The node\n */\nexport function isLivePhoto(node) {\n    return node.attributes['metadata-files-live-photo'] !== undefined;\n}\n","import { render, staticRenderFns } from \"./FileEntryPreview.vue?vue&type=template&id=29810d15\"\nimport script from \"./FileEntryPreview.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryPreview.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',_vm._g({staticClass:\"files-list__row\",class:{\n\t\t'files-list__row--dragover': _vm.dragover,\n\t\t'files-list__row--loading': _vm.isLoading,\n\t\t'files-list__row--active': _vm.isActive,\n\t},attrs:{\"data-cy-files-list-row\":\"\",\"data-cy-files-list-row-fileid\":_vm.fileid,\"data-cy-files-list-row-name\":_vm.source.basename,\"draggable\":_vm.canDrag}},_vm.rowListeners),[(_vm.source.attributes.failed)?_c('span',{staticClass:\"files-list__row--failed\"}):_vm._e(),_vm._v(\" \"),_c('FileEntryCheckbox',{attrs:{\"fileid\":_vm.fileid,\"is-loading\":_vm.isLoading,\"nodes\":_vm.nodes,\"source\":_vm.source}}),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\",attrs:{\"data-cy-files-list-row-name\":\"\"}},[_c('FileEntryPreview',{ref:\"preview\",attrs:{\"source\":_vm.source,\"dragover\":_vm.dragover},nativeOn:{\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}}),_vm._v(\" \"),_c('FileEntryName',{ref:\"name\",attrs:{\"display-name\":_vm.displayName,\"extension\":_vm.extension,\"files-list-width\":_vm.filesListWidth,\"nodes\":_vm.nodes,\"source\":_vm.source},on:{\"click\":_vm.execDefaultAction}})],1),_vm._v(\" \"),_c('FileEntryActions',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.isRenamingSmallScreen),expression:\"!isRenamingSmallScreen\"}],ref:\"actions\",class:`files-list__row-actions-${_vm.uniqueId}`,attrs:{\"files-list-width\":_vm.filesListWidth,\"loading\":_vm.loading,\"opened\":_vm.openedMenu,\"source\":_vm.source},on:{\"update:loading\":function($event){_vm.loading=$event},\"update:opened\":function($event){_vm.openedMenu=$event}}}),_vm._v(\" \"),(!_vm.compact && _vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__row-size\",style:(_vm.sizeOpacity),attrs:{\"data-cy-files-list-row-size\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('span',[_vm._v(_vm._s(_vm.size))])]):_vm._e(),_vm._v(\" \"),(!_vm.compact && _vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__row-mtime\",style:(_vm.mtimeOpacity),attrs:{\"data-cy-files-list-row-mtime\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('NcDateTime',{attrs:{\"timestamp\":_vm.source.mtime,\"ignore-seconds\":true}})],1):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('td',{key:column.id,staticClass:\"files-list__row-column-custom\",class:`files-list__row-${_vm.currentView?.id}-${column.id}`,attrs:{\"data-cy-files-list-row-column-custom\":column.id},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('CustomElementRender',{attrs:{\"current-view\":_vm.currentView,\"render\":column.render,\"source\":_vm.source}})],1)})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./FileEntry.vue?vue&type=template&id=6ae0d517\"\nimport script from \"./FileEntry.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntry.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryGrid.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryGrid.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row\",class:{'files-list__row--active': _vm.isActive, 'files-list__row--dragover': _vm.dragover, 'files-list__row--loading': _vm.isLoading},attrs:{\"data-cy-files-list-row\":\"\",\"data-cy-files-list-row-fileid\":_vm.fileid,\"data-cy-files-list-row-name\":_vm.source.basename,\"draggable\":_vm.canDrag},on:{\"contextmenu\":_vm.onRightClick,\"dragover\":_vm.onDragOver,\"dragleave\":_vm.onDragLeave,\"dragstart\":_vm.onDragStart,\"dragend\":_vm.onDragEnd,\"drop\":_vm.onDrop}},[(_vm.source.attributes.failed)?_c('span',{staticClass:\"files-list__row--failed\"}):_vm._e(),_vm._v(\" \"),_c('FileEntryCheckbox',{attrs:{\"fileid\":_vm.fileid,\"is-loading\":_vm.isLoading,\"nodes\":_vm.nodes,\"source\":_vm.source}}),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\",attrs:{\"data-cy-files-list-row-name\":\"\"}},[_c('FileEntryPreview',{ref:\"preview\",attrs:{\"dragover\":_vm.dragover,\"grid-mode\":true,\"source\":_vm.source},nativeOn:{\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}}),_vm._v(\" \"),_c('FileEntryName',{ref:\"name\",attrs:{\"display-name\":_vm.displayName,\"extension\":_vm.extension,\"files-list-width\":_vm.filesListWidth,\"grid-mode\":true,\"nodes\":_vm.nodes,\"source\":_vm.source},on:{\"click\":_vm.execDefaultAction}})],1),_vm._v(\" \"),_c('FileEntryActions',{ref:\"actions\",class:`files-list__row-actions-${_vm.uniqueId}`,attrs:{\"files-list-width\":_vm.filesListWidth,\"grid-mode\":true,\"loading\":_vm.loading,\"opened\":_vm.openedMenu,\"source\":_vm.source},on:{\"update:loading\":function($event){_vm.loading=$event},\"update:opened\":function($event){_vm.openedMenu=$event}}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./FileEntryGrid.vue?vue&type=template&id=337076f0\"\nimport script from \"./FileEntryGrid.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryGrid.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.enabled),expression:\"enabled\"}],class:`files-list__header-${_vm.header.id}`},[_c('span',{ref:\"mount\"})])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FilesListHeader.vue?vue&type=template&id=0434f153\"\nimport script from \"./FilesListHeader.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListHeader.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',[_c('th',{staticClass:\"files-list__row-checkbox\"},[_c('span',{staticClass:\"hidden-visually\"},[_vm._v(_vm._s(_vm.t('files', 'Total rows summary')))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\"},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('span',[_vm._v(_vm._s(_vm.summary))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-size\"},[_c('span',[_vm._v(_vm._s(_vm.totalSize))])]):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-mtime\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column)},[_c('span',[_vm._v(_vm._s(column.summary?.(_vm.nodes, _vm.currentView)))])])})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableFooter.vue?vue&type=template&id=a85bde20&scoped=true\"\nimport script from \"./FilesListTableFooter.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableFooter.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"a85bde20\",\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row-head\"},[_c('th',{staticClass:\"files-list__column files-list__row-checkbox\",on:{\"keyup\":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey)return null;return _vm.resetSelection.apply(null, arguments)}}},[_c('NcCheckboxRadioSwitch',_vm._b({on:{\"update:checked\":_vm.onToggleAll}},'NcCheckboxRadioSwitch',_vm.selectAllBind,false))],1),_vm._v(\" \"),_c('th',{staticClass:\"files-list__column files-list__row-name files-list__column--sortable\",attrs:{\"aria-sort\":_vm.ariaSortForMode('basename')}},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Name'),\"mode\":\"basename\"}})],1),_vm._v(\" \"),_c('th',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-size\",class:{ 'files-list__column--sortable': _vm.isSizeAvailable },attrs:{\"aria-sort\":_vm.ariaSortForMode('size')}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Size'),\"mode\":\"size\"}})],1):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-mtime\",class:{ 'files-list__column--sortable': _vm.isMtimeAvailable },attrs:{\"aria-sort\":_vm.ariaSortForMode('mtime')}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Modified'),\"mode\":\"mtime\"}})],1):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column),attrs:{\"aria-sort\":_vm.ariaSortForMode(column.id)}},[(!!column.sort)?_c('FilesListTableHeaderButton',{attrs:{\"name\":column.title,\"mode\":column.id}}):_c('span',[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(column.title)+\"\\n\\t\\t\")])],1)})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport Vue from 'vue';\nimport { mapState } from 'pinia';\nimport { useViewConfigStore } from '../store/viewConfig';\nimport { Navigation, View } from '@nextcloud/files';\nexport default Vue.extend({\n    computed: {\n        ...mapState(useViewConfigStore, ['getConfig', 'setSortingBy', 'toggleSortingDirection']),\n        currentView() {\n            return this.$navigation.active;\n        },\n        /**\n         * Get the sorting mode for the current view\n         */\n        sortingMode() {\n            return this.getConfig(this.currentView.id)?.sorting_mode\n                || this.currentView?.defaultSortKey\n                || 'basename';\n        },\n        /**\n         * Get the sorting direction for the current view\n         */\n        isAscSorting() {\n            const sortingDirection = this.getConfig(this.currentView.id)?.sorting_direction;\n            return sortingDirection !== 'desc';\n        },\n    },\n    methods: {\n        toggleSortBy(key) {\n            // If we're already sorting by this key, flip the direction\n            if (this.sortingMode === key) {\n                this.toggleSortingDirection(this.currentView.id);\n                return;\n            }\n            // else sort ASC by this new key\n            this.setSortingBy(key, this.currentView.id);\n        },\n    },\n});\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcButton',{class:['files-list__column-sort-button', {\n\t\t'files-list__column-sort-button--active': _vm.sortingMode === _vm.mode,\n\t\t'files-list__column-sort-button--size': _vm.sortingMode === 'size',\n\t}],attrs:{\"alignment\":_vm.mode === 'size' ? 'end' : 'start-reverse',\"type\":\"tertiary\"},on:{\"click\":function($event){return _vm.toggleSortBy(_vm.mode)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.sortingMode !== _vm.mode || _vm.isAscSorting)?_c('MenuUp',{staticClass:\"files-list__column-sort-button-icon\"}):_c('MenuDown',{staticClass:\"files-list__column-sort-button-icon\"})]},proxy:true}])},[_vm._v(\" \"),_c('span',{staticClass:\"files-list__column-sort-button-text\"},[_vm._v(_vm._s(_vm.name))])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=2dd1845e&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=2dd1845e&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderButton.vue?vue&type=template&id=2dd1845e&scoped=true\"\nimport script from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=2dd1845e&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"2dd1845e\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeader.vue?vue&type=template&id=952162c2&scoped=true\"\nimport script from \"./FilesListTableHeader.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeader.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"952162c2\",\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list\",attrs:{\"data-cy-files-list\":\"\"}},[_c('div',{ref:\"before\",staticClass:\"files-list__before\"},[_vm._t(\"before\")],2),_vm._v(\" \"),(!!_vm.$scopedSlots['header-overlay'])?_c('div',{staticClass:\"files-list__thead-overlay\"},[_vm._t(\"header-overlay\")],2):_vm._e(),_vm._v(\" \"),_c('table',{staticClass:\"files-list__table\",class:{ 'files-list__table--with-thead-overlay': !!_vm.$scopedSlots['header-overlay'] }},[(_vm.caption)?_c('caption',{staticClass:\"hidden-visually\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.caption)+\"\\n\\t\\t\")]):_vm._e(),_vm._v(\" \"),_c('thead',{ref:\"thead\",staticClass:\"files-list__thead\",attrs:{\"data-cy-files-list-thead\":\"\"}},[_vm._t(\"header\")],2),_vm._v(\" \"),_c('tbody',{staticClass:\"files-list__tbody\",class:_vm.gridMode ? 'files-list__tbody--grid' : 'files-list__tbody--list',style:(_vm.tbodyStyle),attrs:{\"data-cy-files-list-tbody\":\"\"}},_vm._l((_vm.renderedItems),function({key, item},i){return _c(_vm.dataComponent,_vm._b({key:key,tag:\"component\",attrs:{\"source\":item,\"index\":i}},'component',_vm.extraProps,false))}),1),_vm._v(\" \"),_c('tfoot',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.isReady),expression:\"isReady\"}],staticClass:\"files-list__tfoot\",attrs:{\"data-cy-files-list-tfoot\":\"\"}},[_vm._t(\"footer\")],2)])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./VirtualList.vue?vue&type=template&id=6932388d\"\nimport script from \"./VirtualList.vue?vue&type=script&lang=ts\"\nexport * from \"./VirtualList.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list__column files-list__row-actions-batch\"},[_c('NcActions',{ref:\"actionsMenu\",attrs:{\"disabled\":!!_vm.loading || _vm.areSomeNodesLoading,\"force-name\":true,\"inline\":_vm.inlineActions,\"menu-name\":_vm.inlineActions <= 1 ? _vm.t('files', 'Actions') : null,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event}}},_vm._l((_vm.enabledActions),function(action){return _c('NcActionButton',{key:action.id,class:'files-list__row-actions-batch-' + action.id,on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline(_vm.nodes, _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(action.displayName(_vm.nodes, _vm.currentView))+\"\\n\\t\\t\")])}),1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderActions.vue?vue&type=template&id=d939292c&scoped=true\"\nimport script from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"d939292c\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=2e1b1dc8&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=2e1b1dc8&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=1&id=2e1b1dc8&prod&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=1&id=2e1b1dc8&prod&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListVirtual.vue?vue&type=template&id=2e1b1dc8&scoped=true\"\nimport script from \"./FilesListVirtual.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListVirtual.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListVirtual.vue?vue&type=style&index=0&id=2e1b1dc8&prod&scoped=true&lang=scss\"\nimport style1 from \"./FilesListVirtual.vue?vue&type=style&index=1&id=2e1b1dc8&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"2e1b1dc8\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./TrayArrowDown.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./TrayArrowDown.vue?vue&type=script&lang=js\"","<template>\n  <span v-bind=\"$attrs\"\n        :aria-hidden=\"title ? null : true\"\n        :aria-label=\"title\"\n        class=\"material-design-icon tray-arrow-down-icon\"\n        role=\"img\"\n        @click=\"$emit('click', $event)\">\n    <svg :fill=\"fillColor\"\n         class=\"material-design-icon__svg\"\n         :width=\"size\"\n         :height=\"size\"\n         viewBox=\"0 0 24 24\">\n      <path d=\"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"TrayArrowDownIcon\",\n  emits: ['click'],\n  props: {\n    title: {\n      type: String,\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n}\n</script>","import { render, staticRenderFns } from \"./TrayArrowDown.vue?vue&type=template&id=447c2cd4\"\nimport script from \"./TrayArrowDown.vue?vue&type=script&lang=js\"\nexport * from \"./TrayArrowDown.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon tray-arrow-down-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.dragover),expression:\"dragover\"}],staticClass:\"files-list__drag-drop-notice\",attrs:{\"data-cy-files-drag-drop-area\":\"\"},on:{\"drop\":_vm.onDrop}},[_c('div',{staticClass:\"files-list__drag-drop-notice-wrapper\"},[(_vm.canUpload && !_vm.isQuotaExceeded)?[_c('TrayArrowDownIcon',{attrs:{\"size\":48}}),_vm._v(\" \"),_c('h3',{staticClass:\"files-list-drag-drop-notice__title\"},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Drag and drop files here to upload'))+\"\\n\\t\\t\\t\")])]:[_c('h3',{staticClass:\"files-list-drag-drop-notice__title\"},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.cantUploadLabel)+\"\\n\\t\\t\\t\")])]],2)])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./DragAndDropNotice.vue?vue&type=template&id=02c943a6&scoped=true\"\nimport script from \"./DragAndDropNotice.vue?vue&type=script&lang=ts\"\nexport * from \"./DragAndDropNotice.vue?vue&type=script&lang=ts\"\nimport style0 from \"./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"02c943a6\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts\"","\n      import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=5c37291f&prod&scoped=true&lang=scss\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=5c37291f&prod&scoped=true&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesList.vue?vue&type=template&id=5c37291f&scoped=true\"\nimport script from \"./FilesList.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesList.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesList.vue?vue&type=style&index=0&id=5c37291f&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  \"5c37291f\",\n  null\n  \n)\n\nexport default component.exports","import mod from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesApp.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesApp.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FilesApp.vue?vue&type=template&id=11e0f2dd\"\nimport script from \"./FilesApp.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesApp.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports","import { PiniaVuePlugin } from 'pinia';\nimport { getNavigation } from '@nextcloud/files';\nimport { getRequestToken } from '@nextcloud/auth';\nimport Vue from 'vue';\nimport { pinia } from './store/index.ts';\nimport router from './router/router';\nimport RouterService from './services/RouterService';\nimport SettingsModel from './models/Setting.js';\nimport SettingsService from './services/Settings.js';\nimport FilesApp from './FilesApp.vue';\n// @ts-expect-error __webpack_nonce__ is injected by webpack\n__webpack_nonce__ = btoa(getRequestToken());\n// Init private and public Files namespace\nwindow.OCA.Files = window.OCA.Files ?? {};\nwindow.OCP.Files = window.OCP.Files ?? {};\n// Expose router\nconst Router = new RouterService(router);\nObject.assign(window.OCP.Files, { Router });\n// Init Pinia store\nVue.use(PiniaVuePlugin);\n// Init Navigation Service\n// This only works with Vue 2 - with Vue 3 this will not modify the source but return just a oberserver\nconst Navigation = Vue.observable(getNavigation());\nVue.prototype.$navigation = Navigation;\n// Init Files App Settings Service\nconst Settings = new SettingsService();\nObject.assign(window.OCA.Files, { Settings });\nObject.assign(window.OCA.Files.Settings, { Setting: SettingsModel });\nconst FilesAppVue = Vue.extend(FilesApp);\nnew FilesAppVue({\n    router,\n    pinia,\n}).$mount('#content');\n","export default class RouterService {\n    _router;\n    constructor(router) {\n        this._router = router;\n    }\n    get name() {\n        return this._router.currentRoute.name;\n    }\n    get query() {\n        return this._router.currentRoute.query || {};\n    }\n    get params() {\n        return this._router.currentRoute.params || {};\n    }\n    /**\n     * Trigger a route change on the files app\n     *\n     * @param path the url path, eg: '/trashbin?dir=/Deleted'\n     * @param replace replace the current history\n     * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n     */\n    goTo(path, replace = false) {\n        return this._router.push({\n            path,\n            replace,\n        });\n    }\n    /**\n     * Trigger a route change on the files App\n     *\n     * @param name the route name\n     * @param params the route parameters\n     * @param query the url query parameters\n     * @param replace replace the current history\n     * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n     */\n    goToRoute(name, params, query, replace) {\n        return this._router.push({\n            name,\n            query,\n            params,\n            replace,\n        });\n    }\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim <gary@garykim.dev>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nexport default class Settings {\n\n\t_settings\n\n\tconstructor() {\n\t\tthis._settings = []\n\t\tconsole.debug('OCA.Files.Settings initialized')\n\t}\n\n\t/**\n\t * Register a new setting\n\t *\n\t * @since 19.0.0\n\t * @param {OCA.Files.Settings.Setting} view element to add to settings\n\t * @return {boolean} whether registering was successful\n\t */\n\tregister(view) {\n\t\tif (this._settings.filter(e => e.name === view.name).length > 0) {\n\t\t\tconsole.error('A setting with the same name is already registered')\n\t\t\treturn false\n\t\t}\n\t\tthis._settings.push(view)\n\t\treturn true\n\t}\n\n\t/**\n\t * All settings elements\n\t *\n\t * @return {OCA.Files.Settings.Setting[]} All currently registered settings\n\t */\n\tget settings() {\n\t\treturn this._settings\n\t}\n\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim <gary@garykim.dev>\n * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nexport default class Setting {\n\n\t_close\n\t_el\n\t_name\n\t_open\n\n\t/**\n\t * Create a new files app setting\n\t *\n\t * @since 19.0.0\n\t * @param {string} name the name of this setting\n\t * @param {object} component the component\n\t * @param {Function} component.el function that returns an unmounted dom element to be added\n\t * @param {Function} [component.open] callback for when setting is added\n\t * @param {Function} [component.close] callback for when setting is closed\n\t */\n\tconstructor(name, { el, open, close }) {\n\t\tthis._name = name\n\t\tthis._el = el\n\t\tthis._open = open\n\t\tthis._close = close\n\n\t\tif (typeof this._open !== 'function') {\n\t\t\tthis._open = () => {}\n\t\t}\n\n\t\tif (typeof this._close !== 'function') {\n\t\t\tthis._close = () => {}\n\t\t}\n\t}\n\n\tget name() {\n\t\treturn this._name\n\t}\n\n\tget el() {\n\t\treturn this._el\n\t}\n\n\tget open() {\n\t\treturn this._open\n\t}\n\n\tget close() {\n\t\treturn this._close\n\t}\n\n}\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.upload-picker[data-v-eca9500a] {\n  display: inline-flex;\n  align-items: center;\n  height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n  width: 200px;\n  max-width: 0;\n  transition: max-width var(--animation-quick) ease-in-out;\n  margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n  max-width: 200px;\n  margin-right: 20px;\n  margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n  animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n  0% {\n    opacity: .5;\n  }\n  25% {\n    opacity: 1;\n  }\n  60% {\n    opacity: .5;\n  }\n  to {\n    opacity: .5;\n  }\n}\n`, \"\",{\"version\":3,\"sources\":[\"webpack://./node_modules/@nextcloud/upload/dist/assets/index-Ussc_ol3.css\"],\"names\":[],\"mappings\":\"AAAA;EACE,oBAAoB;EACpB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,YAAY;EACZ,YAAY;EACZ,wDAAwD;EACxD,eAAe;AACjB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,gBAAgB;EAChB,kBAAkB;EAClB,gBAAgB;AAClB;AACA;EACE,yDAAyD;AAC3D;AACA;EACE;IACE,WAAW;EACb;EACA;IACE,UAAU;EACZ;EACA;IACE,WAAW;EACb;EACA;IACE,WAAW;EACb;AACF\",\"sourcesContent\":[\".upload-picker[data-v-eca9500a] {\\n  display: inline-flex;\\n  align-items: center;\\n  height: 44px;\\n}\\n.upload-picker__progress[data-v-eca9500a] {\\n  width: 200px;\\n  max-width: 0;\\n  transition: max-width var(--animation-quick) ease-in-out;\\n  margin-top: 8px;\\n}\\n.upload-picker__progress p[data-v-eca9500a] {\\n  overflow: hidden;\\n  white-space: nowrap;\\n  text-overflow: ellipsis;\\n}\\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\\n  max-width: 200px;\\n  margin-right: 20px;\\n  margin-left: 8px;\\n}\\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\\n  animation: breathing-eca9500a 3s ease-out infinite normal;\\n}\\n@keyframes breathing-eca9500a {\\n  0% {\\n    opacity: .5;\\n  }\\n  25% {\\n    opacity: 1;\\n  }\\n  60% {\\n    opacity: .5;\\n  }\\n  to {\\n    opacity: .5;\\n  }\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__breadcrumbs[data-v-499e1525]{flex:1 1 100% !important;width:100%;height:100%;margin-block:0;margin-inline:10px}.files-list__breadcrumbs[data-v-499e1525]  a{cursor:pointer !important}.files-list__breadcrumbs--with-progress[data-v-499e1525]{flex-direction:column !important;align-items:flex-start !important}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/BreadCrumbs.vue\"],\"names\":[],\"mappings\":\"AACA,0CAEC,wBAAA,CACA,UAAA,CACA,WAAA,CACA,cAAA,CACA,kBAAA,CAGC,6CACC,yBAAA,CAIF,yDACC,gCAAA,CACA,iCAAA\",\"sourcesContent\":[\"\\n.files-list__breadcrumbs {\\n\\t// Take as much space as possible\\n\\tflex: 1 1 100% !important;\\n\\twidth: 100%;\\n\\theight: 100%;\\n\\tmargin-block: 0;\\n\\tmargin-inline: 10px;\\n\\n\\t:deep() {\\n\\t\\ta {\\n\\t\\t\\tcursor: pointer !important;\\n\\t\\t}\\n\\t}\\n\\n\\t&--with-progress {\\n\\t\\tflex-direction: column !important;\\n\\t\\talign-items: flex-start !important;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__drag-drop-notice[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;width:100%;min-height:113px;margin:0;user-select:none;color:var(--color-text-maxcontrast);background-color:var(--color-main-background);border-color:#000}.files-list__drag-drop-notice h3[data-v-02c943a6]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;height:15vh;max-height:70%;padding:0 5vw;border:2px var(--color-border-dark) dashed;border-radius:var(--border-radius-large)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/DragAndDropNotice.vue\"],\"names\":[],\"mappings\":\"AACA,+CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAEA,gBAAA,CACA,QAAA,CACA,gBAAA,CACA,mCAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kDACC,gBAAA,CACA,aAAA,CAGD,uDACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,WAAA,CACA,cAAA,CACA,aAAA,CACA,0CAAA,CACA,wCAAA\",\"sourcesContent\":[\"\\n.files-list__drag-drop-notice {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\twidth: 100%;\\n\\t// Breadcrumbs height + row thead height\\n\\tmin-height: calc(58px + 55px);\\n\\tmargin: 0;\\n\\tuser-select: none;\\n\\tcolor: var(--color-text-maxcontrast);\\n\\tbackground-color: var(--color-main-background);\\n\\tborder-color: black;\\n\\n\\th3 {\\n\\t\\tmargin-left: 16px;\\n\\t\\tcolor: inherit;\\n\\t}\\n\\n\\t&-wrapper {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\theight: 15vh;\\n\\t\\tmax-height: 70%;\\n\\t\\tpadding: 0 5vw;\\n\\t\\tborder: 2px var(--color-border-dark) dashed;\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list-drag-image{position:absolute;top:-9999px;left:-9999px;display:flex;overflow:hidden;align-items:center;height:44px;padding:6px 12px;background:var(--color-main-background)}.files-list-drag-image__icon,.files-list-drag-image .files-list__row-icon{display:flex;overflow:hidden;align-items:center;justify-content:center;width:32px;height:32px;border-radius:var(--border-radius)}.files-list-drag-image__icon{overflow:visible;margin-right:12px}.files-list-drag-image__icon img{max-width:100%;max-height:100%}.files-list-drag-image__icon .material-design-icon{color:var(--color-text-maxcontrast)}.files-list-drag-image__icon .material-design-icon.folder-icon{color:var(--color-primary-element)}.files-list-drag-image__icon>span{display:flex}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon{margin-top:6px;margin-left:-26px}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon+.files-list__row-icon{margin-top:12px}.files-list-drag-image__icon>span:not(:empty)+*{display:none}.files-list-drag-image__name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/DragAndDropPreview.vue\"],\"names\":[],\"mappings\":\"AAIA,uBACC,iBAAA,CACA,WAAA,CACA,YAAA,CACA,YAAA,CACA,eAAA,CACA,kBAAA,CACA,WAAA,CACA,gBAAA,CACA,uCAAA,CAEA,0EAEC,YAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kCAAA,CAGD,6BACC,gBAAA,CACA,iBAAA,CAEA,iCACC,cAAA,CACA,eAAA,CAGD,mDACC,mCAAA,CACA,+DACC,kCAAA,CAKF,kCACC,YAAA,CAGA,8EACC,cA9CU,CA+CV,iBAAA,CACA,oGACC,eAAA,CAKF,gDACC,YAAA,CAKH,6BACC,eAAA,CACA,kBAAA,CACA,sBAAA\",\"sourcesContent\":[\"\\n$size: 32px;\\n$stack-shift: 6px;\\n\\n.files-list-drag-image {\\n\\tposition: absolute;\\n\\ttop: -9999px;\\n\\tleft: -9999px;\\n\\tdisplay: flex;\\n\\toverflow: hidden;\\n\\talign-items: center;\\n\\theight: 44px;\\n\\tpadding: 6px 12px;\\n\\tbackground: var(--color-main-background);\\n\\n\\t&__icon,\\n\\t.files-list__row-icon {\\n\\t\\tdisplay: flex;\\n\\t\\toverflow: hidden;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 32px;\\n\\t\\theight: 32px;\\n\\t\\tborder-radius: var(--border-radius);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\toverflow: visible;\\n\\t\\tmargin-right: 12px;\\n\\n\\t\\timg {\\n\\t\\t\\tmax-width: 100%;\\n\\t\\t\\tmax-height: 100%;\\n\\t\\t}\\n\\n\\t\\t.material-design-icon {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t&.folder-icon {\\n\\t\\t\\t\\tcolor: var(--color-primary-element);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Previews container\\n\\t\\t> span {\\n\\t\\t\\tdisplay: flex;\\n\\n\\t\\t\\t// Stack effect if more than one element\\n\\t\\t\\t.files-list__row-icon + .files-list__row-icon {\\n\\t\\t\\t\\tmargin-top: $stack-shift;\\n\\t\\t\\t\\tmargin-left: $stack-shift - $size;\\n\\t\\t\\t\\t& + .files-list__row-icon {\\n\\t\\t\\t\\t\\tmargin-top: $stack-shift * 2;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t\\t// If we have manually clone the preview,\\n\\t\\t\\t// let's hide any fallback icons\\n\\t\\t\\t&:not(:empty) + * {\\n\\t\\t\\t\\tdisplay: none;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&__name {\\n\\t\\toverflow: hidden;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.favorite-marker-icon[data-v-42ea6dd4]{color:var(--color-favorite);min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-42ea6dd4]  svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-42ea6dd4]  svg path{stroke:var(--color-main-background);stroke-width:8px;stroke-linejoin:round;paint-order:stroke}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FavoriteIcon.vue\"],\"names\":[],\"mappings\":\"AACA,uCACC,2BAAA,CAEA,0BAAA,CACG,2BAAA,CAGF,4CAEC,qBAAA,CACA,sBAAA,CAGA,0BAAA,CACA,2BAAA,CAGA,iDACC,mCAAA,CACA,gBAAA,CACA,qBAAA,CACA,kBAAA\",\"sourcesContent\":[\"\\n.favorite-marker-icon {\\n\\tcolor: var(--color-favorite);\\n\\t// Override NcIconSvgWrapper defaults (clickable area)\\n\\tmin-width: unset !important;\\n    min-height: unset !important;\\n\\n\\t:deep() {\\n\\t\\tsvg {\\n\\t\\t\\t// We added a stroke for a11y so we must increase the size to include the stroke\\n\\t\\t\\twidth: 26px !important;\\n\\t\\t\\theight: 26px !important;\\n\\n\\t\\t\\t// Override NcIconSvgWrapper defaults of 20px\\n\\t\\t\\tmax-width: unset !important;\\n\\t\\t\\tmax-height: unset !important;\\n\\n\\t\\t\\t// Sow a border around the icon for better contrast\\n\\t\\t\\tpath {\\n\\t\\t\\t\\tstroke: var(--color-main-background);\\n\\t\\t\\t\\tstroke-width: 8px;\\n\\t\\t\\t\\tstroke-linejoin: round;\\n\\t\\t\\t\\tpaint-order: stroke;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `main.app-content[style*=mouse-pos-x] .v-popper__popper{transform:translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper[data-popper-placement=top]{transform:translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper .v-popper__arrow-container{display:none}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue\"],\"names\":[],\"mappings\":\"AAGA,uDACC,6EAAA,CAGA,kFAEC,iGAAA,CAGD,kFACC,YAAA\",\"sourcesContent\":[\"\\n// Allow right click to define the position of the menu\\n// only if defined\\nmain.app-content[style*=\\\"mouse-pos-x\\\"] .v-popper__popper {\\n\\ttransform: translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important;\\n\\n\\t// If the menu is too close to the bottom, we move it up\\n\\t&[data-popper-placement=\\\"top\\\"] {\\n\\t\\t// 34px added to align with the top of the cursor\\n\\t\\ttransform: translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important;\\n\\t}\\n\\t// Hide arrow if floating\\n\\t.v-popper__arrow-container {\\n\\t\\tdisplay: none;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `[data-v-5edd44ea] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-5edd44ea] .button-vue--icon-and-text .button-vue__icon{color:var(--color-primary-element)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue\"],\"names\":[],\"mappings\":\"AAEC,+DACC,kCAAA,CAED,+DACC,kCAAA\",\"sourcesContent\":[\"\\n:deep(.button-vue--icon-and-text, .files-list__row-action-sharing-status) {\\n\\t.button-vue__text {\\n\\t\\tcolor: var(--color-primary-element);\\n\\t}\\n\\t.button-vue__icon {\\n\\t\\tcolor: var(--color-primary-element);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `tr[data-v-a85bde20]{margin-bottom:300px;border-top:1px solid var(--color-border);background-color:rgba(0,0,0,0) !important;border-bottom:none !important}tr td[data-v-a85bde20]{user-select:none;color:var(--color-text-maxcontrast) !important}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableFooter.vue\"],\"names\":[],\"mappings\":\"AAEA,oBACC,mBAAA,CACA,wCAAA,CAEA,yCAAA,CACA,6BAAA,CAEA,uBACC,gBAAA,CAEA,8CAAA\",\"sourcesContent\":[\"\\n// Scoped row\\ntr {\\n\\tmargin-bottom: 300px;\\n\\tborder-top: 1px solid var(--color-border);\\n\\t// Prevent hover effect on the whole row\\n\\tbackground-color: transparent !important;\\n\\tborder-bottom: none !important;\\n\\n\\ttd {\\n\\t\\tuser-select: none;\\n\\t\\t// Make sure the cell colors don't apply to column headers\\n\\t\\tcolor: var(--color-text-maxcontrast) !important;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__column[data-v-952162c2]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-952162c2]{cursor:pointer}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeader.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,gBAAA,CAEA,8CAAA,CAEA,+CACC,cAAA\",\"sourcesContent\":[\"\\n.files-list__column {\\n\\tuser-select: none;\\n\\t// Make sure the cell colors don't apply to column headers\\n\\tcolor: var(--color-text-maxcontrast) !important;\\n\\n\\t&--sortable {\\n\\t\\tcursor: pointer;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__row-actions-batch[data-v-d939292c]{flex:1 1 100% !important;max-width:100%}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderActions.vue\"],\"names\":[],\"mappings\":\"AACA,gDACC,wBAAA,CACA,cAAA\",\"sourcesContent\":[\"\\n.files-list__row-actions-batch {\\n\\tflex: 1 1 100% !important;\\n\\tmax-width: 100%;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__column-sort-button[data-v-2dd1845e]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-2dd1845e]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-2dd1845e]{color:var(--color-text-maxcontrast);opacity:0;transition:opacity var(--animation-quick);inset-inline-start:-10px}.files-list__column-sort-button--size .files-list__column-sort-button-icon[data-v-2dd1845e]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-2dd1845e],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-2dd1845e]{opacity:1}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderButton.vue\"],\"names\":[],\"mappings\":\"AACA,iDAEC,oCAAA,CACA,sDAAA,CAEA,sDACC,mCAAA,CACA,kBAAA,CAGD,sDACC,mCAAA,CACA,SAAA,CACA,yCAAA,CACA,wBAAA,CAGD,4FACC,uBAAA,CAGD,mXAIC,SAAA\",\"sourcesContent\":[\"\\n.files-list__column-sort-button {\\n\\t// Compensate for cells margin\\n\\tmargin: 0 calc(var(--cell-margin) * -1);\\n\\tmin-width: calc(100% - 3 * var(--cell-margin))!important;\\n\\n\\t&-text {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\tfont-weight: normal;\\n\\t}\\n\\n\\t&-icon {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\topacity: 0;\\n\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\tinset-inline-start: -10px;\\n\\t}\\n\\n\\t&--size &-icon {\\n\\t\\tinset-inline-start: 10px;\\n\\t}\\n\\n\\t&--active &-icon,\\n\\t&:hover &-icon,\\n\\t&:focus &-icon,\\n\\t&:active &-icon {\\n\\t\\topacity: 1;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list[data-v-2e1b1dc8]{--row-height: 55px;--cell-margin: 14px;--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);--checkbox-size: 24px;--clickable-area: 44px;--icon-preview-size: 32px;overflow:auto;height:100%;will-change:scroll-position}.files-list[data-v-2e1b1dc8]  tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-2e1b1dc8]  tbody tr{contain:strict}.files-list[data-v-2e1b1dc8]  tbody tr:hover,.files-list[data-v-2e1b1dc8]  tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-2e1b1dc8]  .files-list__before{display:flex;flex-direction:column}.files-list[data-v-2e1b1dc8]  .files-list__selected{padding-right:12px;white-space:nowrap}.files-list[data-v-2e1b1dc8]  .files-list__table{display:block}.files-list[data-v-2e1b1dc8]  .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-2e1b1dc8]  .files-list__thead-overlay{position:sticky;top:0;margin-left:var(--row-height);z-index:20;display:flex;align-items:center;background-color:var(--color-main-background);border-bottom:1px solid var(--color-border);height:var(--row-height)}.files-list[data-v-2e1b1dc8]  .files-list__thead,.files-list[data-v-2e1b1dc8]  .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-2e1b1dc8]  .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-2e1b1dc8]  .files-list__tfoot{min-height:300px}.files-list[data-v-2e1b1dc8]  tr{position:relative;display:flex;align-items:center;width:100%;user-select:none;border-bottom:1px solid var(--color-border);box-sizing:border-box;user-select:none;height:var(--row-height)}.files-list[data-v-2e1b1dc8]  td,.files-list[data-v-2e1b1dc8]  th{display:flex;align-items:center;flex:0 0 auto;justify-content:left;width:var(--row-height);height:var(--row-height);margin:0;padding:0;color:var(--color-text-maxcontrast);border:none}.files-list[data-v-2e1b1dc8]  td span,.files-list[data-v-2e1b1dc8]  th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-2e1b1dc8]  .files-list__row--failed{position:absolute;display:block;top:0;left:0;right:0;bottom:0;opacity:.1;z-index:-1;background:var(--color-error)}.files-list[data-v-2e1b1dc8]  .files-list__row-checkbox{justify-content:center}.files-list[data-v-2e1b1dc8]  .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-2e1b1dc8]  .files-list__row-checkbox .checkbox-radio-switch label.checkbox-radio-switch__label{width:var(--clickable-area);height:var(--clickable-area);margin:0;padding:calc((var(--clickable-area) - var(--checkbox-size))/2)}.files-list[data-v-2e1b1dc8]  .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-2e1b1dc8]  .files-list__row:hover,.files-list[data-v-2e1b1dc8]  .files-list__row:focus,.files-list[data-v-2e1b1dc8]  .files-list__row:active,.files-list[data-v-2e1b1dc8]  .files-list__row--active,.files-list[data-v-2e1b1dc8]  .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-2e1b1dc8]  .files-list__row:hover>*,.files-list[data-v-2e1b1dc8]  .files-list__row:focus>*,.files-list[data-v-2e1b1dc8]  .files-list__row:active>*,.files-list[data-v-2e1b1dc8]  .files-list__row--active>*,.files-list[data-v-2e1b1dc8]  .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-2e1b1dc8]  .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-2e1b1dc8]  .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-2e1b1dc8]  .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-2e1b1dc8]  .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-2e1b1dc8]  .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-2e1b1dc8]  .files-list__row--dragover *{pointer-events:none}.files-list[data-v-2e1b1dc8]  .files-list__row-icon{position:relative;display:flex;overflow:visible;align-items:center;flex:0 0 var(--icon-preview-size);justify-content:center;width:var(--icon-preview-size);height:100%;margin-right:var(--checkbox-padding);color:var(--color-primary-element)}.files-list[data-v-2e1b1dc8]  .files-list__row-icon *{cursor:pointer}.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span:not(.files-list__row-icon-favorite) svg{width:var(--icon-preview-size);height:var(--icon-preview-size)}.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span.folder-icon,.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span.folder-icon svg,.files-list[data-v-2e1b1dc8]  .files-list__row-icon>span.folder-open-icon svg{width:calc(var(--icon-preview-size) + 6px);height:calc(var(--icon-preview-size) + 6px)}.files-list[data-v-2e1b1dc8]  .files-list__row-icon-preview{overflow:hidden;width:var(--icon-preview-size);height:var(--icon-preview-size);border-radius:var(--border-radius);object-fit:contain;object-position:center}.files-list[data-v-2e1b1dc8]  .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-2e1b1dc8]  .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-2e1b1dc8]  .files-list__row-icon-overlay{position:absolute;max-height:calc(var(--icon-preview-size)*.5);max-width:calc(var(--icon-preview-size)*.5);color:var(--color-primary-element-text);margin-top:2px}.files-list[data-v-2e1b1dc8]  .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-2e1b1dc8]  .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-2e1b1dc8]  .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-2e1b1dc8]  .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-2e1b1dc8]  .files-list__row-name a:focus .files-list__row-name-text{outline:2px solid var(--color-main-text) !important;border-radius:20px}.files-list[data-v-2e1b1dc8]  .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-2e1b1dc8]  .files-list__row-name .files-list__row-name-text{color:var(--color-main-text);padding:5px 10px;margin-left:-10px;display:inline-flex}.files-list[data-v-2e1b1dc8]  .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-2e1b1dc8]  .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-2e1b1dc8]  .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-2e1b1dc8]  .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-2e1b1dc8]  .files-list__row-actions{width:auto}.files-list[data-v-2e1b1dc8]  .files-list__row-actions~td,.files-list[data-v-2e1b1dc8]  .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-2e1b1dc8]  .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-2e1b1dc8]  .files-list__row-action--inline{margin-right:7px}.files-list[data-v-2e1b1dc8]  .files-list__row-mtime,.files-list[data-v-2e1b1dc8]  .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-2e1b1dc8]  .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-2e1b1dc8]  .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-2e1b1dc8]  .files-list__row-column-custom{width:calc(var(--row-height)*2)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListVirtual.vue\"],\"names\":[],\"mappings\":\"AACA,6BACC,kBAAA,CACA,mBAAA,CAEA,wEAAA,CACA,qBAAA,CACA,sBAAA,CACA,yBAAA,CAEA,aAAA,CACA,WAAA,CACA,2BAAA,CAIC,oCACC,mBAAA,CACA,0BAAA,CACA,YAAA,CACA,qBAAA,CACA,UAAA,CAEA,iBAAA,CAGA,uCACC,cAAA,CACA,0FAEC,6CAAA,CAMH,kDACC,YAAA,CACA,qBAAA,CAGD,oDACC,kBAAA,CACA,kBAAA,CAGD,iDACC,aAAA,CAEA,uFAEC,qCAAA,CAIF,yDAEC,eAAA,CACA,KAAA,CAEA,6BAAA,CAEA,UAAA,CAEA,YAAA,CACA,kBAAA,CAGA,6CAAA,CACA,2CAAA,CACA,wBAAA,CAGD,kGAEC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,6CAAA,CAKD,iDAEC,eAAA,CACA,UAAA,CACA,KAAA,CAID,iDACC,gBAAA,CAGD,iCACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CACA,2CAAA,CACA,qBAAA,CACA,gBAAA,CACA,wBAAA,CAGD,kEACC,YAAA,CACA,kBAAA,CACA,aAAA,CACA,oBAAA,CACA,uBAAA,CACA,wBAAA,CACA,QAAA,CACA,SAAA,CACA,mCAAA,CACA,WAAA,CAKA,4EACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAIF,uDACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAAA,CACA,UAAA,CACA,6BAAA,CAGD,wDACC,sBAAA,CAEA,+EACC,YAAA,CACA,sBAAA,CAEA,iCAAA,CAEA,kHACC,2BAAA,CACA,4BAAA,CACA,QAAA,CACA,8DAAA,CAGD,4GACC,mBAAA,CAMF,gRAEC,8CAAA,CAGA,gDAAA,CACA,0RACC,wCAAA,CAID,2aACC,oCAAA,CAIF,2DAEC,mBAAA,CAKF,oDACC,iBAAA,CACA,YAAA,CACA,gBAAA,CACA,kBAAA,CAEA,iCAAA,CACA,sBAAA,CACA,8BAAA,CACA,WAAA,CAEA,oCAAA,CACA,kCAAA,CAGA,sDACC,cAAA,CAGD,yDACC,0BAAA,CAEA,iGACC,8BAAA,CACA,+BAAA,CAID,+IAEC,WAAA,CACA,uJACC,0CAAA,CACA,2CAAA,CAKH,4DACC,eAAA,CACA,8BAAA,CACA,+BAAA,CACA,kCAAA,CAEA,kBAAA,CACA,sBAAA,CAGA,uGACC,oCAAA,CAKF,6DACC,iBAAA,CACA,OAAA,CACA,WAAA,CAID,4DACC,iBAAA,CACA,4CAAA,CACA,2CAAA,CACA,uCAAA,CAEA,cAAA,CAGA,kEACC,4BAAA,CACA,uCAAA,CACA,kBAAA,CAMH,oDAEC,eAAA,CAEA,aAAA,CAEA,sDACC,YAAA,CACA,kBAAA,CAEA,UAAA,CACA,WAAA,CAEA,WAAA,CAGA,oEACC,YAAA,CAID,uFACC,mDAAA,CACA,kBAAA,CAED,2GACC,uBAAA,CAIF,+EACC,4BAAA,CAEA,gBAAA,CACA,iBAAA,CAEA,mBAAA,CAGD,8EACC,mCAAA,CAEA,gBAAA,CAKF,sDACC,UAAA,CACA,eAAA,CACA,4DACC,UAAA,CAEA,gBAAA,CACA,eAAA,CACA,gBAAA,CAEA,oEAEC,+BAAA,CACA,SAAA,CAKH,uDAEC,UAAA,CAGA,oHAEC,2BAAA,CAIA,gFAEC,kBAAA,CAKH,8DACC,gBAAA,CAGD,yGAEC,mCAAA,CAED,oDACC,iCAAA,CAEA,wBAAA,CAGD,qDACC,+BAAA,CAGD,6DACC,+BAAA\",\"sourcesContent\":[\"\\n.files-list {\\n\\t--row-height: 55px;\\n\\t--cell-margin: 14px;\\n\\n\\t--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);\\n\\t--checkbox-size: 24px;\\n\\t--clickable-area: 44px;\\n\\t--icon-preview-size: 32px;\\n\\n\\toverflow: auto;\\n\\theight: 100%;\\n\\twill-change: scroll-position;\\n\\n\\t& :deep() {\\n\\t\\t// Table head, body and footer\\n\\t\\ttbody {\\n\\t\\t\\twill-change: padding;\\n\\t\\t\\tcontain: layout paint style;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\t// Necessary for virtual scrolling absolute\\n\\t\\t\\tposition: relative;\\n\\n\\t\\t\\t/* Hover effect on tbody lines only */\\n\\t\\t\\ttr {\\n\\t\\t\\t\\tcontain: strict;\\n\\t\\t\\t\\t&:hover,\\n\\t\\t\\t\\t&:focus {\\n\\t\\t\\t\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Before table and thead\\n\\t\\t.files-list__before {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t}\\n\\n\\t\\t.files-list__selected {\\n\\t\\t\\tpadding-right: 12px;\\n\\t\\t\\twhite-space: nowrap;\\n\\t\\t}\\n\\n\\t\\t.files-list__table {\\n\\t\\t\\tdisplay: block;\\n\\n\\t\\t\\t&.files-list__table--with-thead-overlay {\\n\\t\\t\\t\\t// Hide the table header below the overlay\\n\\t\\t\\t\\tmargin-top: calc(-1 * var(--row-height));\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__thead-overlay {\\n\\t\\t\\t// Pinned on top when scrolling\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\t// Save space for a row checkbox\\n\\t\\t\\tmargin-left: var(--row-height);\\n\\t\\t\\t// More than .files-list__thead\\n\\t\\t\\tz-index: 20;\\n\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\n\\t\\t\\t// Reuse row styles\\n\\t\\t\\tbackground-color: var(--color-main-background);\\n\\t\\t\\tborder-bottom: 1px solid var(--color-border);\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t}\\n\\n\\t\\t.files-list__thead,\\n\\t\\t.files-list__tfoot {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tbackground-color: var(--color-main-background);\\n\\n\\t\\t}\\n\\n\\t\\t// Table header\\n\\t\\t.files-list__thead {\\n\\t\\t\\t// Pinned on top when scrolling\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\tz-index: 10;\\n\\t\\t\\ttop: 0;\\n\\t\\t}\\n\\n\\t\\t// Table footer\\n\\t\\t.files-list__tfoot {\\n\\t\\t\\tmin-height: 300px;\\n\\t\\t}\\n\\n\\t\\ttr {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tuser-select: none;\\n\\t\\t\\tborder-bottom: 1px solid var(--color-border);\\n\\t\\t\\tbox-sizing: border-box;\\n\\t\\t\\tuser-select: none;\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t}\\n\\n\\t\\ttd, th {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tflex: 0 0 auto;\\n\\t\\t\\tjustify-content: left;\\n\\t\\t\\twidth: var(--row-height);\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t\\tmargin: 0;\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\tborder: none;\\n\\n\\t\\t\\t// Columns should try to add any text\\n\\t\\t\\t// node wrapped in a span. That should help\\n\\t\\t\\t// with the ellipsis on overflow.\\n\\t\\t\\tspan {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row--failed {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tdisplay: block;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\tleft: 0;\\n\\t\\t\\tright: 0;\\n\\t\\t\\tbottom: 0;\\n\\t\\t\\topacity: .1;\\n\\t\\t\\tz-index: -1;\\n\\t\\t\\tbackground: var(--color-error);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-checkbox {\\n\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t.checkbox-radio-switch {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t\\t--icon-size: var(--checkbox-size);\\n\\n\\t\\t\\t\\tlabel.checkbox-radio-switch__label {\\n\\t\\t\\t\\t\\twidth: var(--clickable-area);\\n\\t\\t\\t\\t\\theight: var(--clickable-area);\\n\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\tpadding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t.checkbox-radio-switch__icon {\\n\\t\\t\\t\\t\\tmargin: 0 !important;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row {\\n\\t\\t\\t&:hover, &:focus, &:active, &--active, &--dragover {\\n\\t\\t\\t\\t// WCAG AA compliant\\n\\t\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t\\t\\t// text-maxcontrast have been designed to pass WCAG AA over\\n\\t\\t\\t\\t// a white background, we need to adjust then.\\n\\t\\t\\t\\t--color-text-maxcontrast: var(--color-main-text);\\n\\t\\t\\t\\t> * {\\n\\t\\t\\t\\t\\t--color-border: var(--color-border-dark);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Hover state of the row should also change the favorite markers background\\n\\t\\t\\t\\t.favorite-marker-icon svg path {\\n\\t\\t\\t\\t\\tstroke: var(--color-background-hover);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&--dragover * {\\n\\t\\t\\t\\t// Prevent dropping on row children\\n\\t\\t\\t\\tpointer-events: none;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry preview or mime icon\\n\\t\\t.files-list__row-icon {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\toverflow: visible;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\t// No shrinking or growing allowed\\n\\t\\t\\tflex: 0 0 var(--icon-preview-size);\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\theight: 100%;\\n\\t\\t\\t// Show same padding as the checkbox right padding for visual balance\\n\\t\\t\\tmargin-right: var(--checkbox-padding);\\n\\t\\t\\tcolor: var(--color-primary-element);\\n\\n\\t\\t\\t// Icon is also clickable\\n\\t\\t\\t* {\\n\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t}\\n\\n\\t\\t\\t& > span {\\n\\t\\t\\t\\tjustify-content: flex-start;\\n\\n\\t\\t\\t\\t&:not(.files-list__row-icon-favorite) svg {\\n\\t\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Slightly increase the size of the folder icon\\n\\t\\t\\t\\t&.folder-icon,\\n\\t\\t\\t\\t&.folder-open-icon {\\n\\t\\t\\t\\t\\tmargin: -3px;\\n\\t\\t\\t\\t\\tsvg {\\n\\t\\t\\t\\t\\t\\twidth: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t\\theight: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-preview {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\t\\t// Center and contain the preview\\n\\t\\t\\t\\tobject-fit: contain;\\n\\t\\t\\t\\tobject-position: center;\\n\\n\\t\\t\\t\\t/* Preview not loaded animation effect */\\n\\t\\t\\t\\t&:not(.files-list__row-icon-preview--loaded) {\\n\\t\\t\\t\\t\\tbackground: var(--color-loading-dark);\\n\\t\\t\\t\\t\\t// animation: preview-gradient-fade 1.2s ease-in-out infinite;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-favorite {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\ttop: 0px;\\n\\t\\t\\t\\tright: -10px;\\n\\t\\t\\t}\\n\\n\\t\\t\\t// File and folder overlay\\n\\t\\t\\t&-overlay {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\tmax-height: calc(var(--icon-preview-size) * 0.5);\\n\\t\\t\\t\\tmax-width: calc(var(--icon-preview-size) * 0.5);\\n\\t\\t\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t\\t\\t// better alignment with the folder icon\\n\\t\\t\\t\\tmargin-top: 2px;\\n\\n\\t\\t\\t\\t// Improve icon contrast with a background for files\\n\\t\\t\\t\\t&--file {\\n\\t\\t\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\t\\t\\tbackground: var(--color-main-background);\\n\\t\\t\\t\\t\\tborder-radius: 100%;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry link\\n\\t\\t.files-list__row-name {\\n\\t\\t\\t// Prevent link from overflowing\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\t// Take as much space as possible\\n\\t\\t\\tflex: 1 1 auto;\\n\\n\\t\\t\\ta {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\talign-items: center;\\n\\t\\t\\t\\t// Fill cell height and width\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\theight: 100%;\\n\\t\\t\\t\\t// Necessary for flex grow to work\\n\\t\\t\\t\\tmin-width: 0;\\n\\n\\t\\t\\t\\t// Already added to the inner text, see rule below\\n\\t\\t\\t\\t&:focus-visible {\\n\\t\\t\\t\\t\\toutline: none;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Keyboard indicator a11y\\n\\t\\t\\t\\t&:focus .files-list__row-name-text {\\n\\t\\t\\t\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\t\\t\\t\\tborder-radius: 20px;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t&:focus:not(:focus-visible) .files-list__row-name-text {\\n\\t\\t\\t\\t\\toutline: none !important;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-text {\\n\\t\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\t\\t// Make some space for the outline\\n\\t\\t\\t\\tpadding: 5px 10px;\\n\\t\\t\\t\\tmargin-left: -10px;\\n\\t\\t\\t\\t// Align two name and ext\\n\\t\\t\\t\\tdisplay: inline-flex;\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-ext {\\n\\t\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t\\t// always show the extension\\n\\t\\t\\t\\toverflow: visible;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Rename form\\n\\t\\t.files-list__row-rename {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tmax-width: 600px;\\n\\t\\t\\tinput {\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\t// Align with text, 0 - padding - border\\n\\t\\t\\t\\tmargin-left: -8px;\\n\\t\\t\\t\\tpadding: 2px 6px;\\n\\t\\t\\t\\tborder-width: 2px;\\n\\n\\t\\t\\t\\t&:invalid {\\n\\t\\t\\t\\t\\t// Show red border on invalid input\\n\\t\\t\\t\\t\\tborder-color: var(--color-error);\\n\\t\\t\\t\\t\\tcolor: red;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-actions {\\n\\t\\t\\t// take as much space as necessary\\n\\t\\t\\twidth: auto;\\n\\n\\t\\t\\t// Add margin to all cells after the actions\\n\\t\\t\\t& ~ td,\\n\\t\\t\\t& ~ th {\\n\\t\\t\\t\\tmargin: 0 var(--cell-margin);\\n\\t\\t\\t}\\n\\n\\t\\t\\tbutton {\\n\\t\\t\\t\\t.button-vue__text {\\n\\t\\t\\t\\t\\t// Remove bold from default button styling\\n\\t\\t\\t\\t\\tfont-weight: normal;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-action--inline {\\n\\t\\t\\tmargin-right: 7px;\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime,\\n\\t\\t.files-list__row-size {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t}\\n\\t\\t.files-list__row-size {\\n\\t\\t\\twidth: calc(var(--row-height) * 1.5);\\n\\t\\t\\t// Right align content/text\\n\\t\\t\\tjustify-content: flex-end;\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-column-custom {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `tbody.files-list__tbody.files-list__tbody--grid{--half-clickable-area: calc(var(--clickable-area) / 2);--row-width: 160px;--row-height: calc(var(--row-width) - var(--half-clickable-area));--icon-preview-size: calc(var(--row-width) - var(--clickable-area));--checkbox-padding: 0px;display:grid;grid-template-columns:repeat(auto-fill, var(--row-width));grid-gap:15px;row-gap:15px;align-content:center;align-items:center;justify-content:space-around;justify-items:center}tbody.files-list__tbody.files-list__tbody--grid tr{width:var(--row-width);height:calc(var(--row-height) + var(--clickable-area));border:none;border-radius:var(--border-radius)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-checkbox{position:absolute;z-index:9;top:0;left:0;overflow:hidden;width:var(--clickable-area);height:var(--clickable-area);border-radius:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-icon-favorite{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;width:var(--clickable-area);height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name{display:grid;justify-content:stretch;width:100%;height:100%;grid-auto-rows:var(--row-height) var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name span.files-list__row-icon{width:100%;height:100%;padding-top:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name a.files-list__row-name-link{width:calc(100% - var(--clickable-area));height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name .files-list__row-name-text{margin:0;padding-right:0}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-actions{position:absolute;right:0;bottom:0;width:var(--clickable-area);height:var(--clickable-area)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListVirtual.vue\"],\"names\":[],\"mappings\":\"AAEA,gDACC,sDAAA,CACA,kBAAA,CAEA,iEAAA,CACA,mEAAA,CACA,uBAAA,CAEA,YAAA,CACA,yDAAA,CACA,aAAA,CACA,YAAA,CAEA,oBAAA,CACA,kBAAA,CACA,4BAAA,CACA,oBAAA,CAEA,mDACC,sBAAA,CACA,sDAAA,CACA,WAAA,CACA,kCAAA,CAID,0EACC,iBAAA,CACA,SAAA,CACA,KAAA,CACA,MAAA,CACA,eAAA,CACA,2BAAA,CACA,4BAAA,CACA,wCAAA,CAID,+EACC,iBAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,2BAAA,CACA,4BAAA,CAGD,sEACC,YAAA,CACA,uBAAA,CACA,UAAA,CACA,WAAA,CACA,sDAAA,CAEA,gGACC,UAAA,CACA,WAAA,CAGA,sCAAA,CAGD,kGAEC,wCAAA,CACA,4BAAA,CAGD,iGACC,QAAA,CACA,eAAA,CAIF,yEACC,iBAAA,CACA,OAAA,CACA,QAAA,CACA,2BAAA,CACA,4BAAA\",\"sourcesContent\":[\"\\n// Grid mode\\ntbody.files-list__tbody.files-list__tbody--grid {\\n\\t--half-clickable-area: calc(var(--clickable-area) / 2);\\n\\t--row-width: 160px;\\n\\t// We use half of the clickable area as visual balance margin\\n\\t--row-height: calc(var(--row-width) - var(--half-clickable-area));\\n\\t--icon-preview-size: calc(var(--row-width) - var(--clickable-area));\\n\\t--checkbox-padding: 0px;\\n\\n\\tdisplay: grid;\\n\\tgrid-template-columns: repeat(auto-fill, var(--row-width));\\n\\tgrid-gap: 15px;\\n\\trow-gap: 15px;\\n\\n\\talign-content: center;\\n\\talign-items: center;\\n\\tjustify-content: space-around;\\n\\tjustify-items: center;\\n\\n\\ttr {\\n\\t\\twidth: var(--row-width);\\n\\t\\theight: calc(var(--row-height) + var(--clickable-area));\\n\\t\\tborder: none;\\n\\t\\tborder-radius: var(--border-radius);\\n\\t}\\n\\n\\t// Checkbox in the top left\\n\\t.files-list__row-checkbox {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: 9;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\toverflow: hidden;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t\\tborder-radius: var(--half-clickable-area);\\n\\t}\\n\\n\\t// Star icon in the top right\\n\\t.files-list__row-icon-favorite {\\n\\t\\tposition: absolute;\\n\\t\\ttop: 0;\\n\\t\\tright: 0;\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t}\\n\\n\\t.files-list__row-name {\\n\\t\\tdisplay: grid;\\n\\t\\tjustify-content: stretch;\\n\\t\\twidth: 100%;\\n\\t\\theight: 100%;\\n\\t\\tgrid-auto-rows: var(--row-height) var(--clickable-area);\\n\\n\\t\\tspan.files-list__row-icon {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\theight: 100%;\\n\\t\\t\\t// Visual balance, we use half of the clickable area\\n\\t\\t\\t// as a margin around the preview\\n\\t\\t\\tpadding-top: var(--half-clickable-area);\\n\\t\\t}\\n\\n\\t\\ta.files-list__row-name-link {\\n\\t\\t\\t// Minus action menu\\n\\t\\t\\twidth: calc(100% - var(--clickable-area));\\n\\t\\t\\theight: var(--clickable-area);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-name-text {\\n\\t\\t\\tmargin: 0;\\n\\t\\t\\tpadding-right: 0;\\n\\t\\t}\\n\\t}\\n\\n\\t.files-list__row-actions {\\n\\t\\tposition: absolute;\\n\\t\\tright: 0;\\n\\t\\tbottom: 0;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-navigation-entry__settings-quota--not-unlimited[data-v-063ed938] .app-navigation-entry__name{margin-top:-6px}.app-navigation-entry__settings-quota progress[data-v-063ed938]{position:absolute;bottom:12px;margin-left:44px;width:calc(100% - 44px - 22px)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/NavigationQuota.vue\"],\"names\":[],\"mappings\":\"AAIC,kGACC,eAAA,CAGD,gEACC,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,8BAAA\",\"sourcesContent\":[\"\\n// User storage stats display\\n.app-navigation-entry__settings-quota {\\n\\t// Align title with progress and icon\\n\\t&--not-unlimited::v-deep .app-navigation-entry__name {\\n\\t\\tmargin-top: -6px;\\n\\t}\\n\\n\\tprogress {\\n\\t\\tposition: absolute;\\n\\t\\tbottom: 12px;\\n\\t\\tmargin-left: 44px;\\n\\t\\twidth: calc(100% - 44px - 22px);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-content[data-v-5c37291f]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-5c37291f]{display:flex;align-items:center;flex:0 0;max-width:100%;margin-block:var(--app-navigation-padding, 4px);margin-inline:calc(var(--default-clickable-area, 44px) + 2*var(--app-navigation-padding, 4px)) var(--app-navigation-padding, 4px)}.files-list__header>*[data-v-5c37291f]{flex:0 0}.files-list__header-share-button[data-v-5c37291f]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-5c37291f]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-5c37291f]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-5c37291f]{margin:auto}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/FilesList.vue\"],\"names\":[],\"mappings\":\"AACA,8BAEC,YAAA,CACA,eAAA,CACA,qBAAA,CACA,eAAA,CACA,4BAAA,CAIA,qCACC,YAAA,CACA,kBAAA,CAEA,QAAA,CACA,cAAA,CAEA,+CAAA,CACA,iIAAA,CAEA,uCAGC,QAAA,CAGD,kDACC,8CAAA,CAEA,0DACC,uCAAA,CAKH,2CACC,aAAA,CACA,UAAA,CACA,WAAA,CAGD,2CACC,WAAA\",\"sourcesContent\":[\"\\n.app-content {\\n\\t// Virtual list needs to be full height and is scrollable\\n\\tdisplay: flex;\\n\\toverflow: hidden;\\n\\tflex-direction: column;\\n\\tmax-height: 100%;\\n\\tposition: relative !important;\\n}\\n\\n.files-list {\\n\\t&__header {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\t// Do not grow or shrink (vertically)\\n\\t\\tflex: 0 0;\\n\\t\\tmax-width: 100%;\\n\\t\\t// Align with the navigation toggle icon\\n\\t\\tmargin-block: var(--app-navigation-padding, 4px);\\n\\t\\tmargin-inline: calc(var(--default-clickable-area, 44px) + 2 * var(--app-navigation-padding, 4px)) var(--app-navigation-padding, 4px);\\n\\n\\t\\t>* {\\n\\t\\t\\t// Do not grow or shrink (horizontally)\\n\\t\\t\\t// Only the breadcrumbs shrinks\\n\\t\\t\\tflex: 0 0;\\n\\t\\t}\\n\\n\\t\\t&-share-button {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast) !important;\\n\\n\\t\\t\\t&--shared {\\n\\t\\t\\t\\tcolor: var(--color-main-text) !important;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&__refresh-icon {\\n\\t\\tflex: 0 0 44px;\\n\\t\\twidth: 44px;\\n\\t\\theight: 44px;\\n\\t}\\n\\n\\t&__loading-icon {\\n\\t\\tmargin: auto;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-navigation[data-v-476b6b93] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-476b6b93] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-476b6b93]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-476b6b93]{height:auto !important;overflow:hidden !important;padding-top:0 !important;flex:0 0 auto}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Navigation.vue\"],\"names\":[],\"mappings\":\"AAEA,4DACC,2BAAA,CACA,0BAAA,CAGD,oGACC,uCAAA,CAGD,yDAEC,gDAAA,CAGD,iDACC,sBAAA,CACA,0BAAA,CACA,wBAAA,CAEA,aAAA\",\"sourcesContent\":[\"\\n// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in\\n.app-navigation::v-deep .app-navigation-entry-icon {\\n\\tbackground-repeat: no-repeat;\\n\\tbackground-position: center;\\n}\\n\\n.app-navigation::v-deep .app-navigation-entry.active .button-vue.icon-collapse:not(:hover) {\\n\\tcolor: var(--color-primary-element-text);\\n}\\n\\n.app-navigation > ul.app-navigation__list {\\n\\t// Use flex gap value for more elegant spacing\\n\\tpadding-bottom: var(--default-grid-baseline, 4px);\\n}\\n\\n.app-navigation-entry__settings {\\n\\theight: auto !important;\\n\\toverflow: hidden !important;\\n\\tpadding-top: 0 !important;\\n\\t// Prevent shrinking or growing\\n\\tflex: 0 0 auto;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.setting-link[data-v-00f09e69]:hover{text-decoration:underline}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Settings.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,yBAAA\",\"sourcesContent\":[\"\\n.setting-link:hover {\\n\\ttext-decoration: underline;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n'use strict';\n\nvar R = typeof Reflect === 'object' ? Reflect : null\nvar ReflectApply = R && typeof R.apply === 'function'\n  ? R.apply\n  : function ReflectApply(target, receiver, args) {\n    return Function.prototype.apply.call(target, receiver, args);\n  }\n\nvar ReflectOwnKeys\nif (R && typeof R.ownKeys === 'function') {\n  ReflectOwnKeys = R.ownKeys\n} else if (Object.getOwnPropertySymbols) {\n  ReflectOwnKeys = function ReflectOwnKeys(target) {\n    return Object.getOwnPropertyNames(target)\n      .concat(Object.getOwnPropertySymbols(target));\n  };\n} else {\n  ReflectOwnKeys = function ReflectOwnKeys(target) {\n    return Object.getOwnPropertyNames(target);\n  };\n}\n\nfunction ProcessEmitWarning(warning) {\n  if (console && console.warn) console.warn(warning);\n}\n\nvar NumberIsNaN = Number.isNaN || function NumberIsNaN(value) {\n  return value !== value;\n}\n\nfunction EventEmitter() {\n  EventEmitter.init.call(this);\n}\nmodule.exports = EventEmitter;\nmodule.exports.once = once;\n\n// Backwards-compat with node 0.10.x\nEventEmitter.EventEmitter = EventEmitter;\n\nEventEmitter.prototype._events = undefined;\nEventEmitter.prototype._eventsCount = 0;\nEventEmitter.prototype._maxListeners = undefined;\n\n// By default EventEmitters will print a warning if more than 10 listeners are\n// added to it. This is a useful default which helps finding memory leaks.\nvar defaultMaxListeners = 10;\n\nfunction checkListener(listener) {\n  if (typeof listener !== 'function') {\n    throw new TypeError('The \"listener\" argument must be of type Function. Received type ' + typeof listener);\n  }\n}\n\nObject.defineProperty(EventEmitter, 'defaultMaxListeners', {\n  enumerable: true,\n  get: function() {\n    return defaultMaxListeners;\n  },\n  set: function(arg) {\n    if (typeof arg !== 'number' || arg < 0 || NumberIsNaN(arg)) {\n      throw new RangeError('The value of \"defaultMaxListeners\" is out of range. It must be a non-negative number. Received ' + arg + '.');\n    }\n    defaultMaxListeners = arg;\n  }\n});\n\nEventEmitter.init = function() {\n\n  if (this._events === undefined ||\n      this._events === Object.getPrototypeOf(this)._events) {\n    this._events = Object.create(null);\n    this._eventsCount = 0;\n  }\n\n  this._maxListeners = this._maxListeners || undefined;\n};\n\n// Obviously not all Emitters should be limited to 10. This function allows\n// that to be increased. Set to zero for unlimited.\nEventEmitter.prototype.setMaxListeners = function setMaxListeners(n) {\n  if (typeof n !== 'number' || n < 0 || NumberIsNaN(n)) {\n    throw new RangeError('The value of \"n\" is out of range. It must be a non-negative number. Received ' + n + '.');\n  }\n  this._maxListeners = n;\n  return this;\n};\n\nfunction _getMaxListeners(that) {\n  if (that._maxListeners === undefined)\n    return EventEmitter.defaultMaxListeners;\n  return that._maxListeners;\n}\n\nEventEmitter.prototype.getMaxListeners = function getMaxListeners() {\n  return _getMaxListeners(this);\n};\n\nEventEmitter.prototype.emit = function emit(type) {\n  var args = [];\n  for (var i = 1; i < arguments.length; i++) args.push(arguments[i]);\n  var doError = (type === 'error');\n\n  var events = this._events;\n  if (events !== undefined)\n    doError = (doError && events.error === undefined);\n  else if (!doError)\n    return false;\n\n  // If there is no 'error' event listener then throw.\n  if (doError) {\n    var er;\n    if (args.length > 0)\n      er = args[0];\n    if (er instanceof Error) {\n      // Note: The comments on the `throw` lines are intentional, they show\n      // up in Node's output if this results in an unhandled exception.\n      throw er; // Unhandled 'error' event\n    }\n    // At least give some kind of context to the user\n    var err = new Error('Unhandled error.' + (er ? ' (' + er.message + ')' : ''));\n    err.context = er;\n    throw err; // Unhandled 'error' event\n  }\n\n  var handler = events[type];\n\n  if (handler === undefined)\n    return false;\n\n  if (typeof handler === 'function') {\n    ReflectApply(handler, this, args);\n  } else {\n    var len = handler.length;\n    var listeners = arrayClone(handler, len);\n    for (var i = 0; i < len; ++i)\n      ReflectApply(listeners[i], this, args);\n  }\n\n  return true;\n};\n\nfunction _addListener(target, type, listener, prepend) {\n  var m;\n  var events;\n  var existing;\n\n  checkListener(listener);\n\n  events = target._events;\n  if (events === undefined) {\n    events = target._events = Object.create(null);\n    target._eventsCount = 0;\n  } else {\n    // To avoid recursion in the case that type === \"newListener\"! Before\n    // adding it to the listeners, first emit \"newListener\".\n    if (events.newListener !== undefined) {\n      target.emit('newListener', type,\n                  listener.listener ? listener.listener : listener);\n\n      // Re-assign `events` because a newListener handler could have caused the\n      // this._events to be assigned to a new object\n      events = target._events;\n    }\n    existing = events[type];\n  }\n\n  if (existing === undefined) {\n    // Optimize the case of one listener. Don't need the extra array object.\n    existing = events[type] = listener;\n    ++target._eventsCount;\n  } else {\n    if (typeof existing === 'function') {\n      // Adding the second element, need to change to array.\n      existing = events[type] =\n        prepend ? [listener, existing] : [existing, listener];\n      // If we've already got an array, just append.\n    } else if (prepend) {\n      existing.unshift(listener);\n    } else {\n      existing.push(listener);\n    }\n\n    // Check for listener leak\n    m = _getMaxListeners(target);\n    if (m > 0 && existing.length > m && !existing.warned) {\n      existing.warned = true;\n      // No error code for this since it is a Warning\n      // eslint-disable-next-line no-restricted-syntax\n      var w = new Error('Possible EventEmitter memory leak detected. ' +\n                          existing.length + ' ' + String(type) + ' listeners ' +\n                          'added. Use emitter.setMaxListeners() to ' +\n                          'increase limit');\n      w.name = 'MaxListenersExceededWarning';\n      w.emitter = target;\n      w.type = type;\n      w.count = existing.length;\n      ProcessEmitWarning(w);\n    }\n  }\n\n  return target;\n}\n\nEventEmitter.prototype.addListener = function addListener(type, listener) {\n  return _addListener(this, type, listener, false);\n};\n\nEventEmitter.prototype.on = EventEmitter.prototype.addListener;\n\nEventEmitter.prototype.prependListener =\n    function prependListener(type, listener) {\n      return _addListener(this, type, listener, true);\n    };\n\nfunction onceWrapper() {\n  if (!this.fired) {\n    this.target.removeListener(this.type, this.wrapFn);\n    this.fired = true;\n    if (arguments.length === 0)\n      return this.listener.call(this.target);\n    return this.listener.apply(this.target, arguments);\n  }\n}\n\nfunction _onceWrap(target, type, listener) {\n  var state = { fired: false, wrapFn: undefined, target: target, type: type, listener: listener };\n  var wrapped = onceWrapper.bind(state);\n  wrapped.listener = listener;\n  state.wrapFn = wrapped;\n  return wrapped;\n}\n\nEventEmitter.prototype.once = function once(type, listener) {\n  checkListener(listener);\n  this.on(type, _onceWrap(this, type, listener));\n  return this;\n};\n\nEventEmitter.prototype.prependOnceListener =\n    function prependOnceListener(type, listener) {\n      checkListener(listener);\n      this.prependListener(type, _onceWrap(this, type, listener));\n      return this;\n    };\n\n// Emits a 'removeListener' event if and only if the listener was removed.\nEventEmitter.prototype.removeListener =\n    function removeListener(type, listener) {\n      var list, events, position, i, originalListener;\n\n      checkListener(listener);\n\n      events = this._events;\n      if (events === undefined)\n        return this;\n\n      list = events[type];\n      if (list === undefined)\n        return this;\n\n      if (list === listener || list.listener === listener) {\n        if (--this._eventsCount === 0)\n          this._events = Object.create(null);\n        else {\n          delete events[type];\n          if (events.removeListener)\n            this.emit('removeListener', type, list.listener || listener);\n        }\n      } else if (typeof list !== 'function') {\n        position = -1;\n\n        for (i = list.length - 1; i >= 0; i--) {\n          if (list[i] === listener || list[i].listener === listener) {\n            originalListener = list[i].listener;\n            position = i;\n            break;\n          }\n        }\n\n        if (position < 0)\n          return this;\n\n        if (position === 0)\n          list.shift();\n        else {\n          spliceOne(list, position);\n        }\n\n        if (list.length === 1)\n          events[type] = list[0];\n\n        if (events.removeListener !== undefined)\n          this.emit('removeListener', type, originalListener || listener);\n      }\n\n      return this;\n    };\n\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\n\nEventEmitter.prototype.removeAllListeners =\n    function removeAllListeners(type) {\n      var listeners, events, i;\n\n      events = this._events;\n      if (events === undefined)\n        return this;\n\n      // not listening for removeListener, no need to emit\n      if (events.removeListener === undefined) {\n        if (arguments.length === 0) {\n          this._events = Object.create(null);\n          this._eventsCount = 0;\n        } else if (events[type] !== undefined) {\n          if (--this._eventsCount === 0)\n            this._events = Object.create(null);\n          else\n            delete events[type];\n        }\n        return this;\n      }\n\n      // emit removeListener for all listeners on all events\n      if (arguments.length === 0) {\n        var keys = Object.keys(events);\n        var key;\n        for (i = 0; i < keys.length; ++i) {\n          key = keys[i];\n          if (key === 'removeListener') continue;\n          this.removeAllListeners(key);\n        }\n        this.removeAllListeners('removeListener');\n        this._events = Object.create(null);\n        this._eventsCount = 0;\n        return this;\n      }\n\n      listeners = events[type];\n\n      if (typeof listeners === 'function') {\n        this.removeListener(type, listeners);\n      } else if (listeners !== undefined) {\n        // LIFO order\n        for (i = listeners.length - 1; i >= 0; i--) {\n          this.removeListener(type, listeners[i]);\n        }\n      }\n\n      return this;\n    };\n\nfunction _listeners(target, type, unwrap) {\n  var events = target._events;\n\n  if (events === undefined)\n    return [];\n\n  var evlistener = events[type];\n  if (evlistener === undefined)\n    return [];\n\n  if (typeof evlistener === 'function')\n    return unwrap ? [evlistener.listener || evlistener] : [evlistener];\n\n  return unwrap ?\n    unwrapListeners(evlistener) : arrayClone(evlistener, evlistener.length);\n}\n\nEventEmitter.prototype.listeners = function listeners(type) {\n  return _listeners(this, type, true);\n};\n\nEventEmitter.prototype.rawListeners = function rawListeners(type) {\n  return _listeners(this, type, false);\n};\n\nEventEmitter.listenerCount = function(emitter, type) {\n  if (typeof emitter.listenerCount === 'function') {\n    return emitter.listenerCount(type);\n  } else {\n    return listenerCount.call(emitter, type);\n  }\n};\n\nEventEmitter.prototype.listenerCount = listenerCount;\nfunction listenerCount(type) {\n  var events = this._events;\n\n  if (events !== undefined) {\n    var evlistener = events[type];\n\n    if (typeof evlistener === 'function') {\n      return 1;\n    } else if (evlistener !== undefined) {\n      return evlistener.length;\n    }\n  }\n\n  return 0;\n}\n\nEventEmitter.prototype.eventNames = function eventNames() {\n  return this._eventsCount > 0 ? ReflectOwnKeys(this._events) : [];\n};\n\nfunction arrayClone(arr, n) {\n  var copy = new Array(n);\n  for (var i = 0; i < n; ++i)\n    copy[i] = arr[i];\n  return copy;\n}\n\nfunction spliceOne(list, index) {\n  for (; index + 1 < list.length; index++)\n    list[index] = list[index + 1];\n  list.pop();\n}\n\nfunction unwrapListeners(arr) {\n  var ret = new Array(arr.length);\n  for (var i = 0; i < ret.length; ++i) {\n    ret[i] = arr[i].listener || arr[i];\n  }\n  return ret;\n}\n\nfunction once(emitter, name) {\n  return new Promise(function (resolve, reject) {\n    function errorListener(err) {\n      emitter.removeListener(name, resolver);\n      reject(err);\n    }\n\n    function resolver() {\n      if (typeof emitter.removeListener === 'function') {\n        emitter.removeListener('error', errorListener);\n      }\n      resolve([].slice.call(arguments));\n    };\n\n    eventTargetAgnosticAddListener(emitter, name, resolver, { once: true });\n    if (name !== 'error') {\n      addErrorHandlerIfEventEmitter(emitter, errorListener, { once: true });\n    }\n  });\n}\n\nfunction addErrorHandlerIfEventEmitter(emitter, handler, flags) {\n  if (typeof emitter.on === 'function') {\n    eventTargetAgnosticAddListener(emitter, 'error', handler, flags);\n  }\n}\n\nfunction eventTargetAgnosticAddListener(emitter, name, listener, flags) {\n  if (typeof emitter.on === 'function') {\n    if (flags.once) {\n      emitter.once(name, listener);\n    } else {\n      emitter.on(name, listener);\n    }\n  } else if (typeof emitter.addEventListener === 'function') {\n    // EventTarget does not have `error` event semantics like Node\n    // EventEmitters, we do not listen for `error` events here.\n    emitter.addEventListener(name, function wrapListener(arg) {\n      // IE does not have builtin `{ once: true }` support so we\n      // have to do it manually.\n      if (flags.once) {\n        emitter.removeEventListener(name, wrapListener);\n      }\n      listener(arg);\n    });\n  } else {\n    throw new TypeError('The \"emitter\" argument must be of type EventEmitter. Received type ' + typeof emitter);\n  }\n}\n","'use strict';\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\nvar codes = {};\n\nfunction createErrorType(code, message, Base) {\n  if (!Base) {\n    Base = Error;\n  }\n\n  function getMessage(arg1, arg2, arg3) {\n    if (typeof message === 'string') {\n      return message;\n    } else {\n      return message(arg1, arg2, arg3);\n    }\n  }\n\n  var NodeError =\n  /*#__PURE__*/\n  function (_Base) {\n    _inheritsLoose(NodeError, _Base);\n\n    function NodeError(arg1, arg2, arg3) {\n      return _Base.call(this, getMessage(arg1, arg2, arg3)) || this;\n    }\n\n    return NodeError;\n  }(Base);\n\n  NodeError.prototype.name = Base.name;\n  NodeError.prototype.code = code;\n  codes[code] = NodeError;\n} // https://github.com/nodejs/node/blob/v10.8.0/lib/internal/errors.js\n\n\nfunction oneOf(expected, thing) {\n  if (Array.isArray(expected)) {\n    var len = expected.length;\n    expected = expected.map(function (i) {\n      return String(i);\n    });\n\n    if (len > 2) {\n      return \"one of \".concat(thing, \" \").concat(expected.slice(0, len - 1).join(', '), \", or \") + expected[len - 1];\n    } else if (len === 2) {\n      return \"one of \".concat(thing, \" \").concat(expected[0], \" or \").concat(expected[1]);\n    } else {\n      return \"of \".concat(thing, \" \").concat(expected[0]);\n    }\n  } else {\n    return \"of \".concat(thing, \" \").concat(String(expected));\n  }\n} // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith\n\n\nfunction startsWith(str, search, pos) {\n  return str.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search;\n} // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith\n\n\nfunction endsWith(str, search, this_len) {\n  if (this_len === undefined || this_len > str.length) {\n    this_len = str.length;\n  }\n\n  return str.substring(this_len - search.length, this_len) === search;\n} // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes\n\n\nfunction includes(str, search, start) {\n  if (typeof start !== 'number') {\n    start = 0;\n  }\n\n  if (start + search.length > str.length) {\n    return false;\n  } else {\n    return str.indexOf(search, start) !== -1;\n  }\n}\n\ncreateErrorType('ERR_INVALID_OPT_VALUE', function (name, value) {\n  return 'The value \"' + value + '\" is invalid for option \"' + name + '\"';\n}, TypeError);\ncreateErrorType('ERR_INVALID_ARG_TYPE', function (name, expected, actual) {\n  // determiner: 'must be' or 'must not be'\n  var determiner;\n\n  if (typeof expected === 'string' && startsWith(expected, 'not ')) {\n    determiner = 'must not be';\n    expected = expected.replace(/^not /, '');\n  } else {\n    determiner = 'must be';\n  }\n\n  var msg;\n\n  if (endsWith(name, ' argument')) {\n    // For cases like 'first argument'\n    msg = \"The \".concat(name, \" \").concat(determiner, \" \").concat(oneOf(expected, 'type'));\n  } else {\n    var type = includes(name, '.') ? 'property' : 'argument';\n    msg = \"The \\\"\".concat(name, \"\\\" \").concat(type, \" \").concat(determiner, \" \").concat(oneOf(expected, 'type'));\n  }\n\n  msg += \". Received type \".concat(typeof actual);\n  return msg;\n}, TypeError);\ncreateErrorType('ERR_STREAM_PUSH_AFTER_EOF', 'stream.push() after EOF');\ncreateErrorType('ERR_METHOD_NOT_IMPLEMENTED', function (name) {\n  return 'The ' + name + ' method is not implemented';\n});\ncreateErrorType('ERR_STREAM_PREMATURE_CLOSE', 'Premature close');\ncreateErrorType('ERR_STREAM_DESTROYED', function (name) {\n  return 'Cannot call ' + name + ' after a stream was destroyed';\n});\ncreateErrorType('ERR_MULTIPLE_CALLBACK', 'Callback called multiple times');\ncreateErrorType('ERR_STREAM_CANNOT_PIPE', 'Cannot pipe, not readable');\ncreateErrorType('ERR_STREAM_WRITE_AFTER_END', 'write after end');\ncreateErrorType('ERR_STREAM_NULL_VALUES', 'May not write null values to stream', TypeError);\ncreateErrorType('ERR_UNKNOWN_ENCODING', function (arg) {\n  return 'Unknown encoding: ' + arg;\n}, TypeError);\ncreateErrorType('ERR_STREAM_UNSHIFT_AFTER_END_EVENT', 'stream.unshift() after end event');\nmodule.exports.codes = codes;\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// a duplex stream is just a stream that is both readable and writable.\n// Since JS doesn't have multiple prototypal inheritance, this class\n// prototypally inherits from Readable, and then parasitically from\n// Writable.\n\n'use strict';\n\n/*<replacement>*/\nvar objectKeys = Object.keys || function (obj) {\n  var keys = [];\n  for (var key in obj) keys.push(key);\n  return keys;\n};\n/*</replacement>*/\n\nmodule.exports = Duplex;\nvar Readable = require('./_stream_readable');\nvar Writable = require('./_stream_writable');\nrequire('inherits')(Duplex, Readable);\n{\n  // Allow the keys array to be GC'ed.\n  var keys = objectKeys(Writable.prototype);\n  for (var v = 0; v < keys.length; v++) {\n    var method = keys[v];\n    if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method];\n  }\n}\nfunction Duplex(options) {\n  if (!(this instanceof Duplex)) return new Duplex(options);\n  Readable.call(this, options);\n  Writable.call(this, options);\n  this.allowHalfOpen = true;\n  if (options) {\n    if (options.readable === false) this.readable = false;\n    if (options.writable === false) this.writable = false;\n    if (options.allowHalfOpen === false) {\n      this.allowHalfOpen = false;\n      this.once('end', onend);\n    }\n  }\n}\nObject.defineProperty(Duplex.prototype, 'writableHighWaterMark', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState.highWaterMark;\n  }\n});\nObject.defineProperty(Duplex.prototype, 'writableBuffer', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState && this._writableState.getBuffer();\n  }\n});\nObject.defineProperty(Duplex.prototype, 'writableLength', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState.length;\n  }\n});\n\n// the no-half-open enforcer\nfunction onend() {\n  // If the writable side ended, then we're ok.\n  if (this._writableState.ended) return;\n\n  // no more data can be written.\n  // But allow more writes to happen in this tick.\n  process.nextTick(onEndNT, this);\n}\nfunction onEndNT(self) {\n  self.end();\n}\nObject.defineProperty(Duplex.prototype, 'destroyed', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    if (this._readableState === undefined || this._writableState === undefined) {\n      return false;\n    }\n    return this._readableState.destroyed && this._writableState.destroyed;\n  },\n  set: function set(value) {\n    // we ignore the value if the stream\n    // has not been initialized yet\n    if (this._readableState === undefined || this._writableState === undefined) {\n      return;\n    }\n\n    // backward compatibility, the user is explicitly\n    // managing destroyed\n    this._readableState.destroyed = value;\n    this._writableState.destroyed = value;\n  }\n});","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// a passthrough stream.\n// basically just the most minimal sort of Transform stream.\n// Every written chunk gets output as-is.\n\n'use strict';\n\nmodule.exports = PassThrough;\nvar Transform = require('./_stream_transform');\nrequire('inherits')(PassThrough, Transform);\nfunction PassThrough(options) {\n  if (!(this instanceof PassThrough)) return new PassThrough(options);\n  Transform.call(this, options);\n}\nPassThrough.prototype._transform = function (chunk, encoding, cb) {\n  cb(null, chunk);\n};","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n'use strict';\n\nmodule.exports = Readable;\n\n/*<replacement>*/\nvar Duplex;\n/*</replacement>*/\n\nReadable.ReadableState = ReadableState;\n\n/*<replacement>*/\nvar EE = require('events').EventEmitter;\nvar EElistenerCount = function EElistenerCount(emitter, type) {\n  return emitter.listeners(type).length;\n};\n/*</replacement>*/\n\n/*<replacement>*/\nvar Stream = require('./internal/streams/stream');\n/*</replacement>*/\n\nvar Buffer = require('buffer').Buffer;\nvar OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};\nfunction _uint8ArrayToBuffer(chunk) {\n  return Buffer.from(chunk);\n}\nfunction _isUint8Array(obj) {\n  return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;\n}\n\n/*<replacement>*/\nvar debugUtil = require('util');\nvar debug;\nif (debugUtil && debugUtil.debuglog) {\n  debug = debugUtil.debuglog('stream');\n} else {\n  debug = function debug() {};\n}\n/*</replacement>*/\n\nvar BufferList = require('./internal/streams/buffer_list');\nvar destroyImpl = require('./internal/streams/destroy');\nvar _require = require('./internal/streams/state'),\n  getHighWaterMark = _require.getHighWaterMark;\nvar _require$codes = require('../errors').codes,\n  ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,\n  ERR_STREAM_PUSH_AFTER_EOF = _require$codes.ERR_STREAM_PUSH_AFTER_EOF,\n  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,\n  ERR_STREAM_UNSHIFT_AFTER_END_EVENT = _require$codes.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;\n\n// Lazy loaded to improve the startup performance.\nvar StringDecoder;\nvar createReadableStreamAsyncIterator;\nvar from;\nrequire('inherits')(Readable, Stream);\nvar errorOrDestroy = destroyImpl.errorOrDestroy;\nvar kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume'];\nfunction prependListener(emitter, event, fn) {\n  // Sadly this is not cacheable as some libraries bundle their own\n  // event emitter implementation with them.\n  if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn);\n\n  // This is a hack to make sure that our error handler is attached before any\n  // userland ones.  NEVER DO THIS. This is here only because this code needs\n  // to continue to work with older versions of Node.js that do not include\n  // the prependListener() method. The goal is to eventually remove this hack.\n  if (!emitter._events || !emitter._events[event]) emitter.on(event, fn);else if (Array.isArray(emitter._events[event])) emitter._events[event].unshift(fn);else emitter._events[event] = [fn, emitter._events[event]];\n}\nfunction ReadableState(options, stream, isDuplex) {\n  Duplex = Duplex || require('./_stream_duplex');\n  options = options || {};\n\n  // Duplex streams are both readable and writable, but share\n  // the same options object.\n  // However, some cases require setting options to different\n  // values for the readable and the writable sides of the duplex stream.\n  // These options can be provided separately as readableXXX and writableXXX.\n  if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof Duplex;\n\n  // object stream flag. Used to make read(n) ignore n and to\n  // make all the buffer merging and length checks go away\n  this.objectMode = !!options.objectMode;\n  if (isDuplex) this.objectMode = this.objectMode || !!options.readableObjectMode;\n\n  // the point at which it stops calling _read() to fill the buffer\n  // Note: 0 is a valid value, means \"don't call _read preemptively ever\"\n  this.highWaterMark = getHighWaterMark(this, options, 'readableHighWaterMark', isDuplex);\n\n  // A linked list is used to store data chunks instead of an array because the\n  // linked list can remove elements from the beginning faster than\n  // array.shift()\n  this.buffer = new BufferList();\n  this.length = 0;\n  this.pipes = null;\n  this.pipesCount = 0;\n  this.flowing = null;\n  this.ended = false;\n  this.endEmitted = false;\n  this.reading = false;\n\n  // a flag to be able to tell if the event 'readable'/'data' is emitted\n  // immediately, or on a later tick.  We set this to true at first, because\n  // any actions that shouldn't happen until \"later\" should generally also\n  // not happen before the first read call.\n  this.sync = true;\n\n  // whenever we return null, then we set a flag to say\n  // that we're awaiting a 'readable' event emission.\n  this.needReadable = false;\n  this.emittedReadable = false;\n  this.readableListening = false;\n  this.resumeScheduled = false;\n  this.paused = true;\n\n  // Should close be emitted on destroy. Defaults to true.\n  this.emitClose = options.emitClose !== false;\n\n  // Should .destroy() be called after 'end' (and potentially 'finish')\n  this.autoDestroy = !!options.autoDestroy;\n\n  // has it been destroyed\n  this.destroyed = false;\n\n  // Crypto is kind of old and crusty.  Historically, its default string\n  // encoding is 'binary' so we have to make this configurable.\n  // Everything else in the universe uses 'utf8', though.\n  this.defaultEncoding = options.defaultEncoding || 'utf8';\n\n  // the number of writers that are awaiting a drain event in .pipe()s\n  this.awaitDrain = 0;\n\n  // if true, a maybeReadMore has been scheduled\n  this.readingMore = false;\n  this.decoder = null;\n  this.encoding = null;\n  if (options.encoding) {\n    if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;\n    this.decoder = new StringDecoder(options.encoding);\n    this.encoding = options.encoding;\n  }\n}\nfunction Readable(options) {\n  Duplex = Duplex || require('./_stream_duplex');\n  if (!(this instanceof Readable)) return new Readable(options);\n\n  // Checking for a Stream.Duplex instance is faster here instead of inside\n  // the ReadableState constructor, at least with V8 6.5\n  var isDuplex = this instanceof Duplex;\n  this._readableState = new ReadableState(options, this, isDuplex);\n\n  // legacy\n  this.readable = true;\n  if (options) {\n    if (typeof options.read === 'function') this._read = options.read;\n    if (typeof options.destroy === 'function') this._destroy = options.destroy;\n  }\n  Stream.call(this);\n}\nObject.defineProperty(Readable.prototype, 'destroyed', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    if (this._readableState === undefined) {\n      return false;\n    }\n    return this._readableState.destroyed;\n  },\n  set: function set(value) {\n    // we ignore the value if the stream\n    // has not been initialized yet\n    if (!this._readableState) {\n      return;\n    }\n\n    // backward compatibility, the user is explicitly\n    // managing destroyed\n    this._readableState.destroyed = value;\n  }\n});\nReadable.prototype.destroy = destroyImpl.destroy;\nReadable.prototype._undestroy = destroyImpl.undestroy;\nReadable.prototype._destroy = function (err, cb) {\n  cb(err);\n};\n\n// Manually shove something into the read() buffer.\n// This returns true if the highWaterMark has not been hit yet,\n// similar to how Writable.write() returns true if you should\n// write() some more.\nReadable.prototype.push = function (chunk, encoding) {\n  var state = this._readableState;\n  var skipChunkCheck;\n  if (!state.objectMode) {\n    if (typeof chunk === 'string') {\n      encoding = encoding || state.defaultEncoding;\n      if (encoding !== state.encoding) {\n        chunk = Buffer.from(chunk, encoding);\n        encoding = '';\n      }\n      skipChunkCheck = true;\n    }\n  } else {\n    skipChunkCheck = true;\n  }\n  return readableAddChunk(this, chunk, encoding, false, skipChunkCheck);\n};\n\n// Unshift should *always* be something directly out of read()\nReadable.prototype.unshift = function (chunk) {\n  return readableAddChunk(this, chunk, null, true, false);\n};\nfunction readableAddChunk(stream, chunk, encoding, addToFront, skipChunkCheck) {\n  debug('readableAddChunk', chunk);\n  var state = stream._readableState;\n  if (chunk === null) {\n    state.reading = false;\n    onEofChunk(stream, state);\n  } else {\n    var er;\n    if (!skipChunkCheck) er = chunkInvalid(state, chunk);\n    if (er) {\n      errorOrDestroy(stream, er);\n    } else if (state.objectMode || chunk && chunk.length > 0) {\n      if (typeof chunk !== 'string' && !state.objectMode && Object.getPrototypeOf(chunk) !== Buffer.prototype) {\n        chunk = _uint8ArrayToBuffer(chunk);\n      }\n      if (addToFront) {\n        if (state.endEmitted) errorOrDestroy(stream, new ERR_STREAM_UNSHIFT_AFTER_END_EVENT());else addChunk(stream, state, chunk, true);\n      } else if (state.ended) {\n        errorOrDestroy(stream, new ERR_STREAM_PUSH_AFTER_EOF());\n      } else if (state.destroyed) {\n        return false;\n      } else {\n        state.reading = false;\n        if (state.decoder && !encoding) {\n          chunk = state.decoder.write(chunk);\n          if (state.objectMode || chunk.length !== 0) addChunk(stream, state, chunk, false);else maybeReadMore(stream, state);\n        } else {\n          addChunk(stream, state, chunk, false);\n        }\n      }\n    } else if (!addToFront) {\n      state.reading = false;\n      maybeReadMore(stream, state);\n    }\n  }\n\n  // We can push more data if we are below the highWaterMark.\n  // Also, if we have no data yet, we can stand some more bytes.\n  // This is to work around cases where hwm=0, such as the repl.\n  return !state.ended && (state.length < state.highWaterMark || state.length === 0);\n}\nfunction addChunk(stream, state, chunk, addToFront) {\n  if (state.flowing && state.length === 0 && !state.sync) {\n    state.awaitDrain = 0;\n    stream.emit('data', chunk);\n  } else {\n    // update the buffer info.\n    state.length += state.objectMode ? 1 : chunk.length;\n    if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk);\n    if (state.needReadable) emitReadable(stream);\n  }\n  maybeReadMore(stream, state);\n}\nfunction chunkInvalid(state, chunk) {\n  var er;\n  if (!_isUint8Array(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) {\n    er = new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer', 'Uint8Array'], chunk);\n  }\n  return er;\n}\nReadable.prototype.isPaused = function () {\n  return this._readableState.flowing === false;\n};\n\n// backwards compatibility.\nReadable.prototype.setEncoding = function (enc) {\n  if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;\n  var decoder = new StringDecoder(enc);\n  this._readableState.decoder = decoder;\n  // If setEncoding(null), decoder.encoding equals utf8\n  this._readableState.encoding = this._readableState.decoder.encoding;\n\n  // Iterate over current buffer to convert already stored Buffers:\n  var p = this._readableState.buffer.head;\n  var content = '';\n  while (p !== null) {\n    content += decoder.write(p.data);\n    p = p.next;\n  }\n  this._readableState.buffer.clear();\n  if (content !== '') this._readableState.buffer.push(content);\n  this._readableState.length = content.length;\n  return this;\n};\n\n// Don't raise the hwm > 1GB\nvar MAX_HWM = 0x40000000;\nfunction computeNewHighWaterMark(n) {\n  if (n >= MAX_HWM) {\n    // TODO(ronag): Throw ERR_VALUE_OUT_OF_RANGE.\n    n = MAX_HWM;\n  } else {\n    // Get the next highest power of 2 to prevent increasing hwm excessively in\n    // tiny amounts\n    n--;\n    n |= n >>> 1;\n    n |= n >>> 2;\n    n |= n >>> 4;\n    n |= n >>> 8;\n    n |= n >>> 16;\n    n++;\n  }\n  return n;\n}\n\n// This function is designed to be inlinable, so please take care when making\n// changes to the function body.\nfunction howMuchToRead(n, state) {\n  if (n <= 0 || state.length === 0 && state.ended) return 0;\n  if (state.objectMode) return 1;\n  if (n !== n) {\n    // Only flow one buffer at a time\n    if (state.flowing && state.length) return state.buffer.head.data.length;else return state.length;\n  }\n  // If we're asking for more than the current hwm, then raise the hwm.\n  if (n > state.highWaterMark) state.highWaterMark = computeNewHighWaterMark(n);\n  if (n <= state.length) return n;\n  // Don't have enough\n  if (!state.ended) {\n    state.needReadable = true;\n    return 0;\n  }\n  return state.length;\n}\n\n// you can override either this method, or the async _read(n) below.\nReadable.prototype.read = function (n) {\n  debug('read', n);\n  n = parseInt(n, 10);\n  var state = this._readableState;\n  var nOrig = n;\n  if (n !== 0) state.emittedReadable = false;\n\n  // if we're doing read(0) to trigger a readable event, but we\n  // already have a bunch of data in the buffer, then just trigger\n  // the 'readable' event and move on.\n  if (n === 0 && state.needReadable && ((state.highWaterMark !== 0 ? state.length >= state.highWaterMark : state.length > 0) || state.ended)) {\n    debug('read: emitReadable', state.length, state.ended);\n    if (state.length === 0 && state.ended) endReadable(this);else emitReadable(this);\n    return null;\n  }\n  n = howMuchToRead(n, state);\n\n  // if we've ended, and we're now clear, then finish it up.\n  if (n === 0 && state.ended) {\n    if (state.length === 0) endReadable(this);\n    return null;\n  }\n\n  // All the actual chunk generation logic needs to be\n  // *below* the call to _read.  The reason is that in certain\n  // synthetic stream cases, such as passthrough streams, _read\n  // may be a completely synchronous operation which may change\n  // the state of the read buffer, providing enough data when\n  // before there was *not* enough.\n  //\n  // So, the steps are:\n  // 1. Figure out what the state of things will be after we do\n  // a read from the buffer.\n  //\n  // 2. If that resulting state will trigger a _read, then call _read.\n  // Note that this may be asynchronous, or synchronous.  Yes, it is\n  // deeply ugly to write APIs this way, but that still doesn't mean\n  // that the Readable class should behave improperly, as streams are\n  // designed to be sync/async agnostic.\n  // Take note if the _read call is sync or async (ie, if the read call\n  // has returned yet), so that we know whether or not it's safe to emit\n  // 'readable' etc.\n  //\n  // 3. Actually pull the requested chunks out of the buffer and return.\n\n  // if we need a readable event, then we need to do some reading.\n  var doRead = state.needReadable;\n  debug('need readable', doRead);\n\n  // if we currently have less than the highWaterMark, then also read some\n  if (state.length === 0 || state.length - n < state.highWaterMark) {\n    doRead = true;\n    debug('length less than watermark', doRead);\n  }\n\n  // however, if we've ended, then there's no point, and if we're already\n  // reading, then it's unnecessary.\n  if (state.ended || state.reading) {\n    doRead = false;\n    debug('reading or ended', doRead);\n  } else if (doRead) {\n    debug('do read');\n    state.reading = true;\n    state.sync = true;\n    // if the length is currently zero, then we *need* a readable event.\n    if (state.length === 0) state.needReadable = true;\n    // call internal read method\n    this._read(state.highWaterMark);\n    state.sync = false;\n    // If _read pushed data synchronously, then `reading` will be false,\n    // and we need to re-evaluate how much data we can return to the user.\n    if (!state.reading) n = howMuchToRead(nOrig, state);\n  }\n  var ret;\n  if (n > 0) ret = fromList(n, state);else ret = null;\n  if (ret === null) {\n    state.needReadable = state.length <= state.highWaterMark;\n    n = 0;\n  } else {\n    state.length -= n;\n    state.awaitDrain = 0;\n  }\n  if (state.length === 0) {\n    // If we have nothing in the buffer, then we want to know\n    // as soon as we *do* get something into the buffer.\n    if (!state.ended) state.needReadable = true;\n\n    // If we tried to read() past the EOF, then emit end on the next tick.\n    if (nOrig !== n && state.ended) endReadable(this);\n  }\n  if (ret !== null) this.emit('data', ret);\n  return ret;\n};\nfunction onEofChunk(stream, state) {\n  debug('onEofChunk');\n  if (state.ended) return;\n  if (state.decoder) {\n    var chunk = state.decoder.end();\n    if (chunk && chunk.length) {\n      state.buffer.push(chunk);\n      state.length += state.objectMode ? 1 : chunk.length;\n    }\n  }\n  state.ended = true;\n  if (state.sync) {\n    // if we are sync, wait until next tick to emit the data.\n    // Otherwise we risk emitting data in the flow()\n    // the readable code triggers during a read() call\n    emitReadable(stream);\n  } else {\n    // emit 'readable' now to make sure it gets picked up.\n    state.needReadable = false;\n    if (!state.emittedReadable) {\n      state.emittedReadable = true;\n      emitReadable_(stream);\n    }\n  }\n}\n\n// Don't emit readable right away in sync mode, because this can trigger\n// another read() call => stack overflow.  This way, it might trigger\n// a nextTick recursion warning, but that's not so bad.\nfunction emitReadable(stream) {\n  var state = stream._readableState;\n  debug('emitReadable', state.needReadable, state.emittedReadable);\n  state.needReadable = false;\n  if (!state.emittedReadable) {\n    debug('emitReadable', state.flowing);\n    state.emittedReadable = true;\n    process.nextTick(emitReadable_, stream);\n  }\n}\nfunction emitReadable_(stream) {\n  var state = stream._readableState;\n  debug('emitReadable_', state.destroyed, state.length, state.ended);\n  if (!state.destroyed && (state.length || state.ended)) {\n    stream.emit('readable');\n    state.emittedReadable = false;\n  }\n\n  // The stream needs another readable event if\n  // 1. It is not flowing, as the flow mechanism will take\n  //    care of it.\n  // 2. It is not ended.\n  // 3. It is below the highWaterMark, so we can schedule\n  //    another readable later.\n  state.needReadable = !state.flowing && !state.ended && state.length <= state.highWaterMark;\n  flow(stream);\n}\n\n// at this point, the user has presumably seen the 'readable' event,\n// and called read() to consume some data.  that may have triggered\n// in turn another _read(n) call, in which case reading = true if\n// it's in progress.\n// However, if we're not ended, or reading, and the length < hwm,\n// then go ahead and try to read some more preemptively.\nfunction maybeReadMore(stream, state) {\n  if (!state.readingMore) {\n    state.readingMore = true;\n    process.nextTick(maybeReadMore_, stream, state);\n  }\n}\nfunction maybeReadMore_(stream, state) {\n  // Attempt to read more data if we should.\n  //\n  // The conditions for reading more data are (one of):\n  // - Not enough data buffered (state.length < state.highWaterMark). The loop\n  //   is responsible for filling the buffer with enough data if such data\n  //   is available. If highWaterMark is 0 and we are not in the flowing mode\n  //   we should _not_ attempt to buffer any extra data. We'll get more data\n  //   when the stream consumer calls read() instead.\n  // - No data in the buffer, and the stream is in flowing mode. In this mode\n  //   the loop below is responsible for ensuring read() is called. Failing to\n  //   call read here would abort the flow and there's no other mechanism for\n  //   continuing the flow if the stream consumer has just subscribed to the\n  //   'data' event.\n  //\n  // In addition to the above conditions to keep reading data, the following\n  // conditions prevent the data from being read:\n  // - The stream has ended (state.ended).\n  // - There is already a pending 'read' operation (state.reading). This is a\n  //   case where the the stream has called the implementation defined _read()\n  //   method, but they are processing the call asynchronously and have _not_\n  //   called push() with new data. In this case we skip performing more\n  //   read()s. The execution ends in this method again after the _read() ends\n  //   up calling push() with more data.\n  while (!state.reading && !state.ended && (state.length < state.highWaterMark || state.flowing && state.length === 0)) {\n    var len = state.length;\n    debug('maybeReadMore read 0');\n    stream.read(0);\n    if (len === state.length)\n      // didn't get any data, stop spinning.\n      break;\n  }\n  state.readingMore = false;\n}\n\n// abstract method.  to be overridden in specific implementation classes.\n// call cb(er, data) where data is <= n in length.\n// for virtual (non-string, non-buffer) streams, \"length\" is somewhat\n// arbitrary, and perhaps not very meaningful.\nReadable.prototype._read = function (n) {\n  errorOrDestroy(this, new ERR_METHOD_NOT_IMPLEMENTED('_read()'));\n};\nReadable.prototype.pipe = function (dest, pipeOpts) {\n  var src = this;\n  var state = this._readableState;\n  switch (state.pipesCount) {\n    case 0:\n      state.pipes = dest;\n      break;\n    case 1:\n      state.pipes = [state.pipes, dest];\n      break;\n    default:\n      state.pipes.push(dest);\n      break;\n  }\n  state.pipesCount += 1;\n  debug('pipe count=%d opts=%j', state.pipesCount, pipeOpts);\n  var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr;\n  var endFn = doEnd ? onend : unpipe;\n  if (state.endEmitted) process.nextTick(endFn);else src.once('end', endFn);\n  dest.on('unpipe', onunpipe);\n  function onunpipe(readable, unpipeInfo) {\n    debug('onunpipe');\n    if (readable === src) {\n      if (unpipeInfo && unpipeInfo.hasUnpiped === false) {\n        unpipeInfo.hasUnpiped = true;\n        cleanup();\n      }\n    }\n  }\n  function onend() {\n    debug('onend');\n    dest.end();\n  }\n\n  // when the dest drains, it reduces the awaitDrain counter\n  // on the source.  This would be more elegant with a .once()\n  // handler in flow(), but adding and removing repeatedly is\n  // too slow.\n  var ondrain = pipeOnDrain(src);\n  dest.on('drain', ondrain);\n  var cleanedUp = false;\n  function cleanup() {\n    debug('cleanup');\n    // cleanup event handlers once the pipe is broken\n    dest.removeListener('close', onclose);\n    dest.removeListener('finish', onfinish);\n    dest.removeListener('drain', ondrain);\n    dest.removeListener('error', onerror);\n    dest.removeListener('unpipe', onunpipe);\n    src.removeListener('end', onend);\n    src.removeListener('end', unpipe);\n    src.removeListener('data', ondata);\n    cleanedUp = true;\n\n    // if the reader is waiting for a drain event from this\n    // specific writer, then it would cause it to never start\n    // flowing again.\n    // So, if this is awaiting a drain, then we just call it now.\n    // If we don't know, then assume that we are waiting for one.\n    if (state.awaitDrain && (!dest._writableState || dest._writableState.needDrain)) ondrain();\n  }\n  src.on('data', ondata);\n  function ondata(chunk) {\n    debug('ondata');\n    var ret = dest.write(chunk);\n    debug('dest.write', ret);\n    if (ret === false) {\n      // If the user unpiped during `dest.write()`, it is possible\n      // to get stuck in a permanently paused state if that write\n      // also returned false.\n      // => Check whether `dest` is still a piping destination.\n      if ((state.pipesCount === 1 && state.pipes === dest || state.pipesCount > 1 && indexOf(state.pipes, dest) !== -1) && !cleanedUp) {\n        debug('false write response, pause', state.awaitDrain);\n        state.awaitDrain++;\n      }\n      src.pause();\n    }\n  }\n\n  // if the dest has an error, then stop piping into it.\n  // however, don't suppress the throwing behavior for this.\n  function onerror(er) {\n    debug('onerror', er);\n    unpipe();\n    dest.removeListener('error', onerror);\n    if (EElistenerCount(dest, 'error') === 0) errorOrDestroy(dest, er);\n  }\n\n  // Make sure our error handler is attached before userland ones.\n  prependListener(dest, 'error', onerror);\n\n  // Both close and finish should trigger unpipe, but only once.\n  function onclose() {\n    dest.removeListener('finish', onfinish);\n    unpipe();\n  }\n  dest.once('close', onclose);\n  function onfinish() {\n    debug('onfinish');\n    dest.removeListener('close', onclose);\n    unpipe();\n  }\n  dest.once('finish', onfinish);\n  function unpipe() {\n    debug('unpipe');\n    src.unpipe(dest);\n  }\n\n  // tell the dest that it's being piped to\n  dest.emit('pipe', src);\n\n  // start the flow if it hasn't been started already.\n  if (!state.flowing) {\n    debug('pipe resume');\n    src.resume();\n  }\n  return dest;\n};\nfunction pipeOnDrain(src) {\n  return function pipeOnDrainFunctionResult() {\n    var state = src._readableState;\n    debug('pipeOnDrain', state.awaitDrain);\n    if (state.awaitDrain) state.awaitDrain--;\n    if (state.awaitDrain === 0 && EElistenerCount(src, 'data')) {\n      state.flowing = true;\n      flow(src);\n    }\n  };\n}\nReadable.prototype.unpipe = function (dest) {\n  var state = this._readableState;\n  var unpipeInfo = {\n    hasUnpiped: false\n  };\n\n  // if we're not piping anywhere, then do nothing.\n  if (state.pipesCount === 0) return this;\n\n  // just one destination.  most common case.\n  if (state.pipesCount === 1) {\n    // passed in one, but it's not the right one.\n    if (dest && dest !== state.pipes) return this;\n    if (!dest) dest = state.pipes;\n\n    // got a match.\n    state.pipes = null;\n    state.pipesCount = 0;\n    state.flowing = false;\n    if (dest) dest.emit('unpipe', this, unpipeInfo);\n    return this;\n  }\n\n  // slow case. multiple pipe destinations.\n\n  if (!dest) {\n    // remove all.\n    var dests = state.pipes;\n    var len = state.pipesCount;\n    state.pipes = null;\n    state.pipesCount = 0;\n    state.flowing = false;\n    for (var i = 0; i < len; i++) dests[i].emit('unpipe', this, {\n      hasUnpiped: false\n    });\n    return this;\n  }\n\n  // try to find the right one.\n  var index = indexOf(state.pipes, dest);\n  if (index === -1) return this;\n  state.pipes.splice(index, 1);\n  state.pipesCount -= 1;\n  if (state.pipesCount === 1) state.pipes = state.pipes[0];\n  dest.emit('unpipe', this, unpipeInfo);\n  return this;\n};\n\n// set up data events if they are asked for\n// Ensure readable listeners eventually get something\nReadable.prototype.on = function (ev, fn) {\n  var res = Stream.prototype.on.call(this, ev, fn);\n  var state = this._readableState;\n  if (ev === 'data') {\n    // update readableListening so that resume() may be a no-op\n    // a few lines down. This is needed to support once('readable').\n    state.readableListening = this.listenerCount('readable') > 0;\n\n    // Try start flowing on next tick if stream isn't explicitly paused\n    if (state.flowing !== false) this.resume();\n  } else if (ev === 'readable') {\n    if (!state.endEmitted && !state.readableListening) {\n      state.readableListening = state.needReadable = true;\n      state.flowing = false;\n      state.emittedReadable = false;\n      debug('on readable', state.length, state.reading);\n      if (state.length) {\n        emitReadable(this);\n      } else if (!state.reading) {\n        process.nextTick(nReadingNextTick, this);\n      }\n    }\n  }\n  return res;\n};\nReadable.prototype.addListener = Readable.prototype.on;\nReadable.prototype.removeListener = function (ev, fn) {\n  var res = Stream.prototype.removeListener.call(this, ev, fn);\n  if (ev === 'readable') {\n    // We need to check if there is someone still listening to\n    // readable and reset the state. However this needs to happen\n    // after readable has been emitted but before I/O (nextTick) to\n    // support once('readable', fn) cycles. This means that calling\n    // resume within the same tick will have no\n    // effect.\n    process.nextTick(updateReadableListening, this);\n  }\n  return res;\n};\nReadable.prototype.removeAllListeners = function (ev) {\n  var res = Stream.prototype.removeAllListeners.apply(this, arguments);\n  if (ev === 'readable' || ev === undefined) {\n    // We need to check if there is someone still listening to\n    // readable and reset the state. However this needs to happen\n    // after readable has been emitted but before I/O (nextTick) to\n    // support once('readable', fn) cycles. This means that calling\n    // resume within the same tick will have no\n    // effect.\n    process.nextTick(updateReadableListening, this);\n  }\n  return res;\n};\nfunction updateReadableListening(self) {\n  var state = self._readableState;\n  state.readableListening = self.listenerCount('readable') > 0;\n  if (state.resumeScheduled && !state.paused) {\n    // flowing needs to be set to true now, otherwise\n    // the upcoming resume will not flow.\n    state.flowing = true;\n\n    // crude way to check if we should resume\n  } else if (self.listenerCount('data') > 0) {\n    self.resume();\n  }\n}\nfunction nReadingNextTick(self) {\n  debug('readable nexttick read 0');\n  self.read(0);\n}\n\n// pause() and resume() are remnants of the legacy readable stream API\n// If the user uses them, then switch into old mode.\nReadable.prototype.resume = function () {\n  var state = this._readableState;\n  if (!state.flowing) {\n    debug('resume');\n    // we flow only if there is no one listening\n    // for readable, but we still have to call\n    // resume()\n    state.flowing = !state.readableListening;\n    resume(this, state);\n  }\n  state.paused = false;\n  return this;\n};\nfunction resume(stream, state) {\n  if (!state.resumeScheduled) {\n    state.resumeScheduled = true;\n    process.nextTick(resume_, stream, state);\n  }\n}\nfunction resume_(stream, state) {\n  debug('resume', state.reading);\n  if (!state.reading) {\n    stream.read(0);\n  }\n  state.resumeScheduled = false;\n  stream.emit('resume');\n  flow(stream);\n  if (state.flowing && !state.reading) stream.read(0);\n}\nReadable.prototype.pause = function () {\n  debug('call pause flowing=%j', this._readableState.flowing);\n  if (this._readableState.flowing !== false) {\n    debug('pause');\n    this._readableState.flowing = false;\n    this.emit('pause');\n  }\n  this._readableState.paused = true;\n  return this;\n};\nfunction flow(stream) {\n  var state = stream._readableState;\n  debug('flow', state.flowing);\n  while (state.flowing && stream.read() !== null);\n}\n\n// wrap an old-style stream as the async data source.\n// This is *not* part of the readable stream interface.\n// It is an ugly unfortunate mess of history.\nReadable.prototype.wrap = function (stream) {\n  var _this = this;\n  var state = this._readableState;\n  var paused = false;\n  stream.on('end', function () {\n    debug('wrapped end');\n    if (state.decoder && !state.ended) {\n      var chunk = state.decoder.end();\n      if (chunk && chunk.length) _this.push(chunk);\n    }\n    _this.push(null);\n  });\n  stream.on('data', function (chunk) {\n    debug('wrapped data');\n    if (state.decoder) chunk = state.decoder.write(chunk);\n\n    // don't skip over falsy values in objectMode\n    if (state.objectMode && (chunk === null || chunk === undefined)) return;else if (!state.objectMode && (!chunk || !chunk.length)) return;\n    var ret = _this.push(chunk);\n    if (!ret) {\n      paused = true;\n      stream.pause();\n    }\n  });\n\n  // proxy all the other methods.\n  // important when wrapping filters and duplexes.\n  for (var i in stream) {\n    if (this[i] === undefined && typeof stream[i] === 'function') {\n      this[i] = function methodWrap(method) {\n        return function methodWrapReturnFunction() {\n          return stream[method].apply(stream, arguments);\n        };\n      }(i);\n    }\n  }\n\n  // proxy certain important events.\n  for (var n = 0; n < kProxyEvents.length; n++) {\n    stream.on(kProxyEvents[n], this.emit.bind(this, kProxyEvents[n]));\n  }\n\n  // when we try to consume some more bytes, simply unpause the\n  // underlying stream.\n  this._read = function (n) {\n    debug('wrapped _read', n);\n    if (paused) {\n      paused = false;\n      stream.resume();\n    }\n  };\n  return this;\n};\nif (typeof Symbol === 'function') {\n  Readable.prototype[Symbol.asyncIterator] = function () {\n    if (createReadableStreamAsyncIterator === undefined) {\n      createReadableStreamAsyncIterator = require('./internal/streams/async_iterator');\n    }\n    return createReadableStreamAsyncIterator(this);\n  };\n}\nObject.defineProperty(Readable.prototype, 'readableHighWaterMark', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._readableState.highWaterMark;\n  }\n});\nObject.defineProperty(Readable.prototype, 'readableBuffer', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._readableState && this._readableState.buffer;\n  }\n});\nObject.defineProperty(Readable.prototype, 'readableFlowing', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._readableState.flowing;\n  },\n  set: function set(state) {\n    if (this._readableState) {\n      this._readableState.flowing = state;\n    }\n  }\n});\n\n// exposed for testing purposes only.\nReadable._fromList = fromList;\nObject.defineProperty(Readable.prototype, 'readableLength', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._readableState.length;\n  }\n});\n\n// Pluck off n bytes from an array of buffers.\n// Length is the combined lengths of all the buffers in the list.\n// This function is designed to be inlinable, so please take care when making\n// changes to the function body.\nfunction fromList(n, state) {\n  // nothing buffered\n  if (state.length === 0) return null;\n  var ret;\n  if (state.objectMode) ret = state.buffer.shift();else if (!n || n >= state.length) {\n    // read it all, truncate the list\n    if (state.decoder) ret = state.buffer.join('');else if (state.buffer.length === 1) ret = state.buffer.first();else ret = state.buffer.concat(state.length);\n    state.buffer.clear();\n  } else {\n    // read part of list\n    ret = state.buffer.consume(n, state.decoder);\n  }\n  return ret;\n}\nfunction endReadable(stream) {\n  var state = stream._readableState;\n  debug('endReadable', state.endEmitted);\n  if (!state.endEmitted) {\n    state.ended = true;\n    process.nextTick(endReadableNT, state, stream);\n  }\n}\nfunction endReadableNT(state, stream) {\n  debug('endReadableNT', state.endEmitted, state.length);\n\n  // Check that we didn't get one last unshift.\n  if (!state.endEmitted && state.length === 0) {\n    state.endEmitted = true;\n    stream.readable = false;\n    stream.emit('end');\n    if (state.autoDestroy) {\n      // In case of duplex streams we need a way to detect\n      // if the writable side is ready for autoDestroy as well\n      var wState = stream._writableState;\n      if (!wState || wState.autoDestroy && wState.finished) {\n        stream.destroy();\n      }\n    }\n  }\n}\nif (typeof Symbol === 'function') {\n  Readable.from = function (iterable, opts) {\n    if (from === undefined) {\n      from = require('./internal/streams/from');\n    }\n    return from(Readable, iterable, opts);\n  };\n}\nfunction indexOf(xs, x) {\n  for (var i = 0, l = xs.length; i < l; i++) {\n    if (xs[i] === x) return i;\n  }\n  return -1;\n}","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// a transform stream is a readable/writable stream where you do\n// something with the data.  Sometimes it's called a \"filter\",\n// but that's not a great name for it, since that implies a thing where\n// some bits pass through, and others are simply ignored.  (That would\n// be a valid example of a transform, of course.)\n//\n// While the output is causally related to the input, it's not a\n// necessarily symmetric or synchronous transformation.  For example,\n// a zlib stream might take multiple plain-text writes(), and then\n// emit a single compressed chunk some time in the future.\n//\n// Here's how this works:\n//\n// The Transform stream has all the aspects of the readable and writable\n// stream classes.  When you write(chunk), that calls _write(chunk,cb)\n// internally, and returns false if there's a lot of pending writes\n// buffered up.  When you call read(), that calls _read(n) until\n// there's enough pending readable data buffered up.\n//\n// In a transform stream, the written data is placed in a buffer.  When\n// _read(n) is called, it transforms the queued up data, calling the\n// buffered _write cb's as it consumes chunks.  If consuming a single\n// written chunk would result in multiple output chunks, then the first\n// outputted bit calls the readcb, and subsequent chunks just go into\n// the read buffer, and will cause it to emit 'readable' if necessary.\n//\n// This way, back-pressure is actually determined by the reading side,\n// since _read has to be called to start processing a new chunk.  However,\n// a pathological inflate type of transform can cause excessive buffering\n// here.  For example, imagine a stream where every byte of input is\n// interpreted as an integer from 0-255, and then results in that many\n// bytes of output.  Writing the 4 bytes {ff,ff,ff,ff} would result in\n// 1kb of data being output.  In this case, you could write a very small\n// amount of input, and end up with a very large amount of output.  In\n// such a pathological inflating mechanism, there'd be no way to tell\n// the system to stop doing the transform.  A single 4MB write could\n// cause the system to run out of memory.\n//\n// However, even in such a pathological case, only a single written chunk\n// would be consumed, and then the rest would wait (un-transformed) until\n// the results of the previous transformed chunk were consumed.\n\n'use strict';\n\nmodule.exports = Transform;\nvar _require$codes = require('../errors').codes,\n  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,\n  ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,\n  ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING,\n  ERR_TRANSFORM_WITH_LENGTH_0 = _require$codes.ERR_TRANSFORM_WITH_LENGTH_0;\nvar Duplex = require('./_stream_duplex');\nrequire('inherits')(Transform, Duplex);\nfunction afterTransform(er, data) {\n  var ts = this._transformState;\n  ts.transforming = false;\n  var cb = ts.writecb;\n  if (cb === null) {\n    return this.emit('error', new ERR_MULTIPLE_CALLBACK());\n  }\n  ts.writechunk = null;\n  ts.writecb = null;\n  if (data != null)\n    // single equals check for both `null` and `undefined`\n    this.push(data);\n  cb(er);\n  var rs = this._readableState;\n  rs.reading = false;\n  if (rs.needReadable || rs.length < rs.highWaterMark) {\n    this._read(rs.highWaterMark);\n  }\n}\nfunction Transform(options) {\n  if (!(this instanceof Transform)) return new Transform(options);\n  Duplex.call(this, options);\n  this._transformState = {\n    afterTransform: afterTransform.bind(this),\n    needTransform: false,\n    transforming: false,\n    writecb: null,\n    writechunk: null,\n    writeencoding: null\n  };\n\n  // start out asking for a readable event once data is transformed.\n  this._readableState.needReadable = true;\n\n  // we have implemented the _read method, and done the other things\n  // that Readable wants before the first _read call, so unset the\n  // sync guard flag.\n  this._readableState.sync = false;\n  if (options) {\n    if (typeof options.transform === 'function') this._transform = options.transform;\n    if (typeof options.flush === 'function') this._flush = options.flush;\n  }\n\n  // When the writable side finishes, then flush out anything remaining.\n  this.on('prefinish', prefinish);\n}\nfunction prefinish() {\n  var _this = this;\n  if (typeof this._flush === 'function' && !this._readableState.destroyed) {\n    this._flush(function (er, data) {\n      done(_this, er, data);\n    });\n  } else {\n    done(this, null, null);\n  }\n}\nTransform.prototype.push = function (chunk, encoding) {\n  this._transformState.needTransform = false;\n  return Duplex.prototype.push.call(this, chunk, encoding);\n};\n\n// This is the part where you do stuff!\n// override this function in implementation classes.\n// 'chunk' is an input chunk.\n//\n// Call `push(newChunk)` to pass along transformed output\n// to the readable side.  You may call 'push' zero or more times.\n//\n// Call `cb(err)` when you are done with this chunk.  If you pass\n// an error, then that'll put the hurt on the whole operation.  If you\n// never call cb(), then you'll never get another chunk.\nTransform.prototype._transform = function (chunk, encoding, cb) {\n  cb(new ERR_METHOD_NOT_IMPLEMENTED('_transform()'));\n};\nTransform.prototype._write = function (chunk, encoding, cb) {\n  var ts = this._transformState;\n  ts.writecb = cb;\n  ts.writechunk = chunk;\n  ts.writeencoding = encoding;\n  if (!ts.transforming) {\n    var rs = this._readableState;\n    if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMark);\n  }\n};\n\n// Doesn't matter what the args are here.\n// _transform does all the work.\n// That we got here means that the readable side wants more data.\nTransform.prototype._read = function (n) {\n  var ts = this._transformState;\n  if (ts.writechunk !== null && !ts.transforming) {\n    ts.transforming = true;\n    this._transform(ts.writechunk, ts.writeencoding, ts.afterTransform);\n  } else {\n    // mark that we need a transform, so that any data that comes in\n    // will get processed, now that we've asked for it.\n    ts.needTransform = true;\n  }\n};\nTransform.prototype._destroy = function (err, cb) {\n  Duplex.prototype._destroy.call(this, err, function (err2) {\n    cb(err2);\n  });\n};\nfunction done(stream, er, data) {\n  if (er) return stream.emit('error', er);\n  if (data != null)\n    // single equals check for both `null` and `undefined`\n    stream.push(data);\n\n  // TODO(BridgeAR): Write a test for these two error cases\n  // if there's nothing in the write buffer, then that means\n  // that nothing more will ever be provided\n  if (stream._writableState.length) throw new ERR_TRANSFORM_WITH_LENGTH_0();\n  if (stream._transformState.transforming) throw new ERR_TRANSFORM_ALREADY_TRANSFORMING();\n  return stream.push(null);\n}","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// A bit simpler than readable streams.\n// Implement an async ._write(chunk, encoding, cb), and it'll handle all\n// the drain event emission and buffering.\n\n'use strict';\n\nmodule.exports = Writable;\n\n/* <replacement> */\nfunction WriteReq(chunk, encoding, cb) {\n  this.chunk = chunk;\n  this.encoding = encoding;\n  this.callback = cb;\n  this.next = null;\n}\n\n// It seems a linked list but it is not\n// there will be only 2 of these for each stream\nfunction CorkedRequest(state) {\n  var _this = this;\n  this.next = null;\n  this.entry = null;\n  this.finish = function () {\n    onCorkedFinish(_this, state);\n  };\n}\n/* </replacement> */\n\n/*<replacement>*/\nvar Duplex;\n/*</replacement>*/\n\nWritable.WritableState = WritableState;\n\n/*<replacement>*/\nvar internalUtil = {\n  deprecate: require('util-deprecate')\n};\n/*</replacement>*/\n\n/*<replacement>*/\nvar Stream = require('./internal/streams/stream');\n/*</replacement>*/\n\nvar Buffer = require('buffer').Buffer;\nvar OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};\nfunction _uint8ArrayToBuffer(chunk) {\n  return Buffer.from(chunk);\n}\nfunction _isUint8Array(obj) {\n  return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;\n}\nvar destroyImpl = require('./internal/streams/destroy');\nvar _require = require('./internal/streams/state'),\n  getHighWaterMark = _require.getHighWaterMark;\nvar _require$codes = require('../errors').codes,\n  ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,\n  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,\n  ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,\n  ERR_STREAM_CANNOT_PIPE = _require$codes.ERR_STREAM_CANNOT_PIPE,\n  ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED,\n  ERR_STREAM_NULL_VALUES = _require$codes.ERR_STREAM_NULL_VALUES,\n  ERR_STREAM_WRITE_AFTER_END = _require$codes.ERR_STREAM_WRITE_AFTER_END,\n  ERR_UNKNOWN_ENCODING = _require$codes.ERR_UNKNOWN_ENCODING;\nvar errorOrDestroy = destroyImpl.errorOrDestroy;\nrequire('inherits')(Writable, Stream);\nfunction nop() {}\nfunction WritableState(options, stream, isDuplex) {\n  Duplex = Duplex || require('./_stream_duplex');\n  options = options || {};\n\n  // Duplex streams are both readable and writable, but share\n  // the same options object.\n  // However, some cases require setting options to different\n  // values for the readable and the writable sides of the duplex stream,\n  // e.g. options.readableObjectMode vs. options.writableObjectMode, etc.\n  if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof Duplex;\n\n  // object stream flag to indicate whether or not this stream\n  // contains buffers or objects.\n  this.objectMode = !!options.objectMode;\n  if (isDuplex) this.objectMode = this.objectMode || !!options.writableObjectMode;\n\n  // the point at which write() starts returning false\n  // Note: 0 is a valid value, means that we always return false if\n  // the entire buffer is not flushed immediately on write()\n  this.highWaterMark = getHighWaterMark(this, options, 'writableHighWaterMark', isDuplex);\n\n  // if _final has been called\n  this.finalCalled = false;\n\n  // drain event flag.\n  this.needDrain = false;\n  // at the start of calling end()\n  this.ending = false;\n  // when end() has been called, and returned\n  this.ended = false;\n  // when 'finish' is emitted\n  this.finished = false;\n\n  // has it been destroyed\n  this.destroyed = false;\n\n  // should we decode strings into buffers before passing to _write?\n  // this is here so that some node-core streams can optimize string\n  // handling at a lower level.\n  var noDecode = options.decodeStrings === false;\n  this.decodeStrings = !noDecode;\n\n  // Crypto is kind of old and crusty.  Historically, its default string\n  // encoding is 'binary' so we have to make this configurable.\n  // Everything else in the universe uses 'utf8', though.\n  this.defaultEncoding = options.defaultEncoding || 'utf8';\n\n  // not an actual buffer we keep track of, but a measurement\n  // of how much we're waiting to get pushed to some underlying\n  // socket or file.\n  this.length = 0;\n\n  // a flag to see when we're in the middle of a write.\n  this.writing = false;\n\n  // when true all writes will be buffered until .uncork() call\n  this.corked = 0;\n\n  // a flag to be able to tell if the onwrite cb is called immediately,\n  // or on a later tick.  We set this to true at first, because any\n  // actions that shouldn't happen until \"later\" should generally also\n  // not happen before the first write call.\n  this.sync = true;\n\n  // a flag to know if we're processing previously buffered items, which\n  // may call the _write() callback in the same tick, so that we don't\n  // end up in an overlapped onwrite situation.\n  this.bufferProcessing = false;\n\n  // the callback that's passed to _write(chunk,cb)\n  this.onwrite = function (er) {\n    onwrite(stream, er);\n  };\n\n  // the callback that the user supplies to write(chunk,encoding,cb)\n  this.writecb = null;\n\n  // the amount that is being written when _write is called.\n  this.writelen = 0;\n  this.bufferedRequest = null;\n  this.lastBufferedRequest = null;\n\n  // number of pending user-supplied write callbacks\n  // this must be 0 before 'finish' can be emitted\n  this.pendingcb = 0;\n\n  // emit prefinish if the only thing we're waiting for is _write cbs\n  // This is relevant for synchronous Transform streams\n  this.prefinished = false;\n\n  // True if the error was already emitted and should not be thrown again\n  this.errorEmitted = false;\n\n  // Should close be emitted on destroy. Defaults to true.\n  this.emitClose = options.emitClose !== false;\n\n  // Should .destroy() be called after 'finish' (and potentially 'end')\n  this.autoDestroy = !!options.autoDestroy;\n\n  // count buffered requests\n  this.bufferedRequestCount = 0;\n\n  // allocate the first CorkedRequest, there is always\n  // one allocated and free to use, and we maintain at most two\n  this.corkedRequestsFree = new CorkedRequest(this);\n}\nWritableState.prototype.getBuffer = function getBuffer() {\n  var current = this.bufferedRequest;\n  var out = [];\n  while (current) {\n    out.push(current);\n    current = current.next;\n  }\n  return out;\n};\n(function () {\n  try {\n    Object.defineProperty(WritableState.prototype, 'buffer', {\n      get: internalUtil.deprecate(function writableStateBufferGetter() {\n        return this.getBuffer();\n      }, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.', 'DEP0003')\n    });\n  } catch (_) {}\n})();\n\n// Test _writableState for inheritance to account for Duplex streams,\n// whose prototype chain only points to Readable.\nvar realHasInstance;\nif (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.prototype[Symbol.hasInstance] === 'function') {\n  realHasInstance = Function.prototype[Symbol.hasInstance];\n  Object.defineProperty(Writable, Symbol.hasInstance, {\n    value: function value(object) {\n      if (realHasInstance.call(this, object)) return true;\n      if (this !== Writable) return false;\n      return object && object._writableState instanceof WritableState;\n    }\n  });\n} else {\n  realHasInstance = function realHasInstance(object) {\n    return object instanceof this;\n  };\n}\nfunction Writable(options) {\n  Duplex = Duplex || require('./_stream_duplex');\n\n  // Writable ctor is applied to Duplexes, too.\n  // `realHasInstance` is necessary because using plain `instanceof`\n  // would return false, as no `_writableState` property is attached.\n\n  // Trying to use the custom `instanceof` for Writable here will also break the\n  // Node.js LazyTransform implementation, which has a non-trivial getter for\n  // `_writableState` that would lead to infinite recursion.\n\n  // Checking for a Stream.Duplex instance is faster here instead of inside\n  // the WritableState constructor, at least with V8 6.5\n  var isDuplex = this instanceof Duplex;\n  if (!isDuplex && !realHasInstance.call(Writable, this)) return new Writable(options);\n  this._writableState = new WritableState(options, this, isDuplex);\n\n  // legacy.\n  this.writable = true;\n  if (options) {\n    if (typeof options.write === 'function') this._write = options.write;\n    if (typeof options.writev === 'function') this._writev = options.writev;\n    if (typeof options.destroy === 'function') this._destroy = options.destroy;\n    if (typeof options.final === 'function') this._final = options.final;\n  }\n  Stream.call(this);\n}\n\n// Otherwise people can pipe Writable streams, which is just wrong.\nWritable.prototype.pipe = function () {\n  errorOrDestroy(this, new ERR_STREAM_CANNOT_PIPE());\n};\nfunction writeAfterEnd(stream, cb) {\n  var er = new ERR_STREAM_WRITE_AFTER_END();\n  // TODO: defer error events consistently everywhere, not just the cb\n  errorOrDestroy(stream, er);\n  process.nextTick(cb, er);\n}\n\n// Checks that a user-supplied chunk is valid, especially for the particular\n// mode the stream is in. Currently this means that `null` is never accepted\n// and undefined/non-string values are only allowed in object mode.\nfunction validChunk(stream, state, chunk, cb) {\n  var er;\n  if (chunk === null) {\n    er = new ERR_STREAM_NULL_VALUES();\n  } else if (typeof chunk !== 'string' && !state.objectMode) {\n    er = new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer'], chunk);\n  }\n  if (er) {\n    errorOrDestroy(stream, er);\n    process.nextTick(cb, er);\n    return false;\n  }\n  return true;\n}\nWritable.prototype.write = function (chunk, encoding, cb) {\n  var state = this._writableState;\n  var ret = false;\n  var isBuf = !state.objectMode && _isUint8Array(chunk);\n  if (isBuf && !Buffer.isBuffer(chunk)) {\n    chunk = _uint8ArrayToBuffer(chunk);\n  }\n  if (typeof encoding === 'function') {\n    cb = encoding;\n    encoding = null;\n  }\n  if (isBuf) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding;\n  if (typeof cb !== 'function') cb = nop;\n  if (state.ending) writeAfterEnd(this, cb);else if (isBuf || validChunk(this, state, chunk, cb)) {\n    state.pendingcb++;\n    ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb);\n  }\n  return ret;\n};\nWritable.prototype.cork = function () {\n  this._writableState.corked++;\n};\nWritable.prototype.uncork = function () {\n  var state = this._writableState;\n  if (state.corked) {\n    state.corked--;\n    if (!state.writing && !state.corked && !state.bufferProcessing && state.bufferedRequest) clearBuffer(this, state);\n  }\n};\nWritable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) {\n  // node::ParseEncoding() requires lower case.\n  if (typeof encoding === 'string') encoding = encoding.toLowerCase();\n  if (!(['hex', 'utf8', 'utf-8', 'ascii', 'binary', 'base64', 'ucs2', 'ucs-2', 'utf16le', 'utf-16le', 'raw'].indexOf((encoding + '').toLowerCase()) > -1)) throw new ERR_UNKNOWN_ENCODING(encoding);\n  this._writableState.defaultEncoding = encoding;\n  return this;\n};\nObject.defineProperty(Writable.prototype, 'writableBuffer', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState && this._writableState.getBuffer();\n  }\n});\nfunction decodeChunk(state, chunk, encoding) {\n  if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') {\n    chunk = Buffer.from(chunk, encoding);\n  }\n  return chunk;\n}\nObject.defineProperty(Writable.prototype, 'writableHighWaterMark', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState.highWaterMark;\n  }\n});\n\n// if we're already writing something, then just put this\n// in the queue, and wait our turn.  Otherwise, call _write\n// If we return false, then we need a drain event, so set that flag.\nfunction writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) {\n  if (!isBuf) {\n    var newChunk = decodeChunk(state, chunk, encoding);\n    if (chunk !== newChunk) {\n      isBuf = true;\n      encoding = 'buffer';\n      chunk = newChunk;\n    }\n  }\n  var len = state.objectMode ? 1 : chunk.length;\n  state.length += len;\n  var ret = state.length < state.highWaterMark;\n  // we must ensure that previous needDrain will not be reset to false.\n  if (!ret) state.needDrain = true;\n  if (state.writing || state.corked) {\n    var last = state.lastBufferedRequest;\n    state.lastBufferedRequest = {\n      chunk: chunk,\n      encoding: encoding,\n      isBuf: isBuf,\n      callback: cb,\n      next: null\n    };\n    if (last) {\n      last.next = state.lastBufferedRequest;\n    } else {\n      state.bufferedRequest = state.lastBufferedRequest;\n    }\n    state.bufferedRequestCount += 1;\n  } else {\n    doWrite(stream, state, false, len, chunk, encoding, cb);\n  }\n  return ret;\n}\nfunction doWrite(stream, state, writev, len, chunk, encoding, cb) {\n  state.writelen = len;\n  state.writecb = cb;\n  state.writing = true;\n  state.sync = true;\n  if (state.destroyed) state.onwrite(new ERR_STREAM_DESTROYED('write'));else if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite);\n  state.sync = false;\n}\nfunction onwriteError(stream, state, sync, er, cb) {\n  --state.pendingcb;\n  if (sync) {\n    // defer the callback if we are being called synchronously\n    // to avoid piling up things on the stack\n    process.nextTick(cb, er);\n    // this can emit finish, and it will always happen\n    // after error\n    process.nextTick(finishMaybe, stream, state);\n    stream._writableState.errorEmitted = true;\n    errorOrDestroy(stream, er);\n  } else {\n    // the caller expect this to happen before if\n    // it is async\n    cb(er);\n    stream._writableState.errorEmitted = true;\n    errorOrDestroy(stream, er);\n    // this can emit finish, but finish must\n    // always follow error\n    finishMaybe(stream, state);\n  }\n}\nfunction onwriteStateUpdate(state) {\n  state.writing = false;\n  state.writecb = null;\n  state.length -= state.writelen;\n  state.writelen = 0;\n}\nfunction onwrite(stream, er) {\n  var state = stream._writableState;\n  var sync = state.sync;\n  var cb = state.writecb;\n  if (typeof cb !== 'function') throw new ERR_MULTIPLE_CALLBACK();\n  onwriteStateUpdate(state);\n  if (er) onwriteError(stream, state, sync, er, cb);else {\n    // Check if we're actually ready to finish, but don't emit yet\n    var finished = needFinish(state) || stream.destroyed;\n    if (!finished && !state.corked && !state.bufferProcessing && state.bufferedRequest) {\n      clearBuffer(stream, state);\n    }\n    if (sync) {\n      process.nextTick(afterWrite, stream, state, finished, cb);\n    } else {\n      afterWrite(stream, state, finished, cb);\n    }\n  }\n}\nfunction afterWrite(stream, state, finished, cb) {\n  if (!finished) onwriteDrain(stream, state);\n  state.pendingcb--;\n  cb();\n  finishMaybe(stream, state);\n}\n\n// Must force callback to be called on nextTick, so that we don't\n// emit 'drain' before the write() consumer gets the 'false' return\n// value, and has a chance to attach a 'drain' listener.\nfunction onwriteDrain(stream, state) {\n  if (state.length === 0 && state.needDrain) {\n    state.needDrain = false;\n    stream.emit('drain');\n  }\n}\n\n// if there's something in the buffer waiting, then process it\nfunction clearBuffer(stream, state) {\n  state.bufferProcessing = true;\n  var entry = state.bufferedRequest;\n  if (stream._writev && entry && entry.next) {\n    // Fast case, write everything using _writev()\n    var l = state.bufferedRequestCount;\n    var buffer = new Array(l);\n    var holder = state.corkedRequestsFree;\n    holder.entry = entry;\n    var count = 0;\n    var allBuffers = true;\n    while (entry) {\n      buffer[count] = entry;\n      if (!entry.isBuf) allBuffers = false;\n      entry = entry.next;\n      count += 1;\n    }\n    buffer.allBuffers = allBuffers;\n    doWrite(stream, state, true, state.length, buffer, '', holder.finish);\n\n    // doWrite is almost always async, defer these to save a bit of time\n    // as the hot path ends with doWrite\n    state.pendingcb++;\n    state.lastBufferedRequest = null;\n    if (holder.next) {\n      state.corkedRequestsFree = holder.next;\n      holder.next = null;\n    } else {\n      state.corkedRequestsFree = new CorkedRequest(state);\n    }\n    state.bufferedRequestCount = 0;\n  } else {\n    // Slow case, write chunks one-by-one\n    while (entry) {\n      var chunk = entry.chunk;\n      var encoding = entry.encoding;\n      var cb = entry.callback;\n      var len = state.objectMode ? 1 : chunk.length;\n      doWrite(stream, state, false, len, chunk, encoding, cb);\n      entry = entry.next;\n      state.bufferedRequestCount--;\n      // if we didn't call the onwrite immediately, then\n      // it means that we need to wait until it does.\n      // also, that means that the chunk and cb are currently\n      // being processed, so move the buffer counter past them.\n      if (state.writing) {\n        break;\n      }\n    }\n    if (entry === null) state.lastBufferedRequest = null;\n  }\n  state.bufferedRequest = entry;\n  state.bufferProcessing = false;\n}\nWritable.prototype._write = function (chunk, encoding, cb) {\n  cb(new ERR_METHOD_NOT_IMPLEMENTED('_write()'));\n};\nWritable.prototype._writev = null;\nWritable.prototype.end = function (chunk, encoding, cb) {\n  var state = this._writableState;\n  if (typeof chunk === 'function') {\n    cb = chunk;\n    chunk = null;\n    encoding = null;\n  } else if (typeof encoding === 'function') {\n    cb = encoding;\n    encoding = null;\n  }\n  if (chunk !== null && chunk !== undefined) this.write(chunk, encoding);\n\n  // .end() fully uncorks\n  if (state.corked) {\n    state.corked = 1;\n    this.uncork();\n  }\n\n  // ignore unnecessary end() calls.\n  if (!state.ending) endWritable(this, state, cb);\n  return this;\n};\nObject.defineProperty(Writable.prototype, 'writableLength', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    return this._writableState.length;\n  }\n});\nfunction needFinish(state) {\n  return state.ending && state.length === 0 && state.bufferedRequest === null && !state.finished && !state.writing;\n}\nfunction callFinal(stream, state) {\n  stream._final(function (err) {\n    state.pendingcb--;\n    if (err) {\n      errorOrDestroy(stream, err);\n    }\n    state.prefinished = true;\n    stream.emit('prefinish');\n    finishMaybe(stream, state);\n  });\n}\nfunction prefinish(stream, state) {\n  if (!state.prefinished && !state.finalCalled) {\n    if (typeof stream._final === 'function' && !state.destroyed) {\n      state.pendingcb++;\n      state.finalCalled = true;\n      process.nextTick(callFinal, stream, state);\n    } else {\n      state.prefinished = true;\n      stream.emit('prefinish');\n    }\n  }\n}\nfunction finishMaybe(stream, state) {\n  var need = needFinish(state);\n  if (need) {\n    prefinish(stream, state);\n    if (state.pendingcb === 0) {\n      state.finished = true;\n      stream.emit('finish');\n      if (state.autoDestroy) {\n        // In case of duplex streams we need a way to detect\n        // if the readable side is ready for autoDestroy as well\n        var rState = stream._readableState;\n        if (!rState || rState.autoDestroy && rState.endEmitted) {\n          stream.destroy();\n        }\n      }\n    }\n  }\n  return need;\n}\nfunction endWritable(stream, state, cb) {\n  state.ending = true;\n  finishMaybe(stream, state);\n  if (cb) {\n    if (state.finished) process.nextTick(cb);else stream.once('finish', cb);\n  }\n  state.ended = true;\n  stream.writable = false;\n}\nfunction onCorkedFinish(corkReq, state, err) {\n  var entry = corkReq.entry;\n  corkReq.entry = null;\n  while (entry) {\n    var cb = entry.callback;\n    state.pendingcb--;\n    cb(err);\n    entry = entry.next;\n  }\n\n  // reuse the free corkReq.\n  state.corkedRequestsFree.next = corkReq;\n}\nObject.defineProperty(Writable.prototype, 'destroyed', {\n  // making it explicit this property is not enumerable\n  // because otherwise some prototype manipulation in\n  // userland will fail\n  enumerable: false,\n  get: function get() {\n    if (this._writableState === undefined) {\n      return false;\n    }\n    return this._writableState.destroyed;\n  },\n  set: function set(value) {\n    // we ignore the value if the stream\n    // has not been initialized yet\n    if (!this._writableState) {\n      return;\n    }\n\n    // backward compatibility, the user is explicitly\n    // managing destroyed\n    this._writableState.destroyed = value;\n  }\n});\nWritable.prototype.destroy = destroyImpl.destroy;\nWritable.prototype._undestroy = destroyImpl.undestroy;\nWritable.prototype._destroy = function (err, cb) {\n  cb(err);\n};","'use strict';\n\nvar _Object$setPrototypeO;\nfunction _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\nfunction _toPropertyKey(arg) { var key = _toPrimitive(arg, \"string\"); return typeof key === \"symbol\" ? key : String(key); }\nfunction _toPrimitive(input, hint) { if (typeof input !== \"object\" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || \"default\"); if (typeof res !== \"object\") return res; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (hint === \"string\" ? String : Number)(input); }\nvar finished = require('./end-of-stream');\nvar kLastResolve = Symbol('lastResolve');\nvar kLastReject = Symbol('lastReject');\nvar kError = Symbol('error');\nvar kEnded = Symbol('ended');\nvar kLastPromise = Symbol('lastPromise');\nvar kHandlePromise = Symbol('handlePromise');\nvar kStream = Symbol('stream');\nfunction createIterResult(value, done) {\n  return {\n    value: value,\n    done: done\n  };\n}\nfunction readAndResolve(iter) {\n  var resolve = iter[kLastResolve];\n  if (resolve !== null) {\n    var data = iter[kStream].read();\n    // we defer if data is null\n    // we can be expecting either 'end' or\n    // 'error'\n    if (data !== null) {\n      iter[kLastPromise] = null;\n      iter[kLastResolve] = null;\n      iter[kLastReject] = null;\n      resolve(createIterResult(data, false));\n    }\n  }\n}\nfunction onReadable(iter) {\n  // we wait for the next tick, because it might\n  // emit an error with process.nextTick\n  process.nextTick(readAndResolve, iter);\n}\nfunction wrapForNext(lastPromise, iter) {\n  return function (resolve, reject) {\n    lastPromise.then(function () {\n      if (iter[kEnded]) {\n        resolve(createIterResult(undefined, true));\n        return;\n      }\n      iter[kHandlePromise](resolve, reject);\n    }, reject);\n  };\n}\nvar AsyncIteratorPrototype = Object.getPrototypeOf(function () {});\nvar ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf((_Object$setPrototypeO = {\n  get stream() {\n    return this[kStream];\n  },\n  next: function next() {\n    var _this = this;\n    // if we have detected an error in the meanwhile\n    // reject straight away\n    var error = this[kError];\n    if (error !== null) {\n      return Promise.reject(error);\n    }\n    if (this[kEnded]) {\n      return Promise.resolve(createIterResult(undefined, true));\n    }\n    if (this[kStream].destroyed) {\n      // We need to defer via nextTick because if .destroy(err) is\n      // called, the error will be emitted via nextTick, and\n      // we cannot guarantee that there is no error lingering around\n      // waiting to be emitted.\n      return new Promise(function (resolve, reject) {\n        process.nextTick(function () {\n          if (_this[kError]) {\n            reject(_this[kError]);\n          } else {\n            resolve(createIterResult(undefined, true));\n          }\n        });\n      });\n    }\n\n    // if we have multiple next() calls\n    // we will wait for the previous Promise to finish\n    // this logic is optimized to support for await loops,\n    // where next() is only called once at a time\n    var lastPromise = this[kLastPromise];\n    var promise;\n    if (lastPromise) {\n      promise = new Promise(wrapForNext(lastPromise, this));\n    } else {\n      // fast path needed to support multiple this.push()\n      // without triggering the next() queue\n      var data = this[kStream].read();\n      if (data !== null) {\n        return Promise.resolve(createIterResult(data, false));\n      }\n      promise = new Promise(this[kHandlePromise]);\n    }\n    this[kLastPromise] = promise;\n    return promise;\n  }\n}, _defineProperty(_Object$setPrototypeO, Symbol.asyncIterator, function () {\n  return this;\n}), _defineProperty(_Object$setPrototypeO, \"return\", function _return() {\n  var _this2 = this;\n  // destroy(err, cb) is a private API\n  // we can guarantee we have that here, because we control the\n  // Readable class this is attached to\n  return new Promise(function (resolve, reject) {\n    _this2[kStream].destroy(null, function (err) {\n      if (err) {\n        reject(err);\n        return;\n      }\n      resolve(createIterResult(undefined, true));\n    });\n  });\n}), _Object$setPrototypeO), AsyncIteratorPrototype);\nvar createReadableStreamAsyncIterator = function createReadableStreamAsyncIterator(stream) {\n  var _Object$create;\n  var iterator = Object.create(ReadableStreamAsyncIteratorPrototype, (_Object$create = {}, _defineProperty(_Object$create, kStream, {\n    value: stream,\n    writable: true\n  }), _defineProperty(_Object$create, kLastResolve, {\n    value: null,\n    writable: true\n  }), _defineProperty(_Object$create, kLastReject, {\n    value: null,\n    writable: true\n  }), _defineProperty(_Object$create, kError, {\n    value: null,\n    writable: true\n  }), _defineProperty(_Object$create, kEnded, {\n    value: stream._readableState.endEmitted,\n    writable: true\n  }), _defineProperty(_Object$create, kHandlePromise, {\n    value: function value(resolve, reject) {\n      var data = iterator[kStream].read();\n      if (data) {\n        iterator[kLastPromise] = null;\n        iterator[kLastResolve] = null;\n        iterator[kLastReject] = null;\n        resolve(createIterResult(data, false));\n      } else {\n        iterator[kLastResolve] = resolve;\n        iterator[kLastReject] = reject;\n      }\n    },\n    writable: true\n  }), _Object$create));\n  iterator[kLastPromise] = null;\n  finished(stream, function (err) {\n    if (err && err.code !== 'ERR_STREAM_PREMATURE_CLOSE') {\n      var reject = iterator[kLastReject];\n      // reject if we are waiting for data in the Promise\n      // returned by next() and store the error\n      if (reject !== null) {\n        iterator[kLastPromise] = null;\n        iterator[kLastResolve] = null;\n        iterator[kLastReject] = null;\n        reject(err);\n      }\n      iterator[kError] = err;\n      return;\n    }\n    var resolve = iterator[kLastResolve];\n    if (resolve !== null) {\n      iterator[kLastPromise] = null;\n      iterator[kLastResolve] = null;\n      iterator[kLastReject] = null;\n      resolve(createIterResult(undefined, true));\n    }\n    iterator[kEnded] = true;\n  });\n  stream.on('readable', onReadable.bind(null, iterator));\n  return iterator;\n};\nmodule.exports = createReadableStreamAsyncIterator;","'use strict';\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\nfunction _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\nfunction _toPropertyKey(arg) { var key = _toPrimitive(arg, \"string\"); return typeof key === \"symbol\" ? key : String(key); }\nfunction _toPrimitive(input, hint) { if (typeof input !== \"object\" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || \"default\"); if (typeof res !== \"object\") return res; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (hint === \"string\" ? String : Number)(input); }\nvar _require = require('buffer'),\n  Buffer = _require.Buffer;\nvar _require2 = require('util'),\n  inspect = _require2.inspect;\nvar custom = inspect && inspect.custom || 'inspect';\nfunction copyBuffer(src, target, offset) {\n  Buffer.prototype.copy.call(src, target, offset);\n}\nmodule.exports = /*#__PURE__*/function () {\n  function BufferList() {\n    _classCallCheck(this, BufferList);\n    this.head = null;\n    this.tail = null;\n    this.length = 0;\n  }\n  _createClass(BufferList, [{\n    key: \"push\",\n    value: function push(v) {\n      var entry = {\n        data: v,\n        next: null\n      };\n      if (this.length > 0) this.tail.next = entry;else this.head = entry;\n      this.tail = entry;\n      ++this.length;\n    }\n  }, {\n    key: \"unshift\",\n    value: function unshift(v) {\n      var entry = {\n        data: v,\n        next: this.head\n      };\n      if (this.length === 0) this.tail = entry;\n      this.head = entry;\n      ++this.length;\n    }\n  }, {\n    key: \"shift\",\n    value: function shift() {\n      if (this.length === 0) return;\n      var ret = this.head.data;\n      if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next;\n      --this.length;\n      return ret;\n    }\n  }, {\n    key: \"clear\",\n    value: function clear() {\n      this.head = this.tail = null;\n      this.length = 0;\n    }\n  }, {\n    key: \"join\",\n    value: function join(s) {\n      if (this.length === 0) return '';\n      var p = this.head;\n      var ret = '' + p.data;\n      while (p = p.next) ret += s + p.data;\n      return ret;\n    }\n  }, {\n    key: \"concat\",\n    value: function concat(n) {\n      if (this.length === 0) return Buffer.alloc(0);\n      var ret = Buffer.allocUnsafe(n >>> 0);\n      var p = this.head;\n      var i = 0;\n      while (p) {\n        copyBuffer(p.data, ret, i);\n        i += p.data.length;\n        p = p.next;\n      }\n      return ret;\n    }\n\n    // Consumes a specified amount of bytes or characters from the buffered data.\n  }, {\n    key: \"consume\",\n    value: function consume(n, hasStrings) {\n      var ret;\n      if (n < this.head.data.length) {\n        // `slice` is the same for buffers and strings.\n        ret = this.head.data.slice(0, n);\n        this.head.data = this.head.data.slice(n);\n      } else if (n === this.head.data.length) {\n        // First chunk is a perfect match.\n        ret = this.shift();\n      } else {\n        // Result spans more than one buffer.\n        ret = hasStrings ? this._getString(n) : this._getBuffer(n);\n      }\n      return ret;\n    }\n  }, {\n    key: \"first\",\n    value: function first() {\n      return this.head.data;\n    }\n\n    // Consumes a specified amount of characters from the buffered data.\n  }, {\n    key: \"_getString\",\n    value: function _getString(n) {\n      var p = this.head;\n      var c = 1;\n      var ret = p.data;\n      n -= ret.length;\n      while (p = p.next) {\n        var str = p.data;\n        var nb = n > str.length ? str.length : n;\n        if (nb === str.length) ret += str;else ret += str.slice(0, n);\n        n -= nb;\n        if (n === 0) {\n          if (nb === str.length) {\n            ++c;\n            if (p.next) this.head = p.next;else this.head = this.tail = null;\n          } else {\n            this.head = p;\n            p.data = str.slice(nb);\n          }\n          break;\n        }\n        ++c;\n      }\n      this.length -= c;\n      return ret;\n    }\n\n    // Consumes a specified amount of bytes from the buffered data.\n  }, {\n    key: \"_getBuffer\",\n    value: function _getBuffer(n) {\n      var ret = Buffer.allocUnsafe(n);\n      var p = this.head;\n      var c = 1;\n      p.data.copy(ret);\n      n -= p.data.length;\n      while (p = p.next) {\n        var buf = p.data;\n        var nb = n > buf.length ? buf.length : n;\n        buf.copy(ret, ret.length - n, 0, nb);\n        n -= nb;\n        if (n === 0) {\n          if (nb === buf.length) {\n            ++c;\n            if (p.next) this.head = p.next;else this.head = this.tail = null;\n          } else {\n            this.head = p;\n            p.data = buf.slice(nb);\n          }\n          break;\n        }\n        ++c;\n      }\n      this.length -= c;\n      return ret;\n    }\n\n    // Make sure the linked list only shows the minimal necessary information.\n  }, {\n    key: custom,\n    value: function value(_, options) {\n      return inspect(this, _objectSpread(_objectSpread({}, options), {}, {\n        // Only inspect one level.\n        depth: 0,\n        // It should not recurse.\n        customInspect: false\n      }));\n    }\n  }]);\n  return BufferList;\n}();","'use strict';\n\n// undocumented cb() API, needed for core, not for public API\nfunction destroy(err, cb) {\n  var _this = this;\n  var readableDestroyed = this._readableState && this._readableState.destroyed;\n  var writableDestroyed = this._writableState && this._writableState.destroyed;\n  if (readableDestroyed || writableDestroyed) {\n    if (cb) {\n      cb(err);\n    } else if (err) {\n      if (!this._writableState) {\n        process.nextTick(emitErrorNT, this, err);\n      } else if (!this._writableState.errorEmitted) {\n        this._writableState.errorEmitted = true;\n        process.nextTick(emitErrorNT, this, err);\n      }\n    }\n    return this;\n  }\n\n  // we set destroyed to true before firing error callbacks in order\n  // to make it re-entrance safe in case destroy() is called within callbacks\n\n  if (this._readableState) {\n    this._readableState.destroyed = true;\n  }\n\n  // if this is a duplex stream mark the writable part as destroyed as well\n  if (this._writableState) {\n    this._writableState.destroyed = true;\n  }\n  this._destroy(err || null, function (err) {\n    if (!cb && err) {\n      if (!_this._writableState) {\n        process.nextTick(emitErrorAndCloseNT, _this, err);\n      } else if (!_this._writableState.errorEmitted) {\n        _this._writableState.errorEmitted = true;\n        process.nextTick(emitErrorAndCloseNT, _this, err);\n      } else {\n        process.nextTick(emitCloseNT, _this);\n      }\n    } else if (cb) {\n      process.nextTick(emitCloseNT, _this);\n      cb(err);\n    } else {\n      process.nextTick(emitCloseNT, _this);\n    }\n  });\n  return this;\n}\nfunction emitErrorAndCloseNT(self, err) {\n  emitErrorNT(self, err);\n  emitCloseNT(self);\n}\nfunction emitCloseNT(self) {\n  if (self._writableState && !self._writableState.emitClose) return;\n  if (self._readableState && !self._readableState.emitClose) return;\n  self.emit('close');\n}\nfunction undestroy() {\n  if (this._readableState) {\n    this._readableState.destroyed = false;\n    this._readableState.reading = false;\n    this._readableState.ended = false;\n    this._readableState.endEmitted = false;\n  }\n  if (this._writableState) {\n    this._writableState.destroyed = false;\n    this._writableState.ended = false;\n    this._writableState.ending = false;\n    this._writableState.finalCalled = false;\n    this._writableState.prefinished = false;\n    this._writableState.finished = false;\n    this._writableState.errorEmitted = false;\n  }\n}\nfunction emitErrorNT(self, err) {\n  self.emit('error', err);\n}\nfunction errorOrDestroy(stream, err) {\n  // We have tests that rely on errors being emitted\n  // in the same tick, so changing this is semver major.\n  // For now when you opt-in to autoDestroy we allow\n  // the error to be emitted nextTick. In a future\n  // semver major update we should change the default to this.\n\n  var rState = stream._readableState;\n  var wState = stream._writableState;\n  if (rState && rState.autoDestroy || wState && wState.autoDestroy) stream.destroy(err);else stream.emit('error', err);\n}\nmodule.exports = {\n  destroy: destroy,\n  undestroy: undestroy,\n  errorOrDestroy: errorOrDestroy\n};","// Ported from https://github.com/mafintosh/end-of-stream with\n// permission from the author, Mathias Buus (@mafintosh).\n\n'use strict';\n\nvar ERR_STREAM_PREMATURE_CLOSE = require('../../../errors').codes.ERR_STREAM_PREMATURE_CLOSE;\nfunction once(callback) {\n  var called = false;\n  return function () {\n    if (called) return;\n    called = true;\n    for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n      args[_key] = arguments[_key];\n    }\n    callback.apply(this, args);\n  };\n}\nfunction noop() {}\nfunction isRequest(stream) {\n  return stream.setHeader && typeof stream.abort === 'function';\n}\nfunction eos(stream, opts, callback) {\n  if (typeof opts === 'function') return eos(stream, null, opts);\n  if (!opts) opts = {};\n  callback = once(callback || noop);\n  var readable = opts.readable || opts.readable !== false && stream.readable;\n  var writable = opts.writable || opts.writable !== false && stream.writable;\n  var onlegacyfinish = function onlegacyfinish() {\n    if (!stream.writable) onfinish();\n  };\n  var writableEnded = stream._writableState && stream._writableState.finished;\n  var onfinish = function onfinish() {\n    writable = false;\n    writableEnded = true;\n    if (!readable) callback.call(stream);\n  };\n  var readableEnded = stream._readableState && stream._readableState.endEmitted;\n  var onend = function onend() {\n    readable = false;\n    readableEnded = true;\n    if (!writable) callback.call(stream);\n  };\n  var onerror = function onerror(err) {\n    callback.call(stream, err);\n  };\n  var onclose = function onclose() {\n    var err;\n    if (readable && !readableEnded) {\n      if (!stream._readableState || !stream._readableState.ended) err = new ERR_STREAM_PREMATURE_CLOSE();\n      return callback.call(stream, err);\n    }\n    if (writable && !writableEnded) {\n      if (!stream._writableState || !stream._writableState.ended) err = new ERR_STREAM_PREMATURE_CLOSE();\n      return callback.call(stream, err);\n    }\n  };\n  var onrequest = function onrequest() {\n    stream.req.on('finish', onfinish);\n  };\n  if (isRequest(stream)) {\n    stream.on('complete', onfinish);\n    stream.on('abort', onclose);\n    if (stream.req) onrequest();else stream.on('request', onrequest);\n  } else if (writable && !stream._writableState) {\n    // legacy streams\n    stream.on('end', onlegacyfinish);\n    stream.on('close', onlegacyfinish);\n  }\n  stream.on('end', onend);\n  stream.on('finish', onfinish);\n  if (opts.error !== false) stream.on('error', onerror);\n  stream.on('close', onclose);\n  return function () {\n    stream.removeListener('complete', onfinish);\n    stream.removeListener('abort', onclose);\n    stream.removeListener('request', onrequest);\n    if (stream.req) stream.req.removeListener('finish', onfinish);\n    stream.removeListener('end', onlegacyfinish);\n    stream.removeListener('close', onlegacyfinish);\n    stream.removeListener('finish', onfinish);\n    stream.removeListener('end', onend);\n    stream.removeListener('error', onerror);\n    stream.removeListener('close', onclose);\n  };\n}\nmodule.exports = eos;","module.exports = function () {\n  throw new Error('Readable.from is not available in the browser')\n};\n","// Ported from https://github.com/mafintosh/pump with\n// permission from the author, Mathias Buus (@mafintosh).\n\n'use strict';\n\nvar eos;\nfunction once(callback) {\n  var called = false;\n  return function () {\n    if (called) return;\n    called = true;\n    callback.apply(void 0, arguments);\n  };\n}\nvar _require$codes = require('../../../errors').codes,\n  ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS,\n  ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED;\nfunction noop(err) {\n  // Rethrow the error if it exists to avoid swallowing it\n  if (err) throw err;\n}\nfunction isRequest(stream) {\n  return stream.setHeader && typeof stream.abort === 'function';\n}\nfunction destroyer(stream, reading, writing, callback) {\n  callback = once(callback);\n  var closed = false;\n  stream.on('close', function () {\n    closed = true;\n  });\n  if (eos === undefined) eos = require('./end-of-stream');\n  eos(stream, {\n    readable: reading,\n    writable: writing\n  }, function (err) {\n    if (err) return callback(err);\n    closed = true;\n    callback();\n  });\n  var destroyed = false;\n  return function (err) {\n    if (closed) return;\n    if (destroyed) return;\n    destroyed = true;\n\n    // request.destroy just do .end - .abort is what we want\n    if (isRequest(stream)) return stream.abort();\n    if (typeof stream.destroy === 'function') return stream.destroy();\n    callback(err || new ERR_STREAM_DESTROYED('pipe'));\n  };\n}\nfunction call(fn) {\n  fn();\n}\nfunction pipe(from, to) {\n  return from.pipe(to);\n}\nfunction popCallback(streams) {\n  if (!streams.length) return noop;\n  if (typeof streams[streams.length - 1] !== 'function') return noop;\n  return streams.pop();\n}\nfunction pipeline() {\n  for (var _len = arguments.length, streams = new Array(_len), _key = 0; _key < _len; _key++) {\n    streams[_key] = arguments[_key];\n  }\n  var callback = popCallback(streams);\n  if (Array.isArray(streams[0])) streams = streams[0];\n  if (streams.length < 2) {\n    throw new ERR_MISSING_ARGS('streams');\n  }\n  var error;\n  var destroys = streams.map(function (stream, i) {\n    var reading = i < streams.length - 1;\n    var writing = i > 0;\n    return destroyer(stream, reading, writing, function (err) {\n      if (!error) error = err;\n      if (err) destroys.forEach(call);\n      if (reading) return;\n      destroys.forEach(call);\n      callback(error);\n    });\n  });\n  return streams.reduce(pipe);\n}\nmodule.exports = pipeline;","'use strict';\n\nvar ERR_INVALID_OPT_VALUE = require('../../../errors').codes.ERR_INVALID_OPT_VALUE;\nfunction highWaterMarkFrom(options, isDuplex, duplexKey) {\n  return options.highWaterMark != null ? options.highWaterMark : isDuplex ? options[duplexKey] : null;\n}\nfunction getHighWaterMark(state, options, duplexKey, isDuplex) {\n  var hwm = highWaterMarkFrom(options, isDuplex, duplexKey);\n  if (hwm != null) {\n    if (!(isFinite(hwm) && Math.floor(hwm) === hwm) || hwm < 0) {\n      var name = isDuplex ? duplexKey : 'highWaterMark';\n      throw new ERR_INVALID_OPT_VALUE(name, hwm);\n    }\n    return Math.floor(hwm);\n  }\n\n  // Default value\n  return state.objectMode ? 16 : 16 * 1024;\n}\nmodule.exports = {\n  getHighWaterMark: getHighWaterMark\n};","module.exports = require('events').EventEmitter;\n","/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */\n/* eslint-disable node/no-deprecated-api */\nvar buffer = require('buffer')\nvar Buffer = buffer.Buffer\n\n// alternative to using Object.keys for old browsers\nfunction copyProps (src, dst) {\n  for (var key in src) {\n    dst[key] = src[key]\n  }\n}\nif (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {\n  module.exports = buffer\n} else {\n  // Copy properties from require('buffer')\n  copyProps(buffer, exports)\n  exports.Buffer = SafeBuffer\n}\n\nfunction SafeBuffer (arg, encodingOrOffset, length) {\n  return Buffer(arg, encodingOrOffset, length)\n}\n\nSafeBuffer.prototype = Object.create(Buffer.prototype)\n\n// Copy static methods from Buffer\ncopyProps(Buffer, SafeBuffer)\n\nSafeBuffer.from = function (arg, encodingOrOffset, length) {\n  if (typeof arg === 'number') {\n    throw new TypeError('Argument must not be a number')\n  }\n  return Buffer(arg, encodingOrOffset, length)\n}\n\nSafeBuffer.alloc = function (size, fill, encoding) {\n  if (typeof size !== 'number') {\n    throw new TypeError('Argument must be a number')\n  }\n  var buf = Buffer(size)\n  if (fill !== undefined) {\n    if (typeof encoding === 'string') {\n      buf.fill(fill, encoding)\n    } else {\n      buf.fill(fill)\n    }\n  } else {\n    buf.fill(0)\n  }\n  return buf\n}\n\nSafeBuffer.allocUnsafe = function (size) {\n  if (typeof size !== 'number') {\n    throw new TypeError('Argument must be a number')\n  }\n  return Buffer(size)\n}\n\nSafeBuffer.allocUnsafeSlow = function (size) {\n  if (typeof size !== 'number') {\n    throw new TypeError('Argument must be a number')\n  }\n  return buffer.SlowBuffer(size)\n}\n",";(function (sax) { // wrapper for non-node envs\n  sax.parser = function (strict, opt) { return new SAXParser(strict, opt) }\n  sax.SAXParser = SAXParser\n  sax.SAXStream = SAXStream\n  sax.createStream = createStream\n\n  // When we pass the MAX_BUFFER_LENGTH position, start checking for buffer overruns.\n  // When we check, schedule the next check for MAX_BUFFER_LENGTH - (max(buffer lengths)),\n  // since that's the earliest that a buffer overrun could occur.  This way, checks are\n  // as rare as required, but as often as necessary to ensure never crossing this bound.\n  // Furthermore, buffers are only tested at most once per write(), so passing a very\n  // large string into write() might have undesirable effects, but this is manageable by\n  // the caller, so it is assumed to be safe.  Thus, a call to write() may, in the extreme\n  // edge case, result in creating at most one complete copy of the string passed in.\n  // Set to Infinity to have unlimited buffers.\n  sax.MAX_BUFFER_LENGTH = 64 * 1024\n\n  var buffers = [\n    'comment', 'sgmlDecl', 'textNode', 'tagName', 'doctype',\n    'procInstName', 'procInstBody', 'entity', 'attribName',\n    'attribValue', 'cdata', 'script'\n  ]\n\n  sax.EVENTS = [\n    'text',\n    'processinginstruction',\n    'sgmldeclaration',\n    'doctype',\n    'comment',\n    'opentagstart',\n    'attribute',\n    'opentag',\n    'closetag',\n    'opencdata',\n    'cdata',\n    'closecdata',\n    'error',\n    'end',\n    'ready',\n    'script',\n    'opennamespace',\n    'closenamespace'\n  ]\n\n  function SAXParser (strict, opt) {\n    if (!(this instanceof SAXParser)) {\n      return new SAXParser(strict, opt)\n    }\n\n    var parser = this\n    clearBuffers(parser)\n    parser.q = parser.c = ''\n    parser.bufferCheckPosition = sax.MAX_BUFFER_LENGTH\n    parser.opt = opt || {}\n    parser.opt.lowercase = parser.opt.lowercase || parser.opt.lowercasetags\n    parser.looseCase = parser.opt.lowercase ? 'toLowerCase' : 'toUpperCase'\n    parser.tags = []\n    parser.closed = parser.closedRoot = parser.sawRoot = false\n    parser.tag = parser.error = null\n    parser.strict = !!strict\n    parser.noscript = !!(strict || parser.opt.noscript)\n    parser.state = S.BEGIN\n    parser.strictEntities = parser.opt.strictEntities\n    parser.ENTITIES = parser.strictEntities ? Object.create(sax.XML_ENTITIES) : Object.create(sax.ENTITIES)\n    parser.attribList = []\n\n    // namespaces form a prototype chain.\n    // it always points at the current tag,\n    // which protos to its parent tag.\n    if (parser.opt.xmlns) {\n      parser.ns = Object.create(rootNS)\n    }\n\n    // mostly just for error reporting\n    parser.trackPosition = parser.opt.position !== false\n    if (parser.trackPosition) {\n      parser.position = parser.line = parser.column = 0\n    }\n    emit(parser, 'onready')\n  }\n\n  if (!Object.create) {\n    Object.create = function (o) {\n      function F () {}\n      F.prototype = o\n      var newf = new F()\n      return newf\n    }\n  }\n\n  if (!Object.keys) {\n    Object.keys = function (o) {\n      var a = []\n      for (var i in o) if (o.hasOwnProperty(i)) a.push(i)\n      return a\n    }\n  }\n\n  function checkBufferLength (parser) {\n    var maxAllowed = Math.max(sax.MAX_BUFFER_LENGTH, 10)\n    var maxActual = 0\n    for (var i = 0, l = buffers.length; i < l; i++) {\n      var len = parser[buffers[i]].length\n      if (len > maxAllowed) {\n        // Text/cdata nodes can get big, and since they're buffered,\n        // we can get here under normal conditions.\n        // Avoid issues by emitting the text node now,\n        // so at least it won't get any bigger.\n        switch (buffers[i]) {\n          case 'textNode':\n            closeText(parser)\n            break\n\n          case 'cdata':\n            emitNode(parser, 'oncdata', parser.cdata)\n            parser.cdata = ''\n            break\n\n          case 'script':\n            emitNode(parser, 'onscript', parser.script)\n            parser.script = ''\n            break\n\n          default:\n            error(parser, 'Max buffer length exceeded: ' + buffers[i])\n        }\n      }\n      maxActual = Math.max(maxActual, len)\n    }\n    // schedule the next check for the earliest possible buffer overrun.\n    var m = sax.MAX_BUFFER_LENGTH - maxActual\n    parser.bufferCheckPosition = m + parser.position\n  }\n\n  function clearBuffers (parser) {\n    for (var i = 0, l = buffers.length; i < l; i++) {\n      parser[buffers[i]] = ''\n    }\n  }\n\n  function flushBuffers (parser) {\n    closeText(parser)\n    if (parser.cdata !== '') {\n      emitNode(parser, 'oncdata', parser.cdata)\n      parser.cdata = ''\n    }\n    if (parser.script !== '') {\n      emitNode(parser, 'onscript', parser.script)\n      parser.script = ''\n    }\n  }\n\n  SAXParser.prototype = {\n    end: function () { end(this) },\n    write: write,\n    resume: function () { this.error = null; return this },\n    close: function () { return this.write(null) },\n    flush: function () { flushBuffers(this) }\n  }\n\n  var Stream\n  try {\n    Stream = require('stream').Stream\n  } catch (ex) {\n    Stream = function () {}\n  }\n  if (!Stream) Stream = function () {}\n\n  var streamWraps = sax.EVENTS.filter(function (ev) {\n    return ev !== 'error' && ev !== 'end'\n  })\n\n  function createStream (strict, opt) {\n    return new SAXStream(strict, opt)\n  }\n\n  function SAXStream (strict, opt) {\n    if (!(this instanceof SAXStream)) {\n      return new SAXStream(strict, opt)\n    }\n\n    Stream.apply(this)\n\n    this._parser = new SAXParser(strict, opt)\n    this.writable = true\n    this.readable = true\n\n    var me = this\n\n    this._parser.onend = function () {\n      me.emit('end')\n    }\n\n    this._parser.onerror = function (er) {\n      me.emit('error', er)\n\n      // if didn't throw, then means error was handled.\n      // go ahead and clear error, so we can write again.\n      me._parser.error = null\n    }\n\n    this._decoder = null\n\n    streamWraps.forEach(function (ev) {\n      Object.defineProperty(me, 'on' + ev, {\n        get: function () {\n          return me._parser['on' + ev]\n        },\n        set: function (h) {\n          if (!h) {\n            me.removeAllListeners(ev)\n            me._parser['on' + ev] = h\n            return h\n          }\n          me.on(ev, h)\n        },\n        enumerable: true,\n        configurable: false\n      })\n    })\n  }\n\n  SAXStream.prototype = Object.create(Stream.prototype, {\n    constructor: {\n      value: SAXStream\n    }\n  })\n\n  SAXStream.prototype.write = function (data) {\n    if (typeof Buffer === 'function' &&\n      typeof Buffer.isBuffer === 'function' &&\n      Buffer.isBuffer(data)) {\n      if (!this._decoder) {\n        var SD = require('string_decoder').StringDecoder\n        this._decoder = new SD('utf8')\n      }\n      data = this._decoder.write(data)\n    }\n\n    this._parser.write(data.toString())\n    this.emit('data', data)\n    return true\n  }\n\n  SAXStream.prototype.end = function (chunk) {\n    if (chunk && chunk.length) {\n      this.write(chunk)\n    }\n    this._parser.end()\n    return true\n  }\n\n  SAXStream.prototype.on = function (ev, handler) {\n    var me = this\n    if (!me._parser['on' + ev] && streamWraps.indexOf(ev) !== -1) {\n      me._parser['on' + ev] = function () {\n        var args = arguments.length === 1 ? [arguments[0]] : Array.apply(null, arguments)\n        args.splice(0, 0, ev)\n        me.emit.apply(me, args)\n      }\n    }\n\n    return Stream.prototype.on.call(me, ev, handler)\n  }\n\n  // this really needs to be replaced with character classes.\n  // XML allows all manner of ridiculous numbers and digits.\n  var CDATA = '[CDATA['\n  var DOCTYPE = 'DOCTYPE'\n  var XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace'\n  var XMLNS_NAMESPACE = 'http://www.w3.org/2000/xmlns/'\n  var rootNS = { xml: XML_NAMESPACE, xmlns: XMLNS_NAMESPACE }\n\n  // http://www.w3.org/TR/REC-xml/#NT-NameStartChar\n  // This implementation works on strings, a single character at a time\n  // as such, it cannot ever support astral-plane characters (10000-EFFFF)\n  // without a significant breaking change to either this  parser, or the\n  // JavaScript language.  Implementation of an emoji-capable xml parser\n  // is left as an exercise for the reader.\n  var nameStart = /[:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]/\n\n  var nameBody = /[:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\u00B7\\u0300-\\u036F\\u203F-\\u2040.\\d-]/\n\n  var entityStart = /[#:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]/\n  var entityBody = /[#:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\u00B7\\u0300-\\u036F\\u203F-\\u2040.\\d-]/\n\n  function isWhitespace (c) {\n    return c === ' ' || c === '\\n' || c === '\\r' || c === '\\t'\n  }\n\n  function isQuote (c) {\n    return c === '\"' || c === '\\''\n  }\n\n  function isAttribEnd (c) {\n    return c === '>' || isWhitespace(c)\n  }\n\n  function isMatch (regex, c) {\n    return regex.test(c)\n  }\n\n  function notMatch (regex, c) {\n    return !isMatch(regex, c)\n  }\n\n  var S = 0\n  sax.STATE = {\n    BEGIN: S++, // leading byte order mark or whitespace\n    BEGIN_WHITESPACE: S++, // leading whitespace\n    TEXT: S++, // general stuff\n    TEXT_ENTITY: S++, // &amp and such.\n    OPEN_WAKA: S++, // <\n    SGML_DECL: S++, // <!BLARG\n    SGML_DECL_QUOTED: S++, // <!BLARG foo \"bar\n    DOCTYPE: S++, // <!DOCTYPE\n    DOCTYPE_QUOTED: S++, // <!DOCTYPE \"//blah\n    DOCTYPE_DTD: S++, // <!DOCTYPE \"//blah\" [ ...\n    DOCTYPE_DTD_QUOTED: S++, // <!DOCTYPE \"//blah\" [ \"foo\n    COMMENT_STARTING: S++, // <!-\n    COMMENT: S++, // <!--\n    COMMENT_ENDING: S++, // <!-- blah -\n    COMMENT_ENDED: S++, // <!-- blah --\n    CDATA: S++, // <![CDATA[ something\n    CDATA_ENDING: S++, // ]\n    CDATA_ENDING_2: S++, // ]]\n    PROC_INST: S++, // <?hi\n    PROC_INST_BODY: S++, // <?hi there\n    PROC_INST_ENDING: S++, // <?hi \"there\" ?\n    OPEN_TAG: S++, // <strong\n    OPEN_TAG_SLASH: S++, // <strong /\n    ATTRIB: S++, // <a\n    ATTRIB_NAME: S++, // <a foo\n    ATTRIB_NAME_SAW_WHITE: S++, // <a foo _\n    ATTRIB_VALUE: S++, // <a foo=\n    ATTRIB_VALUE_QUOTED: S++, // <a foo=\"bar\n    ATTRIB_VALUE_CLOSED: S++, // <a foo=\"bar\"\n    ATTRIB_VALUE_UNQUOTED: S++, // <a foo=bar\n    ATTRIB_VALUE_ENTITY_Q: S++, // <foo bar=\"&quot;\"\n    ATTRIB_VALUE_ENTITY_U: S++, // <foo bar=&quot\n    CLOSE_TAG: S++, // </a\n    CLOSE_TAG_SAW_WHITE: S++, // </a   >\n    SCRIPT: S++, // <script> ...\n    SCRIPT_ENDING: S++ // <script> ... <\n  }\n\n  sax.XML_ENTITIES = {\n    'amp': '&',\n    'gt': '>',\n    'lt': '<',\n    'quot': '\"',\n    'apos': \"'\"\n  }\n\n  sax.ENTITIES = {\n    'amp': '&',\n    'gt': '>',\n    'lt': '<',\n    'quot': '\"',\n    'apos': \"'\",\n    'AElig': 198,\n    'Aacute': 193,\n    'Acirc': 194,\n    'Agrave': 192,\n    'Aring': 197,\n    'Atilde': 195,\n    'Auml': 196,\n    'Ccedil': 199,\n    'ETH': 208,\n    'Eacute': 201,\n    'Ecirc': 202,\n    'Egrave': 200,\n    'Euml': 203,\n    'Iacute': 205,\n    'Icirc': 206,\n    'Igrave': 204,\n    'Iuml': 207,\n    'Ntilde': 209,\n    'Oacute': 211,\n    'Ocirc': 212,\n    'Ograve': 210,\n    'Oslash': 216,\n    'Otilde': 213,\n    'Ouml': 214,\n    'THORN': 222,\n    'Uacute': 218,\n    'Ucirc': 219,\n    'Ugrave': 217,\n    'Uuml': 220,\n    'Yacute': 221,\n    'aacute': 225,\n    'acirc': 226,\n    'aelig': 230,\n    'agrave': 224,\n    'aring': 229,\n    'atilde': 227,\n    'auml': 228,\n    'ccedil': 231,\n    'eacute': 233,\n    'ecirc': 234,\n    'egrave': 232,\n    'eth': 240,\n    'euml': 235,\n    'iacute': 237,\n    'icirc': 238,\n    'igrave': 236,\n    'iuml': 239,\n    'ntilde': 241,\n    'oacute': 243,\n    'ocirc': 244,\n    'ograve': 242,\n    'oslash': 248,\n    'otilde': 245,\n    'ouml': 246,\n    'szlig': 223,\n    'thorn': 254,\n    'uacute': 250,\n    'ucirc': 251,\n    'ugrave': 249,\n    'uuml': 252,\n    'yacute': 253,\n    'yuml': 255,\n    'copy': 169,\n    'reg': 174,\n    'nbsp': 160,\n    'iexcl': 161,\n    'cent': 162,\n    'pound': 163,\n    'curren': 164,\n    'yen': 165,\n    'brvbar': 166,\n    'sect': 167,\n    'uml': 168,\n    'ordf': 170,\n    'laquo': 171,\n    'not': 172,\n    'shy': 173,\n    'macr': 175,\n    'deg': 176,\n    'plusmn': 177,\n    'sup1': 185,\n    'sup2': 178,\n    'sup3': 179,\n    'acute': 180,\n    'micro': 181,\n    'para': 182,\n    'middot': 183,\n    'cedil': 184,\n    'ordm': 186,\n    'raquo': 187,\n    'frac14': 188,\n    'frac12': 189,\n    'frac34': 190,\n    'iquest': 191,\n    'times': 215,\n    'divide': 247,\n    'OElig': 338,\n    'oelig': 339,\n    'Scaron': 352,\n    'scaron': 353,\n    'Yuml': 376,\n    'fnof': 402,\n    'circ': 710,\n    'tilde': 732,\n    'Alpha': 913,\n    'Beta': 914,\n    'Gamma': 915,\n    'Delta': 916,\n    'Epsilon': 917,\n    'Zeta': 918,\n    'Eta': 919,\n    'Theta': 920,\n    'Iota': 921,\n    'Kappa': 922,\n    'Lambda': 923,\n    'Mu': 924,\n    'Nu': 925,\n    'Xi': 926,\n    'Omicron': 927,\n    'Pi': 928,\n    'Rho': 929,\n    'Sigma': 931,\n    'Tau': 932,\n    'Upsilon': 933,\n    'Phi': 934,\n    'Chi': 935,\n    'Psi': 936,\n    'Omega': 937,\n    'alpha': 945,\n    'beta': 946,\n    'gamma': 947,\n    'delta': 948,\n    'epsilon': 949,\n    'zeta': 950,\n    'eta': 951,\n    'theta': 952,\n    'iota': 953,\n    'kappa': 954,\n    'lambda': 955,\n    'mu': 956,\n    'nu': 957,\n    'xi': 958,\n    'omicron': 959,\n    'pi': 960,\n    'rho': 961,\n    'sigmaf': 962,\n    'sigma': 963,\n    'tau': 964,\n    'upsilon': 965,\n    'phi': 966,\n    'chi': 967,\n    'psi': 968,\n    'omega': 969,\n    'thetasym': 977,\n    'upsih': 978,\n    'piv': 982,\n    'ensp': 8194,\n    'emsp': 8195,\n    'thinsp': 8201,\n    'zwnj': 8204,\n    'zwj': 8205,\n    'lrm': 8206,\n    'rlm': 8207,\n    'ndash': 8211,\n    'mdash': 8212,\n    'lsquo': 8216,\n    'rsquo': 8217,\n    'sbquo': 8218,\n    'ldquo': 8220,\n    'rdquo': 8221,\n    'bdquo': 8222,\n    'dagger': 8224,\n    'Dagger': 8225,\n    'bull': 8226,\n    'hellip': 8230,\n    'permil': 8240,\n    'prime': 8242,\n    'Prime': 8243,\n    'lsaquo': 8249,\n    'rsaquo': 8250,\n    'oline': 8254,\n    'frasl': 8260,\n    'euro': 8364,\n    'image': 8465,\n    'weierp': 8472,\n    'real': 8476,\n    'trade': 8482,\n    'alefsym': 8501,\n    'larr': 8592,\n    'uarr': 8593,\n    'rarr': 8594,\n    'darr': 8595,\n    'harr': 8596,\n    'crarr': 8629,\n    'lArr': 8656,\n    'uArr': 8657,\n    'rArr': 8658,\n    'dArr': 8659,\n    'hArr': 8660,\n    'forall': 8704,\n    'part': 8706,\n    'exist': 8707,\n    'empty': 8709,\n    'nabla': 8711,\n    'isin': 8712,\n    'notin': 8713,\n    'ni': 8715,\n    'prod': 8719,\n    'sum': 8721,\n    'minus': 8722,\n    'lowast': 8727,\n    'radic': 8730,\n    'prop': 8733,\n    'infin': 8734,\n    'ang': 8736,\n    'and': 8743,\n    'or': 8744,\n    'cap': 8745,\n    'cup': 8746,\n    'int': 8747,\n    'there4': 8756,\n    'sim': 8764,\n    'cong': 8773,\n    'asymp': 8776,\n    'ne': 8800,\n    'equiv': 8801,\n    'le': 8804,\n    'ge': 8805,\n    'sub': 8834,\n    'sup': 8835,\n    'nsub': 8836,\n    'sube': 8838,\n    'supe': 8839,\n    'oplus': 8853,\n    'otimes': 8855,\n    'perp': 8869,\n    'sdot': 8901,\n    'lceil': 8968,\n    'rceil': 8969,\n    'lfloor': 8970,\n    'rfloor': 8971,\n    'lang': 9001,\n    'rang': 9002,\n    'loz': 9674,\n    'spades': 9824,\n    'clubs': 9827,\n    'hearts': 9829,\n    'diams': 9830\n  }\n\n  Object.keys(sax.ENTITIES).forEach(function (key) {\n    var e = sax.ENTITIES[key]\n    var s = typeof e === 'number' ? String.fromCharCode(e) : e\n    sax.ENTITIES[key] = s\n  })\n\n  for (var s in sax.STATE) {\n    sax.STATE[sax.STATE[s]] = s\n  }\n\n  // shorthand\n  S = sax.STATE\n\n  function emit (parser, event, data) {\n    parser[event] && parser[event](data)\n  }\n\n  function emitNode (parser, nodeType, data) {\n    if (parser.textNode) closeText(parser)\n    emit(parser, nodeType, data)\n  }\n\n  function closeText (parser) {\n    parser.textNode = textopts(parser.opt, parser.textNode)\n    if (parser.textNode) emit(parser, 'ontext', parser.textNode)\n    parser.textNode = ''\n  }\n\n  function textopts (opt, text) {\n    if (opt.trim) text = text.trim()\n    if (opt.normalize) text = text.replace(/\\s+/g, ' ')\n    return text\n  }\n\n  function error (parser, er) {\n    closeText(parser)\n    if (parser.trackPosition) {\n      er += '\\nLine: ' + parser.line +\n        '\\nColumn: ' + parser.column +\n        '\\nChar: ' + parser.c\n    }\n    er = new Error(er)\n    parser.error = er\n    emit(parser, 'onerror', er)\n    return parser\n  }\n\n  function end (parser) {\n    if (parser.sawRoot && !parser.closedRoot) strictFail(parser, 'Unclosed root tag')\n    if ((parser.state !== S.BEGIN) &&\n      (parser.state !== S.BEGIN_WHITESPACE) &&\n      (parser.state !== S.TEXT)) {\n      error(parser, 'Unexpected end')\n    }\n    closeText(parser)\n    parser.c = ''\n    parser.closed = true\n    emit(parser, 'onend')\n    SAXParser.call(parser, parser.strict, parser.opt)\n    return parser\n  }\n\n  function strictFail (parser, message) {\n    if (typeof parser !== 'object' || !(parser instanceof SAXParser)) {\n      throw new Error('bad call to strictFail')\n    }\n    if (parser.strict) {\n      error(parser, message)\n    }\n  }\n\n  function newTag (parser) {\n    if (!parser.strict) parser.tagName = parser.tagName[parser.looseCase]()\n    var parent = parser.tags[parser.tags.length - 1] || parser\n    var tag = parser.tag = { name: parser.tagName, attributes: {} }\n\n    // will be overridden if tag contails an xmlns=\"foo\" or xmlns:foo=\"bar\"\n    if (parser.opt.xmlns) {\n      tag.ns = parent.ns\n    }\n    parser.attribList.length = 0\n    emitNode(parser, 'onopentagstart', tag)\n  }\n\n  function qname (name, attribute) {\n    var i = name.indexOf(':')\n    var qualName = i < 0 ? [ '', name ] : name.split(':')\n    var prefix = qualName[0]\n    var local = qualName[1]\n\n    // <x \"xmlns\"=\"http://foo\">\n    if (attribute && name === 'xmlns') {\n      prefix = 'xmlns'\n      local = ''\n    }\n\n    return { prefix: prefix, local: local }\n  }\n\n  function attrib (parser) {\n    if (!parser.strict) {\n      parser.attribName = parser.attribName[parser.looseCase]()\n    }\n\n    if (parser.attribList.indexOf(parser.attribName) !== -1 ||\n      parser.tag.attributes.hasOwnProperty(parser.attribName)) {\n      parser.attribName = parser.attribValue = ''\n      return\n    }\n\n    if (parser.opt.xmlns) {\n      var qn = qname(parser.attribName, true)\n      var prefix = qn.prefix\n      var local = qn.local\n\n      if (prefix === 'xmlns') {\n        // namespace binding attribute. push the binding into scope\n        if (local === 'xml' && parser.attribValue !== XML_NAMESPACE) {\n          strictFail(parser,\n            'xml: prefix must be bound to ' + XML_NAMESPACE + '\\n' +\n            'Actual: ' + parser.attribValue)\n        } else if (local === 'xmlns' && parser.attribValue !== XMLNS_NAMESPACE) {\n          strictFail(parser,\n            'xmlns: prefix must be bound to ' + XMLNS_NAMESPACE + '\\n' +\n            'Actual: ' + parser.attribValue)\n        } else {\n          var tag = parser.tag\n          var parent = parser.tags[parser.tags.length - 1] || parser\n          if (tag.ns === parent.ns) {\n            tag.ns = Object.create(parent.ns)\n          }\n          tag.ns[local] = parser.attribValue\n        }\n      }\n\n      // defer onattribute events until all attributes have been seen\n      // so any new bindings can take effect. preserve attribute order\n      // so deferred events can be emitted in document order\n      parser.attribList.push([parser.attribName, parser.attribValue])\n    } else {\n      // in non-xmlns mode, we can emit the event right away\n      parser.tag.attributes[parser.attribName] = parser.attribValue\n      emitNode(parser, 'onattribute', {\n        name: parser.attribName,\n        value: parser.attribValue\n      })\n    }\n\n    parser.attribName = parser.attribValue = ''\n  }\n\n  function openTag (parser, selfClosing) {\n    if (parser.opt.xmlns) {\n      // emit namespace binding events\n      var tag = parser.tag\n\n      // add namespace info to tag\n      var qn = qname(parser.tagName)\n      tag.prefix = qn.prefix\n      tag.local = qn.local\n      tag.uri = tag.ns[qn.prefix] || ''\n\n      if (tag.prefix && !tag.uri) {\n        strictFail(parser, 'Unbound namespace prefix: ' +\n          JSON.stringify(parser.tagName))\n        tag.uri = qn.prefix\n      }\n\n      var parent = parser.tags[parser.tags.length - 1] || parser\n      if (tag.ns && parent.ns !== tag.ns) {\n        Object.keys(tag.ns).forEach(function (p) {\n          emitNode(parser, 'onopennamespace', {\n            prefix: p,\n            uri: tag.ns[p]\n          })\n        })\n      }\n\n      // handle deferred onattribute events\n      // Note: do not apply default ns to attributes:\n      //   http://www.w3.org/TR/REC-xml-names/#defaulting\n      for (var i = 0, l = parser.attribList.length; i < l; i++) {\n        var nv = parser.attribList[i]\n        var name = nv[0]\n        var value = nv[1]\n        var qualName = qname(name, true)\n        var prefix = qualName.prefix\n        var local = qualName.local\n        var uri = prefix === '' ? '' : (tag.ns[prefix] || '')\n        var a = {\n          name: name,\n          value: value,\n          prefix: prefix,\n          local: local,\n          uri: uri\n        }\n\n        // if there's any attributes with an undefined namespace,\n        // then fail on them now.\n        if (prefix && prefix !== 'xmlns' && !uri) {\n          strictFail(parser, 'Unbound namespace prefix: ' +\n            JSON.stringify(prefix))\n          a.uri = prefix\n        }\n        parser.tag.attributes[name] = a\n        emitNode(parser, 'onattribute', a)\n      }\n      parser.attribList.length = 0\n    }\n\n    parser.tag.isSelfClosing = !!selfClosing\n\n    // process the tag\n    parser.sawRoot = true\n    parser.tags.push(parser.tag)\n    emitNode(parser, 'onopentag', parser.tag)\n    if (!selfClosing) {\n      // special case for <script> in non-strict mode.\n      if (!parser.noscript && parser.tagName.toLowerCase() === 'script') {\n        parser.state = S.SCRIPT\n      } else {\n        parser.state = S.TEXT\n      }\n      parser.tag = null\n      parser.tagName = ''\n    }\n    parser.attribName = parser.attribValue = ''\n    parser.attribList.length = 0\n  }\n\n  function closeTag (parser) {\n    if (!parser.tagName) {\n      strictFail(parser, 'Weird empty close tag.')\n      parser.textNode += '</>'\n      parser.state = S.TEXT\n      return\n    }\n\n    if (parser.script) {\n      if (parser.tagName !== 'script') {\n        parser.script += '</' + parser.tagName + '>'\n        parser.tagName = ''\n        parser.state = S.SCRIPT\n        return\n      }\n      emitNode(parser, 'onscript', parser.script)\n      parser.script = ''\n    }\n\n    // first make sure that the closing tag actually exists.\n    // <a><b></c></b></a> will close everything, otherwise.\n    var t = parser.tags.length\n    var tagName = parser.tagName\n    if (!parser.strict) {\n      tagName = tagName[parser.looseCase]()\n    }\n    var closeTo = tagName\n    while (t--) {\n      var close = parser.tags[t]\n      if (close.name !== closeTo) {\n        // fail the first time in strict mode\n        strictFail(parser, 'Unexpected close tag')\n      } else {\n        break\n      }\n    }\n\n    // didn't find it.  we already failed for strict, so just abort.\n    if (t < 0) {\n      strictFail(parser, 'Unmatched closing tag: ' + parser.tagName)\n      parser.textNode += '</' + parser.tagName + '>'\n      parser.state = S.TEXT\n      return\n    }\n    parser.tagName = tagName\n    var s = parser.tags.length\n    while (s-- > t) {\n      var tag = parser.tag = parser.tags.pop()\n      parser.tagName = parser.tag.name\n      emitNode(parser, 'onclosetag', parser.tagName)\n\n      var x = {}\n      for (var i in tag.ns) {\n        x[i] = tag.ns[i]\n      }\n\n      var parent = parser.tags[parser.tags.length - 1] || parser\n      if (parser.opt.xmlns && tag.ns !== parent.ns) {\n        // remove namespace bindings introduced by tag\n        Object.keys(tag.ns).forEach(function (p) {\n          var n = tag.ns[p]\n          emitNode(parser, 'onclosenamespace', { prefix: p, uri: n })\n        })\n      }\n    }\n    if (t === 0) parser.closedRoot = true\n    parser.tagName = parser.attribValue = parser.attribName = ''\n    parser.attribList.length = 0\n    parser.state = S.TEXT\n  }\n\n  function parseEntity (parser) {\n    var entity = parser.entity\n    var entityLC = entity.toLowerCase()\n    var num\n    var numStr = ''\n\n    if (parser.ENTITIES[entity]) {\n      return parser.ENTITIES[entity]\n    }\n    if (parser.ENTITIES[entityLC]) {\n      return parser.ENTITIES[entityLC]\n    }\n    entity = entityLC\n    if (entity.charAt(0) === '#') {\n      if (entity.charAt(1) === 'x') {\n        entity = entity.slice(2)\n        num = parseInt(entity, 16)\n        numStr = num.toString(16)\n      } else {\n        entity = entity.slice(1)\n        num = parseInt(entity, 10)\n        numStr = num.toString(10)\n      }\n    }\n    entity = entity.replace(/^0+/, '')\n    if (isNaN(num) || numStr.toLowerCase() !== entity) {\n      strictFail(parser, 'Invalid character entity')\n      return '&' + parser.entity + ';'\n    }\n\n    return String.fromCodePoint(num)\n  }\n\n  function beginWhiteSpace (parser, c) {\n    if (c === '<') {\n      parser.state = S.OPEN_WAKA\n      parser.startTagPosition = parser.position\n    } else if (!isWhitespace(c)) {\n      // have to process this as a text node.\n      // weird, but happens.\n      strictFail(parser, 'Non-whitespace before first tag.')\n      parser.textNode = c\n      parser.state = S.TEXT\n    }\n  }\n\n  function charAt (chunk, i) {\n    var result = ''\n    if (i < chunk.length) {\n      result = chunk.charAt(i)\n    }\n    return result\n  }\n\n  function write (chunk) {\n    var parser = this\n    if (this.error) {\n      throw this.error\n    }\n    if (parser.closed) {\n      return error(parser,\n        'Cannot write after close. Assign an onready handler.')\n    }\n    if (chunk === null) {\n      return end(parser)\n    }\n    if (typeof chunk === 'object') {\n      chunk = chunk.toString()\n    }\n    var i = 0\n    var c = ''\n    while (true) {\n      c = charAt(chunk, i++)\n      parser.c = c\n\n      if (!c) {\n        break\n      }\n\n      if (parser.trackPosition) {\n        parser.position++\n        if (c === '\\n') {\n          parser.line++\n          parser.column = 0\n        } else {\n          parser.column++\n        }\n      }\n\n      switch (parser.state) {\n        case S.BEGIN:\n          parser.state = S.BEGIN_WHITESPACE\n          if (c === '\\uFEFF') {\n            continue\n          }\n          beginWhiteSpace(parser, c)\n          continue\n\n        case S.BEGIN_WHITESPACE:\n          beginWhiteSpace(parser, c)\n          continue\n\n        case S.TEXT:\n          if (parser.sawRoot && !parser.closedRoot) {\n            var starti = i - 1\n            while (c && c !== '<' && c !== '&') {\n              c = charAt(chunk, i++)\n              if (c && parser.trackPosition) {\n                parser.position++\n                if (c === '\\n') {\n                  parser.line++\n                  parser.column = 0\n                } else {\n                  parser.column++\n                }\n              }\n            }\n            parser.textNode += chunk.substring(starti, i - 1)\n          }\n          if (c === '<' && !(parser.sawRoot && parser.closedRoot && !parser.strict)) {\n            parser.state = S.OPEN_WAKA\n            parser.startTagPosition = parser.position\n          } else {\n            if (!isWhitespace(c) && (!parser.sawRoot || parser.closedRoot)) {\n              strictFail(parser, 'Text data outside of root node.')\n            }\n            if (c === '&') {\n              parser.state = S.TEXT_ENTITY\n            } else {\n              parser.textNode += c\n            }\n          }\n          continue\n\n        case S.SCRIPT:\n          // only non-strict\n          if (c === '<') {\n            parser.state = S.SCRIPT_ENDING\n          } else {\n            parser.script += c\n          }\n          continue\n\n        case S.SCRIPT_ENDING:\n          if (c === '/') {\n            parser.state = S.CLOSE_TAG\n          } else {\n            parser.script += '<' + c\n            parser.state = S.SCRIPT\n          }\n          continue\n\n        case S.OPEN_WAKA:\n          // either a /, ?, !, or text is coming next.\n          if (c === '!') {\n            parser.state = S.SGML_DECL\n            parser.sgmlDecl = ''\n          } else if (isWhitespace(c)) {\n            // wait for it...\n          } else if (isMatch(nameStart, c)) {\n            parser.state = S.OPEN_TAG\n            parser.tagName = c\n          } else if (c === '/') {\n            parser.state = S.CLOSE_TAG\n            parser.tagName = ''\n          } else if (c === '?') {\n            parser.state = S.PROC_INST\n            parser.procInstName = parser.procInstBody = ''\n          } else {\n            strictFail(parser, 'Unencoded <')\n            // if there was some whitespace, then add that in.\n            if (parser.startTagPosition + 1 < parser.position) {\n              var pad = parser.position - parser.startTagPosition\n              c = new Array(pad).join(' ') + c\n            }\n            parser.textNode += '<' + c\n            parser.state = S.TEXT\n          }\n          continue\n\n        case S.SGML_DECL:\n          if ((parser.sgmlDecl + c).toUpperCase() === CDATA) {\n            emitNode(parser, 'onopencdata')\n            parser.state = S.CDATA\n            parser.sgmlDecl = ''\n            parser.cdata = ''\n          } else if (parser.sgmlDecl + c === '--') {\n            parser.state = S.COMMENT\n            parser.comment = ''\n            parser.sgmlDecl = ''\n          } else if ((parser.sgmlDecl + c).toUpperCase() === DOCTYPE) {\n            parser.state = S.DOCTYPE\n            if (parser.doctype || parser.sawRoot) {\n              strictFail(parser,\n                'Inappropriately located doctype declaration')\n            }\n            parser.doctype = ''\n            parser.sgmlDecl = ''\n          } else if (c === '>') {\n            emitNode(parser, 'onsgmldeclaration', parser.sgmlDecl)\n            parser.sgmlDecl = ''\n            parser.state = S.TEXT\n          } else if (isQuote(c)) {\n            parser.state = S.SGML_DECL_QUOTED\n            parser.sgmlDecl += c\n          } else {\n            parser.sgmlDecl += c\n          }\n          continue\n\n        case S.SGML_DECL_QUOTED:\n          if (c === parser.q) {\n            parser.state = S.SGML_DECL\n            parser.q = ''\n          }\n          parser.sgmlDecl += c\n          continue\n\n        case S.DOCTYPE:\n          if (c === '>') {\n            parser.state = S.TEXT\n            emitNode(parser, 'ondoctype', parser.doctype)\n            parser.doctype = true // just remember that we saw it.\n          } else {\n            parser.doctype += c\n            if (c === '[') {\n              parser.state = S.DOCTYPE_DTD\n            } else if (isQuote(c)) {\n              parser.state = S.DOCTYPE_QUOTED\n              parser.q = c\n            }\n          }\n          continue\n\n        case S.DOCTYPE_QUOTED:\n          parser.doctype += c\n          if (c === parser.q) {\n            parser.q = ''\n            parser.state = S.DOCTYPE\n          }\n          continue\n\n        case S.DOCTYPE_DTD:\n          parser.doctype += c\n          if (c === ']') {\n            parser.state = S.DOCTYPE\n          } else if (isQuote(c)) {\n            parser.state = S.DOCTYPE_DTD_QUOTED\n            parser.q = c\n          }\n          continue\n\n        case S.DOCTYPE_DTD_QUOTED:\n          parser.doctype += c\n          if (c === parser.q) {\n            parser.state = S.DOCTYPE_DTD\n            parser.q = ''\n          }\n          continue\n\n        case S.COMMENT:\n          if (c === '-') {\n            parser.state = S.COMMENT_ENDING\n          } else {\n            parser.comment += c\n          }\n          continue\n\n        case S.COMMENT_ENDING:\n          if (c === '-') {\n            parser.state = S.COMMENT_ENDED\n            parser.comment = textopts(parser.opt, parser.comment)\n            if (parser.comment) {\n              emitNode(parser, 'oncomment', parser.comment)\n            }\n            parser.comment = ''\n          } else {\n            parser.comment += '-' + c\n            parser.state = S.COMMENT\n          }\n          continue\n\n        case S.COMMENT_ENDED:\n          if (c !== '>') {\n            strictFail(parser, 'Malformed comment')\n            // allow <!-- blah -- bloo --> in non-strict mode,\n            // which is a comment of \" blah -- bloo \"\n            parser.comment += '--' + c\n            parser.state = S.COMMENT\n          } else {\n            parser.state = S.TEXT\n          }\n          continue\n\n        case S.CDATA:\n          if (c === ']') {\n            parser.state = S.CDATA_ENDING\n          } else {\n            parser.cdata += c\n          }\n          continue\n\n        case S.CDATA_ENDING:\n          if (c === ']') {\n            parser.state = S.CDATA_ENDING_2\n          } else {\n            parser.cdata += ']' + c\n            parser.state = S.CDATA\n          }\n          continue\n\n        case S.CDATA_ENDING_2:\n          if (c === '>') {\n            if (parser.cdata) {\n              emitNode(parser, 'oncdata', parser.cdata)\n            }\n            emitNode(parser, 'onclosecdata')\n            parser.cdata = ''\n            parser.state = S.TEXT\n          } else if (c === ']') {\n            parser.cdata += ']'\n          } else {\n            parser.cdata += ']]' + c\n            parser.state = S.CDATA\n          }\n          continue\n\n        case S.PROC_INST:\n          if (c === '?') {\n            parser.state = S.PROC_INST_ENDING\n          } else if (isWhitespace(c)) {\n            parser.state = S.PROC_INST_BODY\n          } else {\n            parser.procInstName += c\n          }\n          continue\n\n        case S.PROC_INST_BODY:\n          if (!parser.procInstBody && isWhitespace(c)) {\n            continue\n          } else if (c === '?') {\n            parser.state = S.PROC_INST_ENDING\n          } else {\n            parser.procInstBody += c\n          }\n          continue\n\n        case S.PROC_INST_ENDING:\n          if (c === '>') {\n            emitNode(parser, 'onprocessinginstruction', {\n              name: parser.procInstName,\n              body: parser.procInstBody\n            })\n            parser.procInstName = parser.procInstBody = ''\n            parser.state = S.TEXT\n          } else {\n            parser.procInstBody += '?' + c\n            parser.state = S.PROC_INST_BODY\n          }\n          continue\n\n        case S.OPEN_TAG:\n          if (isMatch(nameBody, c)) {\n            parser.tagName += c\n          } else {\n            newTag(parser)\n            if (c === '>') {\n              openTag(parser)\n            } else if (c === '/') {\n              parser.state = S.OPEN_TAG_SLASH\n            } else {\n              if (!isWhitespace(c)) {\n                strictFail(parser, 'Invalid character in tag name')\n              }\n              parser.state = S.ATTRIB\n            }\n          }\n          continue\n\n        case S.OPEN_TAG_SLASH:\n          if (c === '>') {\n            openTag(parser, true)\n            closeTag(parser)\n          } else {\n            strictFail(parser, 'Forward-slash in opening tag not followed by >')\n            parser.state = S.ATTRIB\n          }\n          continue\n\n        case S.ATTRIB:\n          // haven't read the attribute name yet.\n          if (isWhitespace(c)) {\n            continue\n          } else if (c === '>') {\n            openTag(parser)\n          } else if (c === '/') {\n            parser.state = S.OPEN_TAG_SLASH\n          } else if (isMatch(nameStart, c)) {\n            parser.attribName = c\n            parser.attribValue = ''\n            parser.state = S.ATTRIB_NAME\n          } else {\n            strictFail(parser, 'Invalid attribute name')\n          }\n          continue\n\n        case S.ATTRIB_NAME:\n          if (c === '=') {\n            parser.state = S.ATTRIB_VALUE\n          } else if (c === '>') {\n            strictFail(parser, 'Attribute without value')\n            parser.attribValue = parser.attribName\n            attrib(parser)\n            openTag(parser)\n          } else if (isWhitespace(c)) {\n            parser.state = S.ATTRIB_NAME_SAW_WHITE\n          } else if (isMatch(nameBody, c)) {\n            parser.attribName += c\n          } else {\n            strictFail(parser, 'Invalid attribute name')\n          }\n          continue\n\n        case S.ATTRIB_NAME_SAW_WHITE:\n          if (c === '=') {\n            parser.state = S.ATTRIB_VALUE\n          } else if (isWhitespace(c)) {\n            continue\n          } else {\n            strictFail(parser, 'Attribute without value')\n            parser.tag.attributes[parser.attribName] = ''\n            parser.attribValue = ''\n            emitNode(parser, 'onattribute', {\n              name: parser.attribName,\n              value: ''\n            })\n            parser.attribName = ''\n            if (c === '>') {\n              openTag(parser)\n            } else if (isMatch(nameStart, c)) {\n              parser.attribName = c\n              parser.state = S.ATTRIB_NAME\n            } else {\n              strictFail(parser, 'Invalid attribute name')\n              parser.state = S.ATTRIB\n            }\n          }\n          continue\n\n        case S.ATTRIB_VALUE:\n          if (isWhitespace(c)) {\n            continue\n          } else if (isQuote(c)) {\n            parser.q = c\n            parser.state = S.ATTRIB_VALUE_QUOTED\n          } else {\n            strictFail(parser, 'Unquoted attribute value')\n            parser.state = S.ATTRIB_VALUE_UNQUOTED\n            parser.attribValue = c\n          }\n          continue\n\n        case S.ATTRIB_VALUE_QUOTED:\n          if (c !== parser.q) {\n            if (c === '&') {\n              parser.state = S.ATTRIB_VALUE_ENTITY_Q\n            } else {\n              parser.attribValue += c\n            }\n            continue\n          }\n          attrib(parser)\n          parser.q = ''\n          parser.state = S.ATTRIB_VALUE_CLOSED\n          continue\n\n        case S.ATTRIB_VALUE_CLOSED:\n          if (isWhitespace(c)) {\n            parser.state = S.ATTRIB\n          } else if (c === '>') {\n            openTag(parser)\n          } else if (c === '/') {\n            parser.state = S.OPEN_TAG_SLASH\n          } else if (isMatch(nameStart, c)) {\n            strictFail(parser, 'No whitespace between attributes')\n            parser.attribName = c\n            parser.attribValue = ''\n            parser.state = S.ATTRIB_NAME\n          } else {\n            strictFail(parser, 'Invalid attribute name')\n          }\n          continue\n\n        case S.ATTRIB_VALUE_UNQUOTED:\n          if (!isAttribEnd(c)) {\n            if (c === '&') {\n              parser.state = S.ATTRIB_VALUE_ENTITY_U\n            } else {\n              parser.attribValue += c\n            }\n            continue\n          }\n          attrib(parser)\n          if (c === '>') {\n            openTag(parser)\n          } else {\n            parser.state = S.ATTRIB\n          }\n          continue\n\n        case S.CLOSE_TAG:\n          if (!parser.tagName) {\n            if (isWhitespace(c)) {\n              continue\n            } else if (notMatch(nameStart, c)) {\n              if (parser.script) {\n                parser.script += '</' + c\n                parser.state = S.SCRIPT\n              } else {\n                strictFail(parser, 'Invalid tagname in closing tag.')\n              }\n            } else {\n              parser.tagName = c\n            }\n          } else if (c === '>') {\n            closeTag(parser)\n          } else if (isMatch(nameBody, c)) {\n            parser.tagName += c\n          } else if (parser.script) {\n            parser.script += '</' + parser.tagName\n            parser.tagName = ''\n            parser.state = S.SCRIPT\n          } else {\n            if (!isWhitespace(c)) {\n              strictFail(parser, 'Invalid tagname in closing tag')\n            }\n            parser.state = S.CLOSE_TAG_SAW_WHITE\n          }\n          continue\n\n        case S.CLOSE_TAG_SAW_WHITE:\n          if (isWhitespace(c)) {\n            continue\n          }\n          if (c === '>') {\n            closeTag(parser)\n          } else {\n            strictFail(parser, 'Invalid characters in closing tag')\n          }\n          continue\n\n        case S.TEXT_ENTITY:\n        case S.ATTRIB_VALUE_ENTITY_Q:\n        case S.ATTRIB_VALUE_ENTITY_U:\n          var returnState\n          var buffer\n          switch (parser.state) {\n            case S.TEXT_ENTITY:\n              returnState = S.TEXT\n              buffer = 'textNode'\n              break\n\n            case S.ATTRIB_VALUE_ENTITY_Q:\n              returnState = S.ATTRIB_VALUE_QUOTED\n              buffer = 'attribValue'\n              break\n\n            case S.ATTRIB_VALUE_ENTITY_U:\n              returnState = S.ATTRIB_VALUE_UNQUOTED\n              buffer = 'attribValue'\n              break\n          }\n\n          if (c === ';') {\n            if (parser.opt.unparsedEntities) {\n              var parsedEntity = parseEntity(parser)\n              parser.entity = ''\n              parser.state = returnState\n              parser.write(parsedEntity)\n            } else {\n              parser[buffer] += parseEntity(parser)\n              parser.entity = ''\n              parser.state = returnState\n            }\n          } else if (isMatch(parser.entity.length ? entityBody : entityStart, c)) {\n            parser.entity += c\n          } else {\n            strictFail(parser, 'Invalid character in entity name')\n            parser[buffer] += '&' + parser.entity + c\n            parser.entity = ''\n            parser.state = returnState\n          }\n\n          continue\n\n        default: /* istanbul ignore next */ {\n          throw new Error(parser, 'Unknown state: ' + parser.state)\n        }\n      }\n    } // while\n\n    if (parser.position >= parser.bufferCheckPosition) {\n      checkBufferLength(parser)\n    }\n    return parser\n  }\n\n  /*! http://mths.be/fromcodepoint v0.1.0 by @mathias */\n  /* istanbul ignore next */\n  if (!String.fromCodePoint) {\n    (function () {\n      var stringFromCharCode = String.fromCharCode\n      var floor = Math.floor\n      var fromCodePoint = function () {\n        var MAX_SIZE = 0x4000\n        var codeUnits = []\n        var highSurrogate\n        var lowSurrogate\n        var index = -1\n        var length = arguments.length\n        if (!length) {\n          return ''\n        }\n        var result = ''\n        while (++index < length) {\n          var codePoint = Number(arguments[index])\n          if (\n            !isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`\n            codePoint < 0 || // not a valid Unicode code point\n            codePoint > 0x10FFFF || // not a valid Unicode code point\n            floor(codePoint) !== codePoint // not an integer\n          ) {\n            throw RangeError('Invalid code point: ' + codePoint)\n          }\n          if (codePoint <= 0xFFFF) { // BMP code point\n            codeUnits.push(codePoint)\n          } else { // Astral code point; split in surrogate halves\n            // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n            codePoint -= 0x10000\n            highSurrogate = (codePoint >> 10) + 0xD800\n            lowSurrogate = (codePoint % 0x400) + 0xDC00\n            codeUnits.push(highSurrogate, lowSurrogate)\n          }\n          if (index + 1 === length || codeUnits.length > MAX_SIZE) {\n            result += stringFromCharCode.apply(null, codeUnits)\n            codeUnits.length = 0\n          }\n        }\n        return result\n      }\n      /* istanbul ignore next */\n      if (Object.defineProperty) {\n        Object.defineProperty(String, 'fromCodePoint', {\n          value: fromCodePoint,\n          configurable: true,\n          writable: true\n        })\n      } else {\n        String.fromCodePoint = fromCodePoint\n      }\n    }())\n  }\n})(typeof exports === 'undefined' ? this.sax = {} : exports)\n","(function (global, undefined) {\n    \"use strict\";\n\n    if (global.setImmediate) {\n        return;\n    }\n\n    var nextHandle = 1; // Spec says greater than zero\n    var tasksByHandle = {};\n    var currentlyRunningATask = false;\n    var doc = global.document;\n    var registerImmediate;\n\n    function setImmediate(callback) {\n      // Callback can either be a function or a string\n      if (typeof callback !== \"function\") {\n        callback = new Function(\"\" + callback);\n      }\n      // Copy function arguments\n      var args = new Array(arguments.length - 1);\n      for (var i = 0; i < args.length; i++) {\n          args[i] = arguments[i + 1];\n      }\n      // Store and register the task\n      var task = { callback: callback, args: args };\n      tasksByHandle[nextHandle] = task;\n      registerImmediate(nextHandle);\n      return nextHandle++;\n    }\n\n    function clearImmediate(handle) {\n        delete tasksByHandle[handle];\n    }\n\n    function run(task) {\n        var callback = task.callback;\n        var args = task.args;\n        switch (args.length) {\n        case 0:\n            callback();\n            break;\n        case 1:\n            callback(args[0]);\n            break;\n        case 2:\n            callback(args[0], args[1]);\n            break;\n        case 3:\n            callback(args[0], args[1], args[2]);\n            break;\n        default:\n            callback.apply(undefined, args);\n            break;\n        }\n    }\n\n    function runIfPresent(handle) {\n        // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n        // So if we're currently running a task, we'll need to delay this invocation.\n        if (currentlyRunningATask) {\n            // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n            // \"too much recursion\" error.\n            setTimeout(runIfPresent, 0, handle);\n        } else {\n            var task = tasksByHandle[handle];\n            if (task) {\n                currentlyRunningATask = true;\n                try {\n                    run(task);\n                } finally {\n                    clearImmediate(handle);\n                    currentlyRunningATask = false;\n                }\n            }\n        }\n    }\n\n    function installNextTickImplementation() {\n        registerImmediate = function(handle) {\n            process.nextTick(function () { runIfPresent(handle); });\n        };\n    }\n\n    function canUsePostMessage() {\n        // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n        // where `global.postMessage` means something completely different and can't be used for this purpose.\n        if (global.postMessage && !global.importScripts) {\n            var postMessageIsAsynchronous = true;\n            var oldOnMessage = global.onmessage;\n            global.onmessage = function() {\n                postMessageIsAsynchronous = false;\n            };\n            global.postMessage(\"\", \"*\");\n            global.onmessage = oldOnMessage;\n            return postMessageIsAsynchronous;\n        }\n    }\n\n    function installPostMessageImplementation() {\n        // Installs an event handler on `global` for the `message` event: see\n        // * https://developer.mozilla.org/en/DOM/window.postMessage\n        // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n        var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n        var onGlobalMessage = function(event) {\n            if (event.source === global &&\n                typeof event.data === \"string\" &&\n                event.data.indexOf(messagePrefix) === 0) {\n                runIfPresent(+event.data.slice(messagePrefix.length));\n            }\n        };\n\n        if (global.addEventListener) {\n            global.addEventListener(\"message\", onGlobalMessage, false);\n        } else {\n            global.attachEvent(\"onmessage\", onGlobalMessage);\n        }\n\n        registerImmediate = function(handle) {\n            global.postMessage(messagePrefix + handle, \"*\");\n        };\n    }\n\n    function installMessageChannelImplementation() {\n        var channel = new MessageChannel();\n        channel.port1.onmessage = function(event) {\n            var handle = event.data;\n            runIfPresent(handle);\n        };\n\n        registerImmediate = function(handle) {\n            channel.port2.postMessage(handle);\n        };\n    }\n\n    function installReadyStateChangeImplementation() {\n        var html = doc.documentElement;\n        registerImmediate = function(handle) {\n            // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n            // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n            var script = doc.createElement(\"script\");\n            script.onreadystatechange = function () {\n                runIfPresent(handle);\n                script.onreadystatechange = null;\n                html.removeChild(script);\n                script = null;\n            };\n            html.appendChild(script);\n        };\n    }\n\n    function installSetTimeoutImplementation() {\n        registerImmediate = function(handle) {\n            setTimeout(runIfPresent, 0, handle);\n        };\n    }\n\n    // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n    var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n    attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n    // Don't get fooled by e.g. browserify environments.\n    if ({}.toString.call(global.process) === \"[object process]\") {\n        // For Node.js before 0.9\n        installNextTickImplementation();\n\n    } else if (canUsePostMessage()) {\n        // For non-IE10 modern browsers\n        installPostMessageImplementation();\n\n    } else if (global.MessageChannel) {\n        // For web workers, where supported\n        installMessageChannelImplementation();\n\n    } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n        // For IE 6–8\n        installReadyStateChangeImplementation();\n\n    } else {\n        // For older browsers\n        installSetTimeoutImplementation();\n    }\n\n    attachTo.setImmediate = setImmediate;\n    attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","// @flow\n\n/*::\ntype Options = {\n  max?: number,\n  min?: number,\n  historyTimeConstant?: number,\n  autostart?: boolean,\n  ignoreSameProgress?: boolean,\n}\n*/\n\nfunction makeLowPassFilter(RC/*: number*/) {\n  return function (previousOutput, input, dt) {\n    const alpha = dt / (dt + RC);\n    return previousOutput + alpha * (input - previousOutput);\n  }\n}\n\nfunction def/*:: <T>*/(x/*: ?T*/, d/*: T*/)/*: T*/ {\n  return (x === undefined || x === null) ? d : x;\n}\n\nfunction makeEta(options/*::?: Options */) {\n  options = options || {};\n  var max = def(options.max, 1);\n  var min = def(options.min, 0);\n  var autostart = def(options.autostart, true);\n  var ignoreSameProgress = def(options.ignoreSameProgress, false);\n\n  var rate/*: number | null */ = null;\n  var lastTimestamp/*: number | null */ = null;\n  var lastProgress/*: number | null */ = null;\n\n  var filter = makeLowPassFilter(def(options.historyTimeConstant, 2.5));\n\n  function start() {\n    report(min);\n  }\n\n  function reset() {\n    rate = null;\n    lastTimestamp = null;\n    lastProgress = null;\n    if (autostart) {\n      start();\n    }\n  }\n\n  function report(progress /*: number */, timestamp/*::?: number */) {\n    if (typeof timestamp !== 'number') {\n      timestamp = Date.now();\n    }\n\n    if (lastTimestamp === timestamp) { return; }\n    if (ignoreSameProgress && lastProgress === progress) { return; }\n\n    if (lastTimestamp === null || lastProgress === null) {\n      lastProgress = progress;\n      lastTimestamp = timestamp;\n      return;\n    }\n\n    var deltaProgress = progress - lastProgress;\n    var deltaTimestamp = 0.001 * (timestamp - lastTimestamp);\n    var currentRate = deltaProgress / deltaTimestamp;\n\n    rate = rate === null\n      ? currentRate\n      : filter(rate, currentRate, deltaTimestamp);\n    lastProgress = progress;\n    lastTimestamp = timestamp;\n  }\n\n  function estimate(timestamp/*::?: number*/) {\n    if (lastProgress === null) { return Infinity; }\n    if (lastProgress >= max) { return 0; }\n    if (rate === null) { return Infinity; }\n\n    var estimatedTime = (max - lastProgress) / rate;\n    if (typeof timestamp === 'number' && typeof lastTimestamp === 'number') {\n      estimatedTime -= (timestamp - lastTimestamp) * 0.001;\n    }\n    return Math.max(0, estimatedTime);\n  }\n\n  function getRate() {\n    return rate === null ? 0 : rate;\n  }\n\n  return {\n    start: start,\n    reset: reset,\n    report: report,\n    estimate: estimate,\n    rate: getRate,\n  }\n}\n\nmodule.exports = makeEta;\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nmodule.exports = Stream;\n\nvar EE = require('events').EventEmitter;\nvar inherits = require('inherits');\n\ninherits(Stream, EE);\nStream.Readable = require('readable-stream/lib/_stream_readable.js');\nStream.Writable = require('readable-stream/lib/_stream_writable.js');\nStream.Duplex = require('readable-stream/lib/_stream_duplex.js');\nStream.Transform = require('readable-stream/lib/_stream_transform.js');\nStream.PassThrough = require('readable-stream/lib/_stream_passthrough.js');\nStream.finished = require('readable-stream/lib/internal/streams/end-of-stream.js')\nStream.pipeline = require('readable-stream/lib/internal/streams/pipeline.js')\n\n// Backwards-compat with node 0.4.x\nStream.Stream = Stream;\n\n\n\n// old-style streams.  Note that the pipe method (the only relevant\n// part of this class) is overridden in the Readable class.\n\nfunction Stream() {\n  EE.call(this);\n}\n\nStream.prototype.pipe = function(dest, options) {\n  var source = this;\n\n  function ondata(chunk) {\n    if (dest.writable) {\n      if (false === dest.write(chunk) && source.pause) {\n        source.pause();\n      }\n    }\n  }\n\n  source.on('data', ondata);\n\n  function ondrain() {\n    if (source.readable && source.resume) {\n      source.resume();\n    }\n  }\n\n  dest.on('drain', ondrain);\n\n  // If the 'end' option is not supplied, dest.end() will be called when\n  // source gets the 'end' or 'close' events.  Only dest.end() once.\n  if (!dest._isStdio && (!options || options.end !== false)) {\n    source.on('end', onend);\n    source.on('close', onclose);\n  }\n\n  var didOnEnd = false;\n  function onend() {\n    if (didOnEnd) return;\n    didOnEnd = true;\n\n    dest.end();\n  }\n\n\n  function onclose() {\n    if (didOnEnd) return;\n    didOnEnd = true;\n\n    if (typeof dest.destroy === 'function') dest.destroy();\n  }\n\n  // don't leave dangling pipes when there are errors.\n  function onerror(er) {\n    cleanup();\n    if (EE.listenerCount(this, 'error') === 0) {\n      throw er; // Unhandled stream error in pipe.\n    }\n  }\n\n  source.on('error', onerror);\n  dest.on('error', onerror);\n\n  // remove all the event listeners that were added.\n  function cleanup() {\n    source.removeListener('data', ondata);\n    dest.removeListener('drain', ondrain);\n\n    source.removeListener('end', onend);\n    source.removeListener('close', onclose);\n\n    source.removeListener('error', onerror);\n    dest.removeListener('error', onerror);\n\n    source.removeListener('end', cleanup);\n    source.removeListener('close', cleanup);\n\n    dest.removeListener('close', cleanup);\n  }\n\n  source.on('end', cleanup);\n  source.on('close', cleanup);\n\n  dest.on('close', cleanup);\n\n  dest.emit('pipe', source);\n\n  // Allow for unix-like usage: A.pipe(B).pipe(C)\n  return dest;\n};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n'use strict';\n\n/*<replacement>*/\n\nvar Buffer = require('safe-buffer').Buffer;\n/*</replacement>*/\n\nvar isEncoding = Buffer.isEncoding || function (encoding) {\n  encoding = '' + encoding;\n  switch (encoding && encoding.toLowerCase()) {\n    case 'hex':case 'utf8':case 'utf-8':case 'ascii':case 'binary':case 'base64':case 'ucs2':case 'ucs-2':case 'utf16le':case 'utf-16le':case 'raw':\n      return true;\n    default:\n      return false;\n  }\n};\n\nfunction _normalizeEncoding(enc) {\n  if (!enc) return 'utf8';\n  var retried;\n  while (true) {\n    switch (enc) {\n      case 'utf8':\n      case 'utf-8':\n        return 'utf8';\n      case 'ucs2':\n      case 'ucs-2':\n      case 'utf16le':\n      case 'utf-16le':\n        return 'utf16le';\n      case 'latin1':\n      case 'binary':\n        return 'latin1';\n      case 'base64':\n      case 'ascii':\n      case 'hex':\n        return enc;\n      default:\n        if (retried) return; // undefined\n        enc = ('' + enc).toLowerCase();\n        retried = true;\n    }\n  }\n};\n\n// Do not cache `Buffer.isEncoding` when checking encoding names as some\n// modules monkey-patch it to support additional encodings\nfunction normalizeEncoding(enc) {\n  var nenc = _normalizeEncoding(enc);\n  if (typeof nenc !== 'string' && (Buffer.isEncoding === isEncoding || !isEncoding(enc))) throw new Error('Unknown encoding: ' + enc);\n  return nenc || enc;\n}\n\n// StringDecoder provides an interface for efficiently splitting a series of\n// buffers into a series of JS strings without breaking apart multi-byte\n// characters.\nexports.StringDecoder = StringDecoder;\nfunction StringDecoder(encoding) {\n  this.encoding = normalizeEncoding(encoding);\n  var nb;\n  switch (this.encoding) {\n    case 'utf16le':\n      this.text = utf16Text;\n      this.end = utf16End;\n      nb = 4;\n      break;\n    case 'utf8':\n      this.fillLast = utf8FillLast;\n      nb = 4;\n      break;\n    case 'base64':\n      this.text = base64Text;\n      this.end = base64End;\n      nb = 3;\n      break;\n    default:\n      this.write = simpleWrite;\n      this.end = simpleEnd;\n      return;\n  }\n  this.lastNeed = 0;\n  this.lastTotal = 0;\n  this.lastChar = Buffer.allocUnsafe(nb);\n}\n\nStringDecoder.prototype.write = function (buf) {\n  if (buf.length === 0) return '';\n  var r;\n  var i;\n  if (this.lastNeed) {\n    r = this.fillLast(buf);\n    if (r === undefined) return '';\n    i = this.lastNeed;\n    this.lastNeed = 0;\n  } else {\n    i = 0;\n  }\n  if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);\n  return r || '';\n};\n\nStringDecoder.prototype.end = utf8End;\n\n// Returns only complete characters in a Buffer\nStringDecoder.prototype.text = utf8Text;\n\n// Attempts to complete a partial non-UTF-8 character using bytes from a Buffer\nStringDecoder.prototype.fillLast = function (buf) {\n  if (this.lastNeed <= buf.length) {\n    buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);\n    return this.lastChar.toString(this.encoding, 0, this.lastTotal);\n  }\n  buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);\n  this.lastNeed -= buf.length;\n};\n\n// Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a\n// continuation byte. If an invalid byte is detected, -2 is returned.\nfunction utf8CheckByte(byte) {\n  if (byte <= 0x7F) return 0;else if (byte >> 5 === 0x06) return 2;else if (byte >> 4 === 0x0E) return 3;else if (byte >> 3 === 0x1E) return 4;\n  return byte >> 6 === 0x02 ? -1 : -2;\n}\n\n// Checks at most 3 bytes at the end of a Buffer in order to detect an\n// incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4)\n// needed to complete the UTF-8 character (if applicable) are returned.\nfunction utf8CheckIncomplete(self, buf, i) {\n  var j = buf.length - 1;\n  if (j < i) return 0;\n  var nb = utf8CheckByte(buf[j]);\n  if (nb >= 0) {\n    if (nb > 0) self.lastNeed = nb - 1;\n    return nb;\n  }\n  if (--j < i || nb === -2) return 0;\n  nb = utf8CheckByte(buf[j]);\n  if (nb >= 0) {\n    if (nb > 0) self.lastNeed = nb - 2;\n    return nb;\n  }\n  if (--j < i || nb === -2) return 0;\n  nb = utf8CheckByte(buf[j]);\n  if (nb >= 0) {\n    if (nb > 0) {\n      if (nb === 2) nb = 0;else self.lastNeed = nb - 3;\n    }\n    return nb;\n  }\n  return 0;\n}\n\n// Validates as many continuation bytes for a multi-byte UTF-8 character as\n// needed or are available. If we see a non-continuation byte where we expect\n// one, we \"replace\" the validated continuation bytes we've seen so far with\n// a single UTF-8 replacement character ('\\ufffd'), to match v8's UTF-8 decoding\n// behavior. The continuation byte check is included three times in the case\n// where all of the continuation bytes for a character exist in the same buffer.\n// It is also done this way as a slight performance increase instead of using a\n// loop.\nfunction utf8CheckExtraBytes(self, buf, p) {\n  if ((buf[0] & 0xC0) !== 0x80) {\n    self.lastNeed = 0;\n    return '\\ufffd';\n  }\n  if (self.lastNeed > 1 && buf.length > 1) {\n    if ((buf[1] & 0xC0) !== 0x80) {\n      self.lastNeed = 1;\n      return '\\ufffd';\n    }\n    if (self.lastNeed > 2 && buf.length > 2) {\n      if ((buf[2] & 0xC0) !== 0x80) {\n        self.lastNeed = 2;\n        return '\\ufffd';\n      }\n    }\n  }\n}\n\n// Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer.\nfunction utf8FillLast(buf) {\n  var p = this.lastTotal - this.lastNeed;\n  var r = utf8CheckExtraBytes(this, buf, p);\n  if (r !== undefined) return r;\n  if (this.lastNeed <= buf.length) {\n    buf.copy(this.lastChar, p, 0, this.lastNeed);\n    return this.lastChar.toString(this.encoding, 0, this.lastTotal);\n  }\n  buf.copy(this.lastChar, p, 0, buf.length);\n  this.lastNeed -= buf.length;\n}\n\n// Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a\n// partial character, the character's bytes are buffered until the required\n// number of bytes are available.\nfunction utf8Text(buf, i) {\n  var total = utf8CheckIncomplete(this, buf, i);\n  if (!this.lastNeed) return buf.toString('utf8', i);\n  this.lastTotal = total;\n  var end = buf.length - (total - this.lastNeed);\n  buf.copy(this.lastChar, 0, end);\n  return buf.toString('utf8', i, end);\n}\n\n// For UTF-8, a replacement character is added when ending on a partial\n// character.\nfunction utf8End(buf) {\n  var r = buf && buf.length ? this.write(buf) : '';\n  if (this.lastNeed) return r + '\\ufffd';\n  return r;\n}\n\n// UTF-16LE typically needs two bytes per character, but even if we have an even\n// number of bytes available, we need to check if we end on a leading/high\n// surrogate. In that case, we need to wait for the next two bytes in order to\n// decode the last character properly.\nfunction utf16Text(buf, i) {\n  if ((buf.length - i) % 2 === 0) {\n    var r = buf.toString('utf16le', i);\n    if (r) {\n      var c = r.charCodeAt(r.length - 1);\n      if (c >= 0xD800 && c <= 0xDBFF) {\n        this.lastNeed = 2;\n        this.lastTotal = 4;\n        this.lastChar[0] = buf[buf.length - 2];\n        this.lastChar[1] = buf[buf.length - 1];\n        return r.slice(0, -1);\n      }\n    }\n    return r;\n  }\n  this.lastNeed = 1;\n  this.lastTotal = 2;\n  this.lastChar[0] = buf[buf.length - 1];\n  return buf.toString('utf16le', i, buf.length - 1);\n}\n\n// For UTF-16LE we do not explicitly append special replacement characters if we\n// end on a partial character, we simply let v8 handle that.\nfunction utf16End(buf) {\n  var r = buf && buf.length ? this.write(buf) : '';\n  if (this.lastNeed) {\n    var end = this.lastTotal - this.lastNeed;\n    return r + this.lastChar.toString('utf16le', 0, end);\n  }\n  return r;\n}\n\nfunction base64Text(buf, i) {\n  var n = (buf.length - i) % 3;\n  if (n === 0) return buf.toString('base64', i);\n  this.lastNeed = 3 - n;\n  this.lastTotal = 3;\n  if (n === 1) {\n    this.lastChar[0] = buf[buf.length - 1];\n  } else {\n    this.lastChar[0] = buf[buf.length - 2];\n    this.lastChar[1] = buf[buf.length - 1];\n  }\n  return buf.toString('base64', i, buf.length - n);\n}\n\nfunction base64End(buf) {\n  var r = buf && buf.length ? this.write(buf) : '';\n  if (this.lastNeed) return r + this.lastChar.toString('base64', 0, 3 - this.lastNeed);\n  return r;\n}\n\n// Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex)\nfunction simpleWrite(buf) {\n  return buf.toString(this.encoding);\n}\n\nfunction simpleEnd(buf) {\n  return buf && buf.length ? this.write(buf) : '';\n}","var scope = (typeof global !== \"undefined\" && global) ||\n            (typeof self !== \"undefined\" && self) ||\n            window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n  return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n  return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n  if (timeout) {\n    timeout.close();\n  }\n};\n\nfunction Timeout(id, clearFn) {\n  this._id = id;\n  this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n  this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n  clearTimeout(item._idleTimeoutId);\n  item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n  clearTimeout(item._idleTimeoutId);\n  item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n  clearTimeout(item._idleTimeoutId);\n\n  var msecs = item._idleTimeout;\n  if (msecs >= 0) {\n    item._idleTimeoutId = setTimeout(function onTimeout() {\n      if (item._onTimeout)\n        item._onTimeout();\n    }, msecs);\n  }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto.  Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n                       (typeof global !== \"undefined\" && global.setImmediate) ||\n                       (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n                         (typeof global !== \"undefined\" && global.clearImmediate) ||\n                         (this && this.clearImmediate);\n","\n/**\n * Module exports.\n */\n\nmodule.exports = deprecate;\n\n/**\n * Mark that a method should not be used.\n * Returns a modified function which warns once by default.\n *\n * If `localStorage.noDeprecation = true` is set, then it is a no-op.\n *\n * If `localStorage.throwDeprecation = true` is set, then deprecated functions\n * will throw an Error when invoked.\n *\n * If `localStorage.traceDeprecation = true` is set, then deprecated functions\n * will invoke `console.trace()` instead of `console.error()`.\n *\n * @param {Function} fn - the function to deprecate\n * @param {String} msg - the string to print to the console when `fn` is invoked\n * @returns {Function} a new \"deprecated\" version of `fn`\n * @api public\n */\n\nfunction deprecate (fn, msg) {\n  if (config('noDeprecation')) {\n    return fn;\n  }\n\n  var warned = false;\n  function deprecated() {\n    if (!warned) {\n      if (config('throwDeprecation')) {\n        throw new Error(msg);\n      } else if (config('traceDeprecation')) {\n        console.trace(msg);\n      } else {\n        console.warn(msg);\n      }\n      warned = true;\n    }\n    return fn.apply(this, arguments);\n  }\n\n  return deprecated;\n}\n\n/**\n * Checks `localStorage` for boolean values for the given `name`.\n *\n * @param {String} name\n * @returns {Boolean}\n * @api private\n */\n\nfunction config (name) {\n  // accessing global.localStorage can trigger a DOMException in sandboxed iframes\n  try {\n    if (!global.localStorage) return false;\n  } catch (_) {\n    return false;\n  }\n  var val = global.localStorage[name];\n  if (null == val) return false;\n  return String(val).toLowerCase() === 'true';\n}\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  \"use strict\";\n  exports.stripBOM = function(str) {\n    if (str[0] === '\\uFEFF') {\n      return str.substring(1);\n    } else {\n      return str;\n    }\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  \"use strict\";\n  var builder, defaults, escapeCDATA, requiresCDATA, wrapCDATA,\n    hasProp = {}.hasOwnProperty;\n\n  builder = require('xmlbuilder');\n\n  defaults = require('./defaults').defaults;\n\n  requiresCDATA = function(entry) {\n    return typeof entry === \"string\" && (entry.indexOf('&') >= 0 || entry.indexOf('>') >= 0 || entry.indexOf('<') >= 0);\n  };\n\n  wrapCDATA = function(entry) {\n    return \"<![CDATA[\" + (escapeCDATA(entry)) + \"]]>\";\n  };\n\n  escapeCDATA = function(entry) {\n    return entry.replace(']]>', ']]]]><![CDATA[>');\n  };\n\n  exports.Builder = (function() {\n    function Builder(opts) {\n      var key, ref, value;\n      this.options = {};\n      ref = defaults[\"0.2\"];\n      for (key in ref) {\n        if (!hasProp.call(ref, key)) continue;\n        value = ref[key];\n        this.options[key] = value;\n      }\n      for (key in opts) {\n        if (!hasProp.call(opts, key)) continue;\n        value = opts[key];\n        this.options[key] = value;\n      }\n    }\n\n    Builder.prototype.buildObject = function(rootObj) {\n      var attrkey, charkey, render, rootElement, rootName;\n      attrkey = this.options.attrkey;\n      charkey = this.options.charkey;\n      if ((Object.keys(rootObj).length === 1) && (this.options.rootName === defaults['0.2'].rootName)) {\n        rootName = Object.keys(rootObj)[0];\n        rootObj = rootObj[rootName];\n      } else {\n        rootName = this.options.rootName;\n      }\n      render = (function(_this) {\n        return function(element, obj) {\n          var attr, child, entry, index, key, value;\n          if (typeof obj !== 'object') {\n            if (_this.options.cdata && requiresCDATA(obj)) {\n              element.raw(wrapCDATA(obj));\n            } else {\n              element.txt(obj);\n            }\n          } else if (Array.isArray(obj)) {\n            for (index in obj) {\n              if (!hasProp.call(obj, index)) continue;\n              child = obj[index];\n              for (key in child) {\n                entry = child[key];\n                element = render(element.ele(key), entry).up();\n              }\n            }\n          } else {\n            for (key in obj) {\n              if (!hasProp.call(obj, key)) continue;\n              child = obj[key];\n              if (key === attrkey) {\n                if (typeof child === \"object\") {\n                  for (attr in child) {\n                    value = child[attr];\n                    element = element.att(attr, value);\n                  }\n                }\n              } else if (key === charkey) {\n                if (_this.options.cdata && requiresCDATA(child)) {\n                  element = element.raw(wrapCDATA(child));\n                } else {\n                  element = element.txt(child);\n                }\n              } else if (Array.isArray(child)) {\n                for (index in child) {\n                  if (!hasProp.call(child, index)) continue;\n                  entry = child[index];\n                  if (typeof entry === 'string') {\n                    if (_this.options.cdata && requiresCDATA(entry)) {\n                      element = element.ele(key).raw(wrapCDATA(entry)).up();\n                    } else {\n                      element = element.ele(key, entry).up();\n                    }\n                  } else {\n                    element = render(element.ele(key), entry).up();\n                  }\n                }\n              } else if (typeof child === \"object\") {\n                element = render(element.ele(key), child).up();\n              } else {\n                if (typeof child === 'string' && _this.options.cdata && requiresCDATA(child)) {\n                  element = element.ele(key).raw(wrapCDATA(child)).up();\n                } else {\n                  if (child == null) {\n                    child = '';\n                  }\n                  element = element.ele(key, child.toString()).up();\n                }\n              }\n            }\n          }\n          return element;\n        };\n      })(this);\n      rootElement = builder.create(rootName, this.options.xmldec, this.options.doctype, {\n        headless: this.options.headless,\n        allowSurrogateChars: this.options.allowSurrogateChars\n      });\n      return render(rootElement, rootObj).end(this.options.renderOpts);\n    };\n\n    return Builder;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  exports.defaults = {\n    \"0.1\": {\n      explicitCharkey: false,\n      trim: true,\n      normalize: true,\n      normalizeTags: false,\n      attrkey: \"@\",\n      charkey: \"#\",\n      explicitArray: false,\n      ignoreAttrs: false,\n      mergeAttrs: false,\n      explicitRoot: false,\n      validator: null,\n      xmlns: false,\n      explicitChildren: false,\n      childkey: '@@',\n      charsAsChildren: false,\n      includeWhiteChars: false,\n      async: false,\n      strict: true,\n      attrNameProcessors: null,\n      attrValueProcessors: null,\n      tagNameProcessors: null,\n      valueProcessors: null,\n      emptyTag: ''\n    },\n    \"0.2\": {\n      explicitCharkey: false,\n      trim: false,\n      normalize: false,\n      normalizeTags: false,\n      attrkey: \"$\",\n      charkey: \"_\",\n      explicitArray: true,\n      ignoreAttrs: false,\n      mergeAttrs: false,\n      explicitRoot: true,\n      validator: null,\n      xmlns: false,\n      explicitChildren: false,\n      preserveChildrenOrder: false,\n      childkey: '$$',\n      charsAsChildren: false,\n      includeWhiteChars: false,\n      async: false,\n      strict: true,\n      attrNameProcessors: null,\n      attrValueProcessors: null,\n      tagNameProcessors: null,\n      valueProcessors: null,\n      rootName: 'root',\n      xmldec: {\n        'version': '1.0',\n        'encoding': 'UTF-8',\n        'standalone': true\n      },\n      doctype: null,\n      renderOpts: {\n        'pretty': true,\n        'indent': '  ',\n        'newline': '\\n'\n      },\n      headless: false,\n      chunkSize: 10000,\n      emptyTag: '',\n      cdata: false\n    }\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  \"use strict\";\n  var bom, defaults, defineProperty, events, isEmpty, processItem, processors, sax, setImmediate,\n    bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  sax = require('sax');\n\n  events = require('events');\n\n  bom = require('./bom');\n\n  processors = require('./processors');\n\n  setImmediate = require('timers').setImmediate;\n\n  defaults = require('./defaults').defaults;\n\n  isEmpty = function(thing) {\n    return typeof thing === \"object\" && (thing != null) && Object.keys(thing).length === 0;\n  };\n\n  processItem = function(processors, item, key) {\n    var i, len, process;\n    for (i = 0, len = processors.length; i < len; i++) {\n      process = processors[i];\n      item = process(item, key);\n    }\n    return item;\n  };\n\n  defineProperty = function(obj, key, value) {\n    var descriptor;\n    descriptor = Object.create(null);\n    descriptor.value = value;\n    descriptor.writable = true;\n    descriptor.enumerable = true;\n    descriptor.configurable = true;\n    return Object.defineProperty(obj, key, descriptor);\n  };\n\n  exports.Parser = (function(superClass) {\n    extend(Parser, superClass);\n\n    function Parser(opts) {\n      this.parseStringPromise = bind(this.parseStringPromise, this);\n      this.parseString = bind(this.parseString, this);\n      this.reset = bind(this.reset, this);\n      this.assignOrPush = bind(this.assignOrPush, this);\n      this.processAsync = bind(this.processAsync, this);\n      var key, ref, value;\n      if (!(this instanceof exports.Parser)) {\n        return new exports.Parser(opts);\n      }\n      this.options = {};\n      ref = defaults[\"0.2\"];\n      for (key in ref) {\n        if (!hasProp.call(ref, key)) continue;\n        value = ref[key];\n        this.options[key] = value;\n      }\n      for (key in opts) {\n        if (!hasProp.call(opts, key)) continue;\n        value = opts[key];\n        this.options[key] = value;\n      }\n      if (this.options.xmlns) {\n        this.options.xmlnskey = this.options.attrkey + \"ns\";\n      }\n      if (this.options.normalizeTags) {\n        if (!this.options.tagNameProcessors) {\n          this.options.tagNameProcessors = [];\n        }\n        this.options.tagNameProcessors.unshift(processors.normalize);\n      }\n      this.reset();\n    }\n\n    Parser.prototype.processAsync = function() {\n      var chunk, err;\n      try {\n        if (this.remaining.length <= this.options.chunkSize) {\n          chunk = this.remaining;\n          this.remaining = '';\n          this.saxParser = this.saxParser.write(chunk);\n          return this.saxParser.close();\n        } else {\n          chunk = this.remaining.substr(0, this.options.chunkSize);\n          this.remaining = this.remaining.substr(this.options.chunkSize, this.remaining.length);\n          this.saxParser = this.saxParser.write(chunk);\n          return setImmediate(this.processAsync);\n        }\n      } catch (error1) {\n        err = error1;\n        if (!this.saxParser.errThrown) {\n          this.saxParser.errThrown = true;\n          return this.emit(err);\n        }\n      }\n    };\n\n    Parser.prototype.assignOrPush = function(obj, key, newValue) {\n      if (!(key in obj)) {\n        if (!this.options.explicitArray) {\n          return defineProperty(obj, key, newValue);\n        } else {\n          return defineProperty(obj, key, [newValue]);\n        }\n      } else {\n        if (!(obj[key] instanceof Array)) {\n          defineProperty(obj, key, [obj[key]]);\n        }\n        return obj[key].push(newValue);\n      }\n    };\n\n    Parser.prototype.reset = function() {\n      var attrkey, charkey, ontext, stack;\n      this.removeAllListeners();\n      this.saxParser = sax.parser(this.options.strict, {\n        trim: false,\n        normalize: false,\n        xmlns: this.options.xmlns\n      });\n      this.saxParser.errThrown = false;\n      this.saxParser.onerror = (function(_this) {\n        return function(error) {\n          _this.saxParser.resume();\n          if (!_this.saxParser.errThrown) {\n            _this.saxParser.errThrown = true;\n            return _this.emit(\"error\", error);\n          }\n        };\n      })(this);\n      this.saxParser.onend = (function(_this) {\n        return function() {\n          if (!_this.saxParser.ended) {\n            _this.saxParser.ended = true;\n            return _this.emit(\"end\", _this.resultObject);\n          }\n        };\n      })(this);\n      this.saxParser.ended = false;\n      this.EXPLICIT_CHARKEY = this.options.explicitCharkey;\n      this.resultObject = null;\n      stack = [];\n      attrkey = this.options.attrkey;\n      charkey = this.options.charkey;\n      this.saxParser.onopentag = (function(_this) {\n        return function(node) {\n          var key, newValue, obj, processedKey, ref;\n          obj = {};\n          obj[charkey] = \"\";\n          if (!_this.options.ignoreAttrs) {\n            ref = node.attributes;\n            for (key in ref) {\n              if (!hasProp.call(ref, key)) continue;\n              if (!(attrkey in obj) && !_this.options.mergeAttrs) {\n                obj[attrkey] = {};\n              }\n              newValue = _this.options.attrValueProcessors ? processItem(_this.options.attrValueProcessors, node.attributes[key], key) : node.attributes[key];\n              processedKey = _this.options.attrNameProcessors ? processItem(_this.options.attrNameProcessors, key) : key;\n              if (_this.options.mergeAttrs) {\n                _this.assignOrPush(obj, processedKey, newValue);\n              } else {\n                defineProperty(obj[attrkey], processedKey, newValue);\n              }\n            }\n          }\n          obj[\"#name\"] = _this.options.tagNameProcessors ? processItem(_this.options.tagNameProcessors, node.name) : node.name;\n          if (_this.options.xmlns) {\n            obj[_this.options.xmlnskey] = {\n              uri: node.uri,\n              local: node.local\n            };\n          }\n          return stack.push(obj);\n        };\n      })(this);\n      this.saxParser.onclosetag = (function(_this) {\n        return function() {\n          var cdata, emptyStr, key, node, nodeName, obj, objClone, old, s, xpath;\n          obj = stack.pop();\n          nodeName = obj[\"#name\"];\n          if (!_this.options.explicitChildren || !_this.options.preserveChildrenOrder) {\n            delete obj[\"#name\"];\n          }\n          if (obj.cdata === true) {\n            cdata = obj.cdata;\n            delete obj.cdata;\n          }\n          s = stack[stack.length - 1];\n          if (obj[charkey].match(/^\\s*$/) && !cdata) {\n            emptyStr = obj[charkey];\n            delete obj[charkey];\n          } else {\n            if (_this.options.trim) {\n              obj[charkey] = obj[charkey].trim();\n            }\n            if (_this.options.normalize) {\n              obj[charkey] = obj[charkey].replace(/\\s{2,}/g, \" \").trim();\n            }\n            obj[charkey] = _this.options.valueProcessors ? processItem(_this.options.valueProcessors, obj[charkey], nodeName) : obj[charkey];\n            if (Object.keys(obj).length === 1 && charkey in obj && !_this.EXPLICIT_CHARKEY) {\n              obj = obj[charkey];\n            }\n          }\n          if (isEmpty(obj)) {\n            if (typeof _this.options.emptyTag === 'function') {\n              obj = _this.options.emptyTag();\n            } else {\n              obj = _this.options.emptyTag !== '' ? _this.options.emptyTag : emptyStr;\n            }\n          }\n          if (_this.options.validator != null) {\n            xpath = \"/\" + ((function() {\n              var i, len, results;\n              results = [];\n              for (i = 0, len = stack.length; i < len; i++) {\n                node = stack[i];\n                results.push(node[\"#name\"]);\n              }\n              return results;\n            })()).concat(nodeName).join(\"/\");\n            (function() {\n              var err;\n              try {\n                return obj = _this.options.validator(xpath, s && s[nodeName], obj);\n              } catch (error1) {\n                err = error1;\n                return _this.emit(\"error\", err);\n              }\n            })();\n          }\n          if (_this.options.explicitChildren && !_this.options.mergeAttrs && typeof obj === 'object') {\n            if (!_this.options.preserveChildrenOrder) {\n              node = {};\n              if (_this.options.attrkey in obj) {\n                node[_this.options.attrkey] = obj[_this.options.attrkey];\n                delete obj[_this.options.attrkey];\n              }\n              if (!_this.options.charsAsChildren && _this.options.charkey in obj) {\n                node[_this.options.charkey] = obj[_this.options.charkey];\n                delete obj[_this.options.charkey];\n              }\n              if (Object.getOwnPropertyNames(obj).length > 0) {\n                node[_this.options.childkey] = obj;\n              }\n              obj = node;\n            } else if (s) {\n              s[_this.options.childkey] = s[_this.options.childkey] || [];\n              objClone = {};\n              for (key in obj) {\n                if (!hasProp.call(obj, key)) continue;\n                defineProperty(objClone, key, obj[key]);\n              }\n              s[_this.options.childkey].push(objClone);\n              delete obj[\"#name\"];\n              if (Object.keys(obj).length === 1 && charkey in obj && !_this.EXPLICIT_CHARKEY) {\n                obj = obj[charkey];\n              }\n            }\n          }\n          if (stack.length > 0) {\n            return _this.assignOrPush(s, nodeName, obj);\n          } else {\n            if (_this.options.explicitRoot) {\n              old = obj;\n              obj = {};\n              defineProperty(obj, nodeName, old);\n            }\n            _this.resultObject = obj;\n            _this.saxParser.ended = true;\n            return _this.emit(\"end\", _this.resultObject);\n          }\n        };\n      })(this);\n      ontext = (function(_this) {\n        return function(text) {\n          var charChild, s;\n          s = stack[stack.length - 1];\n          if (s) {\n            s[charkey] += text;\n            if (_this.options.explicitChildren && _this.options.preserveChildrenOrder && _this.options.charsAsChildren && (_this.options.includeWhiteChars || text.replace(/\\\\n/g, '').trim() !== '')) {\n              s[_this.options.childkey] = s[_this.options.childkey] || [];\n              charChild = {\n                '#name': '__text__'\n              };\n              charChild[charkey] = text;\n              if (_this.options.normalize) {\n                charChild[charkey] = charChild[charkey].replace(/\\s{2,}/g, \" \").trim();\n              }\n              s[_this.options.childkey].push(charChild);\n            }\n            return s;\n          }\n        };\n      })(this);\n      this.saxParser.ontext = ontext;\n      return this.saxParser.oncdata = (function(_this) {\n        return function(text) {\n          var s;\n          s = ontext(text);\n          if (s) {\n            return s.cdata = true;\n          }\n        };\n      })(this);\n    };\n\n    Parser.prototype.parseString = function(str, cb) {\n      var err;\n      if ((cb != null) && typeof cb === \"function\") {\n        this.on(\"end\", function(result) {\n          this.reset();\n          return cb(null, result);\n        });\n        this.on(\"error\", function(err) {\n          this.reset();\n          return cb(err);\n        });\n      }\n      try {\n        str = str.toString();\n        if (str.trim() === '') {\n          this.emit(\"end\", null);\n          return true;\n        }\n        str = bom.stripBOM(str);\n        if (this.options.async) {\n          this.remaining = str;\n          setImmediate(this.processAsync);\n          return this.saxParser;\n        }\n        return this.saxParser.write(str).close();\n      } catch (error1) {\n        err = error1;\n        if (!(this.saxParser.errThrown || this.saxParser.ended)) {\n          this.emit('error', err);\n          return this.saxParser.errThrown = true;\n        } else if (this.saxParser.ended) {\n          throw err;\n        }\n      }\n    };\n\n    Parser.prototype.parseStringPromise = function(str) {\n      return new Promise((function(_this) {\n        return function(resolve, reject) {\n          return _this.parseString(str, function(err, value) {\n            if (err) {\n              return reject(err);\n            } else {\n              return resolve(value);\n            }\n          });\n        };\n      })(this));\n    };\n\n    return Parser;\n\n  })(events);\n\n  exports.parseString = function(str, a, b) {\n    var cb, options, parser;\n    if (b != null) {\n      if (typeof b === 'function') {\n        cb = b;\n      }\n      if (typeof a === 'object') {\n        options = a;\n      }\n    } else {\n      if (typeof a === 'function') {\n        cb = a;\n      }\n      options = {};\n    }\n    parser = new exports.Parser(options);\n    return parser.parseString(str, cb);\n  };\n\n  exports.parseStringPromise = function(str, a) {\n    var options, parser;\n    if (typeof a === 'object') {\n      options = a;\n    }\n    parser = new exports.Parser(options);\n    return parser.parseStringPromise(str);\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  \"use strict\";\n  var prefixMatch;\n\n  prefixMatch = new RegExp(/(?!xmlns)^.*:/);\n\n  exports.normalize = function(str) {\n    return str.toLowerCase();\n  };\n\n  exports.firstCharLowerCase = function(str) {\n    return str.charAt(0).toLowerCase() + str.slice(1);\n  };\n\n  exports.stripPrefix = function(str) {\n    return str.replace(prefixMatch, '');\n  };\n\n  exports.parseNumbers = function(str) {\n    if (!isNaN(str)) {\n      str = str % 1 === 0 ? parseInt(str, 10) : parseFloat(str);\n    }\n    return str;\n  };\n\n  exports.parseBooleans = function(str) {\n    if (/^(?:true|false)$/i.test(str)) {\n      str = str.toLowerCase() === 'true';\n    }\n    return str;\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  \"use strict\";\n  var builder, defaults, parser, processors,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  defaults = require('./defaults');\n\n  builder = require('./builder');\n\n  parser = require('./parser');\n\n  processors = require('./processors');\n\n  exports.defaults = defaults.defaults;\n\n  exports.processors = processors;\n\n  exports.ValidationError = (function(superClass) {\n    extend(ValidationError, superClass);\n\n    function ValidationError(message) {\n      this.message = message;\n    }\n\n    return ValidationError;\n\n  })(Error);\n\n  exports.Builder = builder.Builder;\n\n  exports.Parser = parser.Parser;\n\n  exports.parseString = parser.parseString;\n\n  exports.parseStringPromise = parser.parseStringPromise;\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  module.exports = {\n    Disconnected: 1,\n    Preceding: 2,\n    Following: 4,\n    Contains: 8,\n    ContainedBy: 16,\n    ImplementationSpecific: 32\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  module.exports = {\n    Element: 1,\n    Attribute: 2,\n    Text: 3,\n    CData: 4,\n    EntityReference: 5,\n    EntityDeclaration: 6,\n    ProcessingInstruction: 7,\n    Comment: 8,\n    Document: 9,\n    DocType: 10,\n    DocumentFragment: 11,\n    NotationDeclaration: 12,\n    Declaration: 201,\n    Raw: 202,\n    AttributeDeclaration: 203,\n    ElementDeclaration: 204,\n    Dummy: 205\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var assign, getValue, isArray, isEmpty, isFunction, isObject, isPlainObject,\n    slice = [].slice,\n    hasProp = {}.hasOwnProperty;\n\n  assign = function() {\n    var i, key, len, source, sources, target;\n    target = arguments[0], sources = 2 <= arguments.length ? slice.call(arguments, 1) : [];\n    if (isFunction(Object.assign)) {\n      Object.assign.apply(null, arguments);\n    } else {\n      for (i = 0, len = sources.length; i < len; i++) {\n        source = sources[i];\n        if (source != null) {\n          for (key in source) {\n            if (!hasProp.call(source, key)) continue;\n            target[key] = source[key];\n          }\n        }\n      }\n    }\n    return target;\n  };\n\n  isFunction = function(val) {\n    return !!val && Object.prototype.toString.call(val) === '[object Function]';\n  };\n\n  isObject = function(val) {\n    var ref;\n    return !!val && ((ref = typeof val) === 'function' || ref === 'object');\n  };\n\n  isArray = function(val) {\n    if (isFunction(Array.isArray)) {\n      return Array.isArray(val);\n    } else {\n      return Object.prototype.toString.call(val) === '[object Array]';\n    }\n  };\n\n  isEmpty = function(val) {\n    var key;\n    if (isArray(val)) {\n      return !val.length;\n    } else {\n      for (key in val) {\n        if (!hasProp.call(val, key)) continue;\n        return false;\n      }\n      return true;\n    }\n  };\n\n  isPlainObject = function(val) {\n    var ctor, proto;\n    return isObject(val) && (proto = Object.getPrototypeOf(val)) && (ctor = proto.constructor) && (typeof ctor === 'function') && (ctor instanceof ctor) && (Function.prototype.toString.call(ctor) === Function.prototype.toString.call(Object));\n  };\n\n  getValue = function(obj) {\n    if (isFunction(obj.valueOf)) {\n      return obj.valueOf();\n    } else {\n      return obj;\n    }\n  };\n\n  module.exports.assign = assign;\n\n  module.exports.isFunction = isFunction;\n\n  module.exports.isObject = isObject;\n\n  module.exports.isArray = isArray;\n\n  module.exports.isEmpty = isEmpty;\n\n  module.exports.isPlainObject = isPlainObject;\n\n  module.exports.getValue = getValue;\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  module.exports = {\n    None: 0,\n    OpenTag: 1,\n    InsideTag: 2,\n    CloseTag: 3\n  };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLAttribute, XMLNode;\n\n  NodeType = require('./NodeType');\n\n  XMLNode = require('./XMLNode');\n\n  module.exports = XMLAttribute = (function() {\n    function XMLAttribute(parent, name, value) {\n      this.parent = parent;\n      if (this.parent) {\n        this.options = this.parent.options;\n        this.stringify = this.parent.stringify;\n      }\n      if (name == null) {\n        throw new Error(\"Missing attribute name. \" + this.debugInfo(name));\n      }\n      this.name = this.stringify.name(name);\n      this.value = this.stringify.attValue(value);\n      this.type = NodeType.Attribute;\n      this.isId = false;\n      this.schemaTypeInfo = null;\n    }\n\n    Object.defineProperty(XMLAttribute.prototype, 'nodeType', {\n      get: function() {\n        return this.type;\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'ownerElement', {\n      get: function() {\n        return this.parent;\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'textContent', {\n      get: function() {\n        return this.value;\n      },\n      set: function(value) {\n        return this.value = value || '';\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'namespaceURI', {\n      get: function() {\n        return '';\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'prefix', {\n      get: function() {\n        return '';\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'localName', {\n      get: function() {\n        return this.name;\n      }\n    });\n\n    Object.defineProperty(XMLAttribute.prototype, 'specified', {\n      get: function() {\n        return true;\n      }\n    });\n\n    XMLAttribute.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLAttribute.prototype.toString = function(options) {\n      return this.options.writer.attribute(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLAttribute.prototype.debugInfo = function(name) {\n      name = name || this.name;\n      if (name == null) {\n        return \"parent: <\" + this.parent.name + \">\";\n      } else {\n        return \"attribute: {\" + name + \"}, parent: <\" + this.parent.name + \">\";\n      }\n    };\n\n    XMLAttribute.prototype.isEqualNode = function(node) {\n      if (node.namespaceURI !== this.namespaceURI) {\n        return false;\n      }\n      if (node.prefix !== this.prefix) {\n        return false;\n      }\n      if (node.localName !== this.localName) {\n        return false;\n      }\n      if (node.value !== this.value) {\n        return false;\n      }\n      return true;\n    };\n\n    return XMLAttribute;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLCData, XMLCharacterData,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLCharacterData = require('./XMLCharacterData');\n\n  module.exports = XMLCData = (function(superClass) {\n    extend(XMLCData, superClass);\n\n    function XMLCData(parent, text) {\n      XMLCData.__super__.constructor.call(this, parent);\n      if (text == null) {\n        throw new Error(\"Missing CDATA text. \" + this.debugInfo());\n      }\n      this.name = \"#cdata-section\";\n      this.type = NodeType.CData;\n      this.value = this.stringify.cdata(text);\n    }\n\n    XMLCData.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLCData.prototype.toString = function(options) {\n      return this.options.writer.cdata(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLCData;\n\n  })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLCharacterData, XMLNode,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLNode = require('./XMLNode');\n\n  module.exports = XMLCharacterData = (function(superClass) {\n    extend(XMLCharacterData, superClass);\n\n    function XMLCharacterData(parent) {\n      XMLCharacterData.__super__.constructor.call(this, parent);\n      this.value = '';\n    }\n\n    Object.defineProperty(XMLCharacterData.prototype, 'data', {\n      get: function() {\n        return this.value;\n      },\n      set: function(value) {\n        return this.value = value || '';\n      }\n    });\n\n    Object.defineProperty(XMLCharacterData.prototype, 'length', {\n      get: function() {\n        return this.value.length;\n      }\n    });\n\n    Object.defineProperty(XMLCharacterData.prototype, 'textContent', {\n      get: function() {\n        return this.value;\n      },\n      set: function(value) {\n        return this.value = value || '';\n      }\n    });\n\n    XMLCharacterData.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLCharacterData.prototype.substringData = function(offset, count) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLCharacterData.prototype.appendData = function(arg) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLCharacterData.prototype.insertData = function(offset, arg) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLCharacterData.prototype.deleteData = function(offset, count) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLCharacterData.prototype.replaceData = function(offset, count, arg) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLCharacterData.prototype.isEqualNode = function(node) {\n      if (!XMLCharacterData.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n        return false;\n      }\n      if (node.data !== this.data) {\n        return false;\n      }\n      return true;\n    };\n\n    return XMLCharacterData;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLCharacterData, XMLComment,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLCharacterData = require('./XMLCharacterData');\n\n  module.exports = XMLComment = (function(superClass) {\n    extend(XMLComment, superClass);\n\n    function XMLComment(parent, text) {\n      XMLComment.__super__.constructor.call(this, parent);\n      if (text == null) {\n        throw new Error(\"Missing comment text. \" + this.debugInfo());\n      }\n      this.name = \"#comment\";\n      this.type = NodeType.Comment;\n      this.value = this.stringify.comment(text);\n    }\n\n    XMLComment.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLComment.prototype.toString = function(options) {\n      return this.options.writer.comment(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLComment;\n\n  })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLDOMConfiguration, XMLDOMErrorHandler, XMLDOMStringList;\n\n  XMLDOMErrorHandler = require('./XMLDOMErrorHandler');\n\n  XMLDOMStringList = require('./XMLDOMStringList');\n\n  module.exports = XMLDOMConfiguration = (function() {\n    function XMLDOMConfiguration() {\n      var clonedSelf;\n      this.defaultParams = {\n        \"canonical-form\": false,\n        \"cdata-sections\": false,\n        \"comments\": false,\n        \"datatype-normalization\": false,\n        \"element-content-whitespace\": true,\n        \"entities\": true,\n        \"error-handler\": new XMLDOMErrorHandler(),\n        \"infoset\": true,\n        \"validate-if-schema\": false,\n        \"namespaces\": true,\n        \"namespace-declarations\": true,\n        \"normalize-characters\": false,\n        \"schema-location\": '',\n        \"schema-type\": '',\n        \"split-cdata-sections\": true,\n        \"validate\": false,\n        \"well-formed\": true\n      };\n      this.params = clonedSelf = Object.create(this.defaultParams);\n    }\n\n    Object.defineProperty(XMLDOMConfiguration.prototype, 'parameterNames', {\n      get: function() {\n        return new XMLDOMStringList(Object.keys(this.defaultParams));\n      }\n    });\n\n    XMLDOMConfiguration.prototype.getParameter = function(name) {\n      if (this.params.hasOwnProperty(name)) {\n        return this.params[name];\n      } else {\n        return null;\n      }\n    };\n\n    XMLDOMConfiguration.prototype.canSetParameter = function(name, value) {\n      return true;\n    };\n\n    XMLDOMConfiguration.prototype.setParameter = function(name, value) {\n      if (value != null) {\n        return this.params[name] = value;\n      } else {\n        return delete this.params[name];\n      }\n    };\n\n    return XMLDOMConfiguration;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLDOMErrorHandler;\n\n  module.exports = XMLDOMErrorHandler = (function() {\n    function XMLDOMErrorHandler() {}\n\n    XMLDOMErrorHandler.prototype.handleError = function(error) {\n      throw new Error(error);\n    };\n\n    return XMLDOMErrorHandler;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLDOMImplementation;\n\n  module.exports = XMLDOMImplementation = (function() {\n    function XMLDOMImplementation() {}\n\n    XMLDOMImplementation.prototype.hasFeature = function(feature, version) {\n      return true;\n    };\n\n    XMLDOMImplementation.prototype.createDocumentType = function(qualifiedName, publicId, systemId) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    XMLDOMImplementation.prototype.createDocument = function(namespaceURI, qualifiedName, doctype) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    XMLDOMImplementation.prototype.createHTMLDocument = function(title) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    XMLDOMImplementation.prototype.getFeature = function(feature, version) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    return XMLDOMImplementation;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLDOMStringList;\n\n  module.exports = XMLDOMStringList = (function() {\n    function XMLDOMStringList(arr) {\n      this.arr = arr || [];\n    }\n\n    Object.defineProperty(XMLDOMStringList.prototype, 'length', {\n      get: function() {\n        return this.arr.length;\n      }\n    });\n\n    XMLDOMStringList.prototype.item = function(index) {\n      return this.arr[index] || null;\n    };\n\n    XMLDOMStringList.prototype.contains = function(str) {\n      return this.arr.indexOf(str) !== -1;\n    };\n\n    return XMLDOMStringList;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDTDAttList, XMLNode,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDTDAttList = (function(superClass) {\n    extend(XMLDTDAttList, superClass);\n\n    function XMLDTDAttList(parent, elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n      XMLDTDAttList.__super__.constructor.call(this, parent);\n      if (elementName == null) {\n        throw new Error(\"Missing DTD element name. \" + this.debugInfo());\n      }\n      if (attributeName == null) {\n        throw new Error(\"Missing DTD attribute name. \" + this.debugInfo(elementName));\n      }\n      if (!attributeType) {\n        throw new Error(\"Missing DTD attribute type. \" + this.debugInfo(elementName));\n      }\n      if (!defaultValueType) {\n        throw new Error(\"Missing DTD attribute default. \" + this.debugInfo(elementName));\n      }\n      if (defaultValueType.indexOf('#') !== 0) {\n        defaultValueType = '#' + defaultValueType;\n      }\n      if (!defaultValueType.match(/^(#REQUIRED|#IMPLIED|#FIXED|#DEFAULT)$/)) {\n        throw new Error(\"Invalid default value type; expected: #REQUIRED, #IMPLIED, #FIXED or #DEFAULT. \" + this.debugInfo(elementName));\n      }\n      if (defaultValue && !defaultValueType.match(/^(#FIXED|#DEFAULT)$/)) {\n        throw new Error(\"Default value only applies to #FIXED or #DEFAULT. \" + this.debugInfo(elementName));\n      }\n      this.elementName = this.stringify.name(elementName);\n      this.type = NodeType.AttributeDeclaration;\n      this.attributeName = this.stringify.name(attributeName);\n      this.attributeType = this.stringify.dtdAttType(attributeType);\n      if (defaultValue) {\n        this.defaultValue = this.stringify.dtdAttDefault(defaultValue);\n      }\n      this.defaultValueType = defaultValueType;\n    }\n\n    XMLDTDAttList.prototype.toString = function(options) {\n      return this.options.writer.dtdAttList(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLDTDAttList;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDTDElement, XMLNode,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDTDElement = (function(superClass) {\n    extend(XMLDTDElement, superClass);\n\n    function XMLDTDElement(parent, name, value) {\n      XMLDTDElement.__super__.constructor.call(this, parent);\n      if (name == null) {\n        throw new Error(\"Missing DTD element name. \" + this.debugInfo());\n      }\n      if (!value) {\n        value = '(#PCDATA)';\n      }\n      if (Array.isArray(value)) {\n        value = '(' + value.join(',') + ')';\n      }\n      this.name = this.stringify.name(name);\n      this.type = NodeType.ElementDeclaration;\n      this.value = this.stringify.dtdElementValue(value);\n    }\n\n    XMLDTDElement.prototype.toString = function(options) {\n      return this.options.writer.dtdElement(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLDTDElement;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDTDEntity, XMLNode, isObject,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  isObject = require('./Utility').isObject;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDTDEntity = (function(superClass) {\n    extend(XMLDTDEntity, superClass);\n\n    function XMLDTDEntity(parent, pe, name, value) {\n      XMLDTDEntity.__super__.constructor.call(this, parent);\n      if (name == null) {\n        throw new Error(\"Missing DTD entity name. \" + this.debugInfo(name));\n      }\n      if (value == null) {\n        throw new Error(\"Missing DTD entity value. \" + this.debugInfo(name));\n      }\n      this.pe = !!pe;\n      this.name = this.stringify.name(name);\n      this.type = NodeType.EntityDeclaration;\n      if (!isObject(value)) {\n        this.value = this.stringify.dtdEntityValue(value);\n        this.internal = true;\n      } else {\n        if (!value.pubID && !value.sysID) {\n          throw new Error(\"Public and/or system identifiers are required for an external entity. \" + this.debugInfo(name));\n        }\n        if (value.pubID && !value.sysID) {\n          throw new Error(\"System identifier is required for a public external entity. \" + this.debugInfo(name));\n        }\n        this.internal = false;\n        if (value.pubID != null) {\n          this.pubID = this.stringify.dtdPubID(value.pubID);\n        }\n        if (value.sysID != null) {\n          this.sysID = this.stringify.dtdSysID(value.sysID);\n        }\n        if (value.nData != null) {\n          this.nData = this.stringify.dtdNData(value.nData);\n        }\n        if (this.pe && this.nData) {\n          throw new Error(\"Notation declaration is not allowed in a parameter entity. \" + this.debugInfo(name));\n        }\n      }\n    }\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'publicId', {\n      get: function() {\n        return this.pubID;\n      }\n    });\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'systemId', {\n      get: function() {\n        return this.sysID;\n      }\n    });\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'notationName', {\n      get: function() {\n        return this.nData || null;\n      }\n    });\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'inputEncoding', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'xmlEncoding', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDTDEntity.prototype, 'xmlVersion', {\n      get: function() {\n        return null;\n      }\n    });\n\n    XMLDTDEntity.prototype.toString = function(options) {\n      return this.options.writer.dtdEntity(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLDTDEntity;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDTDNotation, XMLNode,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDTDNotation = (function(superClass) {\n    extend(XMLDTDNotation, superClass);\n\n    function XMLDTDNotation(parent, name, value) {\n      XMLDTDNotation.__super__.constructor.call(this, parent);\n      if (name == null) {\n        throw new Error(\"Missing DTD notation name. \" + this.debugInfo(name));\n      }\n      if (!value.pubID && !value.sysID) {\n        throw new Error(\"Public or system identifiers are required for an external entity. \" + this.debugInfo(name));\n      }\n      this.name = this.stringify.name(name);\n      this.type = NodeType.NotationDeclaration;\n      if (value.pubID != null) {\n        this.pubID = this.stringify.dtdPubID(value.pubID);\n      }\n      if (value.sysID != null) {\n        this.sysID = this.stringify.dtdSysID(value.sysID);\n      }\n    }\n\n    Object.defineProperty(XMLDTDNotation.prototype, 'publicId', {\n      get: function() {\n        return this.pubID;\n      }\n    });\n\n    Object.defineProperty(XMLDTDNotation.prototype, 'systemId', {\n      get: function() {\n        return this.sysID;\n      }\n    });\n\n    XMLDTDNotation.prototype.toString = function(options) {\n      return this.options.writer.dtdNotation(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLDTDNotation;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDeclaration, XMLNode, isObject,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  isObject = require('./Utility').isObject;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDeclaration = (function(superClass) {\n    extend(XMLDeclaration, superClass);\n\n    function XMLDeclaration(parent, version, encoding, standalone) {\n      var ref;\n      XMLDeclaration.__super__.constructor.call(this, parent);\n      if (isObject(version)) {\n        ref = version, version = ref.version, encoding = ref.encoding, standalone = ref.standalone;\n      }\n      if (!version) {\n        version = '1.0';\n      }\n      this.type = NodeType.Declaration;\n      this.version = this.stringify.xmlVersion(version);\n      if (encoding != null) {\n        this.encoding = this.stringify.xmlEncoding(encoding);\n      }\n      if (standalone != null) {\n        this.standalone = this.stringify.xmlStandalone(standalone);\n      }\n    }\n\n    XMLDeclaration.prototype.toString = function(options) {\n      return this.options.writer.declaration(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLDeclaration;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDocType, XMLNamedNodeMap, XMLNode, isObject,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  isObject = require('./Utility').isObject;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  XMLDTDAttList = require('./XMLDTDAttList');\n\n  XMLDTDEntity = require('./XMLDTDEntity');\n\n  XMLDTDElement = require('./XMLDTDElement');\n\n  XMLDTDNotation = require('./XMLDTDNotation');\n\n  XMLNamedNodeMap = require('./XMLNamedNodeMap');\n\n  module.exports = XMLDocType = (function(superClass) {\n    extend(XMLDocType, superClass);\n\n    function XMLDocType(parent, pubID, sysID) {\n      var child, i, len, ref, ref1, ref2;\n      XMLDocType.__super__.constructor.call(this, parent);\n      this.type = NodeType.DocType;\n      if (parent.children) {\n        ref = parent.children;\n        for (i = 0, len = ref.length; i < len; i++) {\n          child = ref[i];\n          if (child.type === NodeType.Element) {\n            this.name = child.name;\n            break;\n          }\n        }\n      }\n      this.documentObject = parent;\n      if (isObject(pubID)) {\n        ref1 = pubID, pubID = ref1.pubID, sysID = ref1.sysID;\n      }\n      if (sysID == null) {\n        ref2 = [pubID, sysID], sysID = ref2[0], pubID = ref2[1];\n      }\n      if (pubID != null) {\n        this.pubID = this.stringify.dtdPubID(pubID);\n      }\n      if (sysID != null) {\n        this.sysID = this.stringify.dtdSysID(sysID);\n      }\n    }\n\n    Object.defineProperty(XMLDocType.prototype, 'entities', {\n      get: function() {\n        var child, i, len, nodes, ref;\n        nodes = {};\n        ref = this.children;\n        for (i = 0, len = ref.length; i < len; i++) {\n          child = ref[i];\n          if ((child.type === NodeType.EntityDeclaration) && !child.pe) {\n            nodes[child.name] = child;\n          }\n        }\n        return new XMLNamedNodeMap(nodes);\n      }\n    });\n\n    Object.defineProperty(XMLDocType.prototype, 'notations', {\n      get: function() {\n        var child, i, len, nodes, ref;\n        nodes = {};\n        ref = this.children;\n        for (i = 0, len = ref.length; i < len; i++) {\n          child = ref[i];\n          if (child.type === NodeType.NotationDeclaration) {\n            nodes[child.name] = child;\n          }\n        }\n        return new XMLNamedNodeMap(nodes);\n      }\n    });\n\n    Object.defineProperty(XMLDocType.prototype, 'publicId', {\n      get: function() {\n        return this.pubID;\n      }\n    });\n\n    Object.defineProperty(XMLDocType.prototype, 'systemId', {\n      get: function() {\n        return this.sysID;\n      }\n    });\n\n    Object.defineProperty(XMLDocType.prototype, 'internalSubset', {\n      get: function() {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    XMLDocType.prototype.element = function(name, value) {\n      var child;\n      child = new XMLDTDElement(this, name, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLDocType.prototype.attList = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n      var child;\n      child = new XMLDTDAttList(this, elementName, attributeName, attributeType, defaultValueType, defaultValue);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLDocType.prototype.entity = function(name, value) {\n      var child;\n      child = new XMLDTDEntity(this, false, name, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLDocType.prototype.pEntity = function(name, value) {\n      var child;\n      child = new XMLDTDEntity(this, true, name, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLDocType.prototype.notation = function(name, value) {\n      var child;\n      child = new XMLDTDNotation(this, name, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLDocType.prototype.toString = function(options) {\n      return this.options.writer.docType(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLDocType.prototype.ele = function(name, value) {\n      return this.element(name, value);\n    };\n\n    XMLDocType.prototype.att = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n      return this.attList(elementName, attributeName, attributeType, defaultValueType, defaultValue);\n    };\n\n    XMLDocType.prototype.ent = function(name, value) {\n      return this.entity(name, value);\n    };\n\n    XMLDocType.prototype.pent = function(name, value) {\n      return this.pEntity(name, value);\n    };\n\n    XMLDocType.prototype.not = function(name, value) {\n      return this.notation(name, value);\n    };\n\n    XMLDocType.prototype.up = function() {\n      return this.root() || this.documentObject;\n    };\n\n    XMLDocType.prototype.isEqualNode = function(node) {\n      if (!XMLDocType.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n        return false;\n      }\n      if (node.name !== this.name) {\n        return false;\n      }\n      if (node.publicId !== this.publicId) {\n        return false;\n      }\n      if (node.systemId !== this.systemId) {\n        return false;\n      }\n      return true;\n    };\n\n    return XMLDocType;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDOMConfiguration, XMLDOMImplementation, XMLDocument, XMLNode, XMLStringWriter, XMLStringifier, isPlainObject,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  isPlainObject = require('./Utility').isPlainObject;\n\n  XMLDOMImplementation = require('./XMLDOMImplementation');\n\n  XMLDOMConfiguration = require('./XMLDOMConfiguration');\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  XMLStringifier = require('./XMLStringifier');\n\n  XMLStringWriter = require('./XMLStringWriter');\n\n  module.exports = XMLDocument = (function(superClass) {\n    extend(XMLDocument, superClass);\n\n    function XMLDocument(options) {\n      XMLDocument.__super__.constructor.call(this, null);\n      this.name = \"#document\";\n      this.type = NodeType.Document;\n      this.documentURI = null;\n      this.domConfig = new XMLDOMConfiguration();\n      options || (options = {});\n      if (!options.writer) {\n        options.writer = new XMLStringWriter();\n      }\n      this.options = options;\n      this.stringify = new XMLStringifier(options);\n    }\n\n    Object.defineProperty(XMLDocument.prototype, 'implementation', {\n      value: new XMLDOMImplementation()\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'doctype', {\n      get: function() {\n        var child, i, len, ref;\n        ref = this.children;\n        for (i = 0, len = ref.length; i < len; i++) {\n          child = ref[i];\n          if (child.type === NodeType.DocType) {\n            return child;\n          }\n        }\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'documentElement', {\n      get: function() {\n        return this.rootObject || null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'inputEncoding', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'strictErrorChecking', {\n      get: function() {\n        return false;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'xmlEncoding', {\n      get: function() {\n        if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n          return this.children[0].encoding;\n        } else {\n          return null;\n        }\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'xmlStandalone', {\n      get: function() {\n        if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n          return this.children[0].standalone === 'yes';\n        } else {\n          return false;\n        }\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'xmlVersion', {\n      get: function() {\n        if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n          return this.children[0].version;\n        } else {\n          return \"1.0\";\n        }\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'URL', {\n      get: function() {\n        return this.documentURI;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'origin', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'compatMode', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'characterSet', {\n      get: function() {\n        return null;\n      }\n    });\n\n    Object.defineProperty(XMLDocument.prototype, 'contentType', {\n      get: function() {\n        return null;\n      }\n    });\n\n    XMLDocument.prototype.end = function(writer) {\n      var writerOptions;\n      writerOptions = {};\n      if (!writer) {\n        writer = this.options.writer;\n      } else if (isPlainObject(writer)) {\n        writerOptions = writer;\n        writer = this.options.writer;\n      }\n      return writer.document(this, writer.filterOptions(writerOptions));\n    };\n\n    XMLDocument.prototype.toString = function(options) {\n      return this.options.writer.document(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLDocument.prototype.createElement = function(tagName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createDocumentFragment = function() {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createTextNode = function(data) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createComment = function(data) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createCDATASection = function(data) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createProcessingInstruction = function(target, data) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createAttribute = function(name) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createEntityReference = function(name) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.getElementsByTagName = function(tagname) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.importNode = function(importedNode, deep) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createElementNS = function(namespaceURI, qualifiedName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createAttributeNS = function(namespaceURI, qualifiedName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.getElementById = function(elementId) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.adoptNode = function(source) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.normalizeDocument = function() {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.renameNode = function(node, namespaceURI, qualifiedName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.getElementsByClassName = function(classNames) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createEvent = function(eventInterface) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createRange = function() {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createNodeIterator = function(root, whatToShow, filter) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLDocument.prototype.createTreeWalker = function(root, whatToShow, filter) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    return XMLDocument;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, WriterState, XMLAttribute, XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLDocument, XMLDocumentCB, XMLElement, XMLProcessingInstruction, XMLRaw, XMLStringWriter, XMLStringifier, XMLText, getValue, isFunction, isObject, isPlainObject, ref,\n    hasProp = {}.hasOwnProperty;\n\n  ref = require('./Utility'), isObject = ref.isObject, isFunction = ref.isFunction, isPlainObject = ref.isPlainObject, getValue = ref.getValue;\n\n  NodeType = require('./NodeType');\n\n  XMLDocument = require('./XMLDocument');\n\n  XMLElement = require('./XMLElement');\n\n  XMLCData = require('./XMLCData');\n\n  XMLComment = require('./XMLComment');\n\n  XMLRaw = require('./XMLRaw');\n\n  XMLText = require('./XMLText');\n\n  XMLProcessingInstruction = require('./XMLProcessingInstruction');\n\n  XMLDeclaration = require('./XMLDeclaration');\n\n  XMLDocType = require('./XMLDocType');\n\n  XMLDTDAttList = require('./XMLDTDAttList');\n\n  XMLDTDEntity = require('./XMLDTDEntity');\n\n  XMLDTDElement = require('./XMLDTDElement');\n\n  XMLDTDNotation = require('./XMLDTDNotation');\n\n  XMLAttribute = require('./XMLAttribute');\n\n  XMLStringifier = require('./XMLStringifier');\n\n  XMLStringWriter = require('./XMLStringWriter');\n\n  WriterState = require('./WriterState');\n\n  module.exports = XMLDocumentCB = (function() {\n    function XMLDocumentCB(options, onData, onEnd) {\n      var writerOptions;\n      this.name = \"?xml\";\n      this.type = NodeType.Document;\n      options || (options = {});\n      writerOptions = {};\n      if (!options.writer) {\n        options.writer = new XMLStringWriter();\n      } else if (isPlainObject(options.writer)) {\n        writerOptions = options.writer;\n        options.writer = new XMLStringWriter();\n      }\n      this.options = options;\n      this.writer = options.writer;\n      this.writerOptions = this.writer.filterOptions(writerOptions);\n      this.stringify = new XMLStringifier(options);\n      this.onDataCallback = onData || function() {};\n      this.onEndCallback = onEnd || function() {};\n      this.currentNode = null;\n      this.currentLevel = -1;\n      this.openTags = {};\n      this.documentStarted = false;\n      this.documentCompleted = false;\n      this.root = null;\n    }\n\n    XMLDocumentCB.prototype.createChildNode = function(node) {\n      var att, attName, attributes, child, i, len, ref1, ref2;\n      switch (node.type) {\n        case NodeType.CData:\n          this.cdata(node.value);\n          break;\n        case NodeType.Comment:\n          this.comment(node.value);\n          break;\n        case NodeType.Element:\n          attributes = {};\n          ref1 = node.attribs;\n          for (attName in ref1) {\n            if (!hasProp.call(ref1, attName)) continue;\n            att = ref1[attName];\n            attributes[attName] = att.value;\n          }\n          this.node(node.name, attributes);\n          break;\n        case NodeType.Dummy:\n          this.dummy();\n          break;\n        case NodeType.Raw:\n          this.raw(node.value);\n          break;\n        case NodeType.Text:\n          this.text(node.value);\n          break;\n        case NodeType.ProcessingInstruction:\n          this.instruction(node.target, node.value);\n          break;\n        default:\n          throw new Error(\"This XML node type is not supported in a JS object: \" + node.constructor.name);\n      }\n      ref2 = node.children;\n      for (i = 0, len = ref2.length; i < len; i++) {\n        child = ref2[i];\n        this.createChildNode(child);\n        if (child.type === NodeType.Element) {\n          this.up();\n        }\n      }\n      return this;\n    };\n\n    XMLDocumentCB.prototype.dummy = function() {\n      return this;\n    };\n\n    XMLDocumentCB.prototype.node = function(name, attributes, text) {\n      var ref1;\n      if (name == null) {\n        throw new Error(\"Missing node name.\");\n      }\n      if (this.root && this.currentLevel === -1) {\n        throw new Error(\"Document can only have one root node. \" + this.debugInfo(name));\n      }\n      this.openCurrent();\n      name = getValue(name);\n      if (attributes == null) {\n        attributes = {};\n      }\n      attributes = getValue(attributes);\n      if (!isObject(attributes)) {\n        ref1 = [attributes, text], text = ref1[0], attributes = ref1[1];\n      }\n      this.currentNode = new XMLElement(this, name, attributes);\n      this.currentNode.children = false;\n      this.currentLevel++;\n      this.openTags[this.currentLevel] = this.currentNode;\n      if (text != null) {\n        this.text(text);\n      }\n      return this;\n    };\n\n    XMLDocumentCB.prototype.element = function(name, attributes, text) {\n      var child, i, len, oldValidationFlag, ref1, root;\n      if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n        this.dtdElement.apply(this, arguments);\n      } else {\n        if (Array.isArray(name) || isObject(name) || isFunction(name)) {\n          oldValidationFlag = this.options.noValidation;\n          this.options.noValidation = true;\n          root = new XMLDocument(this.options).element('TEMP_ROOT');\n          root.element(name);\n          this.options.noValidation = oldValidationFlag;\n          ref1 = root.children;\n          for (i = 0, len = ref1.length; i < len; i++) {\n            child = ref1[i];\n            this.createChildNode(child);\n            if (child.type === NodeType.Element) {\n              this.up();\n            }\n          }\n        } else {\n          this.node(name, attributes, text);\n        }\n      }\n      return this;\n    };\n\n    XMLDocumentCB.prototype.attribute = function(name, value) {\n      var attName, attValue;\n      if (!this.currentNode || this.currentNode.children) {\n        throw new Error(\"att() can only be used immediately after an ele() call in callback mode. \" + this.debugInfo(name));\n      }\n      if (name != null) {\n        name = getValue(name);\n      }\n      if (isObject(name)) {\n        for (attName in name) {\n          if (!hasProp.call(name, attName)) continue;\n          attValue = name[attName];\n          this.attribute(attName, attValue);\n        }\n      } else {\n        if (isFunction(value)) {\n          value = value.apply();\n        }\n        if (this.options.keepNullAttributes && (value == null)) {\n          this.currentNode.attribs[name] = new XMLAttribute(this, name, \"\");\n        } else if (value != null) {\n          this.currentNode.attribs[name] = new XMLAttribute(this, name, value);\n        }\n      }\n      return this;\n    };\n\n    XMLDocumentCB.prototype.text = function(value) {\n      var node;\n      this.openCurrent();\n      node = new XMLText(this, value);\n      this.onData(this.writer.text(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.cdata = function(value) {\n      var node;\n      this.openCurrent();\n      node = new XMLCData(this, value);\n      this.onData(this.writer.cdata(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.comment = function(value) {\n      var node;\n      this.openCurrent();\n      node = new XMLComment(this, value);\n      this.onData(this.writer.comment(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.raw = function(value) {\n      var node;\n      this.openCurrent();\n      node = new XMLRaw(this, value);\n      this.onData(this.writer.raw(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.instruction = function(target, value) {\n      var i, insTarget, insValue, len, node;\n      this.openCurrent();\n      if (target != null) {\n        target = getValue(target);\n      }\n      if (value != null) {\n        value = getValue(value);\n      }\n      if (Array.isArray(target)) {\n        for (i = 0, len = target.length; i < len; i++) {\n          insTarget = target[i];\n          this.instruction(insTarget);\n        }\n      } else if (isObject(target)) {\n        for (insTarget in target) {\n          if (!hasProp.call(target, insTarget)) continue;\n          insValue = target[insTarget];\n          this.instruction(insTarget, insValue);\n        }\n      } else {\n        if (isFunction(value)) {\n          value = value.apply();\n        }\n        node = new XMLProcessingInstruction(this, target, value);\n        this.onData(this.writer.processingInstruction(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      }\n      return this;\n    };\n\n    XMLDocumentCB.prototype.declaration = function(version, encoding, standalone) {\n      var node;\n      this.openCurrent();\n      if (this.documentStarted) {\n        throw new Error(\"declaration() must be the first node.\");\n      }\n      node = new XMLDeclaration(this, version, encoding, standalone);\n      this.onData(this.writer.declaration(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.doctype = function(root, pubID, sysID) {\n      this.openCurrent();\n      if (root == null) {\n        throw new Error(\"Missing root node name.\");\n      }\n      if (this.root) {\n        throw new Error(\"dtd() must come before the root node.\");\n      }\n      this.currentNode = new XMLDocType(this, pubID, sysID);\n      this.currentNode.rootNodeName = root;\n      this.currentNode.children = false;\n      this.currentLevel++;\n      this.openTags[this.currentLevel] = this.currentNode;\n      return this;\n    };\n\n    XMLDocumentCB.prototype.dtdElement = function(name, value) {\n      var node;\n      this.openCurrent();\n      node = new XMLDTDElement(this, name, value);\n      this.onData(this.writer.dtdElement(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.attList = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n      var node;\n      this.openCurrent();\n      node = new XMLDTDAttList(this, elementName, attributeName, attributeType, defaultValueType, defaultValue);\n      this.onData(this.writer.dtdAttList(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.entity = function(name, value) {\n      var node;\n      this.openCurrent();\n      node = new XMLDTDEntity(this, false, name, value);\n      this.onData(this.writer.dtdEntity(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.pEntity = function(name, value) {\n      var node;\n      this.openCurrent();\n      node = new XMLDTDEntity(this, true, name, value);\n      this.onData(this.writer.dtdEntity(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.notation = function(name, value) {\n      var node;\n      this.openCurrent();\n      node = new XMLDTDNotation(this, name, value);\n      this.onData(this.writer.dtdNotation(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n      return this;\n    };\n\n    XMLDocumentCB.prototype.up = function() {\n      if (this.currentLevel < 0) {\n        throw new Error(\"The document node has no parent.\");\n      }\n      if (this.currentNode) {\n        if (this.currentNode.children) {\n          this.closeNode(this.currentNode);\n        } else {\n          this.openNode(this.currentNode);\n        }\n        this.currentNode = null;\n      } else {\n        this.closeNode(this.openTags[this.currentLevel]);\n      }\n      delete this.openTags[this.currentLevel];\n      this.currentLevel--;\n      return this;\n    };\n\n    XMLDocumentCB.prototype.end = function() {\n      while (this.currentLevel >= 0) {\n        this.up();\n      }\n      return this.onEnd();\n    };\n\n    XMLDocumentCB.prototype.openCurrent = function() {\n      if (this.currentNode) {\n        this.currentNode.children = true;\n        return this.openNode(this.currentNode);\n      }\n    };\n\n    XMLDocumentCB.prototype.openNode = function(node) {\n      var att, chunk, name, ref1;\n      if (!node.isOpen) {\n        if (!this.root && this.currentLevel === 0 && node.type === NodeType.Element) {\n          this.root = node;\n        }\n        chunk = '';\n        if (node.type === NodeType.Element) {\n          this.writerOptions.state = WriterState.OpenTag;\n          chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '<' + node.name;\n          ref1 = node.attribs;\n          for (name in ref1) {\n            if (!hasProp.call(ref1, name)) continue;\n            att = ref1[name];\n            chunk += this.writer.attribute(att, this.writerOptions, this.currentLevel);\n          }\n          chunk += (node.children ? '>' : '/>') + this.writer.endline(node, this.writerOptions, this.currentLevel);\n          this.writerOptions.state = WriterState.InsideTag;\n        } else {\n          this.writerOptions.state = WriterState.OpenTag;\n          chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '<!DOCTYPE ' + node.rootNodeName;\n          if (node.pubID && node.sysID) {\n            chunk += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n          } else if (node.sysID) {\n            chunk += ' SYSTEM \"' + node.sysID + '\"';\n          }\n          if (node.children) {\n            chunk += ' [';\n            this.writerOptions.state = WriterState.InsideTag;\n          } else {\n            this.writerOptions.state = WriterState.CloseTag;\n            chunk += '>';\n          }\n          chunk += this.writer.endline(node, this.writerOptions, this.currentLevel);\n        }\n        this.onData(chunk, this.currentLevel);\n        return node.isOpen = true;\n      }\n    };\n\n    XMLDocumentCB.prototype.closeNode = function(node) {\n      var chunk;\n      if (!node.isClosed) {\n        chunk = '';\n        this.writerOptions.state = WriterState.CloseTag;\n        if (node.type === NodeType.Element) {\n          chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '</' + node.name + '>' + this.writer.endline(node, this.writerOptions, this.currentLevel);\n        } else {\n          chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + ']>' + this.writer.endline(node, this.writerOptions, this.currentLevel);\n        }\n        this.writerOptions.state = WriterState.None;\n        this.onData(chunk, this.currentLevel);\n        return node.isClosed = true;\n      }\n    };\n\n    XMLDocumentCB.prototype.onData = function(chunk, level) {\n      this.documentStarted = true;\n      return this.onDataCallback(chunk, level + 1);\n    };\n\n    XMLDocumentCB.prototype.onEnd = function() {\n      this.documentCompleted = true;\n      return this.onEndCallback();\n    };\n\n    XMLDocumentCB.prototype.debugInfo = function(name) {\n      if (name == null) {\n        return \"\";\n      } else {\n        return \"node: <\" + name + \">\";\n      }\n    };\n\n    XMLDocumentCB.prototype.ele = function() {\n      return this.element.apply(this, arguments);\n    };\n\n    XMLDocumentCB.prototype.nod = function(name, attributes, text) {\n      return this.node(name, attributes, text);\n    };\n\n    XMLDocumentCB.prototype.txt = function(value) {\n      return this.text(value);\n    };\n\n    XMLDocumentCB.prototype.dat = function(value) {\n      return this.cdata(value);\n    };\n\n    XMLDocumentCB.prototype.com = function(value) {\n      return this.comment(value);\n    };\n\n    XMLDocumentCB.prototype.ins = function(target, value) {\n      return this.instruction(target, value);\n    };\n\n    XMLDocumentCB.prototype.dec = function(version, encoding, standalone) {\n      return this.declaration(version, encoding, standalone);\n    };\n\n    XMLDocumentCB.prototype.dtd = function(root, pubID, sysID) {\n      return this.doctype(root, pubID, sysID);\n    };\n\n    XMLDocumentCB.prototype.e = function(name, attributes, text) {\n      return this.element(name, attributes, text);\n    };\n\n    XMLDocumentCB.prototype.n = function(name, attributes, text) {\n      return this.node(name, attributes, text);\n    };\n\n    XMLDocumentCB.prototype.t = function(value) {\n      return this.text(value);\n    };\n\n    XMLDocumentCB.prototype.d = function(value) {\n      return this.cdata(value);\n    };\n\n    XMLDocumentCB.prototype.c = function(value) {\n      return this.comment(value);\n    };\n\n    XMLDocumentCB.prototype.r = function(value) {\n      return this.raw(value);\n    };\n\n    XMLDocumentCB.prototype.i = function(target, value) {\n      return this.instruction(target, value);\n    };\n\n    XMLDocumentCB.prototype.att = function() {\n      if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n        return this.attList.apply(this, arguments);\n      } else {\n        return this.attribute.apply(this, arguments);\n      }\n    };\n\n    XMLDocumentCB.prototype.a = function() {\n      if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n        return this.attList.apply(this, arguments);\n      } else {\n        return this.attribute.apply(this, arguments);\n      }\n    };\n\n    XMLDocumentCB.prototype.ent = function(name, value) {\n      return this.entity(name, value);\n    };\n\n    XMLDocumentCB.prototype.pent = function(name, value) {\n      return this.pEntity(name, value);\n    };\n\n    XMLDocumentCB.prototype.not = function(name, value) {\n      return this.notation(name, value);\n    };\n\n    return XMLDocumentCB;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLDummy, XMLNode,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  module.exports = XMLDummy = (function(superClass) {\n    extend(XMLDummy, superClass);\n\n    function XMLDummy(parent) {\n      XMLDummy.__super__.constructor.call(this, parent);\n      this.type = NodeType.Dummy;\n    }\n\n    XMLDummy.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLDummy.prototype.toString = function(options) {\n      return '';\n    };\n\n    return XMLDummy;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLAttribute, XMLElement, XMLNamedNodeMap, XMLNode, getValue, isFunction, isObject, ref,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  ref = require('./Utility'), isObject = ref.isObject, isFunction = ref.isFunction, getValue = ref.getValue;\n\n  XMLNode = require('./XMLNode');\n\n  NodeType = require('./NodeType');\n\n  XMLAttribute = require('./XMLAttribute');\n\n  XMLNamedNodeMap = require('./XMLNamedNodeMap');\n\n  module.exports = XMLElement = (function(superClass) {\n    extend(XMLElement, superClass);\n\n    function XMLElement(parent, name, attributes) {\n      var child, j, len, ref1;\n      XMLElement.__super__.constructor.call(this, parent);\n      if (name == null) {\n        throw new Error(\"Missing element name. \" + this.debugInfo());\n      }\n      this.name = this.stringify.name(name);\n      this.type = NodeType.Element;\n      this.attribs = {};\n      this.schemaTypeInfo = null;\n      if (attributes != null) {\n        this.attribute(attributes);\n      }\n      if (parent.type === NodeType.Document) {\n        this.isRoot = true;\n        this.documentObject = parent;\n        parent.rootObject = this;\n        if (parent.children) {\n          ref1 = parent.children;\n          for (j = 0, len = ref1.length; j < len; j++) {\n            child = ref1[j];\n            if (child.type === NodeType.DocType) {\n              child.name = this.name;\n              break;\n            }\n          }\n        }\n      }\n    }\n\n    Object.defineProperty(XMLElement.prototype, 'tagName', {\n      get: function() {\n        return this.name;\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'namespaceURI', {\n      get: function() {\n        return '';\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'prefix', {\n      get: function() {\n        return '';\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'localName', {\n      get: function() {\n        return this.name;\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'id', {\n      get: function() {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'className', {\n      get: function() {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'classList', {\n      get: function() {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    Object.defineProperty(XMLElement.prototype, 'attributes', {\n      get: function() {\n        if (!this.attributeMap || !this.attributeMap.nodes) {\n          this.attributeMap = new XMLNamedNodeMap(this.attribs);\n        }\n        return this.attributeMap;\n      }\n    });\n\n    XMLElement.prototype.clone = function() {\n      var att, attName, clonedSelf, ref1;\n      clonedSelf = Object.create(this);\n      if (clonedSelf.isRoot) {\n        clonedSelf.documentObject = null;\n      }\n      clonedSelf.attribs = {};\n      ref1 = this.attribs;\n      for (attName in ref1) {\n        if (!hasProp.call(ref1, attName)) continue;\n        att = ref1[attName];\n        clonedSelf.attribs[attName] = att.clone();\n      }\n      clonedSelf.children = [];\n      this.children.forEach(function(child) {\n        var clonedChild;\n        clonedChild = child.clone();\n        clonedChild.parent = clonedSelf;\n        return clonedSelf.children.push(clonedChild);\n      });\n      return clonedSelf;\n    };\n\n    XMLElement.prototype.attribute = function(name, value) {\n      var attName, attValue;\n      if (name != null) {\n        name = getValue(name);\n      }\n      if (isObject(name)) {\n        for (attName in name) {\n          if (!hasProp.call(name, attName)) continue;\n          attValue = name[attName];\n          this.attribute(attName, attValue);\n        }\n      } else {\n        if (isFunction(value)) {\n          value = value.apply();\n        }\n        if (this.options.keepNullAttributes && (value == null)) {\n          this.attribs[name] = new XMLAttribute(this, name, \"\");\n        } else if (value != null) {\n          this.attribs[name] = new XMLAttribute(this, name, value);\n        }\n      }\n      return this;\n    };\n\n    XMLElement.prototype.removeAttribute = function(name) {\n      var attName, j, len;\n      if (name == null) {\n        throw new Error(\"Missing attribute name. \" + this.debugInfo());\n      }\n      name = getValue(name);\n      if (Array.isArray(name)) {\n        for (j = 0, len = name.length; j < len; j++) {\n          attName = name[j];\n          delete this.attribs[attName];\n        }\n      } else {\n        delete this.attribs[name];\n      }\n      return this;\n    };\n\n    XMLElement.prototype.toString = function(options) {\n      return this.options.writer.element(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLElement.prototype.att = function(name, value) {\n      return this.attribute(name, value);\n    };\n\n    XMLElement.prototype.a = function(name, value) {\n      return this.attribute(name, value);\n    };\n\n    XMLElement.prototype.getAttribute = function(name) {\n      if (this.attribs.hasOwnProperty(name)) {\n        return this.attribs[name].value;\n      } else {\n        return null;\n      }\n    };\n\n    XMLElement.prototype.setAttribute = function(name, value) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getAttributeNode = function(name) {\n      if (this.attribs.hasOwnProperty(name)) {\n        return this.attribs[name];\n      } else {\n        return null;\n      }\n    };\n\n    XMLElement.prototype.setAttributeNode = function(newAttr) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.removeAttributeNode = function(oldAttr) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getElementsByTagName = function(name) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getAttributeNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.setAttributeNS = function(namespaceURI, qualifiedName, value) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.removeAttributeNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getAttributeNodeNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.setAttributeNodeNS = function(newAttr) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.hasAttribute = function(name) {\n      return this.attribs.hasOwnProperty(name);\n    };\n\n    XMLElement.prototype.hasAttributeNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.setIdAttribute = function(name, isId) {\n      if (this.attribs.hasOwnProperty(name)) {\n        return this.attribs[name].isId;\n      } else {\n        return isId;\n      }\n    };\n\n    XMLElement.prototype.setIdAttributeNS = function(namespaceURI, localName, isId) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.setIdAttributeNode = function(idAttr, isId) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getElementsByTagName = function(tagname) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.getElementsByClassName = function(classNames) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLElement.prototype.isEqualNode = function(node) {\n      var i, j, ref1;\n      if (!XMLElement.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n        return false;\n      }\n      if (node.namespaceURI !== this.namespaceURI) {\n        return false;\n      }\n      if (node.prefix !== this.prefix) {\n        return false;\n      }\n      if (node.localName !== this.localName) {\n        return false;\n      }\n      if (node.attribs.length !== this.attribs.length) {\n        return false;\n      }\n      for (i = j = 0, ref1 = this.attribs.length - 1; 0 <= ref1 ? j <= ref1 : j >= ref1; i = 0 <= ref1 ? ++j : --j) {\n        if (!this.attribs[i].isEqualNode(node.attribs[i])) {\n          return false;\n        }\n      }\n      return true;\n    };\n\n    return XMLElement;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLNamedNodeMap;\n\n  module.exports = XMLNamedNodeMap = (function() {\n    function XMLNamedNodeMap(nodes) {\n      this.nodes = nodes;\n    }\n\n    Object.defineProperty(XMLNamedNodeMap.prototype, 'length', {\n      get: function() {\n        return Object.keys(this.nodes).length || 0;\n      }\n    });\n\n    XMLNamedNodeMap.prototype.clone = function() {\n      return this.nodes = null;\n    };\n\n    XMLNamedNodeMap.prototype.getNamedItem = function(name) {\n      return this.nodes[name];\n    };\n\n    XMLNamedNodeMap.prototype.setNamedItem = function(node) {\n      var oldNode;\n      oldNode = this.nodes[node.nodeName];\n      this.nodes[node.nodeName] = node;\n      return oldNode || null;\n    };\n\n    XMLNamedNodeMap.prototype.removeNamedItem = function(name) {\n      var oldNode;\n      oldNode = this.nodes[name];\n      delete this.nodes[name];\n      return oldNode || null;\n    };\n\n    XMLNamedNodeMap.prototype.item = function(index) {\n      return this.nodes[Object.keys(this.nodes)[index]] || null;\n    };\n\n    XMLNamedNodeMap.prototype.getNamedItemNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    XMLNamedNodeMap.prototype.setNamedItemNS = function(node) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    XMLNamedNodeMap.prototype.removeNamedItemNS = function(namespaceURI, localName) {\n      throw new Error(\"This DOM method is not implemented.\");\n    };\n\n    return XMLNamedNodeMap;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var DocumentPosition, NodeType, XMLCData, XMLComment, XMLDeclaration, XMLDocType, XMLDummy, XMLElement, XMLNamedNodeMap, XMLNode, XMLNodeList, XMLProcessingInstruction, XMLRaw, XMLText, getValue, isEmpty, isFunction, isObject, ref1,\n    hasProp = {}.hasOwnProperty;\n\n  ref1 = require('./Utility'), isObject = ref1.isObject, isFunction = ref1.isFunction, isEmpty = ref1.isEmpty, getValue = ref1.getValue;\n\n  XMLElement = null;\n\n  XMLCData = null;\n\n  XMLComment = null;\n\n  XMLDeclaration = null;\n\n  XMLDocType = null;\n\n  XMLRaw = null;\n\n  XMLText = null;\n\n  XMLProcessingInstruction = null;\n\n  XMLDummy = null;\n\n  NodeType = null;\n\n  XMLNodeList = null;\n\n  XMLNamedNodeMap = null;\n\n  DocumentPosition = null;\n\n  module.exports = XMLNode = (function() {\n    function XMLNode(parent1) {\n      this.parent = parent1;\n      if (this.parent) {\n        this.options = this.parent.options;\n        this.stringify = this.parent.stringify;\n      }\n      this.value = null;\n      this.children = [];\n      this.baseURI = null;\n      if (!XMLElement) {\n        XMLElement = require('./XMLElement');\n        XMLCData = require('./XMLCData');\n        XMLComment = require('./XMLComment');\n        XMLDeclaration = require('./XMLDeclaration');\n        XMLDocType = require('./XMLDocType');\n        XMLRaw = require('./XMLRaw');\n        XMLText = require('./XMLText');\n        XMLProcessingInstruction = require('./XMLProcessingInstruction');\n        XMLDummy = require('./XMLDummy');\n        NodeType = require('./NodeType');\n        XMLNodeList = require('./XMLNodeList');\n        XMLNamedNodeMap = require('./XMLNamedNodeMap');\n        DocumentPosition = require('./DocumentPosition');\n      }\n    }\n\n    Object.defineProperty(XMLNode.prototype, 'nodeName', {\n      get: function() {\n        return this.name;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'nodeType', {\n      get: function() {\n        return this.type;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'nodeValue', {\n      get: function() {\n        return this.value;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'parentNode', {\n      get: function() {\n        return this.parent;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'childNodes', {\n      get: function() {\n        if (!this.childNodeList || !this.childNodeList.nodes) {\n          this.childNodeList = new XMLNodeList(this.children);\n        }\n        return this.childNodeList;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'firstChild', {\n      get: function() {\n        return this.children[0] || null;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'lastChild', {\n      get: function() {\n        return this.children[this.children.length - 1] || null;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'previousSibling', {\n      get: function() {\n        var i;\n        i = this.parent.children.indexOf(this);\n        return this.parent.children[i - 1] || null;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'nextSibling', {\n      get: function() {\n        var i;\n        i = this.parent.children.indexOf(this);\n        return this.parent.children[i + 1] || null;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'ownerDocument', {\n      get: function() {\n        return this.document() || null;\n      }\n    });\n\n    Object.defineProperty(XMLNode.prototype, 'textContent', {\n      get: function() {\n        var child, j, len, ref2, str;\n        if (this.nodeType === NodeType.Element || this.nodeType === NodeType.DocumentFragment) {\n          str = '';\n          ref2 = this.children;\n          for (j = 0, len = ref2.length; j < len; j++) {\n            child = ref2[j];\n            if (child.textContent) {\n              str += child.textContent;\n            }\n          }\n          return str;\n        } else {\n          return null;\n        }\n      },\n      set: function(value) {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    XMLNode.prototype.setParent = function(parent) {\n      var child, j, len, ref2, results;\n      this.parent = parent;\n      if (parent) {\n        this.options = parent.options;\n        this.stringify = parent.stringify;\n      }\n      ref2 = this.children;\n      results = [];\n      for (j = 0, len = ref2.length; j < len; j++) {\n        child = ref2[j];\n        results.push(child.setParent(this));\n      }\n      return results;\n    };\n\n    XMLNode.prototype.element = function(name, attributes, text) {\n      var childNode, item, j, k, key, lastChild, len, len1, ref2, ref3, val;\n      lastChild = null;\n      if (attributes === null && (text == null)) {\n        ref2 = [{}, null], attributes = ref2[0], text = ref2[1];\n      }\n      if (attributes == null) {\n        attributes = {};\n      }\n      attributes = getValue(attributes);\n      if (!isObject(attributes)) {\n        ref3 = [attributes, text], text = ref3[0], attributes = ref3[1];\n      }\n      if (name != null) {\n        name = getValue(name);\n      }\n      if (Array.isArray(name)) {\n        for (j = 0, len = name.length; j < len; j++) {\n          item = name[j];\n          lastChild = this.element(item);\n        }\n      } else if (isFunction(name)) {\n        lastChild = this.element(name.apply());\n      } else if (isObject(name)) {\n        for (key in name) {\n          if (!hasProp.call(name, key)) continue;\n          val = name[key];\n          if (isFunction(val)) {\n            val = val.apply();\n          }\n          if (!this.options.ignoreDecorators && this.stringify.convertAttKey && key.indexOf(this.stringify.convertAttKey) === 0) {\n            lastChild = this.attribute(key.substr(this.stringify.convertAttKey.length), val);\n          } else if (!this.options.separateArrayItems && Array.isArray(val) && isEmpty(val)) {\n            lastChild = this.dummy();\n          } else if (isObject(val) && isEmpty(val)) {\n            lastChild = this.element(key);\n          } else if (!this.options.keepNullNodes && (val == null)) {\n            lastChild = this.dummy();\n          } else if (!this.options.separateArrayItems && Array.isArray(val)) {\n            for (k = 0, len1 = val.length; k < len1; k++) {\n              item = val[k];\n              childNode = {};\n              childNode[key] = item;\n              lastChild = this.element(childNode);\n            }\n          } else if (isObject(val)) {\n            if (!this.options.ignoreDecorators && this.stringify.convertTextKey && key.indexOf(this.stringify.convertTextKey) === 0) {\n              lastChild = this.element(val);\n            } else {\n              lastChild = this.element(key);\n              lastChild.element(val);\n            }\n          } else {\n            lastChild = this.element(key, val);\n          }\n        }\n      } else if (!this.options.keepNullNodes && text === null) {\n        lastChild = this.dummy();\n      } else {\n        if (!this.options.ignoreDecorators && this.stringify.convertTextKey && name.indexOf(this.stringify.convertTextKey) === 0) {\n          lastChild = this.text(text);\n        } else if (!this.options.ignoreDecorators && this.stringify.convertCDataKey && name.indexOf(this.stringify.convertCDataKey) === 0) {\n          lastChild = this.cdata(text);\n        } else if (!this.options.ignoreDecorators && this.stringify.convertCommentKey && name.indexOf(this.stringify.convertCommentKey) === 0) {\n          lastChild = this.comment(text);\n        } else if (!this.options.ignoreDecorators && this.stringify.convertRawKey && name.indexOf(this.stringify.convertRawKey) === 0) {\n          lastChild = this.raw(text);\n        } else if (!this.options.ignoreDecorators && this.stringify.convertPIKey && name.indexOf(this.stringify.convertPIKey) === 0) {\n          lastChild = this.instruction(name.substr(this.stringify.convertPIKey.length), text);\n        } else {\n          lastChild = this.node(name, attributes, text);\n        }\n      }\n      if (lastChild == null) {\n        throw new Error(\"Could not create any elements with: \" + name + \". \" + this.debugInfo());\n      }\n      return lastChild;\n    };\n\n    XMLNode.prototype.insertBefore = function(name, attributes, text) {\n      var child, i, newChild, refChild, removed;\n      if (name != null ? name.type : void 0) {\n        newChild = name;\n        refChild = attributes;\n        newChild.setParent(this);\n        if (refChild) {\n          i = children.indexOf(refChild);\n          removed = children.splice(i);\n          children.push(newChild);\n          Array.prototype.push.apply(children, removed);\n        } else {\n          children.push(newChild);\n        }\n        return newChild;\n      } else {\n        if (this.isRoot) {\n          throw new Error(\"Cannot insert elements at root level. \" + this.debugInfo(name));\n        }\n        i = this.parent.children.indexOf(this);\n        removed = this.parent.children.splice(i);\n        child = this.parent.element(name, attributes, text);\n        Array.prototype.push.apply(this.parent.children, removed);\n        return child;\n      }\n    };\n\n    XMLNode.prototype.insertAfter = function(name, attributes, text) {\n      var child, i, removed;\n      if (this.isRoot) {\n        throw new Error(\"Cannot insert elements at root level. \" + this.debugInfo(name));\n      }\n      i = this.parent.children.indexOf(this);\n      removed = this.parent.children.splice(i + 1);\n      child = this.parent.element(name, attributes, text);\n      Array.prototype.push.apply(this.parent.children, removed);\n      return child;\n    };\n\n    XMLNode.prototype.remove = function() {\n      var i, ref2;\n      if (this.isRoot) {\n        throw new Error(\"Cannot remove the root element. \" + this.debugInfo());\n      }\n      i = this.parent.children.indexOf(this);\n      [].splice.apply(this.parent.children, [i, i - i + 1].concat(ref2 = [])), ref2;\n      return this.parent;\n    };\n\n    XMLNode.prototype.node = function(name, attributes, text) {\n      var child, ref2;\n      if (name != null) {\n        name = getValue(name);\n      }\n      attributes || (attributes = {});\n      attributes = getValue(attributes);\n      if (!isObject(attributes)) {\n        ref2 = [attributes, text], text = ref2[0], attributes = ref2[1];\n      }\n      child = new XMLElement(this, name, attributes);\n      if (text != null) {\n        child.text(text);\n      }\n      this.children.push(child);\n      return child;\n    };\n\n    XMLNode.prototype.text = function(value) {\n      var child;\n      if (isObject(value)) {\n        this.element(value);\n      }\n      child = new XMLText(this, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLNode.prototype.cdata = function(value) {\n      var child;\n      child = new XMLCData(this, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLNode.prototype.comment = function(value) {\n      var child;\n      child = new XMLComment(this, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLNode.prototype.commentBefore = function(value) {\n      var child, i, removed;\n      i = this.parent.children.indexOf(this);\n      removed = this.parent.children.splice(i);\n      child = this.parent.comment(value);\n      Array.prototype.push.apply(this.parent.children, removed);\n      return this;\n    };\n\n    XMLNode.prototype.commentAfter = function(value) {\n      var child, i, removed;\n      i = this.parent.children.indexOf(this);\n      removed = this.parent.children.splice(i + 1);\n      child = this.parent.comment(value);\n      Array.prototype.push.apply(this.parent.children, removed);\n      return this;\n    };\n\n    XMLNode.prototype.raw = function(value) {\n      var child;\n      child = new XMLRaw(this, value);\n      this.children.push(child);\n      return this;\n    };\n\n    XMLNode.prototype.dummy = function() {\n      var child;\n      child = new XMLDummy(this);\n      return child;\n    };\n\n    XMLNode.prototype.instruction = function(target, value) {\n      var insTarget, insValue, instruction, j, len;\n      if (target != null) {\n        target = getValue(target);\n      }\n      if (value != null) {\n        value = getValue(value);\n      }\n      if (Array.isArray(target)) {\n        for (j = 0, len = target.length; j < len; j++) {\n          insTarget = target[j];\n          this.instruction(insTarget);\n        }\n      } else if (isObject(target)) {\n        for (insTarget in target) {\n          if (!hasProp.call(target, insTarget)) continue;\n          insValue = target[insTarget];\n          this.instruction(insTarget, insValue);\n        }\n      } else {\n        if (isFunction(value)) {\n          value = value.apply();\n        }\n        instruction = new XMLProcessingInstruction(this, target, value);\n        this.children.push(instruction);\n      }\n      return this;\n    };\n\n    XMLNode.prototype.instructionBefore = function(target, value) {\n      var child, i, removed;\n      i = this.parent.children.indexOf(this);\n      removed = this.parent.children.splice(i);\n      child = this.parent.instruction(target, value);\n      Array.prototype.push.apply(this.parent.children, removed);\n      return this;\n    };\n\n    XMLNode.prototype.instructionAfter = function(target, value) {\n      var child, i, removed;\n      i = this.parent.children.indexOf(this);\n      removed = this.parent.children.splice(i + 1);\n      child = this.parent.instruction(target, value);\n      Array.prototype.push.apply(this.parent.children, removed);\n      return this;\n    };\n\n    XMLNode.prototype.declaration = function(version, encoding, standalone) {\n      var doc, xmldec;\n      doc = this.document();\n      xmldec = new XMLDeclaration(doc, version, encoding, standalone);\n      if (doc.children.length === 0) {\n        doc.children.unshift(xmldec);\n      } else if (doc.children[0].type === NodeType.Declaration) {\n        doc.children[0] = xmldec;\n      } else {\n        doc.children.unshift(xmldec);\n      }\n      return doc.root() || doc;\n    };\n\n    XMLNode.prototype.dtd = function(pubID, sysID) {\n      var child, doc, doctype, i, j, k, len, len1, ref2, ref3;\n      doc = this.document();\n      doctype = new XMLDocType(doc, pubID, sysID);\n      ref2 = doc.children;\n      for (i = j = 0, len = ref2.length; j < len; i = ++j) {\n        child = ref2[i];\n        if (child.type === NodeType.DocType) {\n          doc.children[i] = doctype;\n          return doctype;\n        }\n      }\n      ref3 = doc.children;\n      for (i = k = 0, len1 = ref3.length; k < len1; i = ++k) {\n        child = ref3[i];\n        if (child.isRoot) {\n          doc.children.splice(i, 0, doctype);\n          return doctype;\n        }\n      }\n      doc.children.push(doctype);\n      return doctype;\n    };\n\n    XMLNode.prototype.up = function() {\n      if (this.isRoot) {\n        throw new Error(\"The root node has no parent. Use doc() if you need to get the document object.\");\n      }\n      return this.parent;\n    };\n\n    XMLNode.prototype.root = function() {\n      var node;\n      node = this;\n      while (node) {\n        if (node.type === NodeType.Document) {\n          return node.rootObject;\n        } else if (node.isRoot) {\n          return node;\n        } else {\n          node = node.parent;\n        }\n      }\n    };\n\n    XMLNode.prototype.document = function() {\n      var node;\n      node = this;\n      while (node) {\n        if (node.type === NodeType.Document) {\n          return node;\n        } else {\n          node = node.parent;\n        }\n      }\n    };\n\n    XMLNode.prototype.end = function(options) {\n      return this.document().end(options);\n    };\n\n    XMLNode.prototype.prev = function() {\n      var i;\n      i = this.parent.children.indexOf(this);\n      if (i < 1) {\n        throw new Error(\"Already at the first node. \" + this.debugInfo());\n      }\n      return this.parent.children[i - 1];\n    };\n\n    XMLNode.prototype.next = function() {\n      var i;\n      i = this.parent.children.indexOf(this);\n      if (i === -1 || i === this.parent.children.length - 1) {\n        throw new Error(\"Already at the last node. \" + this.debugInfo());\n      }\n      return this.parent.children[i + 1];\n    };\n\n    XMLNode.prototype.importDocument = function(doc) {\n      var clonedRoot;\n      clonedRoot = doc.root().clone();\n      clonedRoot.parent = this;\n      clonedRoot.isRoot = false;\n      this.children.push(clonedRoot);\n      return this;\n    };\n\n    XMLNode.prototype.debugInfo = function(name) {\n      var ref2, ref3;\n      name = name || this.name;\n      if ((name == null) && !((ref2 = this.parent) != null ? ref2.name : void 0)) {\n        return \"\";\n      } else if (name == null) {\n        return \"parent: <\" + this.parent.name + \">\";\n      } else if (!((ref3 = this.parent) != null ? ref3.name : void 0)) {\n        return \"node: <\" + name + \">\";\n      } else {\n        return \"node: <\" + name + \">, parent: <\" + this.parent.name + \">\";\n      }\n    };\n\n    XMLNode.prototype.ele = function(name, attributes, text) {\n      return this.element(name, attributes, text);\n    };\n\n    XMLNode.prototype.nod = function(name, attributes, text) {\n      return this.node(name, attributes, text);\n    };\n\n    XMLNode.prototype.txt = function(value) {\n      return this.text(value);\n    };\n\n    XMLNode.prototype.dat = function(value) {\n      return this.cdata(value);\n    };\n\n    XMLNode.prototype.com = function(value) {\n      return this.comment(value);\n    };\n\n    XMLNode.prototype.ins = function(target, value) {\n      return this.instruction(target, value);\n    };\n\n    XMLNode.prototype.doc = function() {\n      return this.document();\n    };\n\n    XMLNode.prototype.dec = function(version, encoding, standalone) {\n      return this.declaration(version, encoding, standalone);\n    };\n\n    XMLNode.prototype.e = function(name, attributes, text) {\n      return this.element(name, attributes, text);\n    };\n\n    XMLNode.prototype.n = function(name, attributes, text) {\n      return this.node(name, attributes, text);\n    };\n\n    XMLNode.prototype.t = function(value) {\n      return this.text(value);\n    };\n\n    XMLNode.prototype.d = function(value) {\n      return this.cdata(value);\n    };\n\n    XMLNode.prototype.c = function(value) {\n      return this.comment(value);\n    };\n\n    XMLNode.prototype.r = function(value) {\n      return this.raw(value);\n    };\n\n    XMLNode.prototype.i = function(target, value) {\n      return this.instruction(target, value);\n    };\n\n    XMLNode.prototype.u = function() {\n      return this.up();\n    };\n\n    XMLNode.prototype.importXMLBuilder = function(doc) {\n      return this.importDocument(doc);\n    };\n\n    XMLNode.prototype.replaceChild = function(newChild, oldChild) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.removeChild = function(oldChild) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.appendChild = function(newChild) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.hasChildNodes = function() {\n      return this.children.length !== 0;\n    };\n\n    XMLNode.prototype.cloneNode = function(deep) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.normalize = function() {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.isSupported = function(feature, version) {\n      return true;\n    };\n\n    XMLNode.prototype.hasAttributes = function() {\n      return this.attribs.length !== 0;\n    };\n\n    XMLNode.prototype.compareDocumentPosition = function(other) {\n      var ref, res;\n      ref = this;\n      if (ref === other) {\n        return 0;\n      } else if (this.document() !== other.document()) {\n        res = DocumentPosition.Disconnected | DocumentPosition.ImplementationSpecific;\n        if (Math.random() < 0.5) {\n          res |= DocumentPosition.Preceding;\n        } else {\n          res |= DocumentPosition.Following;\n        }\n        return res;\n      } else if (ref.isAncestor(other)) {\n        return DocumentPosition.Contains | DocumentPosition.Preceding;\n      } else if (ref.isDescendant(other)) {\n        return DocumentPosition.Contains | DocumentPosition.Following;\n      } else if (ref.isPreceding(other)) {\n        return DocumentPosition.Preceding;\n      } else {\n        return DocumentPosition.Following;\n      }\n    };\n\n    XMLNode.prototype.isSameNode = function(other) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.lookupPrefix = function(namespaceURI) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.isDefaultNamespace = function(namespaceURI) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.lookupNamespaceURI = function(prefix) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.isEqualNode = function(node) {\n      var i, j, ref2;\n      if (node.nodeType !== this.nodeType) {\n        return false;\n      }\n      if (node.children.length !== this.children.length) {\n        return false;\n      }\n      for (i = j = 0, ref2 = this.children.length - 1; 0 <= ref2 ? j <= ref2 : j >= ref2; i = 0 <= ref2 ? ++j : --j) {\n        if (!this.children[i].isEqualNode(node.children[i])) {\n          return false;\n        }\n      }\n      return true;\n    };\n\n    XMLNode.prototype.getFeature = function(feature, version) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.setUserData = function(key, data, handler) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.getUserData = function(key) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLNode.prototype.contains = function(other) {\n      if (!other) {\n        return false;\n      }\n      return other === this || this.isDescendant(other);\n    };\n\n    XMLNode.prototype.isDescendant = function(node) {\n      var child, isDescendantChild, j, len, ref2;\n      ref2 = this.children;\n      for (j = 0, len = ref2.length; j < len; j++) {\n        child = ref2[j];\n        if (node === child) {\n          return true;\n        }\n        isDescendantChild = child.isDescendant(node);\n        if (isDescendantChild) {\n          return true;\n        }\n      }\n      return false;\n    };\n\n    XMLNode.prototype.isAncestor = function(node) {\n      return node.isDescendant(this);\n    };\n\n    XMLNode.prototype.isPreceding = function(node) {\n      var nodePos, thisPos;\n      nodePos = this.treePosition(node);\n      thisPos = this.treePosition(this);\n      if (nodePos === -1 || thisPos === -1) {\n        return false;\n      } else {\n        return nodePos < thisPos;\n      }\n    };\n\n    XMLNode.prototype.isFollowing = function(node) {\n      var nodePos, thisPos;\n      nodePos = this.treePosition(node);\n      thisPos = this.treePosition(this);\n      if (nodePos === -1 || thisPos === -1) {\n        return false;\n      } else {\n        return nodePos > thisPos;\n      }\n    };\n\n    XMLNode.prototype.treePosition = function(node) {\n      var found, pos;\n      pos = 0;\n      found = false;\n      this.foreachTreeNode(this.document(), function(childNode) {\n        pos++;\n        if (!found && childNode === node) {\n          return found = true;\n        }\n      });\n      if (found) {\n        return pos;\n      } else {\n        return -1;\n      }\n    };\n\n    XMLNode.prototype.foreachTreeNode = function(node, func) {\n      var child, j, len, ref2, res;\n      node || (node = this.document());\n      ref2 = node.children;\n      for (j = 0, len = ref2.length; j < len; j++) {\n        child = ref2[j];\n        if (res = func(child)) {\n          return res;\n        } else {\n          res = this.foreachTreeNode(child, func);\n          if (res) {\n            return res;\n          }\n        }\n      }\n    };\n\n    return XMLNode;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLNodeList;\n\n  module.exports = XMLNodeList = (function() {\n    function XMLNodeList(nodes) {\n      this.nodes = nodes;\n    }\n\n    Object.defineProperty(XMLNodeList.prototype, 'length', {\n      get: function() {\n        return this.nodes.length || 0;\n      }\n    });\n\n    XMLNodeList.prototype.clone = function() {\n      return this.nodes = null;\n    };\n\n    XMLNodeList.prototype.item = function(index) {\n      return this.nodes[index] || null;\n    };\n\n    return XMLNodeList;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLCharacterData, XMLProcessingInstruction,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLCharacterData = require('./XMLCharacterData');\n\n  module.exports = XMLProcessingInstruction = (function(superClass) {\n    extend(XMLProcessingInstruction, superClass);\n\n    function XMLProcessingInstruction(parent, target, value) {\n      XMLProcessingInstruction.__super__.constructor.call(this, parent);\n      if (target == null) {\n        throw new Error(\"Missing instruction target. \" + this.debugInfo());\n      }\n      this.type = NodeType.ProcessingInstruction;\n      this.target = this.stringify.insTarget(target);\n      this.name = this.target;\n      if (value) {\n        this.value = this.stringify.insValue(value);\n      }\n    }\n\n    XMLProcessingInstruction.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLProcessingInstruction.prototype.toString = function(options) {\n      return this.options.writer.processingInstruction(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLProcessingInstruction.prototype.isEqualNode = function(node) {\n      if (!XMLProcessingInstruction.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n        return false;\n      }\n      if (node.target !== this.target) {\n        return false;\n      }\n      return true;\n    };\n\n    return XMLProcessingInstruction;\n\n  })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLNode, XMLRaw,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLNode = require('./XMLNode');\n\n  module.exports = XMLRaw = (function(superClass) {\n    extend(XMLRaw, superClass);\n\n    function XMLRaw(parent, text) {\n      XMLRaw.__super__.constructor.call(this, parent);\n      if (text == null) {\n        throw new Error(\"Missing raw text. \" + this.debugInfo());\n      }\n      this.type = NodeType.Raw;\n      this.value = this.stringify.raw(text);\n    }\n\n    XMLRaw.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLRaw.prototype.toString = function(options) {\n      return this.options.writer.raw(this, this.options.writer.filterOptions(options));\n    };\n\n    return XMLRaw;\n\n  })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, WriterState, XMLStreamWriter, XMLWriterBase,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLWriterBase = require('./XMLWriterBase');\n\n  WriterState = require('./WriterState');\n\n  module.exports = XMLStreamWriter = (function(superClass) {\n    extend(XMLStreamWriter, superClass);\n\n    function XMLStreamWriter(stream, options) {\n      this.stream = stream;\n      XMLStreamWriter.__super__.constructor.call(this, options);\n    }\n\n    XMLStreamWriter.prototype.endline = function(node, options, level) {\n      if (node.isLastRootNode && options.state === WriterState.CloseTag) {\n        return '';\n      } else {\n        return XMLStreamWriter.__super__.endline.call(this, node, options, level);\n      }\n    };\n\n    XMLStreamWriter.prototype.document = function(doc, options) {\n      var child, i, j, k, len, len1, ref, ref1, results;\n      ref = doc.children;\n      for (i = j = 0, len = ref.length; j < len; i = ++j) {\n        child = ref[i];\n        child.isLastRootNode = i === doc.children.length - 1;\n      }\n      options = this.filterOptions(options);\n      ref1 = doc.children;\n      results = [];\n      for (k = 0, len1 = ref1.length; k < len1; k++) {\n        child = ref1[k];\n        results.push(this.writeChildNode(child, options, 0));\n      }\n      return results;\n    };\n\n    XMLStreamWriter.prototype.attribute = function(att, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.attribute.call(this, att, options, level));\n    };\n\n    XMLStreamWriter.prototype.cdata = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.cdata.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.comment = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.comment.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.declaration = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.declaration.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.docType = function(node, options, level) {\n      var child, j, len, ref;\n      level || (level = 0);\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      this.stream.write(this.indent(node, options, level));\n      this.stream.write('<!DOCTYPE ' + node.root().name);\n      if (node.pubID && node.sysID) {\n        this.stream.write(' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"');\n      } else if (node.sysID) {\n        this.stream.write(' SYSTEM \"' + node.sysID + '\"');\n      }\n      if (node.children.length > 0) {\n        this.stream.write(' [');\n        this.stream.write(this.endline(node, options, level));\n        options.state = WriterState.InsideTag;\n        ref = node.children;\n        for (j = 0, len = ref.length; j < len; j++) {\n          child = ref[j];\n          this.writeChildNode(child, options, level + 1);\n        }\n        options.state = WriterState.CloseTag;\n        this.stream.write(']');\n      }\n      options.state = WriterState.CloseTag;\n      this.stream.write(options.spaceBeforeSlash + '>');\n      this.stream.write(this.endline(node, options, level));\n      options.state = WriterState.None;\n      return this.closeNode(node, options, level);\n    };\n\n    XMLStreamWriter.prototype.element = function(node, options, level) {\n      var att, child, childNodeCount, firstChildNode, j, len, name, prettySuppressed, ref, ref1;\n      level || (level = 0);\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      this.stream.write(this.indent(node, options, level) + '<' + node.name);\n      ref = node.attribs;\n      for (name in ref) {\n        if (!hasProp.call(ref, name)) continue;\n        att = ref[name];\n        this.attribute(att, options, level);\n      }\n      childNodeCount = node.children.length;\n      firstChildNode = childNodeCount === 0 ? null : node.children[0];\n      if (childNodeCount === 0 || node.children.every(function(e) {\n        return (e.type === NodeType.Text || e.type === NodeType.Raw) && e.value === '';\n      })) {\n        if (options.allowEmpty) {\n          this.stream.write('>');\n          options.state = WriterState.CloseTag;\n          this.stream.write('</' + node.name + '>');\n        } else {\n          options.state = WriterState.CloseTag;\n          this.stream.write(options.spaceBeforeSlash + '/>');\n        }\n      } else if (options.pretty && childNodeCount === 1 && (firstChildNode.type === NodeType.Text || firstChildNode.type === NodeType.Raw) && (firstChildNode.value != null)) {\n        this.stream.write('>');\n        options.state = WriterState.InsideTag;\n        options.suppressPrettyCount++;\n        prettySuppressed = true;\n        this.writeChildNode(firstChildNode, options, level + 1);\n        options.suppressPrettyCount--;\n        prettySuppressed = false;\n        options.state = WriterState.CloseTag;\n        this.stream.write('</' + node.name + '>');\n      } else {\n        this.stream.write('>' + this.endline(node, options, level));\n        options.state = WriterState.InsideTag;\n        ref1 = node.children;\n        for (j = 0, len = ref1.length; j < len; j++) {\n          child = ref1[j];\n          this.writeChildNode(child, options, level + 1);\n        }\n        options.state = WriterState.CloseTag;\n        this.stream.write(this.indent(node, options, level) + '</' + node.name + '>');\n      }\n      this.stream.write(this.endline(node, options, level));\n      options.state = WriterState.None;\n      return this.closeNode(node, options, level);\n    };\n\n    XMLStreamWriter.prototype.processingInstruction = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.processingInstruction.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.raw = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.raw.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.text = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.text.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.dtdAttList = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.dtdAttList.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.dtdElement = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.dtdElement.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.dtdEntity = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.dtdEntity.call(this, node, options, level));\n    };\n\n    XMLStreamWriter.prototype.dtdNotation = function(node, options, level) {\n      return this.stream.write(XMLStreamWriter.__super__.dtdNotation.call(this, node, options, level));\n    };\n\n    return XMLStreamWriter;\n\n  })(XMLWriterBase);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLStringWriter, XMLWriterBase,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  XMLWriterBase = require('./XMLWriterBase');\n\n  module.exports = XMLStringWriter = (function(superClass) {\n    extend(XMLStringWriter, superClass);\n\n    function XMLStringWriter(options) {\n      XMLStringWriter.__super__.constructor.call(this, options);\n    }\n\n    XMLStringWriter.prototype.document = function(doc, options) {\n      var child, i, len, r, ref;\n      options = this.filterOptions(options);\n      r = '';\n      ref = doc.children;\n      for (i = 0, len = ref.length; i < len; i++) {\n        child = ref[i];\n        r += this.writeChildNode(child, options, 0);\n      }\n      if (options.pretty && r.slice(-options.newline.length) === options.newline) {\n        r = r.slice(0, -options.newline.length);\n      }\n      return r;\n    };\n\n    return XMLStringWriter;\n\n  })(XMLWriterBase);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var XMLStringifier,\n    bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },\n    hasProp = {}.hasOwnProperty;\n\n  module.exports = XMLStringifier = (function() {\n    function XMLStringifier(options) {\n      this.assertLegalName = bind(this.assertLegalName, this);\n      this.assertLegalChar = bind(this.assertLegalChar, this);\n      var key, ref, value;\n      options || (options = {});\n      this.options = options;\n      if (!this.options.version) {\n        this.options.version = '1.0';\n      }\n      ref = options.stringify || {};\n      for (key in ref) {\n        if (!hasProp.call(ref, key)) continue;\n        value = ref[key];\n        this[key] = value;\n      }\n    }\n\n    XMLStringifier.prototype.name = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalName('' + val || '');\n    };\n\n    XMLStringifier.prototype.text = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar(this.textEscape('' + val || ''));\n    };\n\n    XMLStringifier.prototype.cdata = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      val = '' + val || '';\n      val = val.replace(']]>', ']]]]><![CDATA[>');\n      return this.assertLegalChar(val);\n    };\n\n    XMLStringifier.prototype.comment = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      val = '' + val || '';\n      if (val.match(/--/)) {\n        throw new Error(\"Comment text cannot contain double-hypen: \" + val);\n      }\n      return this.assertLegalChar(val);\n    };\n\n    XMLStringifier.prototype.raw = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return '' + val || '';\n    };\n\n    XMLStringifier.prototype.attValue = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar(this.attEscape(val = '' + val || ''));\n    };\n\n    XMLStringifier.prototype.insTarget = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.insValue = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      val = '' + val || '';\n      if (val.match(/\\?>/)) {\n        throw new Error(\"Invalid processing instruction value: \" + val);\n      }\n      return this.assertLegalChar(val);\n    };\n\n    XMLStringifier.prototype.xmlVersion = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      val = '' + val || '';\n      if (!val.match(/1\\.[0-9]+/)) {\n        throw new Error(\"Invalid version number: \" + val);\n      }\n      return val;\n    };\n\n    XMLStringifier.prototype.xmlEncoding = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      val = '' + val || '';\n      if (!val.match(/^[A-Za-z](?:[A-Za-z0-9._-])*$/)) {\n        throw new Error(\"Invalid encoding: \" + val);\n      }\n      return this.assertLegalChar(val);\n    };\n\n    XMLStringifier.prototype.xmlStandalone = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      if (val) {\n        return \"yes\";\n      } else {\n        return \"no\";\n      }\n    };\n\n    XMLStringifier.prototype.dtdPubID = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdSysID = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdElementValue = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdAttType = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdAttDefault = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdEntityValue = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.dtdNData = function(val) {\n      if (this.options.noValidation) {\n        return val;\n      }\n      return this.assertLegalChar('' + val || '');\n    };\n\n    XMLStringifier.prototype.convertAttKey = '@';\n\n    XMLStringifier.prototype.convertPIKey = '?';\n\n    XMLStringifier.prototype.convertTextKey = '#text';\n\n    XMLStringifier.prototype.convertCDataKey = '#cdata';\n\n    XMLStringifier.prototype.convertCommentKey = '#comment';\n\n    XMLStringifier.prototype.convertRawKey = '#raw';\n\n    XMLStringifier.prototype.assertLegalChar = function(str) {\n      var regex, res;\n      if (this.options.noValidation) {\n        return str;\n      }\n      regex = '';\n      if (this.options.version === '1.0') {\n        regex = /[\\0-\\x08\\x0B\\f\\x0E-\\x1F\\uFFFE\\uFFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/;\n        if (res = str.match(regex)) {\n          throw new Error(\"Invalid character in string: \" + str + \" at index \" + res.index);\n        }\n      } else if (this.options.version === '1.1') {\n        regex = /[\\0\\uFFFE\\uFFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/;\n        if (res = str.match(regex)) {\n          throw new Error(\"Invalid character in string: \" + str + \" at index \" + res.index);\n        }\n      }\n      return str;\n    };\n\n    XMLStringifier.prototype.assertLegalName = function(str) {\n      var regex;\n      if (this.options.noValidation) {\n        return str;\n      }\n      this.assertLegalChar(str);\n      regex = /^([:A-Z_a-z\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]|[\\uD800-\\uDB7F][\\uDC00-\\uDFFF])([\\x2D\\.0-:A-Z_a-z\\xB7\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u037D\\u037F-\\u1FFF\\u200C\\u200D\\u203F\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]|[\\uD800-\\uDB7F][\\uDC00-\\uDFFF])*$/;\n      if (!str.match(regex)) {\n        throw new Error(\"Invalid character in name\");\n      }\n      return str;\n    };\n\n    XMLStringifier.prototype.textEscape = function(str) {\n      var ampregex;\n      if (this.options.noValidation) {\n        return str;\n      }\n      ampregex = this.options.noDoubleEncoding ? /(?!&\\S+;)&/g : /&/g;\n      return str.replace(ampregex, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/\\r/g, '&#xD;');\n    };\n\n    XMLStringifier.prototype.attEscape = function(str) {\n      var ampregex;\n      if (this.options.noValidation) {\n        return str;\n      }\n      ampregex = this.options.noDoubleEncoding ? /(?!&\\S+;)&/g : /&/g;\n      return str.replace(ampregex, '&amp;').replace(/</g, '&lt;').replace(/\"/g, '&quot;').replace(/\\t/g, '&#x9;').replace(/\\n/g, '&#xA;').replace(/\\r/g, '&#xD;');\n    };\n\n    return XMLStringifier;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, XMLCharacterData, XMLText,\n    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    hasProp = {}.hasOwnProperty;\n\n  NodeType = require('./NodeType');\n\n  XMLCharacterData = require('./XMLCharacterData');\n\n  module.exports = XMLText = (function(superClass) {\n    extend(XMLText, superClass);\n\n    function XMLText(parent, text) {\n      XMLText.__super__.constructor.call(this, parent);\n      if (text == null) {\n        throw new Error(\"Missing element text. \" + this.debugInfo());\n      }\n      this.name = \"#text\";\n      this.type = NodeType.Text;\n      this.value = this.stringify.text(text);\n    }\n\n    Object.defineProperty(XMLText.prototype, 'isElementContentWhitespace', {\n      get: function() {\n        throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n      }\n    });\n\n    Object.defineProperty(XMLText.prototype, 'wholeText', {\n      get: function() {\n        var next, prev, str;\n        str = '';\n        prev = this.previousSibling;\n        while (prev) {\n          str = prev.data + str;\n          prev = prev.previousSibling;\n        }\n        str += this.data;\n        next = this.nextSibling;\n        while (next) {\n          str = str + next.data;\n          next = next.nextSibling;\n        }\n        return str;\n      }\n    });\n\n    XMLText.prototype.clone = function() {\n      return Object.create(this);\n    };\n\n    XMLText.prototype.toString = function(options) {\n      return this.options.writer.text(this, this.options.writer.filterOptions(options));\n    };\n\n    XMLText.prototype.splitText = function(offset) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    XMLText.prototype.replaceWholeText = function(content) {\n      throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n    };\n\n    return XMLText;\n\n  })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, WriterState, XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLDummy, XMLElement, XMLProcessingInstruction, XMLRaw, XMLText, XMLWriterBase, assign,\n    hasProp = {}.hasOwnProperty;\n\n  assign = require('./Utility').assign;\n\n  NodeType = require('./NodeType');\n\n  XMLDeclaration = require('./XMLDeclaration');\n\n  XMLDocType = require('./XMLDocType');\n\n  XMLCData = require('./XMLCData');\n\n  XMLComment = require('./XMLComment');\n\n  XMLElement = require('./XMLElement');\n\n  XMLRaw = require('./XMLRaw');\n\n  XMLText = require('./XMLText');\n\n  XMLProcessingInstruction = require('./XMLProcessingInstruction');\n\n  XMLDummy = require('./XMLDummy');\n\n  XMLDTDAttList = require('./XMLDTDAttList');\n\n  XMLDTDElement = require('./XMLDTDElement');\n\n  XMLDTDEntity = require('./XMLDTDEntity');\n\n  XMLDTDNotation = require('./XMLDTDNotation');\n\n  WriterState = require('./WriterState');\n\n  module.exports = XMLWriterBase = (function() {\n    function XMLWriterBase(options) {\n      var key, ref, value;\n      options || (options = {});\n      this.options = options;\n      ref = options.writer || {};\n      for (key in ref) {\n        if (!hasProp.call(ref, key)) continue;\n        value = ref[key];\n        this[\"_\" + key] = this[key];\n        this[key] = value;\n      }\n    }\n\n    XMLWriterBase.prototype.filterOptions = function(options) {\n      var filteredOptions, ref, ref1, ref2, ref3, ref4, ref5, ref6;\n      options || (options = {});\n      options = assign({}, this.options, options);\n      filteredOptions = {\n        writer: this\n      };\n      filteredOptions.pretty = options.pretty || false;\n      filteredOptions.allowEmpty = options.allowEmpty || false;\n      filteredOptions.indent = (ref = options.indent) != null ? ref : '  ';\n      filteredOptions.newline = (ref1 = options.newline) != null ? ref1 : '\\n';\n      filteredOptions.offset = (ref2 = options.offset) != null ? ref2 : 0;\n      filteredOptions.dontPrettyTextNodes = (ref3 = (ref4 = options.dontPrettyTextNodes) != null ? ref4 : options.dontprettytextnodes) != null ? ref3 : 0;\n      filteredOptions.spaceBeforeSlash = (ref5 = (ref6 = options.spaceBeforeSlash) != null ? ref6 : options.spacebeforeslash) != null ? ref5 : '';\n      if (filteredOptions.spaceBeforeSlash === true) {\n        filteredOptions.spaceBeforeSlash = ' ';\n      }\n      filteredOptions.suppressPrettyCount = 0;\n      filteredOptions.user = {};\n      filteredOptions.state = WriterState.None;\n      return filteredOptions;\n    };\n\n    XMLWriterBase.prototype.indent = function(node, options, level) {\n      var indentLevel;\n      if (!options.pretty || options.suppressPrettyCount) {\n        return '';\n      } else if (options.pretty) {\n        indentLevel = (level || 0) + options.offset + 1;\n        if (indentLevel > 0) {\n          return new Array(indentLevel).join(options.indent);\n        }\n      }\n      return '';\n    };\n\n    XMLWriterBase.prototype.endline = function(node, options, level) {\n      if (!options.pretty || options.suppressPrettyCount) {\n        return '';\n      } else {\n        return options.newline;\n      }\n    };\n\n    XMLWriterBase.prototype.attribute = function(att, options, level) {\n      var r;\n      this.openAttribute(att, options, level);\n      r = ' ' + att.name + '=\"' + att.value + '\"';\n      this.closeAttribute(att, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.cdata = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<![CDATA[';\n      options.state = WriterState.InsideTag;\n      r += node.value;\n      options.state = WriterState.CloseTag;\n      r += ']]>' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.comment = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<!-- ';\n      options.state = WriterState.InsideTag;\n      r += node.value;\n      options.state = WriterState.CloseTag;\n      r += ' -->' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.declaration = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<?xml';\n      options.state = WriterState.InsideTag;\n      r += ' version=\"' + node.version + '\"';\n      if (node.encoding != null) {\n        r += ' encoding=\"' + node.encoding + '\"';\n      }\n      if (node.standalone != null) {\n        r += ' standalone=\"' + node.standalone + '\"';\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '?>';\n      r += this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.docType = function(node, options, level) {\n      var child, i, len, r, ref;\n      level || (level = 0);\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level);\n      r += '<!DOCTYPE ' + node.root().name;\n      if (node.pubID && node.sysID) {\n        r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n      } else if (node.sysID) {\n        r += ' SYSTEM \"' + node.sysID + '\"';\n      }\n      if (node.children.length > 0) {\n        r += ' [';\n        r += this.endline(node, options, level);\n        options.state = WriterState.InsideTag;\n        ref = node.children;\n        for (i = 0, len = ref.length; i < len; i++) {\n          child = ref[i];\n          r += this.writeChildNode(child, options, level + 1);\n        }\n        options.state = WriterState.CloseTag;\n        r += ']';\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '>';\n      r += this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.element = function(node, options, level) {\n      var att, child, childNodeCount, firstChildNode, i, j, len, len1, name, prettySuppressed, r, ref, ref1, ref2;\n      level || (level = 0);\n      prettySuppressed = false;\n      r = '';\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r += this.indent(node, options, level) + '<' + node.name;\n      ref = node.attribs;\n      for (name in ref) {\n        if (!hasProp.call(ref, name)) continue;\n        att = ref[name];\n        r += this.attribute(att, options, level);\n      }\n      childNodeCount = node.children.length;\n      firstChildNode = childNodeCount === 0 ? null : node.children[0];\n      if (childNodeCount === 0 || node.children.every(function(e) {\n        return (e.type === NodeType.Text || e.type === NodeType.Raw) && e.value === '';\n      })) {\n        if (options.allowEmpty) {\n          r += '>';\n          options.state = WriterState.CloseTag;\n          r += '</' + node.name + '>' + this.endline(node, options, level);\n        } else {\n          options.state = WriterState.CloseTag;\n          r += options.spaceBeforeSlash + '/>' + this.endline(node, options, level);\n        }\n      } else if (options.pretty && childNodeCount === 1 && (firstChildNode.type === NodeType.Text || firstChildNode.type === NodeType.Raw) && (firstChildNode.value != null)) {\n        r += '>';\n        options.state = WriterState.InsideTag;\n        options.suppressPrettyCount++;\n        prettySuppressed = true;\n        r += this.writeChildNode(firstChildNode, options, level + 1);\n        options.suppressPrettyCount--;\n        prettySuppressed = false;\n        options.state = WriterState.CloseTag;\n        r += '</' + node.name + '>' + this.endline(node, options, level);\n      } else {\n        if (options.dontPrettyTextNodes) {\n          ref1 = node.children;\n          for (i = 0, len = ref1.length; i < len; i++) {\n            child = ref1[i];\n            if ((child.type === NodeType.Text || child.type === NodeType.Raw) && (child.value != null)) {\n              options.suppressPrettyCount++;\n              prettySuppressed = true;\n              break;\n            }\n          }\n        }\n        r += '>' + this.endline(node, options, level);\n        options.state = WriterState.InsideTag;\n        ref2 = node.children;\n        for (j = 0, len1 = ref2.length; j < len1; j++) {\n          child = ref2[j];\n          r += this.writeChildNode(child, options, level + 1);\n        }\n        options.state = WriterState.CloseTag;\n        r += this.indent(node, options, level) + '</' + node.name + '>';\n        if (prettySuppressed) {\n          options.suppressPrettyCount--;\n        }\n        r += this.endline(node, options, level);\n        options.state = WriterState.None;\n      }\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.writeChildNode = function(node, options, level) {\n      switch (node.type) {\n        case NodeType.CData:\n          return this.cdata(node, options, level);\n        case NodeType.Comment:\n          return this.comment(node, options, level);\n        case NodeType.Element:\n          return this.element(node, options, level);\n        case NodeType.Raw:\n          return this.raw(node, options, level);\n        case NodeType.Text:\n          return this.text(node, options, level);\n        case NodeType.ProcessingInstruction:\n          return this.processingInstruction(node, options, level);\n        case NodeType.Dummy:\n          return '';\n        case NodeType.Declaration:\n          return this.declaration(node, options, level);\n        case NodeType.DocType:\n          return this.docType(node, options, level);\n        case NodeType.AttributeDeclaration:\n          return this.dtdAttList(node, options, level);\n        case NodeType.ElementDeclaration:\n          return this.dtdElement(node, options, level);\n        case NodeType.EntityDeclaration:\n          return this.dtdEntity(node, options, level);\n        case NodeType.NotationDeclaration:\n          return this.dtdNotation(node, options, level);\n        default:\n          throw new Error(\"Unknown XML node type: \" + node.constructor.name);\n      }\n    };\n\n    XMLWriterBase.prototype.processingInstruction = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<?';\n      options.state = WriterState.InsideTag;\n      r += node.target;\n      if (node.value) {\n        r += ' ' + node.value;\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '?>';\n      r += this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.raw = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level);\n      options.state = WriterState.InsideTag;\n      r += node.value;\n      options.state = WriterState.CloseTag;\n      r += this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.text = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level);\n      options.state = WriterState.InsideTag;\n      r += node.value;\n      options.state = WriterState.CloseTag;\n      r += this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.dtdAttList = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<!ATTLIST';\n      options.state = WriterState.InsideTag;\n      r += ' ' + node.elementName + ' ' + node.attributeName + ' ' + node.attributeType;\n      if (node.defaultValueType !== '#DEFAULT') {\n        r += ' ' + node.defaultValueType;\n      }\n      if (node.defaultValue) {\n        r += ' \"' + node.defaultValue + '\"';\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.dtdElement = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<!ELEMENT';\n      options.state = WriterState.InsideTag;\n      r += ' ' + node.name + ' ' + node.value;\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.dtdEntity = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<!ENTITY';\n      options.state = WriterState.InsideTag;\n      if (node.pe) {\n        r += ' %';\n      }\n      r += ' ' + node.name;\n      if (node.value) {\n        r += ' \"' + node.value + '\"';\n      } else {\n        if (node.pubID && node.sysID) {\n          r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n        } else if (node.sysID) {\n          r += ' SYSTEM \"' + node.sysID + '\"';\n        }\n        if (node.nData) {\n          r += ' NDATA ' + node.nData;\n        }\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.dtdNotation = function(node, options, level) {\n      var r;\n      this.openNode(node, options, level);\n      options.state = WriterState.OpenTag;\n      r = this.indent(node, options, level) + '<!NOTATION';\n      options.state = WriterState.InsideTag;\n      r += ' ' + node.name;\n      if (node.pubID && node.sysID) {\n        r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n      } else if (node.pubID) {\n        r += ' PUBLIC \"' + node.pubID + '\"';\n      } else if (node.sysID) {\n        r += ' SYSTEM \"' + node.sysID + '\"';\n      }\n      options.state = WriterState.CloseTag;\n      r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n      options.state = WriterState.None;\n      this.closeNode(node, options, level);\n      return r;\n    };\n\n    XMLWriterBase.prototype.openNode = function(node, options, level) {};\n\n    XMLWriterBase.prototype.closeNode = function(node, options, level) {};\n\n    XMLWriterBase.prototype.openAttribute = function(att, options, level) {};\n\n    XMLWriterBase.prototype.closeAttribute = function(att, options, level) {};\n\n    return XMLWriterBase;\n\n  })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n  var NodeType, WriterState, XMLDOMImplementation, XMLDocument, XMLDocumentCB, XMLStreamWriter, XMLStringWriter, assign, isFunction, ref;\n\n  ref = require('./Utility'), assign = ref.assign, isFunction = ref.isFunction;\n\n  XMLDOMImplementation = require('./XMLDOMImplementation');\n\n  XMLDocument = require('./XMLDocument');\n\n  XMLDocumentCB = require('./XMLDocumentCB');\n\n  XMLStringWriter = require('./XMLStringWriter');\n\n  XMLStreamWriter = require('./XMLStreamWriter');\n\n  NodeType = require('./NodeType');\n\n  WriterState = require('./WriterState');\n\n  module.exports.create = function(name, xmldec, doctype, options) {\n    var doc, root;\n    if (name == null) {\n      throw new Error(\"Root element needs a name.\");\n    }\n    options = assign({}, xmldec, doctype, options);\n    doc = new XMLDocument(options);\n    root = doc.element(name);\n    if (!options.headless) {\n      doc.declaration(options);\n      if ((options.pubID != null) || (options.sysID != null)) {\n        doc.dtd(options);\n      }\n    }\n    return root;\n  };\n\n  module.exports.begin = function(options, onData, onEnd) {\n    var ref1;\n    if (isFunction(options)) {\n      ref1 = [options, onData], onData = ref1[0], onEnd = ref1[1];\n      options = {};\n    }\n    if (onData) {\n      return new XMLDocumentCB(options, onData, onEnd);\n    } else {\n      return new XMLDocument(options);\n    }\n  };\n\n  module.exports.stringWriter = function(options) {\n    return new XMLStringWriter(options);\n  };\n\n  module.exports.streamWriter = function(stream, options) {\n    return new XMLStreamWriter(stream, options);\n  };\n\n  module.exports.implementation = new XMLDOMImplementation();\n\n  module.exports.nodeType = NodeType;\n\n  module.exports.writerState = WriterState;\n\n}).call(this);\n","import { getCurrentUser, onRequestTokenUpdate, getRequestToken } from \"@nextcloud/auth\";\nimport { getLoggerBuilder } from \"@nextcloud/logger\";\nimport { join, basename, extname, dirname } from \"path\";\nimport { encodePath } from \"@nextcloud/paths\";\nimport { generateRemoteUrl } from \"@nextcloud/router\";\nimport { createClient, getPatcher } from \"webdav\";\nimport { CancelablePromise } from \"cancelable-promise\";\nimport { getCanonicalLocale, getLanguage } from \"@nextcloud/l10n\";\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst getLogger = (user) => {\n  if (user === null) {\n    return getLoggerBuilder().setApp(\"files\").build();\n  }\n  return getLoggerBuilder().setApp(\"files\").setUid(user.uid).build();\n};\nconst logger = getLogger(getCurrentUser());\n/**\n * @copyright Copyright (c) 2021 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar NewMenuEntryCategory = /* @__PURE__ */ ((NewMenuEntryCategory2) => {\n  NewMenuEntryCategory2[NewMenuEntryCategory2[\"UploadFromDevice\"] = 0] = \"UploadFromDevice\";\n  NewMenuEntryCategory2[NewMenuEntryCategory2[\"CreateNew\"] = 1] = \"CreateNew\";\n  NewMenuEntryCategory2[NewMenuEntryCategory2[\"Other\"] = 2] = \"Other\";\n  return NewMenuEntryCategory2;\n})(NewMenuEntryCategory || {});\nclass NewFileMenu {\n  _entries = [];\n  registerEntry(entry) {\n    this.validateEntry(entry);\n    entry.category = entry.category ?? 1;\n    this._entries.push(entry);\n  }\n  unregisterEntry(entry) {\n    const entryIndex = typeof entry === \"string\" ? this.getEntryIndex(entry) : this.getEntryIndex(entry.id);\n    if (entryIndex === -1) {\n      logger.warn(\"Entry not found, nothing removed\", { entry, entries: this.getEntries() });\n      return;\n    }\n    this._entries.splice(entryIndex, 1);\n  }\n  /**\n   * Get the list of registered entries\n   *\n   * @param {Folder} context the creation context. Usually the current folder\n   */\n  getEntries(context) {\n    if (context) {\n      return this._entries.filter((entry) => typeof entry.enabled === \"function\" ? entry.enabled(context) : true);\n    }\n    return this._entries;\n  }\n  getEntryIndex(id) {\n    return this._entries.findIndex((entry) => entry.id === id);\n  }\n  validateEntry(entry) {\n    if (!entry.id || !entry.displayName || !(entry.iconSvgInline || entry.iconClass) || !entry.handler) {\n      throw new Error(\"Invalid entry\");\n    }\n    if (typeof entry.id !== \"string\" || typeof entry.displayName !== \"string\") {\n      throw new Error(\"Invalid id or displayName property\");\n    }\n    if (entry.iconClass && typeof entry.iconClass !== \"string\" || entry.iconSvgInline && typeof entry.iconSvgInline !== \"string\") {\n      throw new Error(\"Invalid icon provided\");\n    }\n    if (entry.enabled !== void 0 && typeof entry.enabled !== \"function\") {\n      throw new Error(\"Invalid enabled property\");\n    }\n    if (typeof entry.handler !== \"function\") {\n      throw new Error(\"Invalid handler property\");\n    }\n    if (\"order\" in entry && typeof entry.order !== \"number\") {\n      throw new Error(\"Invalid order property\");\n    }\n    if (this.getEntryIndex(entry.id) !== -1) {\n      throw new Error(\"Duplicate entry\");\n    }\n  }\n}\nconst getNewFileMenu = function() {\n  if (typeof window._nc_newfilemenu === \"undefined\") {\n    window._nc_newfilemenu = new NewFileMenu();\n    logger.debug(\"NewFileMenu initialized\");\n  }\n  return window._nc_newfilemenu;\n};\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar DefaultType = /* @__PURE__ */ ((DefaultType2) => {\n  DefaultType2[\"DEFAULT\"] = \"default\";\n  DefaultType2[\"HIDDEN\"] = \"hidden\";\n  return DefaultType2;\n})(DefaultType || {});\nclass FileAction {\n  _action;\n  constructor(action) {\n    this.validateAction(action);\n    this._action = action;\n  }\n  get id() {\n    return this._action.id;\n  }\n  get displayName() {\n    return this._action.displayName;\n  }\n  get title() {\n    return this._action.title;\n  }\n  get iconSvgInline() {\n    return this._action.iconSvgInline;\n  }\n  get enabled() {\n    return this._action.enabled;\n  }\n  get exec() {\n    return this._action.exec;\n  }\n  get execBatch() {\n    return this._action.execBatch;\n  }\n  get order() {\n    return this._action.order;\n  }\n  get parent() {\n    return this._action.parent;\n  }\n  get default() {\n    return this._action.default;\n  }\n  get inline() {\n    return this._action.inline;\n  }\n  get renderInline() {\n    return this._action.renderInline;\n  }\n  validateAction(action) {\n    if (!action.id || typeof action.id !== \"string\") {\n      throw new Error(\"Invalid id\");\n    }\n    if (!action.displayName || typeof action.displayName !== \"function\") {\n      throw new Error(\"Invalid displayName function\");\n    }\n    if (\"title\" in action && typeof action.title !== \"function\") {\n      throw new Error(\"Invalid title function\");\n    }\n    if (!action.iconSvgInline || typeof action.iconSvgInline !== \"function\") {\n      throw new Error(\"Invalid iconSvgInline function\");\n    }\n    if (!action.exec || typeof action.exec !== \"function\") {\n      throw new Error(\"Invalid exec function\");\n    }\n    if (\"enabled\" in action && typeof action.enabled !== \"function\") {\n      throw new Error(\"Invalid enabled function\");\n    }\n    if (\"execBatch\" in action && typeof action.execBatch !== \"function\") {\n      throw new Error(\"Invalid execBatch function\");\n    }\n    if (\"order\" in action && typeof action.order !== \"number\") {\n      throw new Error(\"Invalid order\");\n    }\n    if (\"parent\" in action && typeof action.parent !== \"string\") {\n      throw new Error(\"Invalid parent\");\n    }\n    if (action.default && !Object.values(DefaultType).includes(action.default)) {\n      throw new Error(\"Invalid default\");\n    }\n    if (\"inline\" in action && typeof action.inline !== \"function\") {\n      throw new Error(\"Invalid inline function\");\n    }\n    if (\"renderInline\" in action && typeof action.renderInline !== \"function\") {\n      throw new Error(\"Invalid renderInline function\");\n    }\n  }\n}\nconst registerFileAction = function(action) {\n  if (typeof window._nc_fileactions === \"undefined\") {\n    window._nc_fileactions = [];\n    logger.debug(\"FileActions initialized\");\n  }\n  if (window._nc_fileactions.find((search) => search.id === action.id)) {\n    logger.error(`FileAction ${action.id} already registered`, { action });\n    return;\n  }\n  window._nc_fileactions.push(action);\n};\nconst getFileActions = function() {\n  if (typeof window._nc_fileactions === \"undefined\") {\n    window._nc_fileactions = [];\n    logger.debug(\"FileActions initialized\");\n  }\n  return window._nc_fileactions;\n};\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Header {\n  _header;\n  constructor(header) {\n    this.validateHeader(header);\n    this._header = header;\n  }\n  get id() {\n    return this._header.id;\n  }\n  get order() {\n    return this._header.order;\n  }\n  get enabled() {\n    return this._header.enabled;\n  }\n  get render() {\n    return this._header.render;\n  }\n  get updated() {\n    return this._header.updated;\n  }\n  validateHeader(header) {\n    if (!header.id || !header.render || !header.updated) {\n      throw new Error(\"Invalid header: id, render and updated are required\");\n    }\n    if (typeof header.id !== \"string\") {\n      throw new Error(\"Invalid id property\");\n    }\n    if (header.enabled !== void 0 && typeof header.enabled !== \"function\") {\n      throw new Error(\"Invalid enabled property\");\n    }\n    if (header.render && typeof header.render !== \"function\") {\n      throw new Error(\"Invalid render property\");\n    }\n    if (header.updated && typeof header.updated !== \"function\") {\n      throw new Error(\"Invalid updated property\");\n    }\n  }\n}\nconst registerFileListHeaders = function(header) {\n  if (typeof window._nc_filelistheader === \"undefined\") {\n    window._nc_filelistheader = [];\n    logger.debug(\"FileListHeaders initialized\");\n  }\n  if (window._nc_filelistheader.find((search) => search.id === header.id)) {\n    logger.error(`Header ${header.id} already registered`, { header });\n    return;\n  }\n  window._nc_filelistheader.push(header);\n};\nconst getFileListHeaders = function() {\n  if (typeof window._nc_filelistheader === \"undefined\") {\n    window._nc_filelistheader = [];\n    logger.debug(\"FileListHeaders initialized\");\n  }\n  return window._nc_filelistheader;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar Permission = /* @__PURE__ */ ((Permission2) => {\n  Permission2[Permission2[\"NONE\"] = 0] = \"NONE\";\n  Permission2[Permission2[\"CREATE\"] = 4] = \"CREATE\";\n  Permission2[Permission2[\"READ\"] = 1] = \"READ\";\n  Permission2[Permission2[\"UPDATE\"] = 2] = \"UPDATE\";\n  Permission2[Permission2[\"DELETE\"] = 8] = \"DELETE\";\n  Permission2[Permission2[\"SHARE\"] = 16] = \"SHARE\";\n  Permission2[Permission2[\"ALL\"] = 31] = \"ALL\";\n  return Permission2;\n})(Permission || {});\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst defaultDavProperties = [\n  \"d:getcontentlength\",\n  \"d:getcontenttype\",\n  \"d:getetag\",\n  \"d:getlastmodified\",\n  \"d:quota-available-bytes\",\n  \"d:resourcetype\",\n  \"nc:has-preview\",\n  \"nc:is-encrypted\",\n  \"nc:mount-type\",\n  \"oc:comments-unread\",\n  \"oc:favorite\",\n  \"oc:fileid\",\n  \"oc:owner-display-name\",\n  \"oc:owner-id\",\n  \"oc:permissions\",\n  \"oc:size\"\n];\nconst defaultDavNamespaces = {\n  d: \"DAV:\",\n  nc: \"http://nextcloud.org/ns\",\n  oc: \"http://owncloud.org/ns\",\n  ocs: \"http://open-collaboration-services.org/ns\"\n};\nconst registerDavProperty = function(prop, namespace = { nc: \"http://nextcloud.org/ns\" }) {\n  if (typeof window._nc_dav_properties === \"undefined\") {\n    window._nc_dav_properties = [...defaultDavProperties];\n    window._nc_dav_namespaces = { ...defaultDavNamespaces };\n  }\n  const namespaces = { ...window._nc_dav_namespaces, ...namespace };\n  if (window._nc_dav_properties.find((search) => search === prop)) {\n    logger.warn(`${prop} already registered`, { prop });\n    return false;\n  }\n  if (prop.startsWith(\"<\") || prop.split(\":\").length !== 2) {\n    logger.error(`${prop} is not valid. See example: 'oc:fileid'`, { prop });\n    return false;\n  }\n  const ns = prop.split(\":\")[0];\n  if (!namespaces[ns]) {\n    logger.error(`${prop} namespace unknown`, { prop, namespaces });\n    return false;\n  }\n  window._nc_dav_properties.push(prop);\n  window._nc_dav_namespaces = namespaces;\n  return true;\n};\nconst getDavProperties = function() {\n  if (typeof window._nc_dav_properties === \"undefined\") {\n    window._nc_dav_properties = [...defaultDavProperties];\n  }\n  return window._nc_dav_properties.map((prop) => `<${prop} />`).join(\" \");\n};\nconst getDavNameSpaces = function() {\n  if (typeof window._nc_dav_namespaces === \"undefined\") {\n    window._nc_dav_namespaces = { ...defaultDavNamespaces };\n  }\n  return Object.keys(window._nc_dav_namespaces).map((ns) => `xmlns:${ns}=\"${window._nc_dav_namespaces?.[ns]}\"`).join(\" \");\n};\nconst davGetDefaultPropfind = function() {\n  return `<?xml version=\"1.0\"?>\n\t\t<d:propfind ${getDavNameSpaces()}>\n\t\t\t<d:prop>\n\t\t\t\t${getDavProperties()}\n\t\t\t</d:prop>\n\t\t</d:propfind>`;\n};\nconst davGetFavoritesReport = function() {\n  return `<?xml version=\"1.0\"?>\n\t\t<oc:filter-files ${getDavNameSpaces()}>\n\t\t\t<d:prop>\n\t\t\t\t${getDavProperties()}\n\t\t\t</d:prop>\n\t\t\t<oc:filter-rules>\n\t\t\t\t<oc:favorite>1</oc:favorite>\n\t\t\t</oc:filter-rules>\n\t\t</oc:filter-files>`;\n};\nconst davGetRecentSearch = function(lastModified) {\n  return `<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<d:searchrequest ${getDavNameSpaces()}\n\txmlns:ns=\"https://github.com/icewind1991/SearchDAV/ns\">\n\t<d:basicsearch>\n\t\t<d:select>\n\t\t\t<d:prop>\n\t\t\t\t${getDavProperties()}\n\t\t\t</d:prop>\n\t\t</d:select>\n\t\t<d:from>\n\t\t\t<d:scope>\n\t\t\t\t<d:href>/files/${getCurrentUser()?.uid}/</d:href>\n\t\t\t\t<d:depth>infinity</d:depth>\n\t\t\t</d:scope>\n\t\t</d:from>\n\t\t<d:where>\n\t\t\t<d:and>\n\t\t\t\t<d:or>\n\t\t\t\t\t<d:not>\n\t\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t\t<d:getcontenttype/>\n\t\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t\t<d:literal>httpd/unix-directory</d:literal>\n\t\t\t\t\t\t</d:eq>\n\t\t\t\t\t</d:not>\n\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t<oc:size/>\n\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t<d:literal>0</d:literal>\n\t\t\t\t\t</d:eq>\n\t\t\t\t</d:or>\n\t\t\t\t<d:gt>\n\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t\t</d:prop>\n\t\t\t\t\t<d:literal>${lastModified}</d:literal>\n\t\t\t\t</d:gt>\n\t\t\t</d:and>\n\t\t</d:where>\n\t\t<d:orderby>\n\t\t\t<d:order>\n\t\t\t\t<d:prop>\n\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t</d:prop>\n\t\t\t\t<d:descending/>\n\t\t\t</d:order>\n\t\t</d:orderby>\n\t\t<d:limit>\n\t\t\t<d:nresults>100</d:nresults>\n\t\t\t<ns:firstresult>0</ns:firstresult>\n\t\t</d:limit>\n\t</d:basicsearch>\n</d:searchrequest>`;\n};\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst davParsePermissions = function(permString = \"\") {\n  let permissions = Permission.NONE;\n  if (!permString) {\n    return permissions;\n  }\n  if (permString.includes(\"C\") || permString.includes(\"K\")) {\n    permissions |= Permission.CREATE;\n  }\n  if (permString.includes(\"G\")) {\n    permissions |= Permission.READ;\n  }\n  if (permString.includes(\"W\") || permString.includes(\"N\") || permString.includes(\"V\")) {\n    permissions |= Permission.UPDATE;\n  }\n  if (permString.includes(\"D\")) {\n    permissions |= Permission.DELETE;\n  }\n  if (permString.includes(\"R\")) {\n    permissions |= Permission.SHARE;\n  }\n  return permissions;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar FileType = /* @__PURE__ */ ((FileType2) => {\n  FileType2[\"Folder\"] = \"folder\";\n  FileType2[\"File\"] = \"file\";\n  return FileType2;\n})(FileType || {});\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst isDavRessource = function(source, davService) {\n  return source.match(davService) !== null;\n};\nconst validateData = (data, davService) => {\n  if (data.id && typeof data.id !== \"number\") {\n    throw new Error(\"Invalid id type of value\");\n  }\n  if (!data.source) {\n    throw new Error(\"Missing mandatory source\");\n  }\n  try {\n    new URL(data.source);\n  } catch (e) {\n    throw new Error(\"Invalid source format, source must be a valid URL\");\n  }\n  if (!data.source.startsWith(\"http\")) {\n    throw new Error(\"Invalid source format, only http(s) is supported\");\n  }\n  if (data.mtime && !(data.mtime instanceof Date)) {\n    throw new Error(\"Invalid mtime type\");\n  }\n  if (data.crtime && !(data.crtime instanceof Date)) {\n    throw new Error(\"Invalid crtime type\");\n  }\n  if (!data.mime || typeof data.mime !== \"string\" || !data.mime.match(/^[-\\w.]+\\/[-+\\w.]+$/gi)) {\n    throw new Error(\"Missing or invalid mandatory mime\");\n  }\n  if (\"size\" in data && typeof data.size !== \"number\" && data.size !== void 0) {\n    throw new Error(\"Invalid size type\");\n  }\n  if (\"permissions\" in data && data.permissions !== void 0 && !(typeof data.permissions === \"number\" && data.permissions >= Permission.NONE && data.permissions <= Permission.ALL)) {\n    throw new Error(\"Invalid permissions\");\n  }\n  if (data.owner && data.owner !== null && typeof data.owner !== \"string\") {\n    throw new Error(\"Invalid owner type\");\n  }\n  if (data.attributes && typeof data.attributes !== \"object\") {\n    throw new Error(\"Invalid attributes type\");\n  }\n  if (data.root && typeof data.root !== \"string\") {\n    throw new Error(\"Invalid root type\");\n  }\n  if (data.root && !data.root.startsWith(\"/\")) {\n    throw new Error(\"Root must start with a leading slash\");\n  }\n  if (data.root && !data.source.includes(data.root)) {\n    throw new Error(\"Root must be part of the source\");\n  }\n  if (data.root && isDavRessource(data.source, davService)) {\n    const service = data.source.match(davService)[0];\n    if (!data.source.includes(join(service, data.root))) {\n      throw new Error(\"The root must be relative to the service. e.g /files/emma\");\n    }\n  }\n  if (data.status && !Object.values(NodeStatus).includes(data.status)) {\n    throw new Error(\"Status must be a valid NodeStatus\");\n  }\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar NodeStatus = /* @__PURE__ */ ((NodeStatus2) => {\n  NodeStatus2[\"NEW\"] = \"new\";\n  NodeStatus2[\"FAILED\"] = \"failed\";\n  NodeStatus2[\"LOADING\"] = \"loading\";\n  NodeStatus2[\"LOCKED\"] = \"locked\";\n  return NodeStatus2;\n})(NodeStatus || {});\nclass Node {\n  _data;\n  _attributes;\n  _knownDavService = /(remote|public)\\.php\\/(web)?dav/i;\n  readonlyAttributes = Object.entries(Object.getOwnPropertyDescriptors(Node.prototype)).filter((e) => typeof e[1].get === \"function\" && e[0] !== \"__proto__\").map((e) => e[0]);\n  handler = {\n    set: (target, prop, value) => {\n      if (this.readonlyAttributes.includes(prop)) {\n        return false;\n      }\n      return Reflect.set(target, prop, value);\n    },\n    deleteProperty: (target, prop) => {\n      if (this.readonlyAttributes.includes(prop)) {\n        return false;\n      }\n      return Reflect.deleteProperty(target, prop);\n    },\n    // TODO: This is deprecated and only needed for files v3\n    get: (target, prop, receiver) => {\n      if (this.readonlyAttributes.includes(prop)) {\n        logger.warn(`Accessing \"Node.attributes.${prop}\" is deprecated, access it directly on the Node instance.`);\n        return Reflect.get(this, prop);\n      }\n      return Reflect.get(target, prop, receiver);\n    }\n  };\n  constructor(data, davService) {\n    validateData(data, davService || this._knownDavService);\n    this._data = { ...data, attributes: {} };\n    this._attributes = new Proxy(this._data.attributes, this.handler);\n    this.update(data.attributes ?? {});\n    if (davService) {\n      this._knownDavService = davService;\n    }\n  }\n  /**\n   * Get the source url to this object\n   * There is no setter as the source is not meant to be changed manually.\n   * You can use the rename or move method to change the source.\n   */\n  get source() {\n    return this._data.source.replace(/\\/$/i, \"\");\n  }\n  /**\n   * Get the encoded source url to this object for requests purposes\n   */\n  get encodedSource() {\n    const { origin } = new URL(this.source);\n    return origin + encodePath(this.source.slice(origin.length));\n  }\n  /**\n   * Get this object name\n   * There is no setter as the source is not meant to be changed manually.\n   * You can use the rename or move method to change the source.\n   */\n  get basename() {\n    return basename(this.source);\n  }\n  /**\n   * Get this object's extension\n   * There is no setter as the source is not meant to be changed manually.\n   * You can use the rename or move method to change the source.\n   */\n  get extension() {\n    return extname(this.source);\n  }\n  /**\n   * Get the directory path leading to this object\n   * Will use the relative path to root if available\n   *\n   * There is no setter as the source is not meant to be changed manually.\n   * You can use the rename or move method to change the source.\n   */\n  get dirname() {\n    if (this.root) {\n      let source = this.source;\n      if (this.isDavRessource) {\n        source = source.split(this._knownDavService).pop();\n      }\n      const firstMatch = source.indexOf(this.root);\n      const root = this.root.replace(/\\/$/, \"\");\n      return dirname(source.slice(firstMatch + root.length) || \"/\");\n    }\n    const url = new URL(this.source);\n    return dirname(url.pathname);\n  }\n  /**\n   * Get the file mime\n   * There is no setter as the mime is not meant to be changed\n   */\n  get mime() {\n    return this._data.mime;\n  }\n  /**\n   * Get the file modification time\n   */\n  get mtime() {\n    return this._data.mtime;\n  }\n  /**\n   * Set the file modification time\n   */\n  set mtime(mtime) {\n    this._data.mtime = mtime;\n  }\n  /**\n   * Get the file creation time\n   * There is no setter as the creation time is not meant to be changed\n   */\n  get crtime() {\n    return this._data.crtime;\n  }\n  /**\n   * Get the file size\n   */\n  get size() {\n    return this._data.size;\n  }\n  /**\n   * Set the file size\n   */\n  set size(size) {\n    this.updateMtime();\n    this._data.size = size;\n  }\n  /**\n   * Get the file attribute\n   * This contains all additional attributes not provided by the Node class\n   */\n  get attributes() {\n    return this._attributes;\n  }\n  /**\n   * Get the file permissions\n   */\n  get permissions() {\n    if (this.owner === null && !this.isDavRessource) {\n      return Permission.READ;\n    }\n    return this._data.permissions !== void 0 ? this._data.permissions : Permission.NONE;\n  }\n  /**\n   * Set the file permissions\n   */\n  set permissions(permissions) {\n    this.updateMtime();\n    this._data.permissions = permissions;\n  }\n  /**\n   * Get the file owner\n   * There is no setter as the owner is not meant to be changed\n   */\n  get owner() {\n    if (!this.isDavRessource) {\n      return null;\n    }\n    return this._data.owner;\n  }\n  /**\n   * Is this a dav-related ressource ?\n   */\n  get isDavRessource() {\n    return isDavRessource(this.source, this._knownDavService);\n  }\n  /**\n   * Get the dav root of this object\n   * There is no setter as the root is not meant to be changed\n   */\n  get root() {\n    if (this._data.root) {\n      return this._data.root.replace(/^(.+)\\/$/, \"$1\");\n    }\n    if (this.isDavRessource) {\n      const root = dirname(this.source);\n      return root.split(this._knownDavService).pop() || null;\n    }\n    return null;\n  }\n  /**\n   * Get the absolute path of this object relative to the root\n   */\n  get path() {\n    if (this.root) {\n      let source = this.source;\n      if (this.isDavRessource) {\n        source = source.split(this._knownDavService).pop();\n      }\n      const firstMatch = source.indexOf(this.root);\n      const root = this.root.replace(/\\/$/, \"\");\n      return source.slice(firstMatch + root.length) || \"/\";\n    }\n    return (this.dirname + \"/\" + this.basename).replace(/\\/\\//g, \"/\");\n  }\n  /**\n   * Get the node id if defined.\n   * There is no setter as the fileid is not meant to be changed\n   */\n  get fileid() {\n    return this._data?.id;\n  }\n  /**\n   * Get the node status.\n   */\n  get status() {\n    return this._data?.status;\n  }\n  /**\n   * Set the node status.\n   */\n  set status(status) {\n    this._data.status = status;\n  }\n  /**\n   * Move the node to a new destination\n   *\n   * @param {string} destination the new source.\n   * e.g. https://cloud.domain.com/remote.php/dav/files/emma/Photos/picture.jpg\n   */\n  move(destination) {\n    validateData({ ...this._data, source: destination }, this._knownDavService);\n    this._data.source = destination;\n    this.updateMtime();\n  }\n  /**\n   * Rename the node\n   * This aliases the move method for easier usage\n   *\n   * @param basename The new name of the node\n   */\n  rename(basename2) {\n    if (basename2.includes(\"/\")) {\n      throw new Error(\"Invalid basename\");\n    }\n    this.move(dirname(this.source) + \"/\" + basename2);\n  }\n  /**\n   * Update the mtime if exists\n   */\n  updateMtime() {\n    if (this._data.mtime) {\n      this._data.mtime = /* @__PURE__ */ new Date();\n    }\n  }\n  /**\n   * Update the attributes of the node\n   * Warning, updating attributes will NOT automatically update the mtime.\n   *\n   * @param attributes The new attributes to update on the Node attributes\n   */\n  update(attributes) {\n    for (const [name, value] of Object.entries(attributes)) {\n      try {\n        if (value === void 0) {\n          delete this.attributes[name];\n        } else {\n          this.attributes[name] = value;\n        }\n      } catch (e) {\n        if (e instanceof TypeError) {\n          continue;\n        }\n        throw e;\n      }\n    }\n  }\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass File extends Node {\n  get type() {\n    return FileType.File;\n  }\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Folder extends Node {\n  constructor(data) {\n    super({\n      ...data,\n      mime: \"httpd/unix-directory\"\n    });\n  }\n  get type() {\n    return FileType.Folder;\n  }\n  get extension() {\n    return null;\n  }\n  get mime() {\n    return \"httpd/unix-directory\";\n  }\n}\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst davRootPath = `/files/${getCurrentUser()?.uid}`;\nconst davRemoteURL = generateRemoteUrl(\"dav\");\nconst davGetClient = function(remoteURL = davRemoteURL, headers = {}) {\n  const client = createClient(remoteURL, { headers });\n  function setHeaders(token) {\n    client.setHeaders({\n      ...headers,\n      // Add this so the server knows it is an request from the browser\n      \"X-Requested-With\": \"XMLHttpRequest\",\n      // Inject user auth\n      requesttoken: token ?? \"\"\n    });\n  }\n  onRequestTokenUpdate(setHeaders);\n  setHeaders(getRequestToken());\n  const patcher = getPatcher();\n  patcher.patch(\"fetch\", (url, options) => {\n    const headers2 = options.headers;\n    if (headers2?.method) {\n      options.method = headers2.method;\n      delete headers2.method;\n    }\n    return fetch(url, options);\n  });\n  return client;\n};\nconst getFavoriteNodes = (davClient, path = \"/\", davRoot = davRootPath) => {\n  const controller = new AbortController();\n  return new CancelablePromise(async (resolve, reject, onCancel) => {\n    onCancel(() => controller.abort());\n    try {\n      const contentsResponse = await davClient.getDirectoryContents(`${davRoot}${path}`, {\n        signal: controller.signal,\n        details: true,\n        data: davGetFavoritesReport(),\n        headers: {\n          // see davGetClient for patched webdav client\n          method: \"REPORT\"\n        },\n        includeSelf: true\n      });\n      const nodes = contentsResponse.data.filter((node) => node.filename !== path).map((result) => davResultToNode(result, davRoot));\n      resolve(nodes);\n    } catch (error) {\n      reject(error);\n    }\n  });\n};\nconst davResultToNode = function(node, filesRoot = davRootPath, remoteURL = davRemoteURL) {\n  let userId = getCurrentUser()?.uid;\n  const isPublic = document.querySelector(\"input#isPublic\")?.value;\n  if (isPublic) {\n    userId = userId ?? document.querySelector(\"input#sharingUserId\")?.value;\n    userId = userId ?? \"anonymous\";\n  } else if (!userId) {\n    throw new Error(\"No user id found\");\n  }\n  const props = node.props;\n  const permissions = davParsePermissions(props?.permissions);\n  const owner = String(props?.[\"owner-id\"] || userId);\n  const nodeData = {\n    id: props?.fileid || 0,\n    source: `${remoteURL}${node.filename}`,\n    mtime: new Date(Date.parse(node.lastmod)),\n    mime: node.mime || \"application/octet-stream\",\n    size: props?.size || Number.parseInt(props.getcontentlength || \"0\"),\n    permissions,\n    owner,\n    root: filesRoot,\n    attributes: {\n      ...node,\n      ...props,\n      hasPreview: props?.[\"has-preview\"]\n    }\n  };\n  delete nodeData.attributes?.props;\n  return node.type === \"file\" ? new File(nodeData) : new Folder(nodeData);\n};\nconst forbiddenCharacters = window._oc_config?.forbidden_filenames_characters ?? [\"/\", \"\\\\\"];\nconst forbiddenFilenameRegex = window._oc_config?.blacklist_files_regex ? new RegExp(window._oc_config.blacklist_files_regex) : null;\nfunction isFilenameValid(filename) {\n  if (forbiddenCharacters.some((character) => filename.includes(character))) {\n    return false;\n  }\n  if (forbiddenFilenameRegex !== null && filename.match(forbiddenFilenameRegex)) {\n    return false;\n  }\n  return true;\n}\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst humanList = [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\"];\nconst humanListBinary = [\"B\", \"KiB\", \"MiB\", \"GiB\", \"TiB\", \"PiB\"];\nfunction formatFileSize(size, skipSmallSizes = false, binaryPrefixes = false, base1000 = false) {\n  binaryPrefixes = binaryPrefixes && !base1000;\n  if (typeof size === \"string\") {\n    size = Number(size);\n  }\n  let order = size > 0 ? Math.floor(Math.log(size) / Math.log(base1000 ? 1e3 : 1024)) : 0;\n  order = Math.min((binaryPrefixes ? humanListBinary.length : humanList.length) - 1, order);\n  const readableFormat = binaryPrefixes ? humanListBinary[order] : humanList[order];\n  let relativeSize = (size / Math.pow(base1000 ? 1e3 : 1024, order)).toFixed(1);\n  if (skipSmallSizes === true && order === 0) {\n    return (relativeSize !== \"0.0\" ? \"< 1 \" : \"0 \") + (binaryPrefixes ? humanListBinary[1] : humanList[1]);\n  }\n  if (order < 2) {\n    relativeSize = parseFloat(relativeSize).toFixed(0);\n  } else {\n    relativeSize = parseFloat(relativeSize).toLocaleString(getCanonicalLocale());\n  }\n  return relativeSize + \" \" + readableFormat;\n}\nfunction parseFileSize(value, forceBinary = false) {\n  try {\n    value = `${value}`.toLocaleLowerCase().replaceAll(/\\s+/g, \"\").replaceAll(\",\", \".\");\n  } catch (e) {\n    return null;\n  }\n  const match = value.match(/^([0-9]*(\\.[0-9]*)?)([kmgtp]?)(i?)b?$/);\n  if (match === null || match[1] === \".\" || match[1] === \"\") {\n    return null;\n  }\n  const bytesArray = {\n    \"\": 0,\n    k: 1,\n    m: 2,\n    g: 3,\n    t: 4,\n    p: 5,\n    e: 6\n  };\n  const decimalString = `${match[1]}`;\n  const base = match[4] === \"i\" || forceBinary ? 1024 : 1e3;\n  return Math.round(Number.parseFloat(decimalString) * base ** bytesArray[match[3]]);\n}\nfunction stringify(value) {\n  if (value instanceof Date) {\n    return value.toISOString();\n  }\n  return String(value);\n}\nfunction orderBy(collection, identifiers, orders) {\n  identifiers = identifiers ?? [(value) => value];\n  orders = orders ?? [];\n  const sorting = identifiers.map((_, index) => (orders[index] ?? \"asc\") === \"asc\" ? 1 : -1);\n  const collator = Intl.Collator(\n    [getLanguage(), getCanonicalLocale()],\n    {\n      // handle 10 as ten and not as one-zero\n      numeric: true,\n      usage: \"sort\"\n    }\n  );\n  return [...collection].sort((a, b) => {\n    for (const [index, identifier] of identifiers.entries()) {\n      const value = collator.compare(stringify(identifier(a)), stringify(identifier(b)));\n      if (value !== 0) {\n        return value * sorting[index];\n      }\n    }\n    return 0;\n  });\n}\nvar FilesSortingMode = /* @__PURE__ */ ((FilesSortingMode2) => {\n  FilesSortingMode2[\"Name\"] = \"basename\";\n  FilesSortingMode2[\"Modified\"] = \"mtime\";\n  FilesSortingMode2[\"Size\"] = \"size\";\n  return FilesSortingMode2;\n})(FilesSortingMode || {});\nfunction sortNodes(nodes, options = {}) {\n  const sortingOptions = {\n    // Default to sort by name\n    sortingMode: \"basename\",\n    // Default to sort ascending\n    sortingOrder: \"asc\",\n    ...options\n  };\n  const identifiers = [\n    // 1: Sort favorites first if enabled\n    ...sortingOptions.sortFavoritesFirst ? [(v) => v.attributes?.favorite !== 1] : [],\n    // 2: Sort folders first if sorting by name\n    ...sortingOptions.sortFoldersFirst ? [(v) => v.type !== \"folder\"] : [],\n    // 3: Use sorting mode if NOT basename (to be able to use displayName too)\n    ...sortingOptions.sortingMode !== \"basename\" ? [(v) => v[sortingOptions.sortingMode]] : [],\n    // 4: Use displayName if available, fallback to name\n    (v) => v.attributes?.displayName || v.basename,\n    // 5: Finally, use basename if all previous sorting methods failed\n    (v) => v.basename\n  ];\n  const orders = [\n    // (for 1): always sort favorites before normal files\n    ...sortingOptions.sortFavoritesFirst ? [\"asc\"] : [],\n    // (for 2): always sort folders before files\n    ...sortingOptions.sortFoldersFirst ? [\"asc\"] : [],\n    // (for 3): Reverse if sorting by mtime as mtime higher means edited more recent -> lower\n    ...sortingOptions.sortingMode === \"mtime\" ? [sortingOptions.sortingOrder === \"asc\" ? \"desc\" : \"asc\"] : [],\n    // (also for 3 so make sure not to conflict with 2 and 3)\n    ...sortingOptions.sortingMode !== \"mtime\" && sortingOptions.sortingMode !== \"basename\" ? [sortingOptions.sortingOrder] : [],\n    // for 4: use configured sorting direction\n    sortingOptions.sortingOrder,\n    // for 5: use configured sorting direction\n    sortingOptions.sortingOrder\n  ];\n  return orderBy(nodes, identifiers, orders);\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Navigation {\n  _views = [];\n  _currentView = null;\n  register(view) {\n    if (this._views.find((search) => search.id === view.id)) {\n      throw new Error(`View id ${view.id} is already registered`);\n    }\n    this._views.push(view);\n  }\n  remove(id) {\n    const index = this._views.findIndex((view) => view.id === id);\n    if (index !== -1) {\n      this._views.splice(index, 1);\n    }\n  }\n  get views() {\n    return this._views;\n  }\n  setActive(view) {\n    this._currentView = view;\n  }\n  get active() {\n    return this._currentView;\n  }\n}\nconst getNavigation = function() {\n  if (typeof window._nc_navigation === \"undefined\") {\n    window._nc_navigation = new Navigation();\n    logger.debug(\"Navigation service initialized\");\n  }\n  return window._nc_navigation;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Column {\n  _column;\n  constructor(column) {\n    isValidColumn(column);\n    this._column = column;\n  }\n  get id() {\n    return this._column.id;\n  }\n  get title() {\n    return this._column.title;\n  }\n  get render() {\n    return this._column.render;\n  }\n  get sort() {\n    return this._column.sort;\n  }\n  get summary() {\n    return this._column.summary;\n  }\n}\nconst isValidColumn = function(column) {\n  if (!column.id || typeof column.id !== \"string\") {\n    throw new Error(\"A column id is required\");\n  }\n  if (!column.title || typeof column.title !== \"string\") {\n    throw new Error(\"A column title is required\");\n  }\n  if (!column.render || typeof column.render !== \"function\") {\n    throw new Error(\"A render function is required\");\n  }\n  if (column.sort && typeof column.sort !== \"function\") {\n    throw new Error(\"Column sortFunction must be a function\");\n  }\n  if (column.summary && typeof column.summary !== \"function\") {\n    throw new Error(\"Column summary must be a function\");\n  }\n  return true;\n};\nvar validator$2 = {};\nvar util$3 = {};\n(function(exports) {\n  const nameStartChar = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\";\n  const nameChar = nameStartChar + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\";\n  const nameRegexp = \"[\" + nameStartChar + \"][\" + nameChar + \"]*\";\n  const regexName = new RegExp(\"^\" + nameRegexp + \"$\");\n  const getAllMatches = function(string, regex) {\n    const matches = [];\n    let match = regex.exec(string);\n    while (match) {\n      const allmatches = [];\n      allmatches.startIndex = regex.lastIndex - match[0].length;\n      const len = match.length;\n      for (let index = 0; index < len; index++) {\n        allmatches.push(match[index]);\n      }\n      matches.push(allmatches);\n      match = regex.exec(string);\n    }\n    return matches;\n  };\n  const isName = function(string) {\n    const match = regexName.exec(string);\n    return !(match === null || typeof match === \"undefined\");\n  };\n  exports.isExist = function(v) {\n    return typeof v !== \"undefined\";\n  };\n  exports.isEmptyObject = function(obj) {\n    return Object.keys(obj).length === 0;\n  };\n  exports.merge = function(target, a, arrayMode) {\n    if (a) {\n      const keys = Object.keys(a);\n      const len = keys.length;\n      for (let i = 0; i < len; i++) {\n        if (arrayMode === \"strict\") {\n          target[keys[i]] = [a[keys[i]]];\n        } else {\n          target[keys[i]] = a[keys[i]];\n        }\n      }\n    }\n  };\n  exports.getValue = function(v) {\n    if (exports.isExist(v)) {\n      return v;\n    } else {\n      return \"\";\n    }\n  };\n  exports.isName = isName;\n  exports.getAllMatches = getAllMatches;\n  exports.nameRegexp = nameRegexp;\n})(util$3);\nconst util$2 = util$3;\nconst defaultOptions$2 = {\n  allowBooleanAttributes: false,\n  //A tag can have attributes without any value\n  unpairedTags: []\n};\nvalidator$2.validate = function(xmlData, options) {\n  options = Object.assign({}, defaultOptions$2, options);\n  const tags = [];\n  let tagFound = false;\n  let reachedRoot = false;\n  if (xmlData[0] === \"\\uFEFF\") {\n    xmlData = xmlData.substr(1);\n  }\n  for (let i = 0; i < xmlData.length; i++) {\n    if (xmlData[i] === \"<\" && xmlData[i + 1] === \"?\") {\n      i += 2;\n      i = readPI(xmlData, i);\n      if (i.err)\n        return i;\n    } else if (xmlData[i] === \"<\") {\n      let tagStartPos = i;\n      i++;\n      if (xmlData[i] === \"!\") {\n        i = readCommentAndCDATA(xmlData, i);\n        continue;\n      } else {\n        let closingTag = false;\n        if (xmlData[i] === \"/\") {\n          closingTag = true;\n          i++;\n        }\n        let tagName = \"\";\n        for (; i < xmlData.length && xmlData[i] !== \">\" && xmlData[i] !== \" \" && xmlData[i] !== \"\t\" && xmlData[i] !== \"\\n\" && xmlData[i] !== \"\\r\"; i++) {\n          tagName += xmlData[i];\n        }\n        tagName = tagName.trim();\n        if (tagName[tagName.length - 1] === \"/\") {\n          tagName = tagName.substring(0, tagName.length - 1);\n          i--;\n        }\n        if (!validateTagName(tagName)) {\n          let msg;\n          if (tagName.trim().length === 0) {\n            msg = \"Invalid space after '<'.\";\n          } else {\n            msg = \"Tag '\" + tagName + \"' is an invalid name.\";\n          }\n          return getErrorObject(\"InvalidTag\", msg, getLineNumberForPosition(xmlData, i));\n        }\n        const result = readAttributeStr(xmlData, i);\n        if (result === false) {\n          return getErrorObject(\"InvalidAttr\", \"Attributes for '\" + tagName + \"' have open quote.\", getLineNumberForPosition(xmlData, i));\n        }\n        let attrStr = result.value;\n        i = result.index;\n        if (attrStr[attrStr.length - 1] === \"/\") {\n          const attrStrStart = i - attrStr.length;\n          attrStr = attrStr.substring(0, attrStr.length - 1);\n          const isValid = validateAttributeString(attrStr, options);\n          if (isValid === true) {\n            tagFound = true;\n          } else {\n            return getErrorObject(isValid.err.code, isValid.err.msg, getLineNumberForPosition(xmlData, attrStrStart + isValid.err.line));\n          }\n        } else if (closingTag) {\n          if (!result.tagClosed) {\n            return getErrorObject(\"InvalidTag\", \"Closing tag '\" + tagName + \"' doesn't have proper closing.\", getLineNumberForPosition(xmlData, i));\n          } else if (attrStr.trim().length > 0) {\n            return getErrorObject(\"InvalidTag\", \"Closing tag '\" + tagName + \"' can't have attributes or invalid starting.\", getLineNumberForPosition(xmlData, tagStartPos));\n          } else if (tags.length === 0) {\n            return getErrorObject(\"InvalidTag\", \"Closing tag '\" + tagName + \"' has not been opened.\", getLineNumberForPosition(xmlData, tagStartPos));\n          } else {\n            const otg = tags.pop();\n            if (tagName !== otg.tagName) {\n              let openPos = getLineNumberForPosition(xmlData, otg.tagStartPos);\n              return getErrorObject(\n                \"InvalidTag\",\n                \"Expected closing tag '\" + otg.tagName + \"' (opened in line \" + openPos.line + \", col \" + openPos.col + \") instead of closing tag '\" + tagName + \"'.\",\n                getLineNumberForPosition(xmlData, tagStartPos)\n              );\n            }\n            if (tags.length == 0) {\n              reachedRoot = true;\n            }\n          }\n        } else {\n          const isValid = validateAttributeString(attrStr, options);\n          if (isValid !== true) {\n            return getErrorObject(isValid.err.code, isValid.err.msg, getLineNumberForPosition(xmlData, i - attrStr.length + isValid.err.line));\n          }\n          if (reachedRoot === true) {\n            return getErrorObject(\"InvalidXml\", \"Multiple possible root nodes found.\", getLineNumberForPosition(xmlData, i));\n          } else if (options.unpairedTags.indexOf(tagName) !== -1)\n            ;\n          else {\n            tags.push({ tagName, tagStartPos });\n          }\n          tagFound = true;\n        }\n        for (i++; i < xmlData.length; i++) {\n          if (xmlData[i] === \"<\") {\n            if (xmlData[i + 1] === \"!\") {\n              i++;\n              i = readCommentAndCDATA(xmlData, i);\n              continue;\n            } else if (xmlData[i + 1] === \"?\") {\n              i = readPI(xmlData, ++i);\n              if (i.err)\n                return i;\n            } else {\n              break;\n            }\n          } else if (xmlData[i] === \"&\") {\n            const afterAmp = validateAmpersand(xmlData, i);\n            if (afterAmp == -1)\n              return getErrorObject(\"InvalidChar\", \"char '&' is not expected.\", getLineNumberForPosition(xmlData, i));\n            i = afterAmp;\n          } else {\n            if (reachedRoot === true && !isWhiteSpace(xmlData[i])) {\n              return getErrorObject(\"InvalidXml\", \"Extra text at the end\", getLineNumberForPosition(xmlData, i));\n            }\n          }\n        }\n        if (xmlData[i] === \"<\") {\n          i--;\n        }\n      }\n    } else {\n      if (isWhiteSpace(xmlData[i])) {\n        continue;\n      }\n      return getErrorObject(\"InvalidChar\", \"char '\" + xmlData[i] + \"' is not expected.\", getLineNumberForPosition(xmlData, i));\n    }\n  }\n  if (!tagFound) {\n    return getErrorObject(\"InvalidXml\", \"Start tag expected.\", 1);\n  } else if (tags.length == 1) {\n    return getErrorObject(\"InvalidTag\", \"Unclosed tag '\" + tags[0].tagName + \"'.\", getLineNumberForPosition(xmlData, tags[0].tagStartPos));\n  } else if (tags.length > 0) {\n    return getErrorObject(\"InvalidXml\", \"Invalid '\" + JSON.stringify(tags.map((t) => t.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n  }\n  return true;\n};\nfunction isWhiteSpace(char) {\n  return char === \" \" || char === \"\t\" || char === \"\\n\" || char === \"\\r\";\n}\nfunction readPI(xmlData, i) {\n  const start = i;\n  for (; i < xmlData.length; i++) {\n    if (xmlData[i] == \"?\" || xmlData[i] == \" \") {\n      const tagname = xmlData.substr(start, i - start);\n      if (i > 5 && tagname === \"xml\") {\n        return getErrorObject(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", getLineNumberForPosition(xmlData, i));\n      } else if (xmlData[i] == \"?\" && xmlData[i + 1] == \">\") {\n        i++;\n        break;\n      } else {\n        continue;\n      }\n    }\n  }\n  return i;\n}\nfunction readCommentAndCDATA(xmlData, i) {\n  if (xmlData.length > i + 5 && xmlData[i + 1] === \"-\" && xmlData[i + 2] === \"-\") {\n    for (i += 3; i < xmlData.length; i++) {\n      if (xmlData[i] === \"-\" && xmlData[i + 1] === \"-\" && xmlData[i + 2] === \">\") {\n        i += 2;\n        break;\n      }\n    }\n  } else if (xmlData.length > i + 8 && xmlData[i + 1] === \"D\" && xmlData[i + 2] === \"O\" && xmlData[i + 3] === \"C\" && xmlData[i + 4] === \"T\" && xmlData[i + 5] === \"Y\" && xmlData[i + 6] === \"P\" && xmlData[i + 7] === \"E\") {\n    let angleBracketsCount = 1;\n    for (i += 8; i < xmlData.length; i++) {\n      if (xmlData[i] === \"<\") {\n        angleBracketsCount++;\n      } else if (xmlData[i] === \">\") {\n        angleBracketsCount--;\n        if (angleBracketsCount === 0) {\n          break;\n        }\n      }\n    }\n  } else if (xmlData.length > i + 9 && xmlData[i + 1] === \"[\" && xmlData[i + 2] === \"C\" && xmlData[i + 3] === \"D\" && xmlData[i + 4] === \"A\" && xmlData[i + 5] === \"T\" && xmlData[i + 6] === \"A\" && xmlData[i + 7] === \"[\") {\n    for (i += 8; i < xmlData.length; i++) {\n      if (xmlData[i] === \"]\" && xmlData[i + 1] === \"]\" && xmlData[i + 2] === \">\") {\n        i += 2;\n        break;\n      }\n    }\n  }\n  return i;\n}\nconst doubleQuote = '\"';\nconst singleQuote = \"'\";\nfunction readAttributeStr(xmlData, i) {\n  let attrStr = \"\";\n  let startChar = \"\";\n  let tagClosed = false;\n  for (; i < xmlData.length; i++) {\n    if (xmlData[i] === doubleQuote || xmlData[i] === singleQuote) {\n      if (startChar === \"\") {\n        startChar = xmlData[i];\n      } else if (startChar !== xmlData[i])\n        ;\n      else {\n        startChar = \"\";\n      }\n    } else if (xmlData[i] === \">\") {\n      if (startChar === \"\") {\n        tagClosed = true;\n        break;\n      }\n    }\n    attrStr += xmlData[i];\n  }\n  if (startChar !== \"\") {\n    return false;\n  }\n  return {\n    value: attrStr,\n    index: i,\n    tagClosed\n  };\n}\nconst validAttrStrRegxp = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\nfunction validateAttributeString(attrStr, options) {\n  const matches = util$2.getAllMatches(attrStr, validAttrStrRegxp);\n  const attrNames = {};\n  for (let i = 0; i < matches.length; i++) {\n    if (matches[i][1].length === 0) {\n      return getErrorObject(\"InvalidAttr\", \"Attribute '\" + matches[i][2] + \"' has no space in starting.\", getPositionFromMatch(matches[i]));\n    } else if (matches[i][3] !== void 0 && matches[i][4] === void 0) {\n      return getErrorObject(\"InvalidAttr\", \"Attribute '\" + matches[i][2] + \"' is without value.\", getPositionFromMatch(matches[i]));\n    } else if (matches[i][3] === void 0 && !options.allowBooleanAttributes) {\n      return getErrorObject(\"InvalidAttr\", \"boolean attribute '\" + matches[i][2] + \"' is not allowed.\", getPositionFromMatch(matches[i]));\n    }\n    const attrName = matches[i][2];\n    if (!validateAttrName(attrName)) {\n      return getErrorObject(\"InvalidAttr\", \"Attribute '\" + attrName + \"' is an invalid name.\", getPositionFromMatch(matches[i]));\n    }\n    if (!attrNames.hasOwnProperty(attrName)) {\n      attrNames[attrName] = 1;\n    } else {\n      return getErrorObject(\"InvalidAttr\", \"Attribute '\" + attrName + \"' is repeated.\", getPositionFromMatch(matches[i]));\n    }\n  }\n  return true;\n}\nfunction validateNumberAmpersand(xmlData, i) {\n  let re = /\\d/;\n  if (xmlData[i] === \"x\") {\n    i++;\n    re = /[\\da-fA-F]/;\n  }\n  for (; i < xmlData.length; i++) {\n    if (xmlData[i] === \";\")\n      return i;\n    if (!xmlData[i].match(re))\n      break;\n  }\n  return -1;\n}\nfunction validateAmpersand(xmlData, i) {\n  i++;\n  if (xmlData[i] === \";\")\n    return -1;\n  if (xmlData[i] === \"#\") {\n    i++;\n    return validateNumberAmpersand(xmlData, i);\n  }\n  let count = 0;\n  for (; i < xmlData.length; i++, count++) {\n    if (xmlData[i].match(/\\w/) && count < 20)\n      continue;\n    if (xmlData[i] === \";\")\n      break;\n    return -1;\n  }\n  return i;\n}\nfunction getErrorObject(code, message, lineNumber) {\n  return {\n    err: {\n      code,\n      msg: message,\n      line: lineNumber.line || lineNumber,\n      col: lineNumber.col\n    }\n  };\n}\nfunction validateAttrName(attrName) {\n  return util$2.isName(attrName);\n}\nfunction validateTagName(tagname) {\n  return util$2.isName(tagname);\n}\nfunction getLineNumberForPosition(xmlData, index) {\n  const lines = xmlData.substring(0, index).split(/\\r?\\n/);\n  return {\n    line: lines.length,\n    // column number is last line's length + 1, because column numbering starts at 1:\n    col: lines[lines.length - 1].length + 1\n  };\n}\nfunction getPositionFromMatch(match) {\n  return match.startIndex + match[1].length;\n}\nvar OptionsBuilder = {};\nconst defaultOptions$1 = {\n  preserveOrder: false,\n  attributeNamePrefix: \"@_\",\n  attributesGroupName: false,\n  textNodeName: \"#text\",\n  ignoreAttributes: true,\n  removeNSPrefix: false,\n  // remove NS from tag name or attribute name if true\n  allowBooleanAttributes: false,\n  //a tag can have attributes without any value\n  //ignoreRootElement : false,\n  parseTagValue: true,\n  parseAttributeValue: false,\n  trimValues: true,\n  //Trim string values of tag and attributes\n  cdataPropName: false,\n  numberParseOptions: {\n    hex: true,\n    leadingZeros: true,\n    eNotation: true\n  },\n  tagValueProcessor: function(tagName, val2) {\n    return val2;\n  },\n  attributeValueProcessor: function(attrName, val2) {\n    return val2;\n  },\n  stopNodes: [],\n  //nested tags will not be parsed even for errors\n  alwaysCreateTextNode: false,\n  isArray: () => false,\n  commentPropName: false,\n  unpairedTags: [],\n  processEntities: true,\n  htmlEntities: false,\n  ignoreDeclaration: false,\n  ignorePiTags: false,\n  transformTagName: false,\n  transformAttributeName: false,\n  updateTag: function(tagName, jPath, attrs) {\n    return tagName;\n  }\n  // skipEmptyListItem: false\n};\nconst buildOptions$1 = function(options) {\n  return Object.assign({}, defaultOptions$1, options);\n};\nOptionsBuilder.buildOptions = buildOptions$1;\nOptionsBuilder.defaultOptions = defaultOptions$1;\nclass XmlNode {\n  constructor(tagname) {\n    this.tagname = tagname;\n    this.child = [];\n    this[\":@\"] = {};\n  }\n  add(key, val2) {\n    if (key === \"__proto__\")\n      key = \"#__proto__\";\n    this.child.push({ [key]: val2 });\n  }\n  addChild(node) {\n    if (node.tagname === \"__proto__\")\n      node.tagname = \"#__proto__\";\n    if (node[\":@\"] && Object.keys(node[\":@\"]).length > 0) {\n      this.child.push({ [node.tagname]: node.child, [\":@\"]: node[\":@\"] });\n    } else {\n      this.child.push({ [node.tagname]: node.child });\n    }\n  }\n}\nvar xmlNode$1 = XmlNode;\nconst util$1 = util$3;\nfunction readDocType$1(xmlData, i) {\n  const entities = {};\n  if (xmlData[i + 3] === \"O\" && xmlData[i + 4] === \"C\" && xmlData[i + 5] === \"T\" && xmlData[i + 6] === \"Y\" && xmlData[i + 7] === \"P\" && xmlData[i + 8] === \"E\") {\n    i = i + 9;\n    let angleBracketsCount = 1;\n    let hasBody = false, comment = false;\n    let exp = \"\";\n    for (; i < xmlData.length; i++) {\n      if (xmlData[i] === \"<\" && !comment) {\n        if (hasBody && isEntity(xmlData, i)) {\n          i += 7;\n          [entityName, val, i] = readEntityExp(xmlData, i + 1);\n          if (val.indexOf(\"&\") === -1)\n            entities[validateEntityName(entityName)] = {\n              regx: RegExp(`&${entityName};`, \"g\"),\n              val\n            };\n        } else if (hasBody && isElement(xmlData, i))\n          i += 8;\n        else if (hasBody && isAttlist(xmlData, i))\n          i += 8;\n        else if (hasBody && isNotation(xmlData, i))\n          i += 9;\n        else if (isComment)\n          comment = true;\n        else\n          throw new Error(\"Invalid DOCTYPE\");\n        angleBracketsCount++;\n        exp = \"\";\n      } else if (xmlData[i] === \">\") {\n        if (comment) {\n          if (xmlData[i - 1] === \"-\" && xmlData[i - 2] === \"-\") {\n            comment = false;\n            angleBracketsCount--;\n          }\n        } else {\n          angleBracketsCount--;\n        }\n        if (angleBracketsCount === 0) {\n          break;\n        }\n      } else if (xmlData[i] === \"[\") {\n        hasBody = true;\n      } else {\n        exp += xmlData[i];\n      }\n    }\n    if (angleBracketsCount !== 0) {\n      throw new Error(`Unclosed DOCTYPE`);\n    }\n  } else {\n    throw new Error(`Invalid Tag instead of DOCTYPE`);\n  }\n  return { entities, i };\n}\nfunction readEntityExp(xmlData, i) {\n  let entityName2 = \"\";\n  for (; i < xmlData.length && (xmlData[i] !== \"'\" && xmlData[i] !== '\"'); i++) {\n    entityName2 += xmlData[i];\n  }\n  entityName2 = entityName2.trim();\n  if (entityName2.indexOf(\" \") !== -1)\n    throw new Error(\"External entites are not supported\");\n  const startChar = xmlData[i++];\n  let val2 = \"\";\n  for (; i < xmlData.length && xmlData[i] !== startChar; i++) {\n    val2 += xmlData[i];\n  }\n  return [entityName2, val2, i];\n}\nfunction isComment(xmlData, i) {\n  if (xmlData[i + 1] === \"!\" && xmlData[i + 2] === \"-\" && xmlData[i + 3] === \"-\")\n    return true;\n  return false;\n}\nfunction isEntity(xmlData, i) {\n  if (xmlData[i + 1] === \"!\" && xmlData[i + 2] === \"E\" && xmlData[i + 3] === \"N\" && xmlData[i + 4] === \"T\" && xmlData[i + 5] === \"I\" && xmlData[i + 6] === \"T\" && xmlData[i + 7] === \"Y\")\n    return true;\n  return false;\n}\nfunction isElement(xmlData, i) {\n  if (xmlData[i + 1] === \"!\" && xmlData[i + 2] === \"E\" && xmlData[i + 3] === \"L\" && xmlData[i + 4] === \"E\" && xmlData[i + 5] === \"M\" && xmlData[i + 6] === \"E\" && xmlData[i + 7] === \"N\" && xmlData[i + 8] === \"T\")\n    return true;\n  return false;\n}\nfunction isAttlist(xmlData, i) {\n  if (xmlData[i + 1] === \"!\" && xmlData[i + 2] === \"A\" && xmlData[i + 3] === \"T\" && xmlData[i + 4] === \"T\" && xmlData[i + 5] === \"L\" && xmlData[i + 6] === \"I\" && xmlData[i + 7] === \"S\" && xmlData[i + 8] === \"T\")\n    return true;\n  return false;\n}\nfunction isNotation(xmlData, i) {\n  if (xmlData[i + 1] === \"!\" && xmlData[i + 2] === \"N\" && xmlData[i + 3] === \"O\" && xmlData[i + 4] === \"T\" && xmlData[i + 5] === \"A\" && xmlData[i + 6] === \"T\" && xmlData[i + 7] === \"I\" && xmlData[i + 8] === \"O\" && xmlData[i + 9] === \"N\")\n    return true;\n  return false;\n}\nfunction validateEntityName(name) {\n  if (util$1.isName(name))\n    return name;\n  else\n    throw new Error(`Invalid entity name ${name}`);\n}\nvar DocTypeReader = readDocType$1;\nconst hexRegex = /^[-+]?0x[a-fA-F0-9]+$/;\nconst numRegex = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\nif (!Number.parseInt && window.parseInt) {\n  Number.parseInt = window.parseInt;\n}\nif (!Number.parseFloat && window.parseFloat) {\n  Number.parseFloat = window.parseFloat;\n}\nconst consider = {\n  hex: true,\n  leadingZeros: true,\n  decimalPoint: \".\",\n  eNotation: true\n  //skipLike: /regex/\n};\nfunction toNumber$1(str, options = {}) {\n  options = Object.assign({}, consider, options);\n  if (!str || typeof str !== \"string\")\n    return str;\n  let trimmedStr = str.trim();\n  if (options.skipLike !== void 0 && options.skipLike.test(trimmedStr))\n    return str;\n  else if (options.hex && hexRegex.test(trimmedStr)) {\n    return Number.parseInt(trimmedStr, 16);\n  } else {\n    const match = numRegex.exec(trimmedStr);\n    if (match) {\n      const sign = match[1];\n      const leadingZeros = match[2];\n      let numTrimmedByZeros = trimZeros(match[3]);\n      const eNotation = match[4] || match[6];\n      if (!options.leadingZeros && leadingZeros.length > 0 && sign && trimmedStr[2] !== \".\")\n        return str;\n      else if (!options.leadingZeros && leadingZeros.length > 0 && !sign && trimmedStr[1] !== \".\")\n        return str;\n      else {\n        const num = Number(trimmedStr);\n        const numStr = \"\" + num;\n        if (numStr.search(/[eE]/) !== -1) {\n          if (options.eNotation)\n            return num;\n          else\n            return str;\n        } else if (eNotation) {\n          if (options.eNotation)\n            return num;\n          else\n            return str;\n        } else if (trimmedStr.indexOf(\".\") !== -1) {\n          if (numStr === \"0\" && numTrimmedByZeros === \"\")\n            return num;\n          else if (numStr === numTrimmedByZeros)\n            return num;\n          else if (sign && numStr === \"-\" + numTrimmedByZeros)\n            return num;\n          else\n            return str;\n        }\n        if (leadingZeros) {\n          if (numTrimmedByZeros === numStr)\n            return num;\n          else if (sign + numTrimmedByZeros === numStr)\n            return num;\n          else\n            return str;\n        }\n        if (trimmedStr === numStr)\n          return num;\n        else if (trimmedStr === sign + numStr)\n          return num;\n        return str;\n      }\n    } else {\n      return str;\n    }\n  }\n}\nfunction trimZeros(numStr) {\n  if (numStr && numStr.indexOf(\".\") !== -1) {\n    numStr = numStr.replace(/0+$/, \"\");\n    if (numStr === \".\")\n      numStr = \"0\";\n    else if (numStr[0] === \".\")\n      numStr = \"0\" + numStr;\n    else if (numStr[numStr.length - 1] === \".\")\n      numStr = numStr.substr(0, numStr.length - 1);\n    return numStr;\n  }\n  return numStr;\n}\nvar strnum = toNumber$1;\nconst util = util$3;\nconst xmlNode = xmlNode$1;\nconst readDocType = DocTypeReader;\nconst toNumber = strnum;\nlet OrderedObjParser$1 = class OrderedObjParser {\n  constructor(options) {\n    this.options = options;\n    this.currentNode = null;\n    this.tagsNodeStack = [];\n    this.docTypeEntities = {};\n    this.lastEntities = {\n      \"apos\": { regex: /&(apos|#39|#x27);/g, val: \"'\" },\n      \"gt\": { regex: /&(gt|#62|#x3E);/g, val: \">\" },\n      \"lt\": { regex: /&(lt|#60|#x3C);/g, val: \"<\" },\n      \"quot\": { regex: /&(quot|#34|#x22);/g, val: '\"' }\n    };\n    this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" };\n    this.htmlEntities = {\n      \"space\": { regex: /&(nbsp|#160);/g, val: \" \" },\n      // \"lt\" : { regex: /&(lt|#60);/g, val: \"<\" },\n      // \"gt\" : { regex: /&(gt|#62);/g, val: \">\" },\n      // \"amp\" : { regex: /&(amp|#38);/g, val: \"&\" },\n      // \"quot\" : { regex: /&(quot|#34);/g, val: \"\\\"\" },\n      // \"apos\" : { regex: /&(apos|#39);/g, val: \"'\" },\n      \"cent\": { regex: /&(cent|#162);/g, val: \"¢\" },\n      \"pound\": { regex: /&(pound|#163);/g, val: \"£\" },\n      \"yen\": { regex: /&(yen|#165);/g, val: \"¥\" },\n      \"euro\": { regex: /&(euro|#8364);/g, val: \"€\" },\n      \"copyright\": { regex: /&(copy|#169);/g, val: \"©\" },\n      \"reg\": { regex: /&(reg|#174);/g, val: \"®\" },\n      \"inr\": { regex: /&(inr|#8377);/g, val: \"₹\" },\n      \"num_dec\": { regex: /&#([0-9]{1,7});/g, val: (_, str) => String.fromCharCode(Number.parseInt(str, 10)) },\n      \"num_hex\": { regex: /&#x([0-9a-fA-F]{1,6});/g, val: (_, str) => String.fromCharCode(Number.parseInt(str, 16)) }\n    };\n    this.addExternalEntities = addExternalEntities;\n    this.parseXml = parseXml;\n    this.parseTextData = parseTextData;\n    this.resolveNameSpace = resolveNameSpace;\n    this.buildAttributesMap = buildAttributesMap;\n    this.isItStopNode = isItStopNode;\n    this.replaceEntitiesValue = replaceEntitiesValue$1;\n    this.readStopNodeData = readStopNodeData;\n    this.saveTextToParentTag = saveTextToParentTag;\n    this.addChild = addChild;\n  }\n};\nfunction addExternalEntities(externalEntities) {\n  const entKeys = Object.keys(externalEntities);\n  for (let i = 0; i < entKeys.length; i++) {\n    const ent = entKeys[i];\n    this.lastEntities[ent] = {\n      regex: new RegExp(\"&\" + ent + \";\", \"g\"),\n      val: externalEntities[ent]\n    };\n  }\n}\nfunction parseTextData(val2, tagName, jPath, dontTrim, hasAttributes, isLeafNode, escapeEntities) {\n  if (val2 !== void 0) {\n    if (this.options.trimValues && !dontTrim) {\n      val2 = val2.trim();\n    }\n    if (val2.length > 0) {\n      if (!escapeEntities)\n        val2 = this.replaceEntitiesValue(val2);\n      const newval = this.options.tagValueProcessor(tagName, val2, jPath, hasAttributes, isLeafNode);\n      if (newval === null || newval === void 0) {\n        return val2;\n      } else if (typeof newval !== typeof val2 || newval !== val2) {\n        return newval;\n      } else if (this.options.trimValues) {\n        return parseValue(val2, this.options.parseTagValue, this.options.numberParseOptions);\n      } else {\n        const trimmedVal = val2.trim();\n        if (trimmedVal === val2) {\n          return parseValue(val2, this.options.parseTagValue, this.options.numberParseOptions);\n        } else {\n          return val2;\n        }\n      }\n    }\n  }\n}\nfunction resolveNameSpace(tagname) {\n  if (this.options.removeNSPrefix) {\n    const tags = tagname.split(\":\");\n    const prefix = tagname.charAt(0) === \"/\" ? \"/\" : \"\";\n    if (tags[0] === \"xmlns\") {\n      return \"\";\n    }\n    if (tags.length === 2) {\n      tagname = prefix + tags[1];\n    }\n  }\n  return tagname;\n}\nconst attrsRegx = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\nfunction buildAttributesMap(attrStr, jPath, tagName) {\n  if (!this.options.ignoreAttributes && typeof attrStr === \"string\") {\n    const matches = util.getAllMatches(attrStr, attrsRegx);\n    const len = matches.length;\n    const attrs = {};\n    for (let i = 0; i < len; i++) {\n      const attrName = this.resolveNameSpace(matches[i][1]);\n      let oldVal = matches[i][4];\n      let aName = this.options.attributeNamePrefix + attrName;\n      if (attrName.length) {\n        if (this.options.transformAttributeName) {\n          aName = this.options.transformAttributeName(aName);\n        }\n        if (aName === \"__proto__\")\n          aName = \"#__proto__\";\n        if (oldVal !== void 0) {\n          if (this.options.trimValues) {\n            oldVal = oldVal.trim();\n          }\n          oldVal = this.replaceEntitiesValue(oldVal);\n          const newVal = this.options.attributeValueProcessor(attrName, oldVal, jPath);\n          if (newVal === null || newVal === void 0) {\n            attrs[aName] = oldVal;\n          } else if (typeof newVal !== typeof oldVal || newVal !== oldVal) {\n            attrs[aName] = newVal;\n          } else {\n            attrs[aName] = parseValue(\n              oldVal,\n              this.options.parseAttributeValue,\n              this.options.numberParseOptions\n            );\n          }\n        } else if (this.options.allowBooleanAttributes) {\n          attrs[aName] = true;\n        }\n      }\n    }\n    if (!Object.keys(attrs).length) {\n      return;\n    }\n    if (this.options.attributesGroupName) {\n      const attrCollection = {};\n      attrCollection[this.options.attributesGroupName] = attrs;\n      return attrCollection;\n    }\n    return attrs;\n  }\n}\nconst parseXml = function(xmlData) {\n  xmlData = xmlData.replace(/\\r\\n?/g, \"\\n\");\n  const xmlObj = new xmlNode(\"!xml\");\n  let currentNode = xmlObj;\n  let textData = \"\";\n  let jPath = \"\";\n  for (let i = 0; i < xmlData.length; i++) {\n    const ch = xmlData[i];\n    if (ch === \"<\") {\n      if (xmlData[i + 1] === \"/\") {\n        const closeIndex = findClosingIndex(xmlData, \">\", i, \"Closing Tag is not closed.\");\n        let tagName = xmlData.substring(i + 2, closeIndex).trim();\n        if (this.options.removeNSPrefix) {\n          const colonIndex = tagName.indexOf(\":\");\n          if (colonIndex !== -1) {\n            tagName = tagName.substr(colonIndex + 1);\n          }\n        }\n        if (this.options.transformTagName) {\n          tagName = this.options.transformTagName(tagName);\n        }\n        if (currentNode) {\n          textData = this.saveTextToParentTag(textData, currentNode, jPath);\n        }\n        const lastTagName = jPath.substring(jPath.lastIndexOf(\".\") + 1);\n        if (tagName && this.options.unpairedTags.indexOf(tagName) !== -1) {\n          throw new Error(`Unpaired tag can not be used as closing tag: </${tagName}>`);\n        }\n        let propIndex = 0;\n        if (lastTagName && this.options.unpairedTags.indexOf(lastTagName) !== -1) {\n          propIndex = jPath.lastIndexOf(\".\", jPath.lastIndexOf(\".\") - 1);\n          this.tagsNodeStack.pop();\n        } else {\n          propIndex = jPath.lastIndexOf(\".\");\n        }\n        jPath = jPath.substring(0, propIndex);\n        currentNode = this.tagsNodeStack.pop();\n        textData = \"\";\n        i = closeIndex;\n      } else if (xmlData[i + 1] === \"?\") {\n        let tagData = readTagExp(xmlData, i, false, \"?>\");\n        if (!tagData)\n          throw new Error(\"Pi Tag is not closed.\");\n        textData = this.saveTextToParentTag(textData, currentNode, jPath);\n        if (this.options.ignoreDeclaration && tagData.tagName === \"?xml\" || this.options.ignorePiTags)\n          ;\n        else {\n          const childNode = new xmlNode(tagData.tagName);\n          childNode.add(this.options.textNodeName, \"\");\n          if (tagData.tagName !== tagData.tagExp && tagData.attrExpPresent) {\n            childNode[\":@\"] = this.buildAttributesMap(tagData.tagExp, jPath, tagData.tagName);\n          }\n          this.addChild(currentNode, childNode, jPath);\n        }\n        i = tagData.closeIndex + 1;\n      } else if (xmlData.substr(i + 1, 3) === \"!--\") {\n        const endIndex = findClosingIndex(xmlData, \"-->\", i + 4, \"Comment is not closed.\");\n        if (this.options.commentPropName) {\n          const comment = xmlData.substring(i + 4, endIndex - 2);\n          textData = this.saveTextToParentTag(textData, currentNode, jPath);\n          currentNode.add(this.options.commentPropName, [{ [this.options.textNodeName]: comment }]);\n        }\n        i = endIndex;\n      } else if (xmlData.substr(i + 1, 2) === \"!D\") {\n        const result = readDocType(xmlData, i);\n        this.docTypeEntities = result.entities;\n        i = result.i;\n      } else if (xmlData.substr(i + 1, 2) === \"![\") {\n        const closeIndex = findClosingIndex(xmlData, \"]]>\", i, \"CDATA is not closed.\") - 2;\n        const tagExp = xmlData.substring(i + 9, closeIndex);\n        textData = this.saveTextToParentTag(textData, currentNode, jPath);\n        let val2 = this.parseTextData(tagExp, currentNode.tagname, jPath, true, false, true, true);\n        if (val2 == void 0)\n          val2 = \"\";\n        if (this.options.cdataPropName) {\n          currentNode.add(this.options.cdataPropName, [{ [this.options.textNodeName]: tagExp }]);\n        } else {\n          currentNode.add(this.options.textNodeName, val2);\n        }\n        i = closeIndex + 2;\n      } else {\n        let result = readTagExp(xmlData, i, this.options.removeNSPrefix);\n        let tagName = result.tagName;\n        const rawTagName = result.rawTagName;\n        let tagExp = result.tagExp;\n        let attrExpPresent = result.attrExpPresent;\n        let closeIndex = result.closeIndex;\n        if (this.options.transformTagName) {\n          tagName = this.options.transformTagName(tagName);\n        }\n        if (currentNode && textData) {\n          if (currentNode.tagname !== \"!xml\") {\n            textData = this.saveTextToParentTag(textData, currentNode, jPath, false);\n          }\n        }\n        const lastTag = currentNode;\n        if (lastTag && this.options.unpairedTags.indexOf(lastTag.tagname) !== -1) {\n          currentNode = this.tagsNodeStack.pop();\n          jPath = jPath.substring(0, jPath.lastIndexOf(\".\"));\n        }\n        if (tagName !== xmlObj.tagname) {\n          jPath += jPath ? \".\" + tagName : tagName;\n        }\n        if (this.isItStopNode(this.options.stopNodes, jPath, tagName)) {\n          let tagContent = \"\";\n          if (tagExp.length > 0 && tagExp.lastIndexOf(\"/\") === tagExp.length - 1) {\n            if (tagName[tagName.length - 1] === \"/\") {\n              tagName = tagName.substr(0, tagName.length - 1);\n              jPath = jPath.substr(0, jPath.length - 1);\n              tagExp = tagName;\n            } else {\n              tagExp = tagExp.substr(0, tagExp.length - 1);\n            }\n            i = result.closeIndex;\n          } else if (this.options.unpairedTags.indexOf(tagName) !== -1) {\n            i = result.closeIndex;\n          } else {\n            const result2 = this.readStopNodeData(xmlData, rawTagName, closeIndex + 1);\n            if (!result2)\n              throw new Error(`Unexpected end of ${rawTagName}`);\n            i = result2.i;\n            tagContent = result2.tagContent;\n          }\n          const childNode = new xmlNode(tagName);\n          if (tagName !== tagExp && attrExpPresent) {\n            childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n          }\n          if (tagContent) {\n            tagContent = this.parseTextData(tagContent, tagName, jPath, true, attrExpPresent, true, true);\n          }\n          jPath = jPath.substr(0, jPath.lastIndexOf(\".\"));\n          childNode.add(this.options.textNodeName, tagContent);\n          this.addChild(currentNode, childNode, jPath);\n        } else {\n          if (tagExp.length > 0 && tagExp.lastIndexOf(\"/\") === tagExp.length - 1) {\n            if (tagName[tagName.length - 1] === \"/\") {\n              tagName = tagName.substr(0, tagName.length - 1);\n              jPath = jPath.substr(0, jPath.length - 1);\n              tagExp = tagName;\n            } else {\n              tagExp = tagExp.substr(0, tagExp.length - 1);\n            }\n            if (this.options.transformTagName) {\n              tagName = this.options.transformTagName(tagName);\n            }\n            const childNode = new xmlNode(tagName);\n            if (tagName !== tagExp && attrExpPresent) {\n              childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n            }\n            this.addChild(currentNode, childNode, jPath);\n            jPath = jPath.substr(0, jPath.lastIndexOf(\".\"));\n          } else {\n            const childNode = new xmlNode(tagName);\n            this.tagsNodeStack.push(currentNode);\n            if (tagName !== tagExp && attrExpPresent) {\n              childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n            }\n            this.addChild(currentNode, childNode, jPath);\n            currentNode = childNode;\n          }\n          textData = \"\";\n          i = closeIndex;\n        }\n      }\n    } else {\n      textData += xmlData[i];\n    }\n  }\n  return xmlObj.child;\n};\nfunction addChild(currentNode, childNode, jPath) {\n  const result = this.options.updateTag(childNode.tagname, jPath, childNode[\":@\"]);\n  if (result === false)\n    ;\n  else if (typeof result === \"string\") {\n    childNode.tagname = result;\n    currentNode.addChild(childNode);\n  } else {\n    currentNode.addChild(childNode);\n  }\n}\nconst replaceEntitiesValue$1 = function(val2) {\n  if (this.options.processEntities) {\n    for (let entityName2 in this.docTypeEntities) {\n      const entity = this.docTypeEntities[entityName2];\n      val2 = val2.replace(entity.regx, entity.val);\n    }\n    for (let entityName2 in this.lastEntities) {\n      const entity = this.lastEntities[entityName2];\n      val2 = val2.replace(entity.regex, entity.val);\n    }\n    if (this.options.htmlEntities) {\n      for (let entityName2 in this.htmlEntities) {\n        const entity = this.htmlEntities[entityName2];\n        val2 = val2.replace(entity.regex, entity.val);\n      }\n    }\n    val2 = val2.replace(this.ampEntity.regex, this.ampEntity.val);\n  }\n  return val2;\n};\nfunction saveTextToParentTag(textData, currentNode, jPath, isLeafNode) {\n  if (textData) {\n    if (isLeafNode === void 0)\n      isLeafNode = Object.keys(currentNode.child).length === 0;\n    textData = this.parseTextData(\n      textData,\n      currentNode.tagname,\n      jPath,\n      false,\n      currentNode[\":@\"] ? Object.keys(currentNode[\":@\"]).length !== 0 : false,\n      isLeafNode\n    );\n    if (textData !== void 0 && textData !== \"\")\n      currentNode.add(this.options.textNodeName, textData);\n    textData = \"\";\n  }\n  return textData;\n}\nfunction isItStopNode(stopNodes, jPath, currentTagName) {\n  const allNodesExp = \"*.\" + currentTagName;\n  for (const stopNodePath in stopNodes) {\n    const stopNodeExp = stopNodes[stopNodePath];\n    if (allNodesExp === stopNodeExp || jPath === stopNodeExp)\n      return true;\n  }\n  return false;\n}\nfunction tagExpWithClosingIndex(xmlData, i, closingChar = \">\") {\n  let attrBoundary;\n  let tagExp = \"\";\n  for (let index = i; index < xmlData.length; index++) {\n    let ch = xmlData[index];\n    if (attrBoundary) {\n      if (ch === attrBoundary)\n        attrBoundary = \"\";\n    } else if (ch === '\"' || ch === \"'\") {\n      attrBoundary = ch;\n    } else if (ch === closingChar[0]) {\n      if (closingChar[1]) {\n        if (xmlData[index + 1] === closingChar[1]) {\n          return {\n            data: tagExp,\n            index\n          };\n        }\n      } else {\n        return {\n          data: tagExp,\n          index\n        };\n      }\n    } else if (ch === \"\t\") {\n      ch = \" \";\n    }\n    tagExp += ch;\n  }\n}\nfunction findClosingIndex(xmlData, str, i, errMsg) {\n  const closingIndex = xmlData.indexOf(str, i);\n  if (closingIndex === -1) {\n    throw new Error(errMsg);\n  } else {\n    return closingIndex + str.length - 1;\n  }\n}\nfunction readTagExp(xmlData, i, removeNSPrefix, closingChar = \">\") {\n  const result = tagExpWithClosingIndex(xmlData, i + 1, closingChar);\n  if (!result)\n    return;\n  let tagExp = result.data;\n  const closeIndex = result.index;\n  const separatorIndex = tagExp.search(/\\s/);\n  let tagName = tagExp;\n  let attrExpPresent = true;\n  if (separatorIndex !== -1) {\n    tagName = tagExp.substring(0, separatorIndex);\n    tagExp = tagExp.substring(separatorIndex + 1).trimStart();\n  }\n  const rawTagName = tagName;\n  if (removeNSPrefix) {\n    const colonIndex = tagName.indexOf(\":\");\n    if (colonIndex !== -1) {\n      tagName = tagName.substr(colonIndex + 1);\n      attrExpPresent = tagName !== result.data.substr(colonIndex + 1);\n    }\n  }\n  return {\n    tagName,\n    tagExp,\n    closeIndex,\n    attrExpPresent,\n    rawTagName\n  };\n}\nfunction readStopNodeData(xmlData, tagName, i) {\n  const startIndex = i;\n  let openTagCount = 1;\n  for (; i < xmlData.length; i++) {\n    if (xmlData[i] === \"<\") {\n      if (xmlData[i + 1] === \"/\") {\n        const closeIndex = findClosingIndex(xmlData, \">\", i, `${tagName} is not closed`);\n        let closeTagName = xmlData.substring(i + 2, closeIndex).trim();\n        if (closeTagName === tagName) {\n          openTagCount--;\n          if (openTagCount === 0) {\n            return {\n              tagContent: xmlData.substring(startIndex, i),\n              i: closeIndex\n            };\n          }\n        }\n        i = closeIndex;\n      } else if (xmlData[i + 1] === \"?\") {\n        const closeIndex = findClosingIndex(xmlData, \"?>\", i + 1, \"StopNode is not closed.\");\n        i = closeIndex;\n      } else if (xmlData.substr(i + 1, 3) === \"!--\") {\n        const closeIndex = findClosingIndex(xmlData, \"-->\", i + 3, \"StopNode is not closed.\");\n        i = closeIndex;\n      } else if (xmlData.substr(i + 1, 2) === \"![\") {\n        const closeIndex = findClosingIndex(xmlData, \"]]>\", i, \"StopNode is not closed.\") - 2;\n        i = closeIndex;\n      } else {\n        const tagData = readTagExp(xmlData, i, \">\");\n        if (tagData) {\n          const openTagName = tagData && tagData.tagName;\n          if (openTagName === tagName && tagData.tagExp[tagData.tagExp.length - 1] !== \"/\") {\n            openTagCount++;\n          }\n          i = tagData.closeIndex;\n        }\n      }\n    }\n  }\n}\nfunction parseValue(val2, shouldParse, options) {\n  if (shouldParse && typeof val2 === \"string\") {\n    const newval = val2.trim();\n    if (newval === \"true\")\n      return true;\n    else if (newval === \"false\")\n      return false;\n    else\n      return toNumber(val2, options);\n  } else {\n    if (util.isExist(val2)) {\n      return val2;\n    } else {\n      return \"\";\n    }\n  }\n}\nvar OrderedObjParser_1 = OrderedObjParser$1;\nvar node2json = {};\nfunction prettify$1(node, options) {\n  return compress(node, options);\n}\nfunction compress(arr, options, jPath) {\n  let text;\n  const compressedObj = {};\n  for (let i = 0; i < arr.length; i++) {\n    const tagObj = arr[i];\n    const property = propName$1(tagObj);\n    let newJpath = \"\";\n    if (jPath === void 0)\n      newJpath = property;\n    else\n      newJpath = jPath + \".\" + property;\n    if (property === options.textNodeName) {\n      if (text === void 0)\n        text = tagObj[property];\n      else\n        text += \"\" + tagObj[property];\n    } else if (property === void 0) {\n      continue;\n    } else if (tagObj[property]) {\n      let val2 = compress(tagObj[property], options, newJpath);\n      const isLeaf = isLeafTag(val2, options);\n      if (tagObj[\":@\"]) {\n        assignAttributes(val2, tagObj[\":@\"], newJpath, options);\n      } else if (Object.keys(val2).length === 1 && val2[options.textNodeName] !== void 0 && !options.alwaysCreateTextNode) {\n        val2 = val2[options.textNodeName];\n      } else if (Object.keys(val2).length === 0) {\n        if (options.alwaysCreateTextNode)\n          val2[options.textNodeName] = \"\";\n        else\n          val2 = \"\";\n      }\n      if (compressedObj[property] !== void 0 && compressedObj.hasOwnProperty(property)) {\n        if (!Array.isArray(compressedObj[property])) {\n          compressedObj[property] = [compressedObj[property]];\n        }\n        compressedObj[property].push(val2);\n      } else {\n        if (options.isArray(property, newJpath, isLeaf)) {\n          compressedObj[property] = [val2];\n        } else {\n          compressedObj[property] = val2;\n        }\n      }\n    }\n  }\n  if (typeof text === \"string\") {\n    if (text.length > 0)\n      compressedObj[options.textNodeName] = text;\n  } else if (text !== void 0)\n    compressedObj[options.textNodeName] = text;\n  return compressedObj;\n}\nfunction propName$1(obj) {\n  const keys = Object.keys(obj);\n  for (let i = 0; i < keys.length; i++) {\n    const key = keys[i];\n    if (key !== \":@\")\n      return key;\n  }\n}\nfunction assignAttributes(obj, attrMap, jpath, options) {\n  if (attrMap) {\n    const keys = Object.keys(attrMap);\n    const len = keys.length;\n    for (let i = 0; i < len; i++) {\n      const atrrName = keys[i];\n      if (options.isArray(atrrName, jpath + \".\" + atrrName, true, true)) {\n        obj[atrrName] = [attrMap[atrrName]];\n      } else {\n        obj[atrrName] = attrMap[atrrName];\n      }\n    }\n  }\n}\nfunction isLeafTag(obj, options) {\n  const { textNodeName } = options;\n  const propCount = Object.keys(obj).length;\n  if (propCount === 0) {\n    return true;\n  }\n  if (propCount === 1 && (obj[textNodeName] || typeof obj[textNodeName] === \"boolean\" || obj[textNodeName] === 0)) {\n    return true;\n  }\n  return false;\n}\nnode2json.prettify = prettify$1;\nconst { buildOptions } = OptionsBuilder;\nconst OrderedObjParser2 = OrderedObjParser_1;\nconst { prettify } = node2json;\nconst validator$1 = validator$2;\nlet XMLParser$1 = class XMLParser {\n  constructor(options) {\n    this.externalEntities = {};\n    this.options = buildOptions(options);\n  }\n  /**\n   * Parse XML dats to JS object \n   * @param {string|Buffer} xmlData \n   * @param {boolean|Object} validationOption \n   */\n  parse(xmlData, validationOption) {\n    if (typeof xmlData === \"string\")\n      ;\n    else if (xmlData.toString) {\n      xmlData = xmlData.toString();\n    } else {\n      throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n    }\n    if (validationOption) {\n      if (validationOption === true)\n        validationOption = {};\n      const result = validator$1.validate(xmlData, validationOption);\n      if (result !== true) {\n        throw Error(`${result.err.msg}:${result.err.line}:${result.err.col}`);\n      }\n    }\n    const orderedObjParser = new OrderedObjParser2(this.options);\n    orderedObjParser.addExternalEntities(this.externalEntities);\n    const orderedResult = orderedObjParser.parseXml(xmlData);\n    if (this.options.preserveOrder || orderedResult === void 0)\n      return orderedResult;\n    else\n      return prettify(orderedResult, this.options);\n  }\n  /**\n   * Add Entity which is not by default supported by this library\n   * @param {string} key \n   * @param {string} value \n   */\n  addEntity(key, value) {\n    if (value.indexOf(\"&\") !== -1) {\n      throw new Error(\"Entity value can't have '&'\");\n    } else if (key.indexOf(\"&\") !== -1 || key.indexOf(\";\") !== -1) {\n      throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for '&#xD;'\");\n    } else if (value === \"&\") {\n      throw new Error(\"An entity with value '&' is not permitted\");\n    } else {\n      this.externalEntities[key] = value;\n    }\n  }\n};\nvar XMLParser_1 = XMLParser$1;\nconst EOL = \"\\n\";\nfunction toXml(jArray, options) {\n  let indentation = \"\";\n  if (options.format && options.indentBy.length > 0) {\n    indentation = EOL;\n  }\n  return arrToStr(jArray, options, \"\", indentation);\n}\nfunction arrToStr(arr, options, jPath, indentation) {\n  let xmlStr = \"\";\n  let isPreviousElementTag = false;\n  for (let i = 0; i < arr.length; i++) {\n    const tagObj = arr[i];\n    const tagName = propName(tagObj);\n    if (tagName === void 0)\n      continue;\n    let newJPath = \"\";\n    if (jPath.length === 0)\n      newJPath = tagName;\n    else\n      newJPath = `${jPath}.${tagName}`;\n    if (tagName === options.textNodeName) {\n      let tagText = tagObj[tagName];\n      if (!isStopNode(newJPath, options)) {\n        tagText = options.tagValueProcessor(tagName, tagText);\n        tagText = replaceEntitiesValue(tagText, options);\n      }\n      if (isPreviousElementTag) {\n        xmlStr += indentation;\n      }\n      xmlStr += tagText;\n      isPreviousElementTag = false;\n      continue;\n    } else if (tagName === options.cdataPropName) {\n      if (isPreviousElementTag) {\n        xmlStr += indentation;\n      }\n      xmlStr += `<![CDATA[${tagObj[tagName][0][options.textNodeName]}]]>`;\n      isPreviousElementTag = false;\n      continue;\n    } else if (tagName === options.commentPropName) {\n      xmlStr += indentation + `<!--${tagObj[tagName][0][options.textNodeName]}-->`;\n      isPreviousElementTag = true;\n      continue;\n    } else if (tagName[0] === \"?\") {\n      const attStr2 = attr_to_str(tagObj[\":@\"], options);\n      const tempInd = tagName === \"?xml\" ? \"\" : indentation;\n      let piTextNodeName = tagObj[tagName][0][options.textNodeName];\n      piTextNodeName = piTextNodeName.length !== 0 ? \" \" + piTextNodeName : \"\";\n      xmlStr += tempInd + `<${tagName}${piTextNodeName}${attStr2}?>`;\n      isPreviousElementTag = true;\n      continue;\n    }\n    let newIdentation = indentation;\n    if (newIdentation !== \"\") {\n      newIdentation += options.indentBy;\n    }\n    const attStr = attr_to_str(tagObj[\":@\"], options);\n    const tagStart = indentation + `<${tagName}${attStr}`;\n    const tagValue = arrToStr(tagObj[tagName], options, newJPath, newIdentation);\n    if (options.unpairedTags.indexOf(tagName) !== -1) {\n      if (options.suppressUnpairedNode)\n        xmlStr += tagStart + \">\";\n      else\n        xmlStr += tagStart + \"/>\";\n    } else if ((!tagValue || tagValue.length === 0) && options.suppressEmptyNode) {\n      xmlStr += tagStart + \"/>\";\n    } else if (tagValue && tagValue.endsWith(\">\")) {\n      xmlStr += tagStart + `>${tagValue}${indentation}</${tagName}>`;\n    } else {\n      xmlStr += tagStart + \">\";\n      if (tagValue && indentation !== \"\" && (tagValue.includes(\"/>\") || tagValue.includes(\"</\"))) {\n        xmlStr += indentation + options.indentBy + tagValue + indentation;\n      } else {\n        xmlStr += tagValue;\n      }\n      xmlStr += `</${tagName}>`;\n    }\n    isPreviousElementTag = true;\n  }\n  return xmlStr;\n}\nfunction propName(obj) {\n  const keys = Object.keys(obj);\n  for (let i = 0; i < keys.length; i++) {\n    const key = keys[i];\n    if (!obj.hasOwnProperty(key))\n      continue;\n    if (key !== \":@\")\n      return key;\n  }\n}\nfunction attr_to_str(attrMap, options) {\n  let attrStr = \"\";\n  if (attrMap && !options.ignoreAttributes) {\n    for (let attr in attrMap) {\n      if (!attrMap.hasOwnProperty(attr))\n        continue;\n      let attrVal = options.attributeValueProcessor(attr, attrMap[attr]);\n      attrVal = replaceEntitiesValue(attrVal, options);\n      if (attrVal === true && options.suppressBooleanAttributes) {\n        attrStr += ` ${attr.substr(options.attributeNamePrefix.length)}`;\n      } else {\n        attrStr += ` ${attr.substr(options.attributeNamePrefix.length)}=\"${attrVal}\"`;\n      }\n    }\n  }\n  return attrStr;\n}\nfunction isStopNode(jPath, options) {\n  jPath = jPath.substr(0, jPath.length - options.textNodeName.length - 1);\n  let tagName = jPath.substr(jPath.lastIndexOf(\".\") + 1);\n  for (let index in options.stopNodes) {\n    if (options.stopNodes[index] === jPath || options.stopNodes[index] === \"*.\" + tagName)\n      return true;\n  }\n  return false;\n}\nfunction replaceEntitiesValue(textValue, options) {\n  if (textValue && textValue.length > 0 && options.processEntities) {\n    for (let i = 0; i < options.entities.length; i++) {\n      const entity = options.entities[i];\n      textValue = textValue.replace(entity.regex, entity.val);\n    }\n  }\n  return textValue;\n}\nvar orderedJs2Xml = toXml;\nconst buildFromOrderedJs = orderedJs2Xml;\nconst defaultOptions = {\n  attributeNamePrefix: \"@_\",\n  attributesGroupName: false,\n  textNodeName: \"#text\",\n  ignoreAttributes: true,\n  cdataPropName: false,\n  format: false,\n  indentBy: \"  \",\n  suppressEmptyNode: false,\n  suppressUnpairedNode: true,\n  suppressBooleanAttributes: true,\n  tagValueProcessor: function(key, a) {\n    return a;\n  },\n  attributeValueProcessor: function(attrName, a) {\n    return a;\n  },\n  preserveOrder: false,\n  commentPropName: false,\n  unpairedTags: [],\n  entities: [\n    { regex: new RegExp(\"&\", \"g\"), val: \"&amp;\" },\n    //it must be on top\n    { regex: new RegExp(\">\", \"g\"), val: \"&gt;\" },\n    { regex: new RegExp(\"<\", \"g\"), val: \"&lt;\" },\n    { regex: new RegExp(\"'\", \"g\"), val: \"&apos;\" },\n    { regex: new RegExp('\"', \"g\"), val: \"&quot;\" }\n  ],\n  processEntities: true,\n  stopNodes: [],\n  // transformTagName: false,\n  // transformAttributeName: false,\n  oneListGroup: false\n};\nfunction Builder(options) {\n  this.options = Object.assign({}, defaultOptions, options);\n  if (this.options.ignoreAttributes || this.options.attributesGroupName) {\n    this.isAttribute = function() {\n      return false;\n    };\n  } else {\n    this.attrPrefixLen = this.options.attributeNamePrefix.length;\n    this.isAttribute = isAttribute;\n  }\n  this.processTextOrObjNode = processTextOrObjNode;\n  if (this.options.format) {\n    this.indentate = indentate;\n    this.tagEndChar = \">\\n\";\n    this.newLine = \"\\n\";\n  } else {\n    this.indentate = function() {\n      return \"\";\n    };\n    this.tagEndChar = \">\";\n    this.newLine = \"\";\n  }\n}\nBuilder.prototype.build = function(jObj) {\n  if (this.options.preserveOrder) {\n    return buildFromOrderedJs(jObj, this.options);\n  } else {\n    if (Array.isArray(jObj) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1) {\n      jObj = {\n        [this.options.arrayNodeName]: jObj\n      };\n    }\n    return this.j2x(jObj, 0).val;\n  }\n};\nBuilder.prototype.j2x = function(jObj, level) {\n  let attrStr = \"\";\n  let val2 = \"\";\n  for (let key in jObj) {\n    if (!Object.prototype.hasOwnProperty.call(jObj, key))\n      continue;\n    if (typeof jObj[key] === \"undefined\") {\n      if (this.isAttribute(key)) {\n        val2 += \"\";\n      }\n    } else if (jObj[key] === null) {\n      if (this.isAttribute(key)) {\n        val2 += \"\";\n      } else if (key[0] === \"?\") {\n        val2 += this.indentate(level) + \"<\" + key + \"?\" + this.tagEndChar;\n      } else {\n        val2 += this.indentate(level) + \"<\" + key + \"/\" + this.tagEndChar;\n      }\n    } else if (jObj[key] instanceof Date) {\n      val2 += this.buildTextValNode(jObj[key], key, \"\", level);\n    } else if (typeof jObj[key] !== \"object\") {\n      const attr = this.isAttribute(key);\n      if (attr) {\n        attrStr += this.buildAttrPairStr(attr, \"\" + jObj[key]);\n      } else {\n        if (key === this.options.textNodeName) {\n          let newval = this.options.tagValueProcessor(key, \"\" + jObj[key]);\n          val2 += this.replaceEntitiesValue(newval);\n        } else {\n          val2 += this.buildTextValNode(jObj[key], key, \"\", level);\n        }\n      }\n    } else if (Array.isArray(jObj[key])) {\n      const arrLen = jObj[key].length;\n      let listTagVal = \"\";\n      for (let j = 0; j < arrLen; j++) {\n        const item = jObj[key][j];\n        if (typeof item === \"undefined\")\n          ;\n        else if (item === null) {\n          if (key[0] === \"?\")\n            val2 += this.indentate(level) + \"<\" + key + \"?\" + this.tagEndChar;\n          else\n            val2 += this.indentate(level) + \"<\" + key + \"/\" + this.tagEndChar;\n        } else if (typeof item === \"object\") {\n          if (this.options.oneListGroup) {\n            listTagVal += this.j2x(item, level + 1).val;\n          } else {\n            listTagVal += this.processTextOrObjNode(item, key, level);\n          }\n        } else {\n          listTagVal += this.buildTextValNode(item, key, \"\", level);\n        }\n      }\n      if (this.options.oneListGroup) {\n        listTagVal = this.buildObjectNode(listTagVal, key, \"\", level);\n      }\n      val2 += listTagVal;\n    } else {\n      if (this.options.attributesGroupName && key === this.options.attributesGroupName) {\n        const Ks = Object.keys(jObj[key]);\n        const L = Ks.length;\n        for (let j = 0; j < L; j++) {\n          attrStr += this.buildAttrPairStr(Ks[j], \"\" + jObj[key][Ks[j]]);\n        }\n      } else {\n        val2 += this.processTextOrObjNode(jObj[key], key, level);\n      }\n    }\n  }\n  return { attrStr, val: val2 };\n};\nBuilder.prototype.buildAttrPairStr = function(attrName, val2) {\n  val2 = this.options.attributeValueProcessor(attrName, \"\" + val2);\n  val2 = this.replaceEntitiesValue(val2);\n  if (this.options.suppressBooleanAttributes && val2 === \"true\") {\n    return \" \" + attrName;\n  } else\n    return \" \" + attrName + '=\"' + val2 + '\"';\n};\nfunction processTextOrObjNode(object, key, level) {\n  const result = this.j2x(object, level + 1);\n  if (object[this.options.textNodeName] !== void 0 && Object.keys(object).length === 1) {\n    return this.buildTextValNode(object[this.options.textNodeName], key, result.attrStr, level);\n  } else {\n    return this.buildObjectNode(result.val, key, result.attrStr, level);\n  }\n}\nBuilder.prototype.buildObjectNode = function(val2, key, attrStr, level) {\n  if (val2 === \"\") {\n    if (key[0] === \"?\")\n      return this.indentate(level) + \"<\" + key + attrStr + \"?\" + this.tagEndChar;\n    else {\n      return this.indentate(level) + \"<\" + key + attrStr + this.closeTag(key) + this.tagEndChar;\n    }\n  } else {\n    let tagEndExp = \"</\" + key + this.tagEndChar;\n    let piClosingChar = \"\";\n    if (key[0] === \"?\") {\n      piClosingChar = \"?\";\n      tagEndExp = \"\";\n    }\n    if ((attrStr || attrStr === \"\") && val2.indexOf(\"<\") === -1) {\n      return this.indentate(level) + \"<\" + key + attrStr + piClosingChar + \">\" + val2 + tagEndExp;\n    } else if (this.options.commentPropName !== false && key === this.options.commentPropName && piClosingChar.length === 0) {\n      return this.indentate(level) + `<!--${val2}-->` + this.newLine;\n    } else {\n      return this.indentate(level) + \"<\" + key + attrStr + piClosingChar + this.tagEndChar + val2 + this.indentate(level) + tagEndExp;\n    }\n  }\n};\nBuilder.prototype.closeTag = function(key) {\n  let closeTag = \"\";\n  if (this.options.unpairedTags.indexOf(key) !== -1) {\n    if (!this.options.suppressUnpairedNode)\n      closeTag = \"/\";\n  } else if (this.options.suppressEmptyNode) {\n    closeTag = \"/\";\n  } else {\n    closeTag = `></${key}`;\n  }\n  return closeTag;\n};\nBuilder.prototype.buildTextValNode = function(val2, key, attrStr, level) {\n  if (this.options.cdataPropName !== false && key === this.options.cdataPropName) {\n    return this.indentate(level) + `<![CDATA[${val2}]]>` + this.newLine;\n  } else if (this.options.commentPropName !== false && key === this.options.commentPropName) {\n    return this.indentate(level) + `<!--${val2}-->` + this.newLine;\n  } else if (key[0] === \"?\") {\n    return this.indentate(level) + \"<\" + key + attrStr + \"?\" + this.tagEndChar;\n  } else {\n    let textValue = this.options.tagValueProcessor(key, val2);\n    textValue = this.replaceEntitiesValue(textValue);\n    if (textValue === \"\") {\n      return this.indentate(level) + \"<\" + key + attrStr + this.closeTag(key) + this.tagEndChar;\n    } else {\n      return this.indentate(level) + \"<\" + key + attrStr + \">\" + textValue + \"</\" + key + this.tagEndChar;\n    }\n  }\n};\nBuilder.prototype.replaceEntitiesValue = function(textValue) {\n  if (textValue && textValue.length > 0 && this.options.processEntities) {\n    for (let i = 0; i < this.options.entities.length; i++) {\n      const entity = this.options.entities[i];\n      textValue = textValue.replace(entity.regex, entity.val);\n    }\n  }\n  return textValue;\n};\nfunction indentate(level) {\n  return this.options.indentBy.repeat(level);\n}\nfunction isAttribute(name) {\n  if (name.startsWith(this.options.attributeNamePrefix) && name !== this.options.textNodeName) {\n    return name.substr(this.attrPrefixLen);\n  } else {\n    return false;\n  }\n}\nvar json2xml = Builder;\nconst validator = validator$2;\nconst XMLParser2 = XMLParser_1;\nconst XMLBuilder = json2xml;\nvar fxp = {\n  XMLParser: XMLParser2,\n  XMLValidator: validator,\n  XMLBuilder\n};\nfunction isSvg(string) {\n  if (typeof string !== \"string\") {\n    throw new TypeError(`Expected a \\`string\\`, got \\`${typeof string}\\``);\n  }\n  string = string.trim();\n  if (string.length === 0) {\n    return false;\n  }\n  if (fxp.XMLValidator.validate(string) !== true) {\n    return false;\n  }\n  let jsonObject;\n  const parser = new fxp.XMLParser();\n  try {\n    jsonObject = parser.parse(string);\n  } catch {\n    return false;\n  }\n  if (!jsonObject) {\n    return false;\n  }\n  if (!Object.keys(jsonObject).some((x) => x.toLowerCase() === \"svg\")) {\n    return false;\n  }\n  return true;\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass View {\n  _view;\n  constructor(view) {\n    isValidView(view);\n    this._view = view;\n  }\n  get id() {\n    return this._view.id;\n  }\n  get name() {\n    return this._view.name;\n  }\n  get caption() {\n    return this._view.caption;\n  }\n  get emptyTitle() {\n    return this._view.emptyTitle;\n  }\n  get emptyCaption() {\n    return this._view.emptyCaption;\n  }\n  get getContents() {\n    return this._view.getContents;\n  }\n  get icon() {\n    return this._view.icon;\n  }\n  set icon(icon) {\n    this._view.icon = icon;\n  }\n  get order() {\n    return this._view.order;\n  }\n  set order(order) {\n    this._view.order = order;\n  }\n  get params() {\n    return this._view.params;\n  }\n  set params(params) {\n    this._view.params = params;\n  }\n  get columns() {\n    return this._view.columns;\n  }\n  get emptyView() {\n    return this._view.emptyView;\n  }\n  get parent() {\n    return this._view.parent;\n  }\n  get sticky() {\n    return this._view.sticky;\n  }\n  get expanded() {\n    return this._view.expanded;\n  }\n  set expanded(expanded) {\n    this._view.expanded = expanded;\n  }\n  get defaultSortKey() {\n    return this._view.defaultSortKey;\n  }\n}\nconst isValidView = function(view) {\n  if (!view.id || typeof view.id !== \"string\") {\n    throw new Error(\"View id is required and must be a string\");\n  }\n  if (!view.name || typeof view.name !== \"string\") {\n    throw new Error(\"View name is required and must be a string\");\n  }\n  if (view.columns && view.columns.length > 0 && (!view.caption || typeof view.caption !== \"string\")) {\n    throw new Error(\"View caption is required for top-level views and must be a string\");\n  }\n  if (!view.getContents || typeof view.getContents !== \"function\") {\n    throw new Error(\"View getContents is required and must be a function\");\n  }\n  if (!view.icon || typeof view.icon !== \"string\" || !isSvg(view.icon)) {\n    throw new Error(\"View icon is required and must be a valid svg string\");\n  }\n  if (!(\"order\" in view) || typeof view.order !== \"number\") {\n    throw new Error(\"View order is required and must be a number\");\n  }\n  if (view.columns) {\n    view.columns.forEach((column) => {\n      if (!(column instanceof Column)) {\n        throw new Error(\"View columns must be an array of Column. Invalid column found\");\n      }\n    });\n  }\n  if (view.emptyView && typeof view.emptyView !== \"function\") {\n    throw new Error(\"View emptyView must be a function\");\n  }\n  if (view.parent && typeof view.parent !== \"string\") {\n    throw new Error(\"View parent must be a string\");\n  }\n  if (\"sticky\" in view && typeof view.sticky !== \"boolean\") {\n    throw new Error(\"View sticky must be a boolean\");\n  }\n  if (\"expanded\" in view && typeof view.expanded !== \"boolean\") {\n    throw new Error(\"View expanded must be a boolean\");\n  }\n  if (view.defaultSortKey && typeof view.defaultSortKey !== \"string\") {\n    throw new Error(\"View defaultSortKey must be a string\");\n  }\n  return true;\n};\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst addNewFileMenuEntry = function(entry) {\n  const newFileMenu = getNewFileMenu();\n  return newFileMenu.registerEntry(entry);\n};\nconst removeNewFileMenuEntry = function(entry) {\n  const newFileMenu = getNewFileMenu();\n  return newFileMenu.unregisterEntry(entry);\n};\nconst getNewFileMenuEntries = function(context) {\n  const newFileMenu = getNewFileMenu();\n  return newFileMenu.getEntries(context).sort((a, b) => {\n    if (a.order !== void 0 && b.order !== void 0 && a.order !== b.order) {\n      return a.order - b.order;\n    }\n    return a.displayName.localeCompare(b.displayName, void 0, { numeric: true, sensitivity: \"base\" });\n  });\n};\nexport {\n  Column,\n  DefaultType,\n  File,\n  FileAction,\n  FileType,\n  FilesSortingMode,\n  Folder,\n  Header,\n  Navigation,\n  NewMenuEntryCategory,\n  Node,\n  NodeStatus,\n  Permission,\n  View,\n  addNewFileMenuEntry,\n  davGetClient,\n  davGetDefaultPropfind,\n  davGetFavoritesReport,\n  davGetRecentSearch,\n  davParsePermissions,\n  davRemoteURL,\n  davResultToNode,\n  davRootPath,\n  defaultDavNamespaces,\n  defaultDavProperties,\n  formatFileSize,\n  getDavNameSpaces,\n  getDavProperties,\n  getFavoriteNodes,\n  getFileActions,\n  getFileListHeaders,\n  getNavigation,\n  getNewFileMenuEntries,\n  isFilenameValid,\n  orderBy,\n  parseFileSize,\n  registerDavProperty,\n  registerFileAction,\n  registerFileListHeaders,\n  removeNewFileMenuEntry,\n  sortNodes\n};\n","\n      import API from \"!../../../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n      import domAPI from \"!../../../../style-loader/dist/runtime/styleDomAPI.js\";\n      import insertFn from \"!../../../../style-loader/dist/runtime/insertBySelector.js\";\n      import setAttributes from \"!../../../../style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n      import insertStyleElement from \"!../../../../style-loader/dist/runtime/insertStyleElement.js\";\n      import styleTagTransformFn from \"!../../../../style-loader/dist/runtime/styleTagTransform.js\";\n      import content, * as namedExport from \"!!../../../../css-loader/dist/cjs.js!./index-Ussc_ol3.css\";\n      \n      \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n      options.insert = insertFn.bind(null, \"head\");\n    \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../css-loader/dist/cjs.js!./index-Ussc_ol3.css\";\n       export default content && content.locals ? content.locals : undefined;\n","export class CancelError extends Error {\n\tconstructor(reason) {\n\t\tsuper(reason || 'Promise was canceled');\n\t\tthis.name = 'CancelError';\n\t}\n\n\tget isCanceled() {\n\t\treturn true;\n\t}\n}\n\nconst promiseState = Object.freeze({\n\tpending: Symbol('pending'),\n\tcanceled: Symbol('canceled'),\n\tresolved: Symbol('resolved'),\n\trejected: Symbol('rejected'),\n});\n\nexport default class PCancelable {\n\tstatic fn(userFunction) {\n\t\treturn (...arguments_) => new PCancelable((resolve, reject, onCancel) => {\n\t\t\targuments_.push(onCancel);\n\t\t\tuserFunction(...arguments_).then(resolve, reject);\n\t\t});\n\t}\n\n\t#cancelHandlers = [];\n\t#rejectOnCancel = true;\n\t#state = promiseState.pending;\n\t#promise;\n\t#reject;\n\n\tconstructor(executor) {\n\t\tthis.#promise = new Promise((resolve, reject) => {\n\t\t\tthis.#reject = reject;\n\n\t\t\tconst onResolve = value => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\tresolve(value);\n\t\t\t\t\tthis.#setState(promiseState.resolved);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onReject = error => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\treject(error);\n\t\t\t\t\tthis.#setState(promiseState.rejected);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onCancel = handler => {\n\t\t\t\tif (this.#state !== promiseState.pending) {\n\t\t\t\t\tthrow new Error(`The \\`onCancel\\` handler was attached after the promise ${this.#state.description}.`);\n\t\t\t\t}\n\n\t\t\t\tthis.#cancelHandlers.push(handler);\n\t\t\t};\n\n\t\t\tObject.defineProperties(onCancel, {\n\t\t\t\tshouldReject: {\n\t\t\t\t\tget: () => this.#rejectOnCancel,\n\t\t\t\t\tset: boolean => {\n\t\t\t\t\t\tthis.#rejectOnCancel = boolean;\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t});\n\n\t\t\texecutor(onResolve, onReject, onCancel);\n\t\t});\n\t}\n\n\t// eslint-disable-next-line unicorn/no-thenable\n\tthen(onFulfilled, onRejected) {\n\t\treturn this.#promise.then(onFulfilled, onRejected);\n\t}\n\n\tcatch(onRejected) {\n\t\treturn this.#promise.catch(onRejected);\n\t}\n\n\tfinally(onFinally) {\n\t\treturn this.#promise.finally(onFinally);\n\t}\n\n\tcancel(reason) {\n\t\tif (this.#state !== promiseState.pending) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.#setState(promiseState.canceled);\n\n\t\tif (this.#cancelHandlers.length > 0) {\n\t\t\ttry {\n\t\t\t\tfor (const handler of this.#cancelHandlers) {\n\t\t\t\t\thandler();\n\t\t\t\t}\n\t\t\t} catch (error) {\n\t\t\t\tthis.#reject(error);\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\tif (this.#rejectOnCancel) {\n\t\t\tthis.#reject(new CancelError(reason));\n\t\t}\n\t}\n\n\tget isCanceled() {\n\t\treturn this.#state === promiseState.canceled;\n\t}\n\n\t#setState(state) {\n\t\tif (this.#state === promiseState.pending) {\n\t\t\tthis.#state = state;\n\t\t}\n\t}\n}\n\nObject.setPrototypeOf(PCancelable.prototype, Promise.prototype);\n","export class TimeoutError extends Error {\n\tconstructor(message) {\n\t\tsuper(message);\n\t\tthis.name = 'TimeoutError';\n\t}\n}\n\n/**\nAn error to be thrown when the request is aborted by AbortController.\nDOMException is thrown instead of this Error when DOMException is available.\n*/\nexport class AbortError extends Error {\n\tconstructor(message) {\n\t\tsuper();\n\t\tthis.name = 'AbortError';\n\t\tthis.message = message;\n\t}\n}\n\n/**\nTODO: Remove AbortError and just throw DOMException when targeting Node 18.\n*/\nconst getDOMException = errorMessage => globalThis.DOMException === undefined\n\t? new AbortError(errorMessage)\n\t: new DOMException(errorMessage);\n\n/**\nTODO: Remove below function and just 'reject(signal.reason)' when targeting Node 18.\n*/\nconst getAbortedReason = signal => {\n\tconst reason = signal.reason === undefined\n\t\t? getDOMException('This operation was aborted.')\n\t\t: signal.reason;\n\n\treturn reason instanceof Error ? reason : getDOMException(reason);\n};\n\nexport default function pTimeout(promise, options) {\n\tconst {\n\t\tmilliseconds,\n\t\tfallback,\n\t\tmessage,\n\t\tcustomTimers = {setTimeout, clearTimeout},\n\t} = options;\n\n\tlet timer;\n\n\tconst wrappedPromise = new Promise((resolve, reject) => {\n\t\tif (typeof milliseconds !== 'number' || Math.sign(milliseconds) !== 1) {\n\t\t\tthrow new TypeError(`Expected \\`milliseconds\\` to be a positive number, got \\`${milliseconds}\\``);\n\t\t}\n\n\t\tif (options.signal) {\n\t\t\tconst {signal} = options;\n\t\t\tif (signal.aborted) {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t}\n\n\t\t\tsignal.addEventListener('abort', () => {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t});\n\t\t}\n\n\t\tif (milliseconds === Number.POSITIVE_INFINITY) {\n\t\t\tpromise.then(resolve, reject);\n\t\t\treturn;\n\t\t}\n\n\t\t// We create the error outside of `setTimeout` to preserve the stack trace.\n\t\tconst timeoutError = new TimeoutError();\n\n\t\ttimer = customTimers.setTimeout.call(undefined, () => {\n\t\t\tif (fallback) {\n\t\t\t\ttry {\n\t\t\t\t\tresolve(fallback());\n\t\t\t\t} catch (error) {\n\t\t\t\t\treject(error);\n\t\t\t\t}\n\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (typeof promise.cancel === 'function') {\n\t\t\t\tpromise.cancel();\n\t\t\t}\n\n\t\t\tif (message === false) {\n\t\t\t\tresolve();\n\t\t\t} else if (message instanceof Error) {\n\t\t\t\treject(message);\n\t\t\t} else {\n\t\t\t\ttimeoutError.message = message ?? `Promise timed out after ${milliseconds} milliseconds`;\n\t\t\t\treject(timeoutError);\n\t\t\t}\n\t\t}, milliseconds);\n\n\t\t(async () => {\n\t\t\ttry {\n\t\t\t\tresolve(await promise);\n\t\t\t} catch (error) {\n\t\t\t\treject(error);\n\t\t\t}\n\t\t})();\n\t});\n\n\tconst cancelablePromise = wrappedPromise.finally(() => {\n\t\tcancelablePromise.clear();\n\t});\n\n\tcancelablePromise.clear = () => {\n\t\tcustomTimers.clearTimeout.call(undefined, timer);\n\t\ttimer = undefined;\n\t};\n\n\treturn cancelablePromise;\n}\n","import lowerBound from './lower-bound.js';\nexport default class PriorityQueue {\n    #queue = [];\n    enqueue(run, options) {\n        options = {\n            priority: 0,\n            ...options,\n        };\n        const element = {\n            priority: options.priority,\n            run,\n        };\n        if (this.size && this.#queue[this.size - 1].priority >= options.priority) {\n            this.#queue.push(element);\n            return;\n        }\n        const index = lowerBound(this.#queue, element, (a, b) => b.priority - a.priority);\n        this.#queue.splice(index, 0, element);\n    }\n    dequeue() {\n        const item = this.#queue.shift();\n        return item?.run;\n    }\n    filter(options) {\n        return this.#queue.filter((element) => element.priority === options.priority).map((element) => element.run);\n    }\n    get size() {\n        return this.#queue.length;\n    }\n}\n","// Port of lower_bound from https://en.cppreference.com/w/cpp/algorithm/lower_bound\n// Used to compute insertion index to keep queue sorted after insertion\nexport default function lowerBound(array, value, comparator) {\n    let first = 0;\n    let count = array.length;\n    while (count > 0) {\n        const step = Math.trunc(count / 2);\n        let it = first + step;\n        if (comparator(array[it], value) <= 0) {\n            first = ++it;\n            count -= step + 1;\n        }\n        else {\n            count = step;\n        }\n    }\n    return first;\n}\n","import { EventEmitter } from 'eventemitter3';\nimport pTimeout, { TimeoutError } from 'p-timeout';\nimport PriorityQueue from './priority-queue.js';\n/**\nPromise queue with concurrency control.\n*/\nexport default class PQueue extends EventEmitter {\n    #carryoverConcurrencyCount;\n    #isIntervalIgnored;\n    #intervalCount = 0;\n    #intervalCap;\n    #interval;\n    #intervalEnd = 0;\n    #intervalId;\n    #timeoutId;\n    #queue;\n    #queueClass;\n    #pending = 0;\n    // The `!` is needed because of https://github.com/microsoft/TypeScript/issues/32194\n    #concurrency;\n    #isPaused;\n    #throwOnTimeout;\n    /**\n    Per-operation timeout in milliseconds. Operations fulfill once `timeout` elapses if they haven't already.\n\n    Applies to each future operation.\n    */\n    timeout;\n    // TODO: The `throwOnTimeout` option should affect the return types of `add()` and `addAll()`\n    constructor(options) {\n        super();\n        // eslint-disable-next-line @typescript-eslint/consistent-type-assertions\n        options = {\n            carryoverConcurrencyCount: false,\n            intervalCap: Number.POSITIVE_INFINITY,\n            interval: 0,\n            concurrency: Number.POSITIVE_INFINITY,\n            autoStart: true,\n            queueClass: PriorityQueue,\n            ...options,\n        };\n        if (!(typeof options.intervalCap === 'number' && options.intervalCap >= 1)) {\n            throw new TypeError(`Expected \\`intervalCap\\` to be a number from 1 and up, got \\`${options.intervalCap?.toString() ?? ''}\\` (${typeof options.intervalCap})`);\n        }\n        if (options.interval === undefined || !(Number.isFinite(options.interval) && options.interval >= 0)) {\n            throw new TypeError(`Expected \\`interval\\` to be a finite number >= 0, got \\`${options.interval?.toString() ?? ''}\\` (${typeof options.interval})`);\n        }\n        this.#carryoverConcurrencyCount = options.carryoverConcurrencyCount;\n        this.#isIntervalIgnored = options.intervalCap === Number.POSITIVE_INFINITY || options.interval === 0;\n        this.#intervalCap = options.intervalCap;\n        this.#interval = options.interval;\n        this.#queue = new options.queueClass();\n        this.#queueClass = options.queueClass;\n        this.concurrency = options.concurrency;\n        this.timeout = options.timeout;\n        this.#throwOnTimeout = options.throwOnTimeout === true;\n        this.#isPaused = options.autoStart === false;\n    }\n    get #doesIntervalAllowAnother() {\n        return this.#isIntervalIgnored || this.#intervalCount < this.#intervalCap;\n    }\n    get #doesConcurrentAllowAnother() {\n        return this.#pending < this.#concurrency;\n    }\n    #next() {\n        this.#pending--;\n        this.#tryToStartAnother();\n        this.emit('next');\n    }\n    #onResumeInterval() {\n        this.#onInterval();\n        this.#initializeIntervalIfNeeded();\n        this.#timeoutId = undefined;\n    }\n    get #isIntervalPaused() {\n        const now = Date.now();\n        if (this.#intervalId === undefined) {\n            const delay = this.#intervalEnd - now;\n            if (delay < 0) {\n                // Act as the interval was done\n                // We don't need to resume it here because it will be resumed on line 160\n                this.#intervalCount = (this.#carryoverConcurrencyCount) ? this.#pending : 0;\n            }\n            else {\n                // Act as the interval is pending\n                if (this.#timeoutId === undefined) {\n                    this.#timeoutId = setTimeout(() => {\n                        this.#onResumeInterval();\n                    }, delay);\n                }\n                return true;\n            }\n        }\n        return false;\n    }\n    #tryToStartAnother() {\n        if (this.#queue.size === 0) {\n            // We can clear the interval (\"pause\")\n            // Because we can redo it later (\"resume\")\n            if (this.#intervalId) {\n                clearInterval(this.#intervalId);\n            }\n            this.#intervalId = undefined;\n            this.emit('empty');\n            if (this.#pending === 0) {\n                this.emit('idle');\n            }\n            return false;\n        }\n        if (!this.#isPaused) {\n            const canInitializeInterval = !this.#isIntervalPaused;\n            if (this.#doesIntervalAllowAnother && this.#doesConcurrentAllowAnother) {\n                const job = this.#queue.dequeue();\n                if (!job) {\n                    return false;\n                }\n                this.emit('active');\n                job();\n                if (canInitializeInterval) {\n                    this.#initializeIntervalIfNeeded();\n                }\n                return true;\n            }\n        }\n        return false;\n    }\n    #initializeIntervalIfNeeded() {\n        if (this.#isIntervalIgnored || this.#intervalId !== undefined) {\n            return;\n        }\n        this.#intervalId = setInterval(() => {\n            this.#onInterval();\n        }, this.#interval);\n        this.#intervalEnd = Date.now() + this.#interval;\n    }\n    #onInterval() {\n        if (this.#intervalCount === 0 && this.#pending === 0 && this.#intervalId) {\n            clearInterval(this.#intervalId);\n            this.#intervalId = undefined;\n        }\n        this.#intervalCount = this.#carryoverConcurrencyCount ? this.#pending : 0;\n        this.#processQueue();\n    }\n    /**\n    Executes all queued functions until it reaches the limit.\n    */\n    #processQueue() {\n        // eslint-disable-next-line no-empty\n        while (this.#tryToStartAnother()) { }\n    }\n    get concurrency() {\n        return this.#concurrency;\n    }\n    set concurrency(newConcurrency) {\n        if (!(typeof newConcurrency === 'number' && newConcurrency >= 1)) {\n            throw new TypeError(`Expected \\`concurrency\\` to be a number from 1 and up, got \\`${newConcurrency}\\` (${typeof newConcurrency})`);\n        }\n        this.#concurrency = newConcurrency;\n        this.#processQueue();\n    }\n    async #throwOnAbort(signal) {\n        return new Promise((_resolve, reject) => {\n            signal.addEventListener('abort', () => {\n                reject(signal.reason);\n            }, { once: true });\n        });\n    }\n    async add(function_, options = {}) {\n        options = {\n            timeout: this.timeout,\n            throwOnTimeout: this.#throwOnTimeout,\n            ...options,\n        };\n        return new Promise((resolve, reject) => {\n            this.#queue.enqueue(async () => {\n                this.#pending++;\n                this.#intervalCount++;\n                try {\n                    options.signal?.throwIfAborted();\n                    let operation = function_({ signal: options.signal });\n                    if (options.timeout) {\n                        operation = pTimeout(Promise.resolve(operation), { milliseconds: options.timeout });\n                    }\n                    if (options.signal) {\n                        operation = Promise.race([operation, this.#throwOnAbort(options.signal)]);\n                    }\n                    const result = await operation;\n                    resolve(result);\n                    this.emit('completed', result);\n                }\n                catch (error) {\n                    if (error instanceof TimeoutError && !options.throwOnTimeout) {\n                        resolve();\n                        return;\n                    }\n                    reject(error);\n                    this.emit('error', error);\n                }\n                finally {\n                    this.#next();\n                }\n            }, options);\n            this.emit('add');\n            this.#tryToStartAnother();\n        });\n    }\n    async addAll(functions, options) {\n        return Promise.all(functions.map(async (function_) => this.add(function_, options)));\n    }\n    /**\n    Start (or resume) executing enqueued tasks within concurrency limit. No need to call this if queue is not paused (via `options.autoStart = false` or by `.pause()` method.)\n    */\n    start() {\n        if (!this.#isPaused) {\n            return this;\n        }\n        this.#isPaused = false;\n        this.#processQueue();\n        return this;\n    }\n    /**\n    Put queue execution on hold.\n    */\n    pause() {\n        this.#isPaused = true;\n    }\n    /**\n    Clear the queue.\n    */\n    clear() {\n        this.#queue = new this.#queueClass();\n    }\n    /**\n    Can be called multiple times. Useful if you for example add additional items at a later time.\n\n    @returns A promise that settles when the queue becomes empty.\n    */\n    async onEmpty() {\n        // Instantly resolve if the queue is empty\n        if (this.#queue.size === 0) {\n            return;\n        }\n        await this.#onEvent('empty');\n    }\n    /**\n    @returns A promise that settles when the queue size is less than the given limit: `queue.size < limit`.\n\n    If you want to avoid having the queue grow beyond a certain size you can `await queue.onSizeLessThan()` before adding a new item.\n\n    Note that this only limits the number of items waiting to start. There could still be up to `concurrency` jobs already running that this call does not include in its calculation.\n    */\n    async onSizeLessThan(limit) {\n        // Instantly resolve if the queue is empty.\n        if (this.#queue.size < limit) {\n            return;\n        }\n        await this.#onEvent('next', () => this.#queue.size < limit);\n    }\n    /**\n    The difference with `.onEmpty` is that `.onIdle` guarantees that all work from the queue has finished. `.onEmpty` merely signals that the queue is empty, but it could mean that some promises haven't completed yet.\n\n    @returns A promise that settles when the queue becomes empty, and all promises have completed; `queue.size === 0 && queue.pending === 0`.\n    */\n    async onIdle() {\n        // Instantly resolve if none pending and if nothing else is queued\n        if (this.#pending === 0 && this.#queue.size === 0) {\n            return;\n        }\n        await this.#onEvent('idle');\n    }\n    async #onEvent(event, filter) {\n        return new Promise(resolve => {\n            const listener = () => {\n                if (filter && !filter()) {\n                    return;\n                }\n                this.off(event, listener);\n                resolve();\n            };\n            this.on(event, listener);\n        });\n    }\n    /**\n    Size of the queue, the number of queued items waiting to run.\n    */\n    get size() {\n        return this.#queue.size;\n    }\n    /**\n    Size of the queue, filtered by the given options.\n\n    For example, this can be used to find the number of items remaining in the queue with a specific priority level.\n    */\n    sizeBy(options) {\n        // eslint-disable-next-line unicorn/no-array-callback-reference\n        return this.#queue.filter(options).length;\n    }\n    /**\n    Number of running items (no longer in the queue).\n    */\n    get pending() {\n        return this.#pending;\n    }\n    /**\n    Whether the queue is currently paused.\n    */\n    get isPaused() {\n        return this.#isPaused;\n    }\n}\n","import '../assets/index-Ussc_ol3.css';\nimport { CanceledError as b } from \"axios\";\nimport { encodePath as q } from \"@nextcloud/paths\";\nimport { Folder as z, Permission as H, getNewFileMenuEntries as G } from \"@nextcloud/files\";\nimport { generateRemoteUrl as j } from \"@nextcloud/router\";\nimport { getCurrentUser as F } from \"@nextcloud/auth\";\nimport v from \"@nextcloud/axios\";\nimport Y from \"p-cancelable\";\nimport V from \"p-queue\";\nimport { getLoggerBuilder as _ } from \"@nextcloud/logger\";\nimport { showError as P } from \"@nextcloud/dialogs\";\nimport K from \"simple-eta\";\nimport E, { defineAsyncComponent as $ } from \"vue\";\nimport J from \"@nextcloud/vue/dist/Components/NcActionButton.js\";\nimport Q from \"@nextcloud/vue/dist/Components/NcActions.js\";\nimport Z from \"@nextcloud/vue/dist/Components/NcButton.js\";\nimport X from \"@nextcloud/vue/dist/Components/NcIconSvgWrapper.js\";\nimport ss from \"@nextcloud/vue/dist/Components/NcProgressBar.js\";\nimport { getGettextBuilder as es } from \"@nextcloud/l10n/gettext\";\nconst A = async function(e, s, t, n = () => {\n}, i = void 0, o = {}) {\n  let l;\n  return s instanceof Blob ? l = s : l = await s(), i && (o.Destination = i), o[\"Content-Type\"] || (o[\"Content-Type\"] = \"application/octet-stream\"), await v.request({\n    method: \"PUT\",\n    url: e,\n    data: l,\n    signal: t,\n    onUploadProgress: n,\n    headers: o\n  });\n}, B = function(e, s, t) {\n  return s === 0 && e.size <= t ? Promise.resolve(new Blob([e], { type: e.type || \"application/octet-stream\" })) : Promise.resolve(new Blob([e.slice(s, s + t)], { type: \"application/octet-stream\" }));\n}, ts = async function(e = void 0) {\n  const s = j(`dav/uploads/${F()?.uid}`), n = `web-file-upload-${[...Array(16)].map(() => Math.floor(Math.random() * 16).toString(16)).join(\"\")}`, i = `${s}/${n}`, o = e ? { Destination: e } : void 0;\n  return await v.request({\n    method: \"MKCOL\",\n    url: i,\n    headers: o\n  }), i;\n}, x = function(e = void 0) {\n  const s = window.OC?.appConfig?.files?.max_chunk_size;\n  if (s <= 0)\n    return 0;\n  if (!Number(s))\n    return 10 * 1024 * 1024;\n  const t = Math.max(Number(s), 5 * 1024 * 1024);\n  return e === void 0 ? t : Math.max(t, Math.ceil(e / 1e4));\n};\nvar c = /* @__PURE__ */ ((e) => (e[e.INITIALIZED = 0] = \"INITIALIZED\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.ASSEMBLING = 2] = \"ASSEMBLING\", e[e.FINISHED = 3] = \"FINISHED\", e[e.CANCELLED = 4] = \"CANCELLED\", e[e.FAILED = 5] = \"FAILED\", e))(c || {});\nlet ns = class {\n  _source;\n  _file;\n  _isChunked;\n  _chunks;\n  _size;\n  _uploaded = 0;\n  _startTime = 0;\n  _status = 0;\n  _controller;\n  _response = null;\n  constructor(s, t = !1, n, i) {\n    const o = Math.min(x() > 0 ? Math.ceil(n / x()) : 1, 1e4);\n    this._source = s, this._isChunked = t && x() > 0 && o > 1, this._chunks = this._isChunked ? o : 1, this._size = n, this._file = i, this._controller = new AbortController();\n  }\n  get source() {\n    return this._source;\n  }\n  get file() {\n    return this._file;\n  }\n  get isChunked() {\n    return this._isChunked;\n  }\n  get chunks() {\n    return this._chunks;\n  }\n  get size() {\n    return this._size;\n  }\n  get startTime() {\n    return this._startTime;\n  }\n  set response(s) {\n    this._response = s;\n  }\n  get response() {\n    return this._response;\n  }\n  get uploaded() {\n    return this._uploaded;\n  }\n  /**\n   * Update the uploaded bytes of this upload\n   */\n  set uploaded(s) {\n    if (s >= this._size) {\n      this._status = this._isChunked ? 2 : 3, this._uploaded = this._size;\n      return;\n    }\n    this._status = 1, this._uploaded = s, this._startTime === 0 && (this._startTime = (/* @__PURE__ */ new Date()).getTime());\n  }\n  get status() {\n    return this._status;\n  }\n  /**\n   * Update this upload status\n   */\n  set status(s) {\n    this._status = s;\n  }\n  /**\n   * Returns the axios cancel token source\n   */\n  get signal() {\n    return this._controller.signal;\n  }\n  /**\n   * Cancel any ongoing requests linked to this upload\n   */\n  cancel() {\n    this._controller.abort(), this._status = 4;\n  }\n};\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst as = (e) => e === null ? _().setApp(\"uploader\").build() : _().setApp(\"uploader\").setUid(e.uid).build(), g = as(F());\nvar I = /* @__PURE__ */ ((e) => (e[e.IDLE = 0] = \"IDLE\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.PAUSED = 2] = \"PAUSED\", e))(I || {});\nclass N {\n  // Initialized via setter in the constructor\n  _destinationFolder;\n  _isPublic;\n  // Global upload queue\n  _uploadQueue = [];\n  _jobQueue = new V({ concurrency: 3 });\n  _queueSize = 0;\n  _queueProgress = 0;\n  _queueStatus = 0;\n  _notifiers = [];\n  /**\n   * Initialize uploader\n   *\n   * @param {boolean} isPublic are we in public mode ?\n   * @param {Folder} destinationFolder the context folder to operate, relative to the root folder\n   */\n  constructor(s = !1, t) {\n    if (this._isPublic = s, !t) {\n      const n = F()?.uid, i = j(`dav/files/${n}`);\n      if (!n)\n        throw new Error(\"User is not logged in\");\n      t = new z({\n        id: 0,\n        owner: n,\n        permissions: H.ALL,\n        root: `/files/${n}`,\n        source: i\n      });\n    }\n    this.destination = t, g.debug(\"Upload workspace initialized\", {\n      destination: this.destination,\n      root: this.root,\n      isPublic: s,\n      maxChunksSize: x()\n    });\n  }\n  /**\n   * Get the upload destination path relative to the root folder\n   */\n  get destination() {\n    return this._destinationFolder;\n  }\n  /**\n   * Set the upload destination path relative to the root folder\n   */\n  set destination(s) {\n    if (!s)\n      throw new Error(\"Invalid destination folder\");\n    g.debug(\"Destination set\", { folder: s }), this._destinationFolder = s;\n  }\n  /**\n   * Get the root folder\n   */\n  get root() {\n    return this._destinationFolder.source;\n  }\n  /**\n   * Get the upload queue\n   */\n  get queue() {\n    return this._uploadQueue;\n  }\n  reset() {\n    this._uploadQueue.splice(0, this._uploadQueue.length), this._jobQueue.clear(), this._queueSize = 0, this._queueProgress = 0, this._queueStatus = 0;\n  }\n  /**\n   * Pause any ongoing upload(s)\n   */\n  pause() {\n    this._jobQueue.pause(), this._queueStatus = 2;\n  }\n  /**\n   * Resume any pending upload(s)\n   */\n  start() {\n    this._jobQueue.start(), this._queueStatus = 1, this.updateStats();\n  }\n  /**\n   * Get the upload queue stats\n   */\n  get info() {\n    return {\n      size: this._queueSize,\n      progress: this._queueProgress,\n      status: this._queueStatus\n    };\n  }\n  updateStats() {\n    const s = this._uploadQueue.map((n) => n.size).reduce((n, i) => n + i, 0), t = this._uploadQueue.map((n) => n.uploaded).reduce((n, i) => n + i, 0);\n    this._queueSize = s, this._queueProgress = t, this._queueStatus !== 2 && (this._queueStatus = this._jobQueue.size > 0 ? 1 : 0);\n  }\n  addNotifier(s) {\n    this._notifiers.push(s);\n  }\n  /**\n   * Upload a file to the given path\n   * @param {string} destinationPath the destination path relative to the root folder. e.g. /foo/bar.txt\n   * @param {File} file the file to upload\n   * @param {string} root the root folder to upload to\n   */\n  upload(s, t, n) {\n    const i = `${n || this.root}/${s.replace(/^\\//, \"\")}`, { origin: o } = new URL(i), l = o + q(i.slice(o.length));\n    g.debug(`Uploading ${t.name} to ${l}`);\n    const f = x(t.size), r = f === 0 || t.size < f || this._isPublic, a = new ns(i, !r, t.size, t);\n    return this._uploadQueue.push(a), this.updateStats(), new Y(async (T, d, U) => {\n      if (U(a.cancel), r) {\n        g.debug(\"Initializing regular upload\", { file: t, upload: a });\n        const p = await B(t, 0, a.size), L = async () => {\n          try {\n            a.response = await A(\n              l,\n              p,\n              a.signal,\n              (m) => {\n                a.uploaded = a.uploaded + m.bytes, this.updateStats();\n              },\n              void 0,\n              {\n                \"X-OC-Mtime\": t.lastModified / 1e3,\n                \"Content-Type\": t.type\n              }\n            ), a.uploaded = a.size, this.updateStats(), g.debug(`Successfully uploaded ${t.name}`, { file: t, upload: a }), T(a);\n          } catch (m) {\n            if (m instanceof b) {\n              a.status = c.FAILED, d(\"Upload has been cancelled\");\n              return;\n            }\n            m?.response && (a.response = m.response), a.status = c.FAILED, g.error(`Failed uploading ${t.name}`, { error: m, file: t, upload: a }), d(\"Failed uploading the file\");\n          }\n          this._notifiers.forEach((m) => {\n            try {\n              m(a);\n            } catch {\n            }\n          });\n        };\n        this._jobQueue.add(L), this.updateStats();\n      } else {\n        g.debug(\"Initializing chunked upload\", { file: t, upload: a });\n        const p = await ts(l), L = [];\n        for (let m = 0; m < a.chunks; m++) {\n          const w = m * f, D = Math.min(w + f, a.size), W = () => B(t, w, f), O = () => A(\n            `${p}/${m + 1}`,\n            W,\n            a.signal,\n            () => this.updateStats(),\n            l,\n            {\n              \"X-OC-Mtime\": t.lastModified / 1e3,\n              \"OC-Total-Length\": t.size,\n              \"Content-Type\": \"application/octet-stream\"\n            }\n          ).then(() => {\n            a.uploaded = a.uploaded + f;\n          }).catch((h) => {\n            throw h?.response?.status === 507 ? (g.error(\"Upload failed, not enough space on the server or quota exceeded. Cancelling the remaining chunks\", { error: h, upload: a }), a.cancel(), a.status = c.FAILED, h) : (h instanceof b || (g.error(`Chunk ${m + 1} ${w} - ${D} uploading failed`, { error: h, upload: a }), a.cancel(), a.status = c.FAILED), h);\n          });\n          L.push(this._jobQueue.add(O));\n        }\n        try {\n          await Promise.all(L), this.updateStats(), a.response = await v.request({\n            method: \"MOVE\",\n            url: `${p}/.file`,\n            headers: {\n              \"X-OC-Mtime\": t.lastModified / 1e3,\n              \"OC-Total-Length\": t.size,\n              Destination: l\n            }\n          }), this.updateStats(), a.status = c.FINISHED, g.debug(`Successfully uploaded ${t.name}`, { file: t, upload: a }), T(a);\n        } catch (m) {\n          m instanceof b ? (a.status = c.FAILED, d(\"Upload has been cancelled\")) : (a.status = c.FAILED, d(\"Failed assembling the chunks together\")), v.request({\n            method: \"DELETE\",\n            url: `${p}`\n          });\n        }\n        this._notifiers.forEach((m) => {\n          try {\n            m(a);\n          } catch {\n          }\n        });\n      }\n      return this._jobQueue.onIdle().then(() => this.reset()), a;\n    });\n  }\n}\nfunction y(e, s, t, n, i, o, l, f) {\n  var r = typeof e == \"function\" ? e.options : e;\n  s && (r.render = s, r.staticRenderFns = t, r._compiled = !0), n && (r.functional = !0), o && (r._scopeId = \"data-v-\" + o);\n  var a;\n  if (l ? (a = function(d) {\n    d = d || // cached call\n    this.$vnode && this.$vnode.ssrContext || // stateful\n    this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !d && typeof __VUE_SSR_CONTEXT__ < \"u\" && (d = __VUE_SSR_CONTEXT__), i && i.call(this, d), d && d._registeredComponents && d._registeredComponents.add(l);\n  }, r._ssrRegister = a) : i && (a = f ? function() {\n    i.call(\n      this,\n      (r.functional ? this.parent : this).$root.$options.shadowRoot\n    );\n  } : i), a)\n    if (r.functional) {\n      r._injectStyles = a;\n      var S = r.render;\n      r.render = function(U, p) {\n        return a.call(p), S(U, p);\n      };\n    } else {\n      var T = r.beforeCreate;\n      r.beforeCreate = T ? [].concat(T, a) : [a];\n    }\n  return {\n    exports: e,\n    options: r\n  };\n}\nconst is = {\n  name: \"CancelIcon\",\n  emits: [\"click\"],\n  props: {\n    title: {\n      type: String\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n};\nvar ls = function() {\n  var s = this, t = s._self._c;\n  return t(\"span\", s._b({ staticClass: \"material-design-icon cancel-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n    return s.$emit(\"click\", n);\n  } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M12 2C17.5 2 22 6.5 22 12S17.5 22 12 22 2 17.5 2 12 6.5 2 12 2M12 4C10.1 4 8.4 4.6 7.1 5.7L18.3 16.9C19.3 15.5 20 13.8 20 12C20 7.6 16.4 4 12 4M16.9 18.3L5.7 7.1C4.6 8.4 4 10.1 4 12C4 16.4 7.6 20 12 20C13.9 20 15.6 19.4 16.9 18.3Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, rs = [], os = /* @__PURE__ */ y(\n  is,\n  ls,\n  rs,\n  !1,\n  null,\n  null,\n  null,\n  null\n);\nconst ms = os.exports, ds = {\n  name: \"PlusIcon\",\n  emits: [\"click\"],\n  props: {\n    title: {\n      type: String\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n};\nvar gs = function() {\n  var s = this, t = s._self._c;\n  return t(\"span\", s._b({ staticClass: \"material-design-icon plus-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n    return s.$emit(\"click\", n);\n  } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, us = [], cs = /* @__PURE__ */ y(\n  ds,\n  gs,\n  us,\n  !1,\n  null,\n  null,\n  null,\n  null\n);\nconst fs = cs.exports, ps = {\n  name: \"UploadIcon\",\n  emits: [\"click\"],\n  props: {\n    title: {\n      type: String\n    },\n    fillColor: {\n      type: String,\n      default: \"currentColor\"\n    },\n    size: {\n      type: Number,\n      default: 24\n    }\n  }\n};\nvar hs = function() {\n  var s = this, t = s._self._c;\n  return t(\"span\", s._b({ staticClass: \"material-design-icon upload-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n    return s.$emit(\"click\", n);\n  } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, Ts = [], ws = /* @__PURE__ */ y(\n  ps,\n  hs,\n  Ts,\n  !1,\n  null,\n  null,\n  null,\n  null\n);\nconst xs = ws.exports;\n/**\n * @copyright Copyright (c) 2023 Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst R = es().detectLocale();\n[{ locale: \"af\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"af\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: af\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ar\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Ali <alimahwer@yahoo.com>, 2024\", \"Language-Team\": \"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar\", \"Plural-Forms\": \"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nAli <alimahwer@yahoo.com>, 2024\n` }, msgstr: [`Last-Translator: Ali <alimahwer@yahoo.com>, 2024\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar\nPlural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} ملف متعارض\", \"{count} ملف متعارض\", \"{count} ملفان متعارضان\", \"{count} ملف متعارض\", \"{count} ملفات متعارضة\", \"{count} ملفات متعارضة\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} ملف متعارض في n {dirname}\", \"{count} ملف متعارض في n {dirname}\", \"{count} ملفان متعارضان في n {dirname}\", \"{count} ملف متعارض في n {dirname}\", \"{count} ملفات متعارضة في n {dirname}\", \"{count} ملفات متعارضة في n {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} ثانية متبقية\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} متبقية\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"باقٍ بضعُ ثوانٍ\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"إلغاء\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"إلغِ العملية بالكامل\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"إلغاء عمليات رفع الملفات\"] }, Continue: { msgid: \"Continue\", msgstr: [\"إستمر\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تقدير الوقت المتبقي\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"الإصدار الحالي\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"إذا اخترت الإبقاء على النسختين معاً، فإن الملف المنسوخ سيتم إلحاق رقم تسلسلي في نهاية اسمه.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"تاريخ آخر تعديل غير معلوم\"] }, New: { msgid: \"New\", msgstr: [\"جديد\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"نسخة جديدة\"] }, paused: { msgid: \"paused\", msgstr: [\"مُجمَّد\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"معاينة الصورة\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"حدِّد كل صناديق الخيارات\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"حدِّد كل الملفات الموجودة\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"حدِّد كل الملفات الجديدة\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"حجم غير معلوم\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"تمَّ إلغاء الرفع\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"رفع ملفات\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"تقدُّم الرفع \"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"عند تحديد مجلد وارد، أي ملفات متعارضة بداخله ستتم الكتابة فوقها.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"أيُّ الملفات ترغب في الإبقاء عليها؟\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"يجب أن تختار نسخة واحدة على الأقل من كل ملف للاستمرار.\"] } } } } }, { locale: \"ar_SA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar_SA\", \"Plural-Forms\": \"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar_SA\nPlural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ast\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"enolp <enolp@softastur.org>, 2023\", \"Language-Team\": \"Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ast\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nenolp <enolp@softastur.org>, 2023\n` }, msgstr: [`Last-Translator: enolp <enolp@softastur.org>, 2023\nLanguage-Team: Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ast\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} ficheru en coflictu\", \"{count} ficheros en coflictu\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} ficheru en coflictu en {dirname}\", \"{count} ficheros en coflictu en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Queden {seconds} segundos\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Tiempu que queda: {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"queden unos segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Encaboxar les xubes\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Siguir\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando'l tiempu que falta\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión esistente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si seleiciones dambes versiones, el ficheru copiáu va tener un númberu amestáu al so nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"La data de la última modificación ye desconocida\"] }, New: { msgid: \"New\", msgstr: [\"Nuevu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Versión nueva\"] }, paused: { msgid: \"paused\", msgstr: [\"en posa\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Previsualizar la imaxe\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marcar toles caxelles\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleicionar tolos ficheros esistentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleicionar tolos ficheros nuevos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Saltar esti ficheru\", \"Saltar {count} ficheros\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamañu desconocíu\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Encaboxóse la xuba\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Xubir ficheros\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Xuba en cursu\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"¿Qué ficheros quies caltener?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Tienes de seleicionar polo menos una versión de cada ficheru pa siguir.\"] } } } } }, { locale: \"az\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rashad Aliyev <microphprashad@gmail.com>, 2023\", \"Language-Team\": \"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"az\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRashad Aliyev <microphprashad@gmail.com>, 2023\n` }, msgstr: [`Last-Translator: Rashad Aliyev <microphprashad@gmail.com>, 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: az\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniyə qalıb\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} qalıb\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir neçə saniyə qalıb\"] }, Add: { msgid: \"Add\", msgstr: [\"Əlavə et\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yükləməni imtina et\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Təxmini qalan vaxt\"] }, paused: { msgid: \"paused\", msgstr: [\"pauzadadır\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Faylları yüklə\"] } } } } }, { locale: \"be\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"be\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: be\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bg_BG\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bg_BG\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bg_BG\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bn_BD\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bn_BD\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bn_BD\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"br\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"br\", \"Plural-Forms\": \"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bs\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bs\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ca\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\", \"Language-Team\": \"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ca\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMarc Riera <marcriera@softcatala.org>, 2022\nToni Hermoso Pulido <toniher@softcatala.cat>, 2022\n` }, msgstr: [`Last-Translator: Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Queden {seconds} segons\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Queden {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Queden uns segons\"] }, Add: { msgid: \"Add\", msgstr: [\"Afegeix\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel·la les pujades\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"S'està estimant el temps restant\"] }, paused: { msgid: \"paused\", msgstr: [\"En pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Puja els fitxers\"] } } } } }, { locale: \"cs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Pavel Borecki <pavel.borecki@gmail.com>, 2022\", \"Language-Team\": \"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPavel Borecki <pavel.borecki@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2022\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Přidat\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhadovaný zbývající čas\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] } } } } }, { locale: \"cs_CZ\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Michal Šmahel <ceskyDJ@seznam.cz>, 2024\", \"Language-Team\": \"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs_CZ\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMichal Šmahel <ceskyDJ@seznam.cz>, 2024\n` }, msgstr: [`Last-Translator: Michal Šmahel <ceskyDJ@seznam.cz>, 2024\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} kolize souborů\", \"{count} kolize souborů\", \"{count} kolizí souborů\", \"{count} kolize souborů\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} kolize souboru v {dirname}\", \"{count} kolize souboru v {dirname}\", \"{count} kolizí souborů v {dirname}\", \"{count} kolize souboru v {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Zrušit\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Zrušit celou operaci\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Pokračovat\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhaduje se zbývající čas\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Existující verze\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Pokud vyberete obě verze, zkopírovaný soubor bude mít k názvu přidáno číslo.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Neznámé datum poslední úpravy\"] }, New: { msgid: \"New\", msgstr: [\"Nové\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nová verze\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Náhled obrázku\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Označit všechny zaškrtávací kolonky\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Vybrat veškeré stávající soubory\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Vybrat veškeré nové soubory\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Přeskočit tento soubor\", \"Přeskočit {count} soubory\", \"Přeskočit {count} souborů\", \"Přeskočit {count} soubory\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Neznámá velikost\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Nahrávání zrušeno\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Nahrát soubory\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Postup v nahrávání\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Po výběru příchozí složky budou rovněž přepsány všechny v ní obsažené konfliktní soubory\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Které soubory si přejete ponechat?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Aby bylo možné pokračovat, je třeba vybrat alespoň jednu verzi od každého souboru.\"] } } } } }, { locale: \"cy_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cy_GB\", \"Plural-Forms\": \"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cy_GB\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"da\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Martin Bonde <Martin@maboni.dk>, 2024\", \"Language-Team\": \"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"da\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMartin Bonde <Martin@maboni.dk>, 2024\n` }, msgstr: [`Last-Translator: Martin Bonde <Martin@maboni.dk>, 2024\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} fil konflikt\", \"{count} filer i konflikt\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} fil konflikt i {dirname}\", \"{count} filer i konflikt i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{sekunder} sekunder tilbage\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{tid} tilbage\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"et par sekunder tilbage\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Annuller\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Annuller hele handlingen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuller uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsæt\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimering af resterende tid\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Eksisterende version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Hvis du vælger begge versioner vil den kopierede fil få et nummer tilføjet til sit navn.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Sidste modifikationsdato ukendt\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny version\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forhåndsvisning af billede\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Vælg alle felter\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Vælg alle eksisterende filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Vælg alle nye filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Spring denne fil over\", \"Spring {count} filer over\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukendt størrelse\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Upload annulleret\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Upload fremskridt\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Når en indgående mappe er valgt, vil alle modstridende filer i den også blive overskrevet.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvilke filer ønsker du at beholde?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du skal vælge mindst én version af hver fil for at fortsætte.\"] } } } } }, { locale: \"de\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mario Siegmann <mario_siegmann@web.de>, 2024\", \"Language-Team\": \"German (https://app.transifex.com/nextcloud/teams/64236/de/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n` }, msgstr: [`Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Datei-Konflikt\", \"{count} Datei-Konflikte\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} Datei-Konflikt in {dirname}\", \"{count} Datei-Konflikte in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleibend\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noch ein paar Sekunden\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Abbrechen\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Den gesamten Vorgang abbrechen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsetzen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Vorhandene Version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Wenn du beide Versionen auswählst, wird der kopierten Datei eine Nummer zum Namen hinzugefügt.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Datum der letzten Änderung unbekannt\"] }, New: { msgid: \"New\", msgstr: [\"Neu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Neue Version\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vorschaubild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Alle Kontrollkästchen aktivieren\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Alle vorhandenen Dateien auswählen\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Alle neuen Dateien auswählen\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Diese Datei überspringen\", \"{count} Dateien überspringen\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unbekannte Größe\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hochladen abgebrochen\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fortschritt beim Hochladen\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Welche Dateien möchtest du behalten?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du musst mindestens eine Version jeder Datei auswählen, um fortzufahren.\"] } } } } }, { locale: \"de_DE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mario Siegmann <mario_siegmann@web.de>, 2024\", \"Language-Team\": \"German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de_DE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n` }, msgstr: [`Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Datei-Konflikt\", \"{count} Datei-Konflikte\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} Datei-Konflikt in {dirname}\", \"{count} Datei-Konflikte in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleiben\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"ein paar Sekunden verbleiben\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Abbrechen\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Den gesamten Vorgang abbrechen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsetzen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Vorhandene Version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Wenn Sie beide Versionen auswählen, wird der kopierten Datei eine Nummer zum Namen hinzugefügt.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Datum der letzten Änderung unbekannt\"] }, New: { msgid: \"New\", msgstr: [\"Neu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Neue Version\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vorschaubild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Alle Kontrollkästchen aktivieren\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Alle vorhandenen Dateien auswählen\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Alle neuen Dateien auswählen\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"{count} Datei überspringen\", \"{count} Dateien überspringen\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unbekannte Größe\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hochladen abgebrochen\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fortschritt beim Hochladen\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Welche Dateien möchten Sie behalten?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Sie müssen mindestens eine Version jeder Datei auswählen, um fortzufahren.\"] } } } } }, { locale: \"el\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Nik Pap, 2022\", \"Language-Team\": \"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nNik Pap, 2022\n` }, msgstr: [`Last-Translator: Nik Pap, 2022\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"απομένουν {seconds} δευτερόλεπτα\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"απομένουν {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"απομένουν λίγα δευτερόλεπτα\"] }, Add: { msgid: \"Add\", msgstr: [\"Προσθήκη\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ακύρωση μεταφορτώσεων\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"εκτίμηση του χρόνου που απομένει\"] }, paused: { msgid: \"paused\", msgstr: [\"σε παύση\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Μεταφόρτωση αρχείων\"] } } } } }, { locale: \"el_GR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el_GR\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el_GR\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"en_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Andi Chandler <andi@gowling.com>, 2023\", \"Language-Team\": \"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"en_GB\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAndi Chandler <andi@gowling.com>, 2023\n` }, msgstr: [`Last-Translator: Andi Chandler <andi@gowling.com>, 2023\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: en_GB\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file conflict\", \"{count} files conflict\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file conflict in {dirname}\", \"{count} file conflicts in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} seconds left\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} left\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"a few seconds left\"] }, Add: { msgid: \"Add\", msgstr: [\"Add\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continue\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimating time left\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Existing version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"If you select both versions, the copied file will have a number added to its name.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Last modified date unknown\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"New version\"] }, paused: { msgid: \"paused\", msgstr: [\"paused\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Preview image\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Select all checkboxes\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Select all existing files\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Select all new files\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Skip this file\", \"Skip {count} files\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unknown size\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Upload cancelled\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload files\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Which files do you want to keep?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"You need to select at least one version of each file to continue.\"] } } } } }, { locale: \"eo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Julio C. Ortega, 2024\", \"Language-Team\": \"Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nFranciscoFJ <dev-ooo@satel-sa.com>, 2023\nNext Cloud <nextcloud.translator.es@cgj.es>, 2023\nJulio C. Ortega, 2024\n` }, msgstr: [`Last-Translator: Julio C. Ortega, 2024\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} archivo en conflicto\", \"{count} archivos en conflicto\", \"{count} archivos en conflicto\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} archivo en conflicto en {dirname}\", \"{count} archivos en conflicto en {dirname}\", \"{count} archivos en conflicto en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si selecciona ambas versiones, al archivo copiado se le añadirá un número en el nombre.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Última fecha de modificación desconocida\"] }, New: { msgid: \"New\", msgstr: [\"Nuevo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nueva versión\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Previsualizar imagen\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Seleccionar todas las casillas de verificación\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleccionar todos los archivos existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleccionar todos los archivos nuevos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Saltar este archivo\", \"Saltar {count} archivos\", \"Saltar {count} archivos\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamaño desconocido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Subida cancelada\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progreso de la subida\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"¿Qué archivos desea conservar?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Debe seleccionar al menos una versión de cada archivo para continuar.\"] } } } } }, { locale: \"es_419\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_419\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_419\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_AR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matias Iglesias, 2022\", \"Language-Team\": \"Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_AR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatias Iglesias, 2022\n` }, msgstr: [`Last-Translator: Matias Iglesias, 2022\nLanguage-Team: Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_AR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Añadir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_CL\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CL\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CL\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_DO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_DO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_DO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_EC\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_EC\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_EC\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_GT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_GT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_GT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_HN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_HN\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_HN\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_MX\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_MX\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nLuis Francisco Castro, 2022\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_MX\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"cancelar las cargas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"en pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"cargar archivos\"] } } } } }, { locale: \"es_NI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_NI\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_NI\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PA\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PA\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PE\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PE\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_SV\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_SV\", \"Plural-Forms\": \"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_SV\nPlural-Forms: nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_UY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_UY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_UY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"et_EE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Taavo Roos, 2023\", \"Language-Team\": \"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"et_EE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMait R, 2022\nTaavo Roos, 2023\n` }, msgstr: [`Last-Translator: Taavo Roos, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: et_EE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} jäänud sekundid\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} aega jäänud\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"jäänud mõni sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisa\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Tühista üleslaadimine\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hinnanguline järelejäänud aeg\"] }, paused: { msgid: \"paused\", msgstr: [\"pausil\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lae failid üles\"] } } } } }, { locale: \"eu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\", \"Language-Team\": \"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nUnai Tolosa Pontesta <utolosa002@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundo geratzen dira\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} geratzen da\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"segundo batzuk geratzen dira\"] }, Add: { msgid: \"Add\", msgstr: [\"Gehitu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ezeztatu igoerak\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"kalkulatutako geratzen den denbora\"] }, paused: { msgid: \"paused\", msgstr: [\"geldituta\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Igo fitxategiak\"] } } } } }, { locale: \"fa\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Fatemeh Komeily, 2023\", \"Language-Team\": \"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fa\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nFatemeh Komeily, 2023\n` }, msgstr: [`Last-Translator: Fatemeh Komeily, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fa\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"ثانیه های باقی مانده\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"باقی مانده\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"چند ثانیه مانده\"] }, Add: { msgid: \"Add\", msgstr: [\"اضافه کردن\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"کنسل کردن فایل های اپلود شده\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تخمین زمان باقی مانده\"] }, paused: { msgid: \"paused\", msgstr: [\"مکث کردن\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"بارگذاری فایل ها\"] } } } } }, { locale: \"fi_FI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\", \"Language-Team\": \"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fi_FI\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJiri Grönroos <jiri.gronroos@iki.fi>, 2022\n` }, msgstr: [`Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekuntia jäljellä\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} jäljellä\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"muutama sekunti jäljellä\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisää\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Peruuta lähetykset\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"arvioidaan jäljellä olevaa aikaa\"] }, paused: { msgid: \"paused\", msgstr: [\"keskeytetty\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lähetä tiedostoja\"] } } } } }, { locale: \"fo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"fr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"jed boulahya, 2024\", \"Language-Team\": \"French (https://app.transifex.com/nextcloud/teams/64236/fr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fr\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nBenoit Pruneau, 2024\njed boulahya, 2024\n` }, msgstr: [`Last-Translator: jed boulahya, 2024\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} fichier en conflit\", \"{count} fichiers en conflit\", \"{count} fichiers en conflit\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} fichier en conflit dans {dirname}\", \"{count} fichiers en conflit dans {dirname}\", \"{count} fichiers en conflit dans {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondes restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restant\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quelques secondes restantes\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Annuler\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Annuler l'opération entière\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuler les envois\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuer\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimation du temps restant\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Version existante\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si vous sélectionnez les deux versions, le fichier copié aura un numéro ajouté àname.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Date de la dernière modification est inconnue\"] }, New: { msgid: \"New\", msgstr: [\"Nouveau\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nouvelle version\"] }, paused: { msgid: \"paused\", msgstr: [\"en pause\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Aperçu de l'image\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Sélectionner toutes les cases à cocher\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Sélectionner tous les fichiers existants\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Sélectionner tous les nouveaux fichiers\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Ignorer ce fichier\", \"Ignorer {count} fichiers\", \"Ignorer {count} fichiers\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Taille inconnue\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\" annulé\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Téléchargement des fichiers\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progression du téléchargement\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Lorsqu'un dossier entrant est sélectionné, tous les fichiers en conflit qu'il contient seront également écrasés.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quels fichiers souhaitez-vous conserver ?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Vous devez sélectionner au moins une version de chaque fichier pour continuer.\"] } } } } }, { locale: \"gd\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gd\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gd\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"gl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\", \"Language-Team\": \"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nNacho <nacho.vfranco@gmail.com>, 2023\nMiguel Anxo Bouzada <mbouzada@gmail.com>, 2023\n` }, msgstr: [`Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} conflito de ficheiros\", \"{count} conflitos de ficheiros\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} conflito de ficheiros en {dirname}\", \"{count} conflitos de ficheiros en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltan {seconds} segundos\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"falta {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltan uns segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envíos\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calculando canto tempo falta\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se selecciona ambas as versións, o ficheiro copiado terá un número engadido ao seu nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Data da última modificación descoñecida\"] }, New: { msgid: \"New\", msgstr: [\"Nova\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nova versión\"] }, paused: { msgid: \"paused\", msgstr: [\"detido\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vista previa da imaxe\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marcar todas as caixas de selección\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleccionar todos os ficheiros existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleccionar todos os ficheiros novos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Omita este ficheiro\", \"Omitir {count} ficheiros\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamaño descoñecido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Envío cancelado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progreso do envío\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Que ficheiros quere conservar?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Debe seleccionar polo menos unha versión de cada ficheiro para continuar.\"] } } } } }, { locale: \"he\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"he\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hi_IN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hi_IN\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hi_IN\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hr\", \"Plural-Forms\": \"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hr\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hsb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hsb\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hsb\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu_HU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Balázs Úr, 2022\", \"Language-Team\": \"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu_HU\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBalázs Meskó <meskobalazs@mailbox.org>, 2022\nBalázs Úr, 2022\n` }, msgstr: [`Last-Translator: Balázs Úr, 2022\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{} másodperc van hátra\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} van hátra\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"pár másodperc van hátra\"] }, Add: { msgid: \"Add\", msgstr: [\"Hozzáadás\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Feltöltések megszakítása\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hátralévő idő becslése\"] }, paused: { msgid: \"paused\", msgstr: [\"szüneteltetve\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Fájlok feltöltése\"] } } } } }, { locale: \"hy\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hy\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hy\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ia\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ia\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ia\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"id\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Linerly <linerly@proton.me>, 2023\", \"Language-Team\": \"Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"id\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nEmpty Slot Filler, 2023\nLinerly <linerly@proton.me>, 2023\n` }, msgstr: [`Last-Translator: Linerly <linerly@proton.me>, 2023\nLanguage-Team: Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: id\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} berkas berkonflik\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} berkas berkonflik dalam {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} detik tersisa\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} tersisa\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"tinggal sebentar lagi\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Batalkan unggahan\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Lanjutkan\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"memperkirakan waktu yang tersisa\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versi yang ada\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Jika Anda memilih kedua versi, nama berkas yang disalin akan ditambahi angka.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Tanggal perubahan terakhir tidak diketahui\"] }, New: { msgid: \"New\", msgstr: [\"Baru\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Versi baru\"] }, paused: { msgid: \"paused\", msgstr: [\"dijeda\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Gambar pratinjau\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Pilih semua kotak centang\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Pilih semua berkas yang ada\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Pilih semua berkas baru\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Lewati {count} berkas\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukuran tidak diketahui\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Unggahan dibatalkan\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Unggah berkas\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Berkas mana yang Anda ingin tetap simpan?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Anda harus memilih setidaknya satu versi dari masing-masing berkas untuk melanjutkan.\"] } } } } }, { locale: \"ig\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ig\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ig\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"is\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Sveinn í Felli <sv1@fellsnet.is>, 2023\", \"Language-Team\": \"Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"is\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nSveinn í Felli <sv1@fellsnet.is>, 2023\n` }, msgstr: [`Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2023\nLanguage-Team: Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} árekstur skráa\", \"{count} árekstrar skráa\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} árekstur skráa í {dirname}\", \"{count} árekstrar skráa í {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekúndur eftir\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} eftir\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"nokkrar sekúndur eftir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hætta við innsendingar\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Halda áfram\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"áætla tíma sem eftir er\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Fyrirliggjandi útgáfa\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Ef þú velur báðar útgáfur, þá mun verða bætt tölustaf aftan við heiti afrituðu skrárinnar.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Síðasta breytingadagsetning er óþekkt\"] }, New: { msgid: \"New\", msgstr: [\"Nýtt\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ný útgáfa\"] }, paused: { msgid: \"paused\", msgstr: [\"í bið\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forskoðun myndar\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Velja gátreiti\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Velja allar fyrirliggjandi skrár\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Velja allar nýjar skrár\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Sleppa þessari skrá\", \"Sleppa {count} skrám\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Óþekkt stærð\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hætt við innsendingu\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Senda inn skrár\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvaða skrám vilt þú vilt halda eftir?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Þú verður að velja að minnsta kosti eina útgáfu af hverri skrá til að halda áfram.\"] } } } } }, { locale: \"it\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Random_R, 2023\", \"Language-Team\": \"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nLep Lep, 2023\nRandom_R, 2023\n` }, msgstr: [`Last-Translator: Random_R, 2023\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file in conflitto\", \"{count} file in conflitto\", \"{count} file in conflitto\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file in conflitto in {dirname}\", \"{count} file in conflitto in {dirname}\", \"{count} file in conflitto in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondi rimanenti \"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} rimanente\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alcuni secondi rimanenti\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annulla i caricamenti\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continua\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calcolo il tempo rimanente\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versione esistente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se selezioni entrambe le versioni, nel nome del file copiato verrà aggiunto un numero \"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Ultima modifica sconosciuta\"] }, New: { msgid: \"New\", msgstr: [\"Nuovo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nuova versione\"] }, paused: { msgid: \"paused\", msgstr: [\"pausa\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Anteprima immagine\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Seleziona tutte le caselle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleziona tutti i file esistenti\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleziona tutti i nuovi file\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Salta questo file\", \"Salta {count} file\", \"Salta {count} file\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Dimensione sconosciuta\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Caricamento cancellato\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Carica i file\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quali file vuoi mantenere?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Devi selezionare almeno una versione di ogni file per continuare\"] } } } } }, { locale: \"it_IT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it_IT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it_IT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ja_JP\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"かたかめ, 2022\", \"Language-Team\": \"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ja_JP\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nT.S, 2022\nかたかめ, 2022\n` }, msgstr: [`Last-Translator: かたかめ, 2022\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"残り {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"残り {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"残り数秒\"] }, Add: { msgid: \"Add\", msgstr: [\"追加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"アップロードをキャンセル\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"概算残り時間\"] }, paused: { msgid: \"paused\", msgstr: [\"一時停止中\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"ファイルをアップデート\"] } } } } }, { locale: \"ka\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ka_GE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka_GE\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka_GE\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kab\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ZiriSut, 2023\", \"Language-Team\": \"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kab\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nZiriSut, 2023\n` }, msgstr: [`Last-Translator: ZiriSut, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kab\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} tesdatin i d-yeqqimen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} i d-yeqqimen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"qqiment-d kra n tesdatin kan\"] }, Add: { msgid: \"Add\", msgstr: [\"Rnu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Sefsex asali\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"asizel n wakud i d-yeqqimen\"] }, paused: { msgid: \"paused\", msgstr: [\"yeḥbes\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Sali-d ifuyla\"] } } } } }, { locale: \"kk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kk\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kk\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"km\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"km\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: km\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kn\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kn\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ko\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Brandon Han, 2024\", \"Language-Team\": \"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ko\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nhosun Lee, 2023\nBrandon Han, 2024\n` }, msgstr: [`Last-Translator: Brandon Han, 2024\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ko\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count}개의 파일이 충돌함\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname}에서 {count}개의 파일이 충돌함\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} 남음\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} 남음\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"곧 완료\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"업로드 취소\"] }, Continue: { msgid: \"Continue\", msgstr: [\"확인\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"남은 시간 계산\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"현재 버전\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"두 버전을 모두 선택할 경우, 복제된 파일 이름에 숫자가 추가됩니다.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"최근 수정일 알 수 없음\"] }, New: { msgid: \"New\", msgstr: [\"새로 만들기\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"새 버전\"] }, paused: { msgid: \"paused\", msgstr: [\"일시정지됨\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"미리보기 이미지\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"모든 체크박스 선택\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"모든 파일 선택\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"모든 새 파일 선택\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"{count}개의 파일 넘기기\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"크기를 알 수 없음\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"업로드 취소됨\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"파일 업로드\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"업로드 진행도\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"어떤 파일을 보존하시겠습니까?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"계속하기 위해서는 한 파일에 최소 하나의 버전을 선택해야 합니다.\"] } } } } }, { locale: \"la\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"la\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: la\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lb\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lb\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lo\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lo\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lt_LT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lt_LT\", \"Plural-Forms\": \"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lv\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"mk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Сашко Тодоров <sasetodorov@gmail.com>, 2022\", \"Language-Team\": \"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mk\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nСашко Тодоров <sasetodorov@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Сашко Тодоров <sasetodorov@gmail.com>, 2022\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостануваат {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"преостанува {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"уште неколку секунди\"] }, Add: { msgid: \"Add\", msgstr: [\"Додади\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Прекини прикачување\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"приближно преостанато време\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Прикачување датотеки\"] } } } } }, { locale: \"mn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"BATKHUYAG Ganbold, 2023\", \"Language-Team\": \"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBATKHUYAG Ganbold, 2023\n` }, msgstr: [`Last-Translator: BATKHUYAG Ganbold, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} секунд үлдсэн\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} үлдсэн\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"хэдхэн секунд үлдсэн\"] }, Add: { msgid: \"Add\", msgstr: [\"Нэмэх\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Илгээлтийг цуцлах\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Үлдсэн хугацааг тооцоолж байна\"] }, paused: { msgid: \"paused\", msgstr: [\"түр зогсоосон\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Файл илгээх\"] } } } } }, { locale: \"mr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mr\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mr\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ms_MY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ms_MY\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ms_MY\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"my\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"my\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: my\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nb_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Syvert Fossdal, 2024\", \"Language-Team\": \"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nb_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nSyvert Fossdal, 2024\n` }, msgstr: [`Last-Translator: Syvert Fossdal, 2024\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file conflict\", \"{count} filkonflikter\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file conflict in {dirname}\", \"{count} filkonflikter i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder igjen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} igjen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noen få sekunder igjen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt opplastninger\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsett\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Estimerer tid igjen\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Gjeldende versjon\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Hvis du velger begge versjoner, vil den kopierte filen få et tall lagt til navnet.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Siste gang redigert ukjent\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny versjon\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forhåndsvis bilde\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Velg alle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Velg alle eksisterende filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Velg alle nye filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Skip this file\", \"Hopp over {count} filer\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukjent størrelse\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Opplasting avbrutt\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Last opp filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fremdrift, opplasting\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvilke filer vil du beholde?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du må velge minst en versjon av hver fil for å fortsette.\"] } } } } }, { locale: \"ne\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ne\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ne\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rico <rico-schwab@hotmail.com>, 2023\", \"Language-Team\": \"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRico <rico-schwab@hotmail.com>, 2023\n` }, msgstr: [`Last-Translator: Rico <rico-schwab@hotmail.com>, 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Nog {seconds} seconden\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{seconds} over\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Nog een paar seconden\"] }, Add: { msgid: \"Add\", msgstr: [\"Voeg toe\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Uploads annuleren\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Schatting van de resterende tijd\"] }, paused: { msgid: \"paused\", msgstr: [\"Gepauzeerd\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload bestanden\"] } } } } }, { locale: \"nn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nn_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"oc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"oc\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Valdnet, 2024\", \"Language-Team\": \"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pl\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nM H <haincu@o2.pl>, 2023\nValdnet, 2024\n` }, msgstr: [`Last-Translator: Valdnet, 2024\nLanguage-Team: Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"konflikt 1 pliku\", \"{count} konfliktów plików\", \"{count} konfliktów plików\", \"{count} konfliktów plików\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} konfliktowy plik w {dirname}\", \"{count} konfliktowych plików w {dirname}\", \"{count} konfliktowych plików w {dirname}\", \"{count} konfliktowych plików w {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Pozostało {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Pozostało {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Pozostało kilka sekund\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anuluj wysyłanie\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Kontynuuj\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Szacowanie pozostałego czasu\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Istniejąca wersja\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Jeżeli wybierzesz obie wersje to do nazw skopiowanych plików zostanie dodany numer\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Nieznana data ostatniej modyfikacji\"] }, New: { msgid: \"New\", msgstr: [\"Nowy\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nowa wersja\"] }, paused: { msgid: \"paused\", msgstr: [\"Wstrzymane\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Podgląd obrazu\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Zaznacz wszystkie boxy\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Zaznacz wszystkie istniejące pliki\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Zaznacz wszystkie nowe pliki\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Pomiń 1 plik\", \"Pomiń {count} plików\", \"Pomiń {count} plików\", \"Pomiń {count} plików\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Nieznany rozmiar\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Anulowano wysyłanie\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Wyślij pliki\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Postęp wysyłania\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Które pliki chcesz zachować\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Aby kontynuować, musisz wybrać co najmniej jedną wersję każdego pliku.\"] } } } } }, { locale: \"ps\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ps\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ps\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pt_BR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\", \"Language-Team\": \"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_BR\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nLeonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\n` }, msgstr: [`Last-Translator: Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} arquivos em conflito\", \"{count} arquivos em conflito\", \"{count} arquivos em conflito\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} conflitos de arquivo em {dirname}\", \"{count} conflitos de arquivo em {dirname}\", \"{count} conflitos de arquivo em {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alguns segundos restantes\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Cancelar\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Cancelar a operação inteira\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tempo restante\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versão existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se você selecionar ambas as versões, o arquivo copiado terá um número adicionado ao seu nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Data da última modificação desconhecida\"] }, New: { msgid: \"New\", msgstr: [\"Novo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nova versão\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Visualizar imagem\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marque todas as caixas de seleção\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Selecione todos os arquivos existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Selecione todos os novos arquivos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Ignorar {count} arquivos\", \"Ignorar {count} arquivos\", \"Ignorar {count} arquivos\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamanho desconhecido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Envio cancelado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar arquivos\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Envio em progresso\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Quando uma pasta é selecionada, quaisquer arquivos dentro dela também serão sobrescritos.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quais arquivos você deseja manter?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Você precisa selecionar pelo menos uma versão de cada arquivo para continuar.\"] } } } } }, { locale: \"pt_PT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Manuela Silva <mmsrs@sky.com>, 2022\", \"Language-Team\": \"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_PT\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nManuela Silva <mmsrs@sky.com>, 2022\n` }, msgstr: [`Last-Translator: Manuela Silva <mmsrs@sky.com>, 2022\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltam {seconds} segundo(s)\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"faltam {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltam uns segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Adicionar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envios\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"tempo em falta estimado\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] } } } } }, { locale: \"ro\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\", \"Language-Team\": \"Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ro\", \"Plural-Forms\": \"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMădălin Vasiliu <contact@madalinvasiliu.com>, 2022\n` }, msgstr: [`Last-Translator: Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\nLanguage-Team: Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ro\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secunde rămase\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} rămas\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"câteva secunde rămase\"] }, Add: { msgid: \"Add\", msgstr: [\"Adaugă\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anulați încărcările\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimarea timpului rămas\"] }, paused: { msgid: \"paused\", msgstr: [\"pus pe pauză\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Încarcă fișiere\"] } } } } }, { locale: \"ru\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Александр, 2023\", \"Language-Team\": \"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMax Smith <sevinfolds@gmail.com>, 2023\nАлександр, 2023\n` }, msgstr: [`Last-Translator: Александр, 2023\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"конфликт {count} файла\", \"конфликт {count} файлов\", \"конфликт {count} файлов\", \"конфликт {count} файлов\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"конфликт {count} файла в {dirname}\", \"конфликт {count} файлов в {dirname}\", \"конфликт {count} файлов в {dirname}\", \"конфликт {count} файлов в {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"осталось {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"осталось {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"осталось несколько секунд\"] }, Add: { msgid: \"Add\", msgstr: [\"Добавить\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Отменить загрузки\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Продолжить\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"оценка оставшегося времени\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Текущая версия\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Если вы выберете обе версии, к имени скопированного файла будет добавлен номер.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Дата последнего изменения неизвестна\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Новая версия\"] }, paused: { msgid: \"paused\", msgstr: [\"приостановлено\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Предварительный просмотр\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Установить все флажки\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Выбрать все существующие файлы\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Выбрать все новые файлы\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Пропустить файл\", \"Пропустить {count} файла\", \"Пропустить {count} файлов\", \"Пропустить {count} файлов\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Неизвестный размер\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Загрузка отменена\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Загрузка файлов\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Какие файлы вы хотите сохранить?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Для продолжения вам нужно выбрать по крайней мере одну версию каждого файла.\"] } } } } }, { locale: \"ru_RU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru_RU\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru_RU\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sc\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sc\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sk_SK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sk_SK\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matej Urbančič <>, 2022\", \"Language-Team\": \"Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatej Urbančič <>, 2022\n` }, msgstr: [`Last-Translator: Matej Urbančič <>, 2022\nLanguage-Team: Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"še {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"še {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"še nekaj sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Dodaj\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Prekliči pošiljanje\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"ocenjen čas do konca\"] }, paused: { msgid: \"paused\", msgstr: [\"v premoru\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Pošlji datoteke\"] } } } } }, { locale: \"sl_SI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl_SI\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl_SI\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sq\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sq\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sq\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Иван Пешић, 2023\", \"Language-Team\": \"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nИван Пешић, 2023\n` }, msgstr: [`Last-Translator: Иван Пешић, 2023\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} фајл конфликт\", \"{count} фајл конфликта\", \"{count} фајл конфликта\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} фајл конфликт у {dirname}\", \"{count} фајл конфликта у {dirname}\", \"{count} фајл конфликта у {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостало је {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} преостало\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"преостало је неколико секунди\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Обустави отпремања\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Настави\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"процена преосталог времена\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Постојећа верзија\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Ако изаберете обе верзије, на име копираног фајла ће се додати број.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Није познат датум последње измене\"] }, New: { msgid: \"New\", msgstr: [\"Ново\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Нова верзија\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Слика прегледа\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Штиклирај сва поља за штиклирање\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Изабери све постојеће фајлове\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Изабери све нове фајлове\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Прескочи овај фајл\", \"Прескочи {count} фајла\", \"Прескочи {count} фајлова\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Непозната величина\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Отпремање је отказано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Отпреми фајлове\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Напредак отпремања\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Које фајлове желите да задржите?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Морате да изаберете барем једну верзију сваког фајла да наставите.\"] } } } } }, { locale: \"sr@latin\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr@latin\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr@latin\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Magnus Höglund, 2024\", \"Language-Team\": \"Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sv\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMagnus Höglund, 2024\n` }, msgstr: [`Last-Translator: Magnus Höglund, 2024\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} filkonflikt\", \"{count} filkonflikter\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} filkonflikt i {dirname}\", \"{count} filkonflikter i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder kvarstår\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} kvarstår\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"några sekunder kvar\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Avbryt\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Avbryt hela operationen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt uppladdningar\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsätt\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"uppskattar kvarstående tid\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Nuvarande version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Om du väljer båda versionerna kommer den kopierade filen att få ett nummer tillagt  i namnet.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Senaste ändringsdatum okänt\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny version\"] }, paused: { msgid: \"paused\", msgstr: [\"pausad\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Förhandsgranska bild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Markera alla kryssrutor\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Välj alla befintliga filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Välj alla nya filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Hoppa över denna fil\", \"Hoppa över {count} filer\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Okänd storlek\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Uppladdningen avbröts\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Ladda upp filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Uppladdningsförlopp\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"När en inkommande mapp väljs skrivs även alla konfliktande filer i den över.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Vilka filer vill du behålla?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du måste välja minst en version av varje fil för att fortsätta.\"] } } } } }, { locale: \"sw\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sw\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sw\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th_TH\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Phongpanot Phairat <ppnplus@protonmail.com>, 2022\", \"Language-Team\": \"Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th_TH\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPhongpanot Phairat <ppnplus@protonmail.com>, 2022\n` }, msgstr: [`Last-Translator: Phongpanot Phairat <ppnplus@protonmail.com>, 2022\nLanguage-Team: Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th_TH\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"เหลืออีก {seconds} วินาที\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"เหลืออีก {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"เหลืออีกไม่กี่วินาที\"] }, Add: { msgid: \"Add\", msgstr: [\"เพิ่ม\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"ยกเลิกการอัปโหลด\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"กำลังคำนวณเวลาที่เหลือ\"] }, paused: { msgid: \"paused\", msgstr: [\"หยุดชั่วคราว\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"อัปโหลดไฟล์\"] } } } } }, { locale: \"tk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tk\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tk\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"tr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Kaya Zeren <kayazeren@gmail.com>, 2024\", \"Language-Team\": \"Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tr\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nKaya Zeren <kayazeren@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: Kaya Zeren <kayazeren@gmail.com>, 2024\nLanguage-Team: Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} dosya çakışması var\", \"{count} dosya çakışması var\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} klasöründe {count} dosya çakışması var\", \"{dirname} klasöründe {count} dosya çakışması var\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniye kaldı\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} kaldı\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir kaç saniye kaldı\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"İptal\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Tüm işlemi iptal et\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yüklemeleri iptal et\"] }, Continue: { msgid: \"Continue\", msgstr: [\"İlerle\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"öngörülen kalan süre\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Var olan sürüm\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"İki sürümü de seçerseniz, kopyalanan dosyanın adına bir sayı eklenir.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Son değiştirilme tarihi bilinmiyor\"] }, New: { msgid: \"New\", msgstr: [\"Yeni\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Yeni sürüm\"] }, paused: { msgid: \"paused\", msgstr: [\"duraklatıldı\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Görsel ön izlemesi\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Tüm kutuları işaretle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Tüm var olan dosyaları seç\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Tüm yeni dosyaları seç\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Bu dosyayı atla\", \"{count} dosyayı atla\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Boyut bilinmiyor\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Yükleme iptal edildi\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dosyaları yükle\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Yükleme ilerlemesi\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Bir gelen klasör seçildiğinde, içindeki çakışan dosyaların da üzerine yazılır.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hangi dosyaları tutmak istiyorsunuz?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"İlerlemek için her dosyanın en az bir sürümünü seçmelisiniz.\"] } } } } }, { locale: \"ug\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ug\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ug\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"O St <oleksiy.stasevych@gmail.com>, 2024\", \"Language-Team\": \"Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uk\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nO St <oleksiy.stasevych@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: O St <oleksiy.stasevych@gmail.com>, 2024\nLanguage-Team: Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} конфліктний файл\", \"{count} конфліктних файли\", \"{count} конфліктних файлів\", \"{count} конфліктних файлів\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} конфліктний файл у каталозі {dirname}\", \"{count} конфліктних файли у каталозі {dirname}\", \"{count} конфліктних файлів у каталозі {dirname}\", \"{count} конфліктних файлів у каталозі {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Залишилося {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Залишилося {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"залишилося кілька секунд\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Скасувати\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Скасувати операцію повністю\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Скасувати завантаження\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Продовжити\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"оцінка часу, що залишився\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Присутня версія\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Якщо ви виберете обидві версії, то буде створено копію файлу, до назви якої буде додано цифру.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Дата останньої зміни невідома\"] }, New: { msgid: \"New\", msgstr: [\"Нове\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Нова версія\"] }, paused: { msgid: \"paused\", msgstr: [\"призупинено\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Попередній перегляд\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Вибрати все\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Вибрати усі присутні файли\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Вибрати усі нові файли\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Пропустити файл\", \"Пропустити {count} файли\", \"Пропустити {count} файлів\", \"Пропустити {count} файлів\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Невідомий розмір\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Завантаження скасовано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Завантажити файли\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Поступ завантаження\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Усі конфліктні файли у вибраному каталозі призначення буде перезаписано поверх.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Які файли залишити?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Для продовження потрібно вибрати принаймні одну версію для кожного файлу.\"] } } } } }, { locale: \"ur_PK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ur_PK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ur_PK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uz\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uz\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uz\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"vi\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Tung DangQuang, 2023\", \"Language-Team\": \"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"vi\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nTung DangQuang, 2023\n` }, msgstr: [`Last-Translator: Tung DangQuang, 2023\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: vi\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Tập tin xung đột\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} tập tin lỗi trong {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Còn {second} giây\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Còn lại {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Còn lại một vài giây\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Huỷ tải lên\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Tiếp Tục\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Thời gian còn lại dự kiến\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Phiên Bản Hiện Tại\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Nếu bạn chọn cả hai phiên bản, tệp được sao chép sẽ có thêm một số vào tên của nó.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Ngày sửa dổi lần cuối không xác định\"] }, New: { msgid: \"New\", msgstr: [\"Tạo Mới\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Phiên Bản Mới\"] }, paused: { msgid: \"paused\", msgstr: [\"đã tạm dừng\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Xem Trước Ảnh\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Chọn tất cả hộp checkbox\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Chọn tất cả các tập tin có sẵn\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Chọn tất cả các tập tin mới\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Bỏ Qua {count} tập tin\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Không rõ dung lượng\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Dừng Tải Lên\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Tập tin tải lên\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Đang Tải Lên\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Bạn muốn giữ tập tin nào?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Bạn cần chọn ít nhất một phiên bản tập tin mới có thể tiếp tục\"] } } } } }, { locale: \"zh_CN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Hongbo Chen, 2023\", \"Language-Team\": \"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_CN\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nHongbo Chen, 2023\n` }, msgstr: [`Last-Translator: Hongbo Chen, 2023\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count}文件冲突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"在{dirname}目录下有{count}个文件冲突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩余 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩余 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"还剩几秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上传\"] }, Continue: { msgid: \"Continue\", msgstr: [\"继续\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估计剩余时间\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"版本已存在\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"如果选择所有的版本,新增版本的文件名为原文件名加数字\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"文件最后修改日期未知\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本\"] }, paused: { msgid: \"paused\", msgstr: [\"已暂停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"图片预览\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"选择所有的选择框\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"选择所有存在的文件\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"选择所有的新文件\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"跳过{count}个文件\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"文件大小未知\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"取消上传\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上传文件\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"你要保留哪些文件?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"每个文件至少选择一个版本\"] } } } } }, { locale: \"zh_HK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Café Tango, 2023\", \"Language-Team\": \"Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_HK\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nCafé Tango, 2023\n` }, msgstr: [`Last-Translator: Café Tango, 2023\nLanguage-Team: Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_HK\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} 個檔案衝突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} 中有 {count} 個檔案衝突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, Continue: { msgid: \"Continue\", msgstr: [\"繼續\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"既有版本\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"若您選取兩個版本,複製的檔案的名稱將會新增編號。\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"最後修改日期不詳\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本 \"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"預覽圖片\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"選取所有核取方塊\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"選取所有既有檔案\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"選取所有新檔案\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"略過 {count} 個檔案\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"大小不詳\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"已取消上傳\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"您想保留哪些檔案?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"您必須為每個檔案都至少選取一個版本以繼續。\"] } } } } }, { locale: \"zh_TW\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"黃柏諺 <s8321414@gmail.com>, 2024\", \"Language-Team\": \"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_TW\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\n黃柏諺 <s8321414@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2024\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} 個檔案衝突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} 中有 {count} 個檔案衝突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"取消\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"取消整個操作\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, Continue: { msgid: \"Continue\", msgstr: [\"繼續\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"既有版本\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"若您選取兩個版本,複製的檔案的名稱將會新增編號。\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"最後修改日期未知\"] }, New: { msgid: \"New\", msgstr: [\"新增\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本\"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"預覽圖片\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"選取所有核取方塊\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"選取所有既有檔案\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"選取所有新檔案\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"略過 {count} 檔案\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"未知大小\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"已取消上傳\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"上傳進度\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"選取傳入資料夾後,其中任何的衝突檔案都會被覆寫。\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"您想保留哪些檔案?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"您必須為每個檔案都至少選取一個版本以繼續。\"] } } } } }].map((e) => R.addTranslation(e.locale, e.json));\nconst C = R.build(), Gs = C.ngettext.bind(C), u = C.gettext.bind(C), Ls = E.extend({\n  name: \"UploadPicker\",\n  components: {\n    Cancel: ms,\n    NcActionButton: J,\n    NcActions: Q,\n    NcButton: Z,\n    NcIconSvgWrapper: X,\n    NcProgressBar: ss,\n    Plus: fs,\n    Upload: xs\n  },\n  props: {\n    accept: {\n      type: Array,\n      default: null\n    },\n    disabled: {\n      type: Boolean,\n      default: !1\n    },\n    multiple: {\n      type: Boolean,\n      default: !1\n    },\n    destination: {\n      type: z,\n      default: void 0\n    },\n    /**\n     * List of file present in the destination folder\n     */\n    content: {\n      type: Array,\n      default: () => []\n    },\n    forbiddenCharacters: {\n      type: Array,\n      default: () => []\n    }\n  },\n  data() {\n    return {\n      addLabel: u(\"New\"),\n      cancelLabel: u(\"Cancel uploads\"),\n      uploadLabel: u(\"Upload files\"),\n      progressLabel: u(\"Upload progress\"),\n      progressTimeId: `nc-uploader-progress-${Math.random().toString(36).slice(7)}`,\n      eta: null,\n      timeLeft: \"\",\n      newFileMenuEntries: [],\n      uploadManager: M()\n    };\n  },\n  computed: {\n    totalQueueSize() {\n      return this.uploadManager.info?.size || 0;\n    },\n    uploadedQueueSize() {\n      return this.uploadManager.info?.progress || 0;\n    },\n    progress() {\n      return Math.round(this.uploadedQueueSize / this.totalQueueSize * 100) || 0;\n    },\n    queue() {\n      return this.uploadManager.queue;\n    },\n    hasFailure() {\n      return this.queue?.filter((e) => e.status === c.FAILED).length !== 0;\n    },\n    isUploading() {\n      return this.queue?.length > 0;\n    },\n    isAssembling() {\n      return this.queue?.filter((e) => e.status === c.ASSEMBLING).length !== 0;\n    },\n    isPaused() {\n      return this.uploadManager.info?.status === I.PAUSED;\n    },\n    // Hide the button text if we're uploading\n    buttonName() {\n      if (!this.isUploading)\n        return this.addLabel;\n    }\n  },\n  watch: {\n    destination(e) {\n      this.setDestination(e);\n    },\n    totalQueueSize(e) {\n      this.eta = K({ min: 0, max: e }), this.updateStatus();\n    },\n    uploadedQueueSize(e) {\n      this.eta?.report?.(e), this.updateStatus();\n    },\n    isPaused(e) {\n      e ? this.$emit(\"paused\", this.queue) : this.$emit(\"resumed\", this.queue);\n    }\n  },\n  beforeMount() {\n    this.destination && this.setDestination(this.destination), this.uploadManager.addNotifier(this.onUploadCompletion), g.debug(\"UploadPicker initialised\");\n  },\n  methods: {\n    /**\n     * Trigger file picker\n     */\n    onClick() {\n      this.$refs.input.click();\n    },\n    /**\n     * Start uploading\n     */\n    async onPick() {\n      let e = [...this.$refs.input.files];\n      if (Us(e, this.content)) {\n        const s = e.filter((n) => this.content.find((i) => i.basename === n.name)).filter(Boolean), t = e.filter((n) => !s.includes(n));\n        try {\n          const { selected: n, renamed: i } = await ys(this.destination.basename, s, this.content);\n          e = [...t, ...n, ...i];\n        } catch {\n          P(u(\"Upload cancelled\"));\n          return;\n        }\n      }\n      e.forEach((s) => {\n        const n = (this.forbiddenCharacters || []).find((i) => s.name.includes(i));\n        n ? P(u(`\"${n}\" is not allowed inside a file name.`)) : this.uploadManager.upload(s.name, s).catch(() => {\n        });\n      }), this.$refs.form.reset();\n    },\n    /**\n     * Cancel ongoing queue\n     */\n    onCancel() {\n      this.uploadManager.queue.forEach((e) => {\n        e.cancel();\n      }), this.$refs.form.reset();\n    },\n    updateStatus() {\n      if (this.isPaused) {\n        this.timeLeft = u(\"paused\");\n        return;\n      }\n      const e = Math.round(this.eta.estimate());\n      if (e === 1 / 0) {\n        this.timeLeft = u(\"estimating time left\");\n        return;\n      }\n      if (e < 10) {\n        this.timeLeft = u(\"a few seconds left\");\n        return;\n      }\n      if (e > 60) {\n        const s = /* @__PURE__ */ new Date(0);\n        s.setSeconds(e);\n        const t = s.toISOString().slice(11, 19);\n        this.timeLeft = u(\"{time} left\", { time: t });\n        return;\n      }\n      this.timeLeft = u(\"{seconds} seconds left\", { seconds: e });\n    },\n    setDestination(e) {\n      if (!this.destination) {\n        g.debug(\"Invalid destination\");\n        return;\n      }\n      this.uploadManager.destination = e, this.newFileMenuEntries = G(e);\n    },\n    onUploadCompletion(e) {\n      e.status === c.FAILED ? this.$emit(\"failed\", e) : this.$emit(\"uploaded\", e);\n    }\n  }\n});\nvar ks = function() {\n  var s = this, t = s._self._c;\n  return s._self._setupProxy, s.destination ? t(\"form\", { ref: \"form\", staticClass: \"upload-picker\", class: { \"upload-picker--uploading\": s.isUploading, \"upload-picker--paused\": s.isPaused }, attrs: { \"data-cy-upload-picker\": \"\" } }, [s.newFileMenuEntries && s.newFileMenuEntries.length === 0 ? t(\"NcButton\", { attrs: { disabled: s.disabled, \"data-cy-upload-picker-add\": \"\", type: \"secondary\" }, on: { click: s.onClick }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n    return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n  }, proxy: !0 }], null, !1, 2954875042) }, [s._v(\" \" + s._s(s.buttonName) + \" \")]) : t(\"NcActions\", { attrs: { \"menu-name\": s.buttonName, \"menu-title\": s.addLabel, type: \"secondary\" }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n    return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n  }, proxy: !0 }], null, !1, 2954875042) }, [t(\"NcActionButton\", { attrs: { \"data-cy-upload-picker-add\": \"\", \"close-after-click\": !0 }, on: { click: s.onClick }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n    return [t(\"Upload\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n  }, proxy: !0 }], null, !1, 3606034491) }, [s._v(\" \" + s._s(s.uploadLabel) + \" \")]), s._l(s.newFileMenuEntries, function(n) {\n    return t(\"NcActionButton\", { key: n.id, staticClass: \"upload-picker__menu-entry\", attrs: { icon: n.iconClass, \"close-after-click\": !0 }, on: { click: function(i) {\n      return n.handler(s.destination, s.content);\n    } }, scopedSlots: s._u([n.iconSvgInline ? { key: \"icon\", fn: function() {\n      return [t(\"NcIconSvgWrapper\", { attrs: { svg: n.iconSvgInline } })];\n    }, proxy: !0 } : null], null, !0) }, [s._v(\" \" + s._s(n.displayName) + \" \")]);\n  })], 2), t(\"div\", { directives: [{ name: \"show\", rawName: \"v-show\", value: s.isUploading, expression: \"isUploading\" }], staticClass: \"upload-picker__progress\" }, [t(\"NcProgressBar\", { attrs: { \"aria-label\": s.progressLabel, \"aria-describedby\": s.progressTimeId, error: s.hasFailure, value: s.progress, size: \"medium\" } }), t(\"p\", { attrs: { id: s.progressTimeId } }, [s._v(\" \" + s._s(s.timeLeft) + \" \")])], 1), s.isUploading ? t(\"NcButton\", { staticClass: \"upload-picker__cancel\", attrs: { type: \"tertiary\", \"aria-label\": s.cancelLabel, \"data-cy-upload-picker-cancel\": \"\" }, on: { click: s.onCancel }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n    return [t(\"Cancel\", { attrs: { title: \"\", size: 20 } })];\n  }, proxy: !0 }], null, !1, 4076886712) }) : s._e(), t(\"input\", { directives: [{ name: \"show\", rawName: \"v-show\", value: !1, expression: \"false\" }], ref: \"input\", attrs: { type: \"file\", accept: s.accept?.join?.(\", \"), multiple: s.multiple, \"data-cy-upload-picker-input\": \"\" }, on: { change: s.onPick } })], 1) : s._e();\n}, vs = [], Cs = /* @__PURE__ */ y(\n  Ls,\n  ks,\n  vs,\n  !1,\n  null,\n  \"eca9500a\",\n  null,\n  null\n);\nconst Ys = Cs.exports;\nlet k = null;\nfunction M() {\n  const e = document.querySelector('input[name=\"isPublic\"][value=\"1\"]') !== null;\n  return k instanceof N || (k = new N(e)), k;\n}\nfunction Vs(e, s) {\n  const t = M();\n  return t.upload(e, s), t;\n}\nasync function ys(e, s, t) {\n  const n = $(() => import(\"./ConflictPicker-Bif6rCp6.mjs\"));\n  return new Promise((i, o) => {\n    const l = new E({\n      name: \"ConflictPickerRoot\",\n      render: (f) => f(n, {\n        props: {\n          dirname: e,\n          conflicts: s,\n          content: t\n        },\n        on: {\n          submit(r) {\n            i(r), l.$destroy(), l.$el?.parentNode?.removeChild(l.$el);\n          },\n          cancel(r) {\n            o(r ?? new Error(\"Canceled\")), l.$destroy(), l.$el?.parentNode?.removeChild(l.$el);\n          }\n        }\n      })\n    });\n    l.$mount(), document.body.appendChild(l.$el);\n  });\n}\nfunction Us(e, s) {\n  const t = s.map((i) => i.basename);\n  return e.filter((i) => {\n    const o = i instanceof File ? i.name : i.basename;\n    return t.indexOf(o) !== -1;\n  }).length > 0;\n}\nexport {\n  I as S,\n  Ys as U,\n  Gs as a,\n  ns as b,\n  c,\n  M as g,\n  Us as h,\n  g as l,\n  y as n,\n  ys as o,\n  u as t,\n  Vs as u\n};\n","import axios from './lib/axios.js';\n\n// This module is intended to unwrap Axios default export as named.\n// Keep top-level export same with static properties\n// so that it can keep same with es module or cjs\nconst {\n  Axios,\n  AxiosError,\n  CanceledError,\n  isCancel,\n  CancelToken,\n  VERSION,\n  all,\n  Cancel,\n  isAxiosError,\n  spread,\n  toFormData,\n  AxiosHeaders,\n  HttpStatusCode,\n  formToJSON,\n  getAdapter,\n  mergeConfig\n} = axios;\n\nexport {\n  axios as default,\n  Axios,\n  AxiosError,\n  CanceledError,\n  isCancel,\n  CancelToken,\n  VERSION,\n  all,\n  Cancel,\n  isAxiosError,\n  spread,\n  toFormData,\n  AxiosHeaders,\n  HttpStatusCode,\n  formToJSON,\n  getAdapter,\n  mergeConfig\n}\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = (chunkId) => {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = (chunkId) => {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \"-\" + chunkId + \".js?v=\" + {\"6075\":\"b0265ee919d9196a6424\",\"7560\":\"8bb59db6d769c5865c25\",\"8618\":\"d30d39583cd1936d2676\"}[chunkId] + \"\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = (module) => {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.j = 2882;","var scriptUrl;\nif (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + \"\";\nvar document = __webpack_require__.g.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript)\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t2882: 0\n};\n\n__webpack_require__.f.j = (chunkId, promises) => {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = (event) => {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunknextcloud\"] = self[\"webpackChunknextcloud\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [4208], () => (__webpack_require__(88425)))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["deferred","inProgress","dataWebpackPrefix","has","Object","prototype","hasOwnProperty","prefix","Events","EE","fn","context","once","this","addListener","emitter","event","TypeError","listener","evt","_events","push","_eventsCount","clearEvent","EventEmitter","create","__proto__","eventNames","events","name","names","call","slice","getOwnPropertySymbols","concat","listeners","handlers","i","l","length","ee","Array","listenerCount","emit","a1","a2","a3","a4","a5","args","len","arguments","removeListener","undefined","apply","j","on","removeAllListeners","off","prefixed","module","exports","pinia","createPinia","token","singleMatcher","RegExp","multiMatcher","decodeComponents","components","split","decodeURIComponent","join","left","right","decode","input","tokens","match","splitOnFirst","string","separator","separatorIndex","indexOf","includeKeys","object","predicate","result","isArray","key","descriptor","getOwnPropertyDescriptor","enumerable","defineProperty","Reflect","ownKeys","isNullOrUndefined","value","strictUriEncode","encodeURIComponent","replaceAll","x","charCodeAt","toString","toUpperCase","encodeFragmentIdentifier","Symbol","validateArrayFormatSeparator","encode","options","strict","encodedURI","replaceMap","exec","entries","keys","replace","customDecodeURIComponent","keysSorter","sort","a","b","Number","map","removeHash","hashStart","parseValue","parseNumbers","isNaN","trim","parseBooleans","toLowerCase","extract","queryStart","parse","query","arrayFormat","arrayFormatSeparator","formatter","accumulator","includes","isEncodedArray","newValue","item","test","arrayValue","flat","parserForArrayFormat","returnValue","parameter","parameter_","key2","value2","reduce","Boolean","stringify","shouldFilter","skipNull","skipEmptyString","index","keyValueSeparator","encoderForArrayFormat","objectCopy","filter","parseUrl","url","url_","hash","parseFragmentIdentifier","fragmentIdentifier","stringifyUrl","queryString","getHash","urlObjectForFragmentEncode","URL","pick","exclude","extend","encodeReserveRE","encodeReserveReplacer","c","commaRE","str","err","castQueryParamValue","String","parseQuery","res","forEach","param","parts","shift","val","stringifyQuery","obj","val2","trailingSlashRE","createRoute","record","location","redirectedFrom","router","clone","e","route","meta","path","params","fullPath","getFullPath","matched","formatMatch","freeze","START","unshift","parent","ref","_stringifyQuery","isSameRoute","onlyPath","isObjectEqual","aKeys","bKeys","every","aVal","bVal","handleRouteEntered","instances","instance","cbs","enteredCbs","i$1","_isBeingDestroyed","View","functional","props","type","default","render","_","children","data","routerView","h","$createElement","$route","cache","_routerViewCache","depth","inactive","_routerRoot","vnodeData","$vnode","keepAlive","_directInactive","_inactive","$parent","routerViewDepth","cachedData","cachedComponent","component","configProps","fillPropsinData","registerRouteInstance","vm","current","hook","prepatch","vnode","componentInstance","init","propsToPass","config","resolveProps","attrs","resolvePath","relative","base","append","firstChar","charAt","stack","pop","segments","segment","cleanPath","isarray","arr","pathToRegexp_1","pathToRegexp","groups","source","delimiter","optional","repeat","partial","asterisk","pattern","attachKeys","regexpToRegexp","flags","arrayToRegexp","tokensToRegExp","stringToRegexp","parse_1","tokensToFunction_1","tokensToFunction","tokensToRegExp_1","PATH_REGEXP","defaultDelimiter","m","escaped","offset","next","capture","group","modifier","escapeGroup","escapeString","substr","encodeURIComponentPretty","encodeURI","matches","opts","pretty","JSON","re","sensitive","end","endsWithDelimiter","compile","regexpCompileCache","fillParams","routeMsg","filler","pathMatch","normalizeLocation","raw","_normalized","params$1","rawPath","parsedPath","hashIndex","queryIndex","parsePath","basePath","extraQuery","_parseQuery","parsedQuery","resolveQuery","_Vue","noop","Link","to","required","tag","custom","exact","exactPath","activeClass","exactActiveClass","ariaCurrentValue","this$1$1","$router","resolve","href","classes","globalActiveClass","linkActiveClass","globalExactActiveClass","linkExactActiveClass","activeClassFallback","exactActiveClassFallback","compareTarget","target","queryIncludes","isIncludedRoute","handler","guardEvent","click","class","scopedSlot","$scopedSlots","$hasNormal","navigate","isActive","isExactActive","findAnchor","$slots","isStatic","aData","handler$1","event$1","aAttrs","metaKey","altKey","ctrlKey","shiftKey","defaultPrevented","button","currentTarget","getAttribute","preventDefault","child","inBrowser","window","createRouteMap","routes","oldPathList","oldPathMap","oldNameMap","parentRoute","pathList","pathMap","nameMap","addRouteRecord","splice","matchAs","pathToRegexpOptions","normalizedPath","normalizePath","caseSensitive","regex","compileRouteRegex","alias","redirect","beforeEnter","childMatchAs","aliases","aliasRoute","createMatcher","currentRoute","_createRoute","paramNames","record$1","matchRoute","originalRedirect","resolveRecordPath","aliasedMatch","aliasedRecord","addRoute","parentOrRoute","getRoutes","addRoutes","Time","performance","now","Date","genStateKey","toFixed","_key","getStateKey","setStateKey","positionStore","setupScroll","history","scrollRestoration","protocolAndPath","protocol","host","absolutePath","stateCopy","state","replaceState","addEventListener","handlePopState","removeEventListener","handleScroll","from","isPop","app","behavior","scrollBehavior","$nextTick","position","getScrollPosition","shouldScroll","then","scrollToPosition","catch","saveScrollPosition","pageXOffset","y","pageYOffset","isValidPosition","isNumber","normalizePosition","v","hashStartsWithNumberRE","isObject","selector","el","document","getElementById","querySelector","docRect","documentElement","getBoundingClientRect","elRect","top","getElementPosition","style","scrollTo","ua","supportsPushState","navigator","userAgent","pushState","NavigationFailureType","redirected","aborted","cancelled","duplicated","createNavigationCancelledError","createRouterError","message","error","Error","_isRouter","propertiesToLog","isError","isNavigationFailure","errorType","runQueue","queue","cb","step","flatMapComponents","flatten","hasSymbol","toStringTag","called","History","baseEl","normalizeBase","pending","ready","readyCbs","readyErrorCbs","errorCbs","extractGuards","records","bind","reverse","guards","def","guard","extractGuard","bindGuard","listen","onReady","errorCb","onError","transitionTo","onComplete","onAbort","prev","confirmTransition","updateRoute","ensureURL","afterHooks","abort","console","lastRouteIndex","lastCurrentIndex","max","Math","updated","activated","deactivated","resolveQueue","extractLeaveGuards","beforeHooks","extractUpdateHooks","hasAsync","cid","resolvedDef","__esModule","resolved","reject","reason","msg","comp","iterator","createNavigationAbortedError","createNavigationRedirectedError","enterGuards","bindEnterGuard","extractEnterGuards","resolveHooks","setupListeners","teardown","cleanupListener","HTML5History","_startLocation","getLocation","constructor","expectScroll","supportsScroll","handleRoutingEvent","go","n","fromRoute","getCurrentLocation","pathname","pathLowerCase","baseLowerCase","search","HashHistory","fallback","checkFallback","ensureSlash","replaceHash","eventType","pushHash","getUrl","AbstractHistory","targetIndex","VueRouter","apps","matcher","mode","prototypeAccessors","configurable","get","$once","routeOrError","handleInitialScroll","_route","beforeEach","registerHook","beforeResolve","afterEach","Promise","back","forward","getMatchedComponents","createHref","normalizedTo","defineProperties","VueRouter$1","list","install","Vue","installed","isDef","registerInstance","callVal","$options","_parentVnode","mixin","beforeCreate","_router","util","defineReactive","destroyed","strats","optionMergeStrategies","beforeRouteEnter","beforeRouteLeave","beforeRouteUpdate","created","version","START_LOCATION","use","Router","originalPush","generateUrl","view","emits","title","fillColor","size","_vm","_c","_self","_b","staticClass","$event","$emit","$attrs","_v","_s","_e","viewConfig","loadState","useViewConfigStore","store","defineStore","getters","getConfig","actions","onUpdate","update","axios","put","setSortingBy","toggleSortingDirection","newDirection","sorting_direction","viewConfigStore","_initialized","subscribe","_ref","getLoggerBuilder","setApp","detectUser","build","throttle","delay","callback","timeoutID","_ref$noTrailing","noTrailing","_ref$noLeading","noLeading","_ref$debounceMode","debounceMode","lastExec","clearExistingTimeout","clearTimeout","wrapper","_len","arguments_","self","elapsed","clear","setTimeout","cancel","_ref2$upcomingOnly","upcomingOnly","ChartPie","NcAppNavigationItem","NcProgressBar","loadingStorageStats","storageStats","computed","storageStatsTitle","_this$storageStats","_this$storageStats2","_this$storageStats3","usedQuotaByte","formatFileSize","used","quotaByte","quota","t","storageStatsTooltip","beforeMount","setInterval","throttleUpdateStorageStats","mounted","_this$storageStats4","_this$storageStats5","free","showStorageFullWarning","methods","debounceUpdateStorageStats","_ref$atBegin","atBegin","updateStorageStats","_response$data","_this$storageStats6","_response$data$data","_response$data$data2","response","logger","showError","translate","styleTagTransform","setAttributes","insert","domAPI","insertStyleElement","locals","stopPropagation","slot","min","Function","$el","appendChild","userConfig","show_hidden","crop_image_previews","sort_favorites_first","sort_folders_first","grid_view","useUserConfigStore","userConfigStore","Clipboard","NcAppSettingsDialog","NcAppSettingsSection","NcCheckboxRadioSwitch","NcInputField","Setting","open","setup","_window$OCA","_getCurrentUser","_loadState$enable_non","settings","OCA","Files","Settings","webdavUrl","generateRemoteUrl","getCurrentUser","uid","webdavDocs","appPasswordUrl","webdavUrlCopied","enableGridView","setting","beforeDestroy","close","onClose","setConfig","copyCloudId","select","clipboard","writeText","showSuccess","_l","scopedSlots","_u","proxy","Cog","NavigationQuota","NcAppNavigation","NcIconSvgWrapper","SettingsModal","settingsOpened","currentViewId","_this$$route","currentView","views","find","id","$navigation","parentViews","order","childViews","watch","oldView","setActive","debug","showView","useExactRouteMatching","_this$childViews$view","_window","_window$close","Sidebar","onToggleExpand","isExpanded","expanded","_this$viewConfigStore","generateToNavigation","dir","openSettings","onSettingsClose","iconClass","sticky","icon","action","FileAction","displayName","iconSvgInline","InformationSvg","enabled","nodes","_nodes$0$root","root","startsWith","permissions","Permission","NONE","node","OCP","goToRoute","fileid","useFilesStore","fileStore","files","roots","getNode","getNodes","ids","getRoot","service","updateNodes","acc","deleteNodes","delete","setRoot","onDeletedNode","onCreatedNode","onUpdatedNode","usePathsStore","pathsStore","paths","getPath","addPath","payload","_getNavigation","getNavigation","active","FileType","Folder","dirname","_children","parentId","parentFolder","useSelectionStore","selected","lastSelection","lastSelectedIndex","set","selection","Set","setLastIndex","reset","uploader","useUploaderStore","getUploader","toISOString","Directory","File","contents","super","_contents","_computeDirectorySize","lastModified","_computeDirectoryMtime","directory","file","entry","traverseTree","async","isFile","readDirectory","all","dirReader","createReader","getEntries","readEntries","results","createDirectoryIfNotExists","davClient","davGetClient","exists","createDirectory","recursive","stat","details","davGetDefaultPropfind","davResultToNode","resolveConflict","destination","conflicts","basename","uploads","renamed","openConflictPicker","showInfo","info","getQueue","PQueue","concurrency","MoveCopyAction","canMove","ALL","UPDATE","canCopy","_node$attributes$shar","_node$attributes","attributes","some","attribute","scope","canDownload","rootPath","defaultRootUrl","hashCode","client","rootUrl","createClient","setHeaders","requesttoken","onRequestTokenUpdate","getRequestToken","getPatcher","patch","headers","method","fetch","getClient","resultToNode","userId","davParsePermissions","owner","filename","nodeData","mtime","lastmod","mime","hasPreview","failed","getContents","controller","AbortController","propfindPayload","CancelablePromise","onCancel","contentsResponse","getDirectoryContents","includeSelf","signal","folder","getSummaryFor","fileCount","folderCount","getActionForNodes","MOVE_OR_COPY","MOVE","COPY","handleCopyMoveNodeTo","overwrite","NodeStatus","LOADING","add","copySuffix","currentPath","davRootPath","destinationPath","otherNodes","otherNames","suffix","ignoreFileExtension","newName","ext","extname","getUniqueName","copyFile","hasConflict","deleteFile","moveFile","AxiosError","_error$response","_error$response2","_error$response3","status","openFilePickerForAction","fileIDs","filePicker","getFilePickerBuilder","allowDirectories","setFilter","CREATE","setMimeTypeFilter","setMultiSelect","startAt","setButtonFactory","_selection","buttons","dirnames","label","escape","sanitize","CopyIconSvg","FolderMoveSvg","FilePickerClosed","_node$root","execBatch","promises","dataTransferToFileTree","items","kind","_item$getAsEntry","_item$getAsEntry2","_item$webkitGetAsEntr","getAsEntry","webkitGetAsEntry","warned","fileTree","DataTransferItem","warn","getAsFile","showWarning","onDropExternalFiles","uploadDirectoryContents","relativePath","joinPaths","upload","pause","start","errors","allSettled","onDropInternalFiles","isCopy","useDragAndDropStore","dragging","filesListWidth","_fileListEl$clientWid","fileListEl","clientWidth","$resizeObserver","ResizeObserver","contentRect","width","observe","disconnect","defineComponent","NcBreadcrumbs","NcBreadcrumb","mixins","filesListWidthMixin","draggingStore","filesStore","selectionStore","uploaderStore","dirs","sections","getFileIdFromPath","getDirDisplayName","disableDrop","isUploadInProgress","wrapUploadProgressBar","viewIcon","_this$currentView$ico","_this$currentView","selectedFiles","draggingFiles","getNodeFromId","_this$currentView2","_this$$navigation","fileId","onClick","_to$query","onDragOver","dataTransfer","dropEffect","onDrop","_event$dataTransfer","_event$dataTransfer2","_this$currentView3","canDrop","titleForSection","section","_section$to","ariaForSection","_section$to2","_setupProxy","_t","nativeOn","useActionsMenuStore","opened","useRenamingStore","renamingStore","renamingNode","FileMultipleIcon","FolderIcon","isSingleNode","isSingleFolder","summary","totalSize","total","parseInt","$refs","previewImg","replaceChildren","preview","parentNode","cloneNode","Preview","DragAndDropPreview","directive","vOnClickOutside","NcFile","Node","loading","dragover","gridMode","currentDir","currentFileId","_this$$route$params","_this$$route$query","_this$source","uniqueId","isLoading","extension","_this$source$attribut","isSelected","isRenaming","isRenamingSmallScreen","_this$fileid","_this$fileid$toString","_this$currentFileId","_this$currentFileId$t","canDrag","openedMenu","actionsMenuStore","_this$$el","closest","removeProperty","resetState","_this$$refs","_this$$refs$reset","onRightClick","_this$$el2","setProperty","clientX","clientY","isMoreThanOneSelected","execDefaultAction","openDetailsIfAvailable","_sidebarAction$enable","sidebarAction","onDragLeave","contains","relatedTarget","onDragStart","_event$dataTransfer$c","clearData","$reset","image","$mount","body","$on","$off","getDragAndDropPreview","setDragImage","onDragEnd","_event$dataTransfer3","_event$dataTransfer4","updateRootElement","element","getFileActions","ArrowLeftIcon","CustomElementRender","NcActionButton","NcActions","NcActionSeparator","NcLoadingIcon","openedSubmenu","enabledActions","enabledInlineActions","_action$inline","inline","enabledRenderActions","renderInline","enabledDefaultActions","enabledMenuActions","DefaultType","HIDDEN","findIndex","topActionsIds","enabledSubmenuActions","getBoundariesElement","mountType","_attributes","actionDisplayName","onActionClick","isSubmenu","success","isMenu","_this$enabledSubmenuA","onBackToMenuClick","menuAction","_menuAction$$el$query","focus","_vm$openedSubmenu","_vm$openedSubmenu2","_action$title","refInFor","_action$title2","keyboardStore","onEvent","useKeyboardStore","ariaLabel","onSelectionChange","_this$keyboardStore","newSelectedIndex","isAlreadySelected","filesToSelect","resetSelection","_k","keyCode","forbiddenCharacters","NcTextField","renameLabel","linkTo","_this$$parent","is","role","tabindex","READ","download","immediate","renaming","startRenaming","checkInputValidity","_this$newName$trim","_this$newName","isFileNameValid","setCustomValidity","reportValidity","trimmedName","OC","blacklist_files_regex","checkIfNodeExists","char","_this$$refs$renameInp","extLength","renameInput","inputField","setSelectionRange","dispatchEvent","Event","stopRenaming","onRename","_this$newName$trim2","_this$newName2","oldName","oldEncodedSource","encodedSource","rename","Destination","Overwrite","directives","rawName","expression","domProps","StarSvg","_el$setAttribute","setAttribute","AccountGroupIcon","AccountPlusIcon","CollectivesIcon","FavoriteIcon","FileIcon","FolderOpenIcon","KeyIcon","LinkIcon","NetworkIcon","TagIcon","backgroundFailed","_this$source$toString","isFavorite","favorite","cropPreviews","previewUrl","origin","searchParams","fileOverlay","PlayCircleIcon","folderOverlay","_this$source2","_this$source3","_this$source4","_this$source5","shareTypes","values","ShareType","SHARE_TYPE_LINK","SHARE_TYPE_EMAIL","src","onBackgroundError","_event$target","_m","FileEntryActions","FileEntryCheckbox","FileEntryName","FileEntryPreview","NcDateTime","FileEntryMixin","isMtimeAvailable","isSizeAvailable","compact","rowListeners","dragstart","contextmenu","dragleave","dragend","drop","columns","sizeOpacity","ratio","round","pow","color","mtimeOpacity","_this$source$mtime","_this$source$mtime$ge","maxOpacityTime","getTime","mtimeTitle","moment","format","_g","column","_vm$currentView","inheritAttrs","header","currentFolder","mount","_this$currentFolder","classForColumn","_column$summary","mapState","sortingMode","_this$getConfig","sorting_mode","defaultSortKey","isAscSorting","_this$getConfig2","toggleSortBy","MenuDown","MenuUp","NcButton","filesSortingMixin","FilesListTableHeaderButton","selectAllBind","checked","isAllSelected","indeterminate","isSomeSelected","selectedNodes","isNoneSelected","ariaSortForMode","onToggleAll","dataComponent","dataKey","dataSources","extraProps","scrollToIndex","caption","beforeHeight","headerHeight","tableHeight","resizeObserver","isReady","bufferItems","columnCount","itemHeight","itemWidth","rowCount","ceil","floor","startIndex","shownItems","renderedItems","oldItemsKeys","$_recycledPool","unusedKeys","random","tbodyStyle","isOverScrolled","lastIndex","hiddenAfterItems","paddingTop","paddingBottom","oldColumnCount","_this$$refs2","before","thead","debounce","_before$clientHeight","_thead$clientHeight","_root$clientHeight","clientHeight","onScroll","passive","targetRow","scrollTop","_this$_onScrollHandle","_onScrollHandle","requestAnimationFrame","topScroll","areSomeNodesLoading","inlineActions","selectionIds","failedIds","FilesListHeader","FilesListTableFooter","FilesListTableHeader","VirtualList","FilesListTableHeaderActions","FileEntry","FileEntryGrid","getFileListHeaders","openFileId","openFile","openfile","sortedHeaders","defaultCaption","viewCaption","sortableCaption","virtualListNote","scrollToFile","handleOpenFile","openSidebarForFile","defaultAction","at","types","tableTop","table","tableBottom","height","count","TrayArrowDownIcon","canUpload","isQuotaExceeded","cantUploadLabel","mainContent","onContentDrop","_event$relatedTarget","_this$$el$querySelect","lastUpload","findLast","_upload$response","UploadStatus","FAILED","webkitRelativePath","_this$$route$params$v","isSharingEnabled","_getCapabilities","getCapabilities","files_sharing","BreadCrumbs","DragAndDropNotice","FilesListVirtual","ListViewIcon","NcAppContent","NcEmptyContent","PlusIcon","UploadPicker","ViewGridIcon","filterText","promise","Type","_unsubscribeStore","pageHeading","_this$currentView$nam","sortingParameters","_v$attributes","_v$attributes2","dirContentsSorted","filteredDirContent","dirContents","customColumn","collection","identifiers","orders","_identifiers","_orders","sorting","_orders$index","collator","Intl","Collator","getLanguage","getCanonicalLocale","numeric","usage","identifier","compare","orderBy","_this$userConfigStore","showHidden","_file$attributes","hidden","isEmptyDir","isRefreshing","toPreviousDir","shareAttributes","_this$currentFolder2","_this$currentFolder3","shareButtonLabel","shareButtonType","SHARE_TYPE_USER","gridViewButtonLabel","_this$currentFolder4","canShare","SHARE","newView","resetSearch","fetchContent","newDir","oldDir","filesListVirtual","onSearch","$subscribe","deep","unmounted","unsubscribe","_this$promise","$set","onUpload","_this$currentFolder5","onUploadFail","_upload$response2","parser","Parser","explicitRoot","parseStringPromise","_this$currentFolder6","searchEvent","openSharingSidebar","setActiveTab","toggleGridView","translatePlural","_vm$currentView2","emptyTitle","emptyCaption","NcContent","FilesList","Navigation","__webpack_nonce__","btoa","_window$OCA$Files","_window$OCP$Files","goTo","assign","PiniaVuePlugin","observable","_settings","register","_defineProperty","_name","_el","_open","_close","FilesApp","___CSS_LOADER_EXPORT___","ReflectOwnKeys","R","ReflectApply","receiver","getOwnPropertyNames","NumberIsNaN","errorListener","resolver","eventTargetAgnosticAddListener","addErrorHandlerIfEventEmitter","_maxListeners","defaultMaxListeners","checkListener","_getMaxListeners","that","_addListener","prepend","existing","warning","newListener","w","onceWrapper","fired","wrapFn","_onceWrap","wrapped","_listeners","unwrap","evlistener","ret","unwrapListeners","arrayClone","copy","wrapListener","arg","RangeError","getPrototypeOf","setMaxListeners","getMaxListeners","doError","er","prependListener","prependOnceListener","originalListener","spliceOne","rawListeners","codes","createErrorType","code","Base","NodeError","_Base","subClass","superClass","arg1","arg2","arg3","getMessage","oneOf","expected","thing","actual","determiner","this_len","substring","endsWith","objectKeys","Duplex","Readable","Writable","allowHalfOpen","readable","writable","onend","_writableState","ended","process","nextTick","onEndNT","highWaterMark","getBuffer","_readableState","PassThrough","Transform","_transform","chunk","encoding","ReadableState","EElistenerCount","Stream","Buffer","OurUint8Array","g","Uint8Array","debugUtil","debuglog","StringDecoder","createReadableStreamAsyncIterator","BufferList","destroyImpl","getHighWaterMark","_require$codes","ERR_INVALID_ARG_TYPE","ERR_STREAM_PUSH_AFTER_EOF","ERR_METHOD_NOT_IMPLEMENTED","ERR_STREAM_UNSHIFT_AFTER_END_EVENT","errorOrDestroy","kProxyEvents","stream","isDuplex","objectMode","readableObjectMode","buffer","pipes","pipesCount","flowing","endEmitted","reading","sync","needReadable","emittedReadable","readableListening","resumeScheduled","paused","emitClose","autoDestroy","defaultEncoding","awaitDrain","readingMore","decoder","read","_read","destroy","_destroy","readableAddChunk","addToFront","skipChunkCheck","emitReadable","emitReadable_","onEofChunk","isBuffer","chunkInvalid","_uint8ArrayToBuffer","addChunk","write","maybeReadMore","_undestroy","undestroy","isPaused","setEncoding","enc","p","head","content","MAX_HWM","howMuchToRead","computeNewHighWaterMark","flow","maybeReadMore_","updateReadableListening","resume","nReadingNextTick","resume_","fromList","first","consume","endReadable","endReadableNT","wState","finished","xs","nOrig","doRead","pipe","dest","pipeOpts","endFn","stdout","stderr","unpipe","onunpipe","unpipeInfo","hasUnpiped","onclose","onfinish","ondrain","onerror","ondata","cleanedUp","needDrain","pipeOnDrain","dests","ev","wrap","_this","asyncIterator","_fromList","iterable","ERR_MULTIPLE_CALLBACK","ERR_TRANSFORM_ALREADY_TRANSFORMING","ERR_TRANSFORM_WITH_LENGTH_0","afterTransform","ts","_transformState","transforming","writecb","writechunk","rs","needTransform","writeencoding","transform","flush","_flush","prefinish","done","_write","err2","CorkedRequest","finish","corkReq","pendingcb","onCorkedFinish","corkedRequestsFree","WritableState","realHasInstance","internalUtil","deprecate","ERR_STREAM_CANNOT_PIPE","ERR_STREAM_DESTROYED","ERR_STREAM_NULL_VALUES","ERR_STREAM_WRITE_AFTER_END","ERR_UNKNOWN_ENCODING","nop","writableObjectMode","finalCalled","ending","noDecode","decodeStrings","writing","corked","bufferProcessing","onwrite","writelen","onwriteStateUpdate","finishMaybe","errorEmitted","onwriteError","needFinish","bufferedRequest","clearBuffer","afterWrite","lastBufferedRequest","prefinished","bufferedRequestCount","writev","_writev","final","_final","doWrite","onwriteDrain","holder","allBuffers","isBuf","callFinal","need","rState","out","hasInstance","writeAfterEnd","validChunk","newChunk","decodeChunk","last","writeOrBuffer","cork","uncork","setDefaultEncoding","endWritable","_Object$setPrototypeO","hint","prim","toPrimitive","_toPrimitive","_toPropertyKey","kLastResolve","kLastReject","kError","kEnded","kLastPromise","kHandlePromise","kStream","createIterResult","readAndResolve","iter","onReadable","AsyncIteratorPrototype","ReadableStreamAsyncIteratorPrototype","setPrototypeOf","lastPromise","wrapForNext","_this2","_Object$create","enumerableOnly","symbols","sym","_objectSpread","getOwnPropertyDescriptors","_defineProperties","inspect","Constructor","_classCallCheck","tail","protoProps","s","alloc","allocUnsafe","hasStrings","_getString","_getBuffer","nb","buf","customInspect","emitErrorAndCloseNT","emitErrorNT","emitCloseNT","readableDestroyed","writableDestroyed","ERR_STREAM_PREMATURE_CLOSE","eos","onlegacyfinish","writableEnded","readableEnded","onrequest","req","setHeader","isRequest","ERR_MISSING_ARGS","streams","popCallback","destroys","closed","destroyer","ERR_INVALID_OPT_VALUE","duplexKey","hwm","highWaterMarkFrom","isFinite","copyProps","dst","SafeBuffer","encodingOrOffset","allocUnsafeSlow","fill","SlowBuffer","sax","opt","SAXParser","SAXStream","createStream","MAX_BUFFER_LENGTH","buffers","clearBuffers","q","bufferCheckPosition","lowercase","lowercasetags","looseCase","tags","closedRoot","sawRoot","noscript","S","BEGIN","strictEntities","ENTITIES","XML_ENTITIES","attribList","xmlns","ns","rootNS","trackPosition","line","EVENTS","o","F","BEGIN_WHITESPACE","beginWhiteSpace","TEXT","starti","textNode","isWhitespace","strictFail","TEXT_ENTITY","OPEN_WAKA","startTagPosition","SCRIPT","SCRIPT_ENDING","script","CLOSE_TAG","SGML_DECL","sgmlDecl","isMatch","nameStart","OPEN_TAG","tagName","PROC_INST","procInstName","procInstBody","pad","CDATA","emitNode","cdata","COMMENT","comment","DOCTYPE","doctype","isQuote","SGML_DECL_QUOTED","DOCTYPE_DTD","DOCTYPE_QUOTED","DOCTYPE_DTD_QUOTED","COMMENT_ENDING","COMMENT_ENDED","textopts","CDATA_ENDING","CDATA_ENDING_2","PROC_INST_ENDING","PROC_INST_BODY","nameBody","newTag","openTag","OPEN_TAG_SLASH","ATTRIB","closeTag","attribName","attribValue","ATTRIB_NAME","ATTRIB_VALUE","attrib","ATTRIB_NAME_SAW_WHITE","ATTRIB_VALUE_QUOTED","ATTRIB_VALUE_UNQUOTED","ATTRIB_VALUE_ENTITY_Q","ATTRIB_VALUE_CLOSED","isAttribEnd","ATTRIB_VALUE_ENTITY_U","CLOSE_TAG_SAW_WHITE","notMatch","returnState","unparsedEntities","parsedEntity","parseEntity","entity","entityBody","entityStart","maxAllowed","maxActual","closeText","checkBufferLength","ex","streamWraps","_parser","me","_decoder","SD","XML_NAMESPACE","XMLNS_NAMESPACE","xml","stringFromCharCode","fromCodePoint","STATE","COMMENT_STARTING","fromCharCode","nodeType","text","normalize","qname","qualName","local","qn","selfClosing","uri","nv","isSelfClosing","closeTo","num","entityLC","numStr","highSurrogate","lowSurrogate","codeUnits","codePoint","global","setImmediate","registerImmediate","html","channel","messagePrefix","onGlobalMessage","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","handle","runIfPresent","postMessage","importScripts","postMessageIsAsynchronous","oldOnMessage","onmessage","canUsePostMessage","attachEvent","MessageChannel","port1","port2","createElement","onreadystatechange","removeChild","task","clearImmediate","run","d","RC","autostart","ignoreSameProgress","rate","lastTimestamp","lastProgress","historyTimeConstant","previousOutput","dt","report","progress","timestamp","deltaTimestamp","currentRate","estimate","Infinity","estimatedTime","inherits","pipeline","_isStdio","didOnEnd","cleanup","isEncoding","nenc","retried","_normalizeEncoding","normalizeEncoding","utf16Text","utf16End","fillLast","utf8FillLast","base64Text","base64End","simpleWrite","simpleEnd","lastNeed","lastTotal","lastChar","utf8CheckByte","byte","r","utf8CheckExtraBytes","utf8CheckIncomplete","Timeout","clearFn","_id","_clearFn","clearInterval","timeout","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","localStorage","trace","stripBOM","builder","defaults","escapeCDATA","requiresCDATA","wrapCDATA","hasProp","Builder","buildObject","rootObj","attrkey","charkey","rootElement","rootName","attr","txt","ele","up","att","xmldec","headless","allowSurrogateChars","renderOpts","explicitCharkey","normalizeTags","explicitArray","ignoreAttrs","mergeAttrs","validator","explicitChildren","childkey","charsAsChildren","includeWhiteChars","attrNameProcessors","attrValueProcessors","tagNameProcessors","valueProcessors","emptyTag","preserveChildrenOrder","chunkSize","bom","isEmpty","processItem","processors","parseString","assignOrPush","processAsync","xmlnskey","ctor","__super__","remaining","saxParser","error1","errThrown","ontext","resultObject","EXPLICIT_CHARKEY","onopentag","processedKey","onclosetag","emptyStr","nodeName","objClone","old","xpath","charChild","oncdata","prefixMatch","firstCharLowerCase","stripPrefix","parseFloat","ValidationError","Disconnected","Preceding","Following","Contains","ContainedBy","ImplementationSpecific","Element","Attribute","Text","CData","EntityReference","EntityDeclaration","ProcessingInstruction","Comment","Document","DocType","DocumentFragment","NotationDeclaration","Declaration","Raw","AttributeDeclaration","ElementDeclaration","Dummy","getValue","isFunction","isPlainObject","sources","proto","valueOf","None","OpenTag","InsideTag","CloseTag","NodeType","XMLAttribute","debugInfo","attValue","isId","schemaTypeInfo","writer","filterOptions","isEqualNode","namespaceURI","localName","XMLCharacterData","XMLCData","XMLNode","substringData","appendData","insertData","deleteData","replaceData","XMLComment","XMLDOMErrorHandler","XMLDOMStringList","XMLDOMConfiguration","defaultParams","getParameter","canSetParameter","setParameter","handleError","XMLDOMImplementation","hasFeature","feature","createDocumentType","qualifiedName","publicId","systemId","createDocument","createHTMLDocument","getFeature","XMLDTDAttList","elementName","attributeName","attributeType","defaultValueType","defaultValue","dtdAttType","dtdAttDefault","dtdAttList","XMLDTDElement","dtdElementValue","dtdElement","XMLDTDEntity","pe","pubID","sysID","internal","dtdPubID","dtdSysID","nData","dtdNData","dtdEntityValue","dtdEntity","XMLDTDNotation","dtdNotation","XMLDeclaration","standalone","xmlVersion","xmlEncoding","xmlStandalone","declaration","XMLNamedNodeMap","XMLDocType","ref1","ref2","documentObject","attList","pEntity","notation","docType","ent","pent","not","XMLStringWriter","XMLStringifier","XMLDocument","documentURI","domConfig","rootObject","writerOptions","createDocumentFragment","createTextNode","createComment","createCDATASection","createProcessingInstruction","createAttribute","createEntityReference","getElementsByTagName","tagname","importNode","importedNode","createElementNS","createAttributeNS","getElementsByTagNameNS","elementId","adoptNode","normalizeDocument","renameNode","getElementsByClassName","classNames","createEvent","eventInterface","createRange","createNodeIterator","whatToShow","createTreeWalker","WriterState","XMLElement","XMLProcessingInstruction","XMLRaw","XMLText","XMLDocumentCB","onData","onEnd","onDataCallback","onEndCallback","currentNode","currentLevel","openTags","documentStarted","documentCompleted","createChildNode","attName","attribs","dummy","instruction","openCurrent","oldValidationFlag","noValidation","keepNullAttributes","insTarget","insValue","processingInstruction","rootNodeName","closeNode","openNode","isOpen","indent","endline","isClosed","level","nod","dat","com","ins","dec","dtd","XMLDummy","isRoot","attributeMap","clonedSelf","clonedChild","removeAttribute","getAttributeNode","setAttributeNode","newAttr","removeAttributeNode","oldAttr","getAttributeNS","setAttributeNS","removeAttributeNS","getAttributeNodeNS","setAttributeNodeNS","hasAttribute","hasAttributeNS","setIdAttribute","setIdAttributeNS","setIdAttributeNode","idAttr","getNamedItem","setNamedItem","oldNode","removeNamedItem","getNamedItemNS","setNamedItemNS","removeNamedItemNS","DocumentPosition","XMLNodeList","parent1","baseURI","childNodeList","textContent","setParent","childNode","k","lastChild","len1","ref3","ignoreDecorators","convertAttKey","separateArrayItems","keepNullNodes","convertTextKey","convertCDataKey","convertCommentKey","convertRawKey","convertPIKey","insertBefore","newChild","refChild","removed","insertAfter","remove","commentBefore","commentAfter","instructionBefore","instructionAfter","importDocument","clonedRoot","u","importXMLBuilder","replaceChild","oldChild","hasChildNodes","isSupported","hasAttributes","compareDocumentPosition","other","isAncestor","isDescendant","isPreceding","isSameNode","lookupPrefix","isDefaultNamespace","lookupNamespaceURI","setUserData","getUserData","nodePos","thisPos","treePosition","isFollowing","found","pos","foreachTreeNode","func","XMLWriterBase","XMLStreamWriter","isLastRootNode","writeChildNode","spaceBeforeSlash","childNodeCount","firstChildNode","allowEmpty","suppressPrettyCount","newline","assertLegalName","assertLegalChar","textEscape","attEscape","ampregex","noDoubleEncoding","previousSibling","nextSibling","splitText","replaceWholeText","filteredOptions","ref4","ref5","ref6","dontPrettyTextNodes","dontprettytextnodes","spacebeforeslash","user","indentLevel","openAttribute","closeAttribute","prettySuppressed","begin","stringWriter","streamWriter","implementation","writerState","setUid","NewFileMenu","_entries","registerEntry","validateEntry","category","unregisterEntry","entryIndex","getEntryIndex","DefaultType2","_action","validateAction","_nc_fileactions","_nc_filelistheader","Permission2","defaultDavProperties","defaultDavNamespaces","nc","oc","ocs","getDavProperties","_nc_dav_properties","prop","getDavNameSpaces","_nc_dav_namespaces","davGetRecentSearch","permString","DELETE","FileType2","isDavRessource","davService","validateData","crtime","NodeStatus2","_data","_knownDavService","readonlyAttributes","deleteProperty","Proxy","firstMatch","updateMtime","move","basename2","davRemoteURL","remoteURL","headers2","getFavoriteNodes","davRoot","filesRoot","isPublic","getcontentlength","_oc_config","humanList","humanListBinary","skipSmallSizes","binaryPrefixes","base1000","log","readableFormat","relativeSize","toLocaleString","_views","_currentView","_nc_navigation","Column","_column","isValidColumn","validator$2","util$3","nameStartChar","nameRegexp","regexName","isExist","isEmptyObject","merge","arrayMode","isName","getAllMatches","allmatches","util$2","defaultOptions$2","allowBooleanAttributes","unpairedTags","isWhiteSpace","readPI","xmlData","getErrorObject","getLineNumberForPosition","readCommentAndCDATA","angleBracketsCount","validate","tagFound","reachedRoot","tagStartPos","closingTag","readAttributeStr","attrStr","attrStrStart","isValid","validateAttributeString","tagClosed","otg","openPos","col","afterAmp","validateAmpersand","doubleQuote","singleQuote","startChar","validAttrStrRegxp","attrNames","getPositionFromMatch","attrName","validateAttrName","validateNumberAmpersand","lineNumber","lines","OptionsBuilder","defaultOptions$1","preserveOrder","attributeNamePrefix","attributesGroupName","textNodeName","ignoreAttributes","removeNSPrefix","parseTagValue","parseAttributeValue","trimValues","cdataPropName","numberParseOptions","hex","leadingZeros","eNotation","tagValueProcessor","attributeValueProcessor","stopNodes","alwaysCreateTextNode","commentPropName","processEntities","htmlEntities","ignoreDeclaration","ignorePiTags","transformTagName","transformAttributeName","updateTag","jPath","buildOptions","defaultOptions","util$1","readEntityExp","entityName2","isComment","isEntity","isElement","isAttlist","isNotation","validateEntityName","hexRegex","numRegex","consider","decimalPoint","xmlNode","addChild","readDocType","entities","hasBody","exp","entityName","regx","toNumber","trimmedStr","skipLike","sign","numTrimmedByZeros","addExternalEntities","externalEntities","entKeys","lastEntities","parseTextData","dontTrim","isLeafNode","escapeEntities","replaceEntitiesValue","newval","resolveNameSpace","attrsRegx","buildAttributesMap","oldVal","aName","newVal","attrCollection","parseXml","xmlObj","textData","closeIndex","findClosingIndex","colonIndex","saveTextToParentTag","lastTagName","lastIndexOf","propIndex","tagsNodeStack","tagData","readTagExp","tagExp","attrExpPresent","endIndex","docTypeEntities","rawTagName","lastTag","isItStopNode","tagContent","result2","readStopNodeData","replaceEntitiesValue$1","ampEntity","currentTagName","allNodesExp","stopNodePath","stopNodeExp","errMsg","closingIndex","closingChar","attrBoundary","ch","tagExpWithClosingIndex","trimStart","openTagCount","shouldParse","node2json","compress","compressedObj","tagObj","property","propName$1","newJpath","isLeaf","isLeafTag","assignAttributes","attrMap","jpath","atrrName","propCount","prettify","OrderedObjParser2","validator$1","arrToStr","indentation","xmlStr","isPreviousElementTag","propName","newJPath","tagText","isStopNode","attStr2","attr_to_str","tempInd","piTextNodeName","newIdentation","indentBy","tagStart","tagValue","suppressUnpairedNode","suppressEmptyNode","attrVal","suppressBooleanAttributes","textValue","buildFromOrderedJs","jArray","oneListGroup","isAttribute","attrPrefixLen","processTextOrObjNode","indentate","tagEndChar","newLine","j2x","buildTextValNode","buildObjectNode","jObj","arrayNodeName","buildAttrPairStr","arrLen","listTagVal","Ks","L","tagEndExp","piClosingChar","fxp","XMLParser","validationOption","orderedObjParser","orderedResult","addEntity","XMLValidator","XMLBuilder","_view","isValidView","emptyView","jsonObject","isSvg","getNewFileMenuEntries","_nc_newfilemenu","localeCompare","sensitivity","CancelError","isCanceled","promiseState","canceled","rejected","PCancelable","userFunction","executor","description","shouldReject","boolean","onFulfilled","onRejected","onFinally","finally","TimeoutError","AbortError","getDOMException","errorMessage","globalThis","DOMException","getAbortedReason","PriorityQueue","enqueue","priority","array","comparator","trunc","it","lowerBound","dequeue","carryoverConcurrencyCount","intervalCap","POSITIVE_INFINITY","interval","autoStart","queueClass","throwOnTimeout","canInitializeInterval","job","newConcurrency","_resolve","function_","throwIfAborted","operation","milliseconds","customTimers","timer","cancelablePromise","timeoutError","pTimeout","race","addAll","functions","onEmpty","onSizeLessThan","limit","onIdle","sizeBy","A","Blob","request","onUploadProgress","B","appConfig","max_chunk_size","INITIALIZED","UPLOADING","ASSEMBLING","FINISHED","CANCELLED","_source","_file","_isChunked","_chunks","_size","_uploaded","_startTime","_status","_controller","_response","isChunked","chunks","startTime","uploaded","I","IDLE","PAUSED","N","_destinationFolder","_isPublic","_uploadQueue","_jobQueue","_queueSize","_queueProgress","_queueStatus","_notifiers","maxChunksSize","updateStats","addNotifier","f","T","U","bytes","D","W","O","staticRenderFns","_compiled","_scopeId","ssrContext","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","$root","shadowRoot","_injectStyles","ms","viewBox","fs","detectLocale","locale","json","charset","Language","translations","msgid","comments","translator","msgstr","Add","msgid_plural","extracted","Cancel","Continue","New","addTranslation","C","Gs","ngettext","gettext","Ls","Plus","Upload","accept","disabled","multiple","addLabel","cancelLabel","uploadLabel","progressLabel","progressTimeId","eta","timeLeft","newFileMenuEntries","uploadManager","M","totalQueueSize","uploadedQueueSize","hasFailure","isUploading","isAssembling","buttonName","setDestination","updateStatus","onUploadCompletion","onPick","Us","ys","form","setSeconds","time","seconds","Ys","decorative","svg","change","submit","$destroy","Axios","CanceledError","isCancel","CancelToken","VERSION","isAxiosError","spread","toFormData","AxiosHeaders","HttpStatusCode","formToJSON","getAdapter","mergeConfig","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","loaded","__webpack_modules__","chunkIds","notFulfilled","fulfilled","getter","definition","chunkId","needAttach","scripts","onScriptComplete","onload","doneFns","nmd","scriptUrl","currentScript","installedChunks","installedChunkData","realSrc","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""}
\ No newline at end of file