]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix(files): empty folder pending size 46947/head
authorskjnldsv <skjnldsv@protonmail.com>
Wed, 31 Jul 2024 15:44:24 +0000 (17:44 +0200)
committernextcloud-command <nextcloud-command@users.noreply.github.com>
Thu, 1 Aug 2024 12:41:54 +0000 (12:41 +0000)
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
apps/files/src/components/FileEntry.vue
dist/files-main.js
dist/files-main.js.map

index f1cccf669e51f1e4aa041093f1a664fefe33c878..b3929ebb10e2bf76a8201dba0ff61ac9c326291b 100644 (file)
@@ -202,7 +202,7 @@ export default defineComponent({
 
                size() {
                        const size = this.source.size
-                       if (!size || size < 0) {
+                       if (size === undefined || isNaN(size) || size < 0) {
                                return this.t('files', 'Pending')
                        }
                        return formatFileSize(size, true)
@@ -212,7 +212,7 @@ export default defineComponent({
                        const maxOpacitySize = 10 * 1024 * 1024
 
                        const size = this.source.size
-                       if (!size || isNaN(size) || size < 0) {
+                       if (size === undefined || isNaN(size) || size < 0) {
                                return {}
                        }
 
index 08d1bb06272550134ce670ba13785d5c9084de3d..617d88cb2e4f42b5666768118a4dd280881c9ad7 100644 (file)
@@ -1,3 +1,3 @@
 /*! For license information please see files-main.js.LICENSE.txt */
-(()=>{var e,n,s,i={80002:(t,e,n)=>{"use strict";n(25440)},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,d=this._events[o],u=arguments.length;if(d.fn){switch(d.once&&this.removeListener(t,d.fn,void 0,!0),u){case 1:return d.fn.call(d.context),!0;case 2:return d.fn.call(d.context,e),!0;case 3:return d.fn.call(d.context,e,s),!0;case 4:return d.fn.call(d.context,e,s,i),!0;case 5:return d.fn.call(d.context,e,s,i,r),!0;case 6:return d.fn.call(d.context,e,s,i,r,a),!0}for(c=1,l=new Array(u-1);c<u;c++)l[c-1]=arguments[c];d.fn.apply(d.context,l)}else{var m,p=d.length;for(c=0;c<p;c++)switch(d[c].once&&this.removeListener(t,d[c].fn,void 0,!0),u){case 1:d[c].fn.call(d[c].context);break;case 2:d[c].fn.call(d[c].context,e);break;case 3:d[c].fn.call(d[c].context,e,s);break;case 4:d[c].fn.call(d[c].context,e,s,i);break;default:if(!l)for(m=1,l=new Array(u-1);m<u;m++)l[m-1]=arguments[m];d[c].fn.apply(d[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=[],d=o.length;l<d;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},27048:(e,n,s)=>{"use strict";var i={};s.r(i),s.d(i,{exclude:()=>Et,extract:()=>Ct,parse:()=>_t,parseUrl:()=>Tt,pick:()=>St,stringify:()=>xt,stringifyUrl:()=>kt});var r=s(19166),a=s(63757),o=s(96763);let l;const c=t=>l=t,d=Symbol();function u(t){return t&&"object"==typeof t&&"[object Object]"===Object.prototype.toString.call(t)&&"function"!=typeof t.toJSON}var m;!function(t){t.direct="direct",t.patchObject="patch object",t.patchFunction="patch function"}(m||(m={}));const p="undefined"!=typeof window,f="undefined"!=typeof __VUE_PROD_DEVTOOLS__&&__VUE_PROD_DEVTOOLS__&&p,g=(()=>"object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof global&&global.global===global?global:"object"==typeof globalThis?globalThis:{HTMLElement:null})();function h(t,e,n){const s=new XMLHttpRequest;s.open("GET",t),s.responseType="blob",s.onload=function(){b(s.response,e,n)},s.onerror=function(){o.error("could not download file")},s.send()}function A(t){const e=new XMLHttpRequest;e.open("HEAD",t,!1);try{e.send()}catch(t){}return e.status>=200&&e.status<=299}function v(t){try{t.dispatchEvent(new MouseEvent("click"))}catch(e){const n=document.createEvent("MouseEvents");n.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),t.dispatchEvent(n)}}const w="object"==typeof navigator?navigator:{userAgent:""},y=(()=>/Macintosh/.test(w.userAgent)&&/AppleWebKit/.test(w.userAgent)&&!/Safari/.test(w.userAgent))(),b=p?"undefined"!=typeof HTMLAnchorElement&&"download"in HTMLAnchorElement.prototype&&!y?function(t,e="download",n){const s=document.createElement("a");s.download=e,s.rel="noopener","string"==typeof t?(s.href=t,s.origin!==location.origin?A(s.href)?h(t,e,n):(s.target="_blank",v(s)):v(s)):(s.href=URL.createObjectURL(t),setTimeout((function(){URL.revokeObjectURL(s.href)}),4e4),setTimeout((function(){v(s)}),0))}:"msSaveOrOpenBlob"in w?function(t,e="download",n){if("string"==typeof t)if(A(t))h(t,e,n);else{const e=document.createElement("a");e.href=t,e.target="_blank",setTimeout((function(){v(e)}))}else navigator.msSaveOrOpenBlob(function(t,{autoBom:e=!1}={}){return e&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(t.type)?new Blob([String.fromCharCode(65279),t],{type:t.type}):t}(t,n),e)}:function(t,e,n,s){if((s=s||open("","_blank"))&&(s.document.title=s.document.body.innerText="downloading..."),"string"==typeof t)return h(t,e,n);const i="application/octet-stream"===t.type,r=/constructor/i.test(String(g.HTMLElement))||"safari"in g,a=/CriOS\/[\d]+/.test(navigator.userAgent);if((a||i&&r||y)&&"undefined"!=typeof FileReader){const e=new FileReader;e.onloadend=function(){let t=e.result;if("string"!=typeof t)throw s=null,new Error("Wrong reader.result type");t=a?t:t.replace(/^data:[^;]*;/,"data:attachment/file;"),s?s.location.href=t:location.assign(t),s=null},e.readAsDataURL(t)}else{const e=URL.createObjectURL(t);s?s.location.assign(e):location.href=e,s=null,setTimeout((function(){URL.revokeObjectURL(e)}),4e4)}}:()=>{};function C(t,e){const n="🍍 "+t;"function"==typeof __VUE_DEVTOOLS_TOAST__?__VUE_DEVTOOLS_TOAST__(n,e):"error"===e?o.error(n):"warn"===e?o.warn(n):o.log(n)}function _(t){return"_a"in t&&"install"in t}function x(){if(!("clipboard"in navigator))return C("Your browser doesn't support the Clipboard API","error"),!0}function T(t){return!!(t instanceof Error&&t.message.toLowerCase().includes("document is not focused"))&&(C('You need to activate the "Emulate a focused page" setting in the "Rendering" panel of devtools.',"warn"),!0)}let k;function S(t,e){for(const n in e){const s=t.state.value[n];s?Object.assign(s,e[n]):t.state.value[n]=e[n]}}function E(t){return{_custom:{display:t}}}const L="🍍 Pinia (root)",N="_root";function F(t){return _(t)?{id:N,label:L}:{id:t.$id,label:t.$id}}function P(t){return t?Array.isArray(t)?t.reduce(((t,e)=>(t.keys.push(e.key),t.operations.push(e.type),t.oldValue[e.key]=e.oldValue,t.newValue[e.key]=e.newValue,t)),{oldValue:{},keys:[],operations:[],newValue:{}}):{operation:E(t.type),key:E(t.key),oldValue:t.oldValue,newValue:t.newValue}:{}}function I(t){switch(t){case m.direct:return"mutation";case m.patchFunction:case m.patchObject:return"$patch";default:return"unknown"}}let B=!0;const D=[],O="pinia:mutations",U="pinia",{assign:j}=Object,M=t=>"🍍 "+t;function R(t,e){(0,a.$q)({id:"dev.esm.pinia",label:"Pinia 🍍",logo:"https://pinia.vuejs.org/logo.svg",packageName:"pinia",homepage:"https://pinia.vuejs.org",componentStateTypes:D,app:t},(n=>{"function"!=typeof n.now&&C("You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html."),n.addTimelineLayer({id:O,label:"Pinia 🍍",color:15064968}),n.addInspector({id:U,label:"Pinia 🍍",icon:"storage",treeFilterPlaceholder:"Search stores",actions:[{icon:"content_copy",action:()=>{!async function(t){if(!x())try{await navigator.clipboard.writeText(JSON.stringify(t.state.value)),C("Global state copied to clipboard.")}catch(t){if(T(t))return;C("Failed to serialize the state. Check the console for more details.","error"),o.error(t)}}(e)},tooltip:"Serialize and copy the state"},{icon:"content_paste",action:async()=>{await async function(t){if(!x())try{S(t,JSON.parse(await navigator.clipboard.readText())),C("Global state pasted from clipboard.")}catch(t){if(T(t))return;C("Failed to deserialize the state from clipboard. Check the console for more details.","error"),o.error(t)}}(e),n.sendInspectorTree(U),n.sendInspectorState(U)},tooltip:"Replace the state with the content of your clipboard"},{icon:"save",action:()=>{!async function(t){try{b(new Blob([JSON.stringify(t.state.value)],{type:"text/plain;charset=utf-8"}),"pinia-state.json")}catch(t){C("Failed to export the state as JSON. Check the console for more details.","error"),o.error(t)}}(e)},tooltip:"Save the state as a JSON file"},{icon:"folder_open",action:async()=>{await async function(t){try{const e=(k||(k=document.createElement("input"),k.type="file",k.accept=".json"),function(){return new Promise(((t,e)=>{k.onchange=async()=>{const e=k.files;if(!e)return t(null);const n=e.item(0);return t(n?{text:await n.text(),file:n}:null)},k.oncancel=()=>t(null),k.onerror=e,k.click()}))}),n=await e();if(!n)return;const{text:s,file:i}=n;S(t,JSON.parse(s)),C(`Global state imported from "${i.name}".`)}catch(t){C("Failed to import the state from JSON. Check the console for more details.","error"),o.error(t)}}(e),n.sendInspectorTree(U),n.sendInspectorState(U)},tooltip:"Import the state from a JSON file"}],nodeActions:[{icon:"restore",tooltip:'Reset the state (with "$reset")',action:t=>{const n=e._s.get(t);n?"function"!=typeof n.$reset?C(`Cannot reset "${t}" store because it doesn't have a "$reset" method implemented.`,"warn"):(n.$reset(),C(`Store "${t}" reset.`)):C(`Cannot reset "${t}" store because it wasn't found.`,"warn")}}]}),n.on.inspectComponent(((t,e)=>{const n=t.componentInstance&&t.componentInstance.proxy;if(n&&n._pStores){const e=t.componentInstance.proxy._pStores;Object.values(e).forEach((e=>{t.instanceData.state.push({type:M(e.$id),key:"state",editable:!0,value:e._isOptionsAPI?{_custom:{value:(0,r.ux)(e.$state),actions:[{icon:"restore",tooltip:"Reset the state of this store",action:()=>e.$reset()}]}}:Object.keys(e.$state).reduce(((t,n)=>(t[n]=e.$state[n],t)),{})}),e._getters&&e._getters.length&&t.instanceData.state.push({type:M(e.$id),key:"getters",editable:!1,value:e._getters.reduce(((t,n)=>{try{t[n]=e[n]}catch(e){t[n]=e}return t}),{})})}))}})),n.on.getInspectorTree((n=>{if(n.app===t&&n.inspectorId===U){let t=[e];t=t.concat(Array.from(e._s.values())),n.rootNodes=(n.filter?t.filter((t=>"$id"in t?t.$id.toLowerCase().includes(n.filter.toLowerCase()):L.toLowerCase().includes(n.filter.toLowerCase()))):t).map(F)}})),n.on.getInspectorState((n=>{if(n.app===t&&n.inspectorId===U){const t=n.nodeId===N?e:e._s.get(n.nodeId);if(!t)return;t&&(n.state=function(t){if(_(t)){const e=Array.from(t._s.keys()),n=t._s,s={state:e.map((e=>({editable:!0,key:e,value:t.state.value[e]}))),getters:e.filter((t=>n.get(t)._getters)).map((t=>{const e=n.get(t);return{editable:!1,key:t,value:e._getters.reduce(((t,n)=>(t[n]=e[n],t)),{})}}))};return s}const e={state:Object.keys(t.$state).map((e=>({editable:!0,key:e,value:t.$state[e]})))};return t._getters&&t._getters.length&&(e.getters=t._getters.map((e=>({editable:!1,key:e,value:t[e]})))),t._customProperties.size&&(e.customProperties=Array.from(t._customProperties).map((e=>({editable:!0,key:e,value:t[e]})))),e}(t))}})),n.on.editInspectorState(((n,s)=>{if(n.app===t&&n.inspectorId===U){const t=n.nodeId===N?e:e._s.get(n.nodeId);if(!t)return C(`store "${n.nodeId}" not found`,"error");const{path:s}=n;_(t)?s.unshift("state"):1===s.length&&t._customProperties.has(s[0])&&!(s[0]in t.$state)||s.unshift("$state"),B=!1,n.set(t,s,n.state.value),B=!0}})),n.on.editComponentState((t=>{if(t.type.startsWith("🍍")){const n=t.type.replace(/^🍍\s*/,""),s=e._s.get(n);if(!s)return C(`store "${n}" not found`,"error");const{path:i}=t;if("state"!==i[0])return C(`Invalid path for store "${n}":\n${i}\nOnly state can be modified.`);i[0]="$state",B=!1,t.set(s,i,t.state.value),B=!0}}))}))}let z,V=0;function q(t,e,n){const s=e.reduce(((e,n)=>(e[n]=(0,r.ux)(t)[n],e)),{});for(const e in s)t[e]=function(){const i=V,r=n?new Proxy(t,{get:(...t)=>(z=i,Reflect.get(...t)),set:(...t)=>(z=i,Reflect.set(...t))}):t;z=i;const a=s[e].apply(r,arguments);return z=void 0,a}}function $({app:t,store:e,options:n}){if(e.$id.startsWith("__hot:"))return;e._isOptionsAPI=!!n.state,q(e,Object.keys(n.actions),e._isOptionsAPI);const s=e._hotUpdate;(0,r.ux)(e)._hotUpdate=function(t){s.apply(this,arguments),q(e,Object.keys(t._hmrPayload.actions),!!e._isOptionsAPI)},function(t,e){D.includes(M(e.$id))||D.push(M(e.$id)),(0,a.$q)({id:"dev.esm.pinia",label:"Pinia 🍍",logo:"https://pinia.vuejs.org/logo.svg",packageName:"pinia",homepage:"https://pinia.vuejs.org",componentStateTypes:D,app:t,settings:{logStoreChanges:{label:"Notify about new/deleted stores",type:"boolean",defaultValue:!0}}},(t=>{const n="function"==typeof t.now?t.now.bind(t):Date.now;e.$onAction((({after:s,onError:i,name:r,args:a})=>{const o=V++;t.addTimelineEvent({layerId:O,event:{time:n(),title:"🛫 "+r,subtitle:"start",data:{store:E(e.$id),action:E(r),args:a},groupId:o}}),s((s=>{z=void 0,t.addTimelineEvent({layerId:O,event:{time:n(),title:"🛬 "+r,subtitle:"end",data:{store:E(e.$id),action:E(r),args:a,result:s},groupId:o}})})),i((s=>{z=void 0,t.addTimelineEvent({layerId:O,event:{time:n(),logType:"error",title:"💥 "+r,subtitle:"end",data:{store:E(e.$id),action:E(r),args:a,error:s},groupId:o}})}))}),!0),e._customProperties.forEach((s=>{(0,r.wB)((()=>(0,r.R1)(e[s])),((e,i)=>{t.notifyComponentUpdate(),t.sendInspectorState(U),B&&t.addTimelineEvent({layerId:O,event:{time:n(),title:"Change",subtitle:s,data:{newValue:e,oldValue:i},groupId:z}})}),{deep:!0})})),e.$subscribe((({events:s,type:i},r)=>{if(t.notifyComponentUpdate(),t.sendInspectorState(U),!B)return;const a={time:n(),title:I(i),data:j({store:E(e.$id)},P(s)),groupId:z};i===m.patchFunction?a.subtitle="⤵️":i===m.patchObject?a.subtitle="🧩":s&&!Array.isArray(s)&&(a.subtitle=s.type),s&&(a.data["rawEvent(s)"]={_custom:{display:"DebuggerEvent",type:"object",tooltip:"raw DebuggerEvent[]",value:s}}),t.addTimelineEvent({layerId:O,event:a})}),{detached:!0,flush:"sync"});const s=e._hotUpdate;e._hotUpdate=(0,r.IG)((i=>{s(i),t.addTimelineEvent({layerId:O,event:{time:n(),title:"🔥 "+e.$id,subtitle:"HMR update",data:{store:E(e.$id),info:E("HMR update")}}}),t.notifyComponentUpdate(),t.sendInspectorTree(U),t.sendInspectorState(U)}));const{$dispose:i}=e;e.$dispose=()=>{i(),t.notifyComponentUpdate(),t.sendInspectorTree(U),t.sendInspectorState(U),t.getSettings().logStoreChanges&&C(`Disposed "${e.$id}" store 🗑`)},t.notifyComponentUpdate(),t.sendInspectorTree(U),t.sendInspectorState(U),t.getSettings().logStoreChanges&&C(`"${e.$id}" store installed 🆕`)}))}(t,e)}const H=()=>{};function W(t,e,n,s=H){t.push(e);const i=()=>{const n=t.indexOf(e);n>-1&&(t.splice(n,1),s())};return!n&&(0,r.o5)()&&(0,r.jr)(i),i}function G(t,...e){t.slice().forEach((t=>{t(...e)}))}const Y=t=>t();function K(t,e){t instanceof Map&&e instanceof Map&&e.forEach(((e,n)=>t.set(n,e))),t instanceof Set&&e instanceof Set&&e.forEach(t.add,t);for(const n in e){if(!e.hasOwnProperty(n))continue;const s=e[n],i=t[n];u(i)&&u(s)&&t.hasOwnProperty(n)&&!(0,r.i9)(s)&&!(0,r.g8)(s)?t[n]=K(i,s):t[n]=s}return t}const Q=Symbol(),X=new WeakMap,{assign:J}=Object;function Z(t,e,n={},s,i,a){let o;const l=J({actions:{}},n),d={deep:!0};let p,g,h,A=[],v=[];const w=s.state.value[t];a||w||(r.LE?(0,r.hZ)(s.state.value,t,{}):s.state.value[t]={});const y=(0,r.KR)({});let b;function C(e){let n;p=g=!1,"function"==typeof e?(e(s.state.value[t]),n={type:m.patchFunction,storeId:t,events:h}):(K(s.state.value[t],e),n={type:m.patchObject,payload:e,storeId:t,events:h});const i=b=Symbol();(0,r.dY)().then((()=>{b===i&&(p=!0)})),g=!0,G(A,n,s.state.value[t])}const _=a?function(){const{state:t}=n,e=t?t():{};this.$patch((t=>{J(t,e)}))}:H;function x(e,n){return function(){c(s);const i=Array.from(arguments),r=[],a=[];let o;G(v,{args:i,name:e,store:S,after:function(t){r.push(t)},onError:function(t){a.push(t)}});try{o=n.apply(this&&this.$id===t?this:S,i)}catch(t){throw G(a,t),t}return o instanceof Promise?o.then((t=>(G(r,t),t))).catch((t=>(G(a,t),Promise.reject(t)))):(G(r,o),o)}}const T=(0,r.IG)({actions:{},getters:{},state:[],hotState:y}),k={_p:s,$id:t,$onAction:W.bind(null,v),$patch:C,$reset:_,$subscribe(e,n={}){const i=W(A,e,n.detached,(()=>a())),a=o.run((()=>(0,r.wB)((()=>s.state.value[t]),(s=>{("sync"===n.flush?g:p)&&e({storeId:t,type:m.direct,events:h},s)}),J({},d,n))));return i},$dispose:function(){o.stop(),A=[],v=[],s._s.delete(t)}};r.LE&&(k._r=!1);const S=(0,r.Kh)(f?J({_hmrPayload:T,_customProperties:(0,r.IG)(new Set)},k):k);s._s.set(t,S);const E=(s._a&&s._a.runWithContext||Y)((()=>s._e.run((()=>(o=(0,r.uY)()).run(e)))));for(const e in E){const n=E[e];if((0,r.i9)(n)&&(N=n,!(0,r.i9)(N)||!N.effect)||(0,r.g8)(n))a||(!w||(L=n,r.LE?X.has(L):u(L)&&L.hasOwnProperty(Q))||((0,r.i9)(n)?n.value=w[e]:K(n,w[e])),r.LE?(0,r.hZ)(s.state.value[t],e,n):s.state.value[t][e]=n);else if("function"==typeof n){const t=x(e,n);r.LE?(0,r.hZ)(E,e,t):E[e]=t,l.actions[e]=n}}var L,N;if(r.LE?Object.keys(E).forEach((t=>{(0,r.hZ)(S,t,E[t])})):(J(S,E),J((0,r.ux)(S),E)),Object.defineProperty(S,"$state",{get:()=>s.state.value[t],set:t=>{C((e=>{J(e,t)}))}}),f){const t={writable:!0,configurable:!0,enumerable:!1};["_p","_hmrPayload","_getters","_customProperties"].forEach((e=>{Object.defineProperty(S,e,J({value:S[e]},t))}))}return r.LE&&(S._r=!0),s._p.forEach((t=>{if(f){const e=o.run((()=>t({store:S,app:s._a,pinia:s,options:l})));Object.keys(e||{}).forEach((t=>S._customProperties.add(t))),J(S,e)}else J(S,o.run((()=>t({store:S,app:s._a,pinia:s,options:l}))))})),w&&a&&n.hydrate&&n.hydrate(S.$state,w),p=!0,g=!0,S}function tt(t,e,n){let s,i;const a="function"==typeof e;function o(t,n){const o=(0,r.PS)();return(t=t||(o?(0,r.WQ)(d,null):null))&&c(t),(t=l)._s.has(s)||(a?Z(s,e,i,t):function(t,e,n,s){const{state:i,actions:a,getters:o}=e,l=n.state.value[t];let d;d=Z(t,(function(){l||(r.LE?(0,r.hZ)(n.state.value,t,i?i():{}):n.state.value[t]=i?i():{});const e=(0,r.QW)(n.state.value[t]);return J(e,a,Object.keys(o||{}).reduce(((e,s)=>(e[s]=(0,r.IG)((0,r.EW)((()=>{c(n);const e=n._s.get(t);if(!r.LE||e._r)return o[s].call(e,e)}))),e)),{}))}),e,n,0,!0)}(s,i,t)),t._s.get(s)}return"string"==typeof t?(s=t,i=a?n:e):(i=t,s=t.id),o.$id=s,o}var et=s(92320),nt=s(21777),st=s(85471);const it=function(){const t=(0,r.uY)(!0),e=t.run((()=>(0,r.KR)({})));let n=[],s=[];const i=(0,r.IG)({install(t){c(i),r.LE||(i._a=t,t.provide(d,i),t.config.globalProperties.$pinia=i,f&&R(t,i),s.forEach((t=>n.push(t))),s=[])},use(t){return this._a||r.LE?n.push(t):s.push(t),this},_p:n,_a:null,_e:t,_s:new Map,state:e});return f&&"undefined"!=typeof Proxy&&i.use($),i}();var rt=s(63814);const at="%[a-f0-9]{2}",ot=new RegExp("("+at+")|([^%]+?)","gi"),lt=new RegExp("("+at+")+","gi");function ct(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([],ct(n),ct(s))}function dt(t){try{return decodeURIComponent(t)}catch{let e=t.match(ot)||[];for(let n=1;n<e.length;n++)e=(t=ct(e,n).join("")).match(ot)||[];return t}}function ut(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 mt(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 pt=t=>null==t,ft=t=>encodeURIComponent(t).replace(/[!'()*]/g,(t=>`%${t.charCodeAt(0).toString(16).toUpperCase()}`)),gt=Symbol("encodeFragmentIdentifier");function ht(t){if("string"!=typeof t||1!==t.length)throw new TypeError("arrayFormatSeparator must be single character string")}function At(t,e){return e.encode?e.strict?ft(t):encodeURIComponent(t):t}function vt(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=lt.exec(t);for(;n;){try{e[n[0]]=decodeURIComponent(n[0])}catch{const t=dt(n[0]);t!==n[0]&&(e[n[0]]=t)}n=lt.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 wt(t){return Array.isArray(t)?t.sort():"object"==typeof t?wt(Object.keys(t)).sort(((t,e)=>Number(t)-Number(e))).map((e=>t[e])):t}function yt(t){const e=t.indexOf("#");return-1!==e&&(t=t.slice(0,e)),t}function bt(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 Ct(t){const e=(t=yt(t)).indexOf("?");return-1===e?"":t.slice(e+1)}function _t(t,e){ht((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&&vt(n,t).includes(t.arrayFormatSeparator);n=r?vt(n,t):n;const a=i||r?n.split(t.arrayFormatSeparator).map((e=>vt(e,t))):null===n?n:vt(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?vt(n,t):n);const r=null===n?[]:n.split(t.arrayFormatSeparator).map((e=>vt(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.replace(/\+/g," "):i;let[r,a]=ut(t,"=");void 0===r&&(r=t),a=void 0===a?null:["comma","separator","bracket-separator"].includes(e.arrayFormat)?a:vt(a,e),n(vt(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]=bt(s,e);else s[t]=bt(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)?wt(n):n,t}),Object.create(null))}function xt(t,e){if(!t)return"";ht((e={encode:!0,strict:!0,arrayFormat:"none",arrayFormatSeparator:",",...e}).arrayFormatSeparator);const n=n=>e.skipNull&&pt(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,[At(e,t),"[",i,"]"].join("")]:[...n,[At(e,t),"[",At(i,t),"]=",At(s,t)].join("")]};case"bracket":return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[At(e,t),"[]"].join("")]:[...n,[At(e,t),"[]=",At(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,[At(e,t),":list="].join("")]:[...n,[At(e,t),":list=",At(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?[[At(n,t),e,At(i,t)].join("")]:[[s,At(i,t)].join(t.arrayFormatSeparator)])}default:return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,At(e,t)]:[...n,[At(e,t),"=",At(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?At(n,e):Array.isArray(i)?0===i.length&&"bracket-separator"===e.arrayFormat?At(n,e)+"[]":i.reduce(s(n),[]).join("&"):At(n,e)+"="+At(i,e)})).filter((t=>t.length>0)).join("&")}function Tt(t,e){e={decode:!0,...e};let[n,s]=ut(t,"#");return void 0===n&&(n=t),{url:n?.split("?")?.[0]??"",query:_t(Ct(t),e),...e&&e.parseFragmentIdentifier&&s?{fragmentIdentifier:vt(s,e)}:{}}}function kt(t,e){e={encode:!0,strict:!0,[gt]:!0,...e};const n=yt(t.url).split("?")[0]||"";let s=xt({..._t(Ct(t.url),{sort:!1}),...t.query},e);s&&(s=`?${s}`);let i=function(t){let e="";const n=t.indexOf("#");return-1!==n&&(e=t.slice(n)),e}(t.url);if(t.fragmentIdentifier){const s=new URL(n);s.hash=t.fragmentIdentifier,i=e[gt]?s.hash:`#${t.fragmentIdentifier}`}return`${n}${s}${i}`}function St(t,e,n){n={parseFragmentIdentifier:!0,[gt]:!1,...n};const{url:s,query:i,fragmentIdentifier:r}=Tt(t,n);return kt({url:s,query:mt(i,e),fragmentIdentifier:r},n)}function Et(t,e,n){return St(t,Array.isArray(e)?t=>!e.includes(t):(t,n)=>!e(t,n),n)}const Lt=i;var Nt=s(40173);st.Ay.use(Nt.Ay);const Ft=Nt.Ay.prototype.push;Nt.Ay.prototype.push=function(t,e,n){return e||n?Ft.call(this,t,e,n):Ft.call(this,t).catch((t=>t))};const Pt=new Nt.Ay({mode:"history",base:(0,rt.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=Lt.stringify(t).replace(/%2F/gim,"/");return e?"?"+e:""}});function It(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:e+""}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Bt=s(96763);var Dt=s(22378),Ot=s(61338),Ut=s(53334);const jt={name:"CogIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Mt=s(14486);const Rt=(0,Mt.A)(jt,(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 zt=s(42530),Vt=s(52439),qt=s(6695);function $t(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,d=void 0===c?void 0:c,u=!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 g(){s=void 0}u||(l||!d||s||f(),p(),void 0===d&&c>t?l?(m=Date.now(),a||(s=setTimeout(d?g:f,t))):f():!0!==a&&(s=setTimeout(d?g:f,void 0===d?t-c:t)))}return f.cancel=function(t){var e=(t||{}).upcomingOnly,n=void 0!==e&&e;p(),u=!n},f}var Ht=s(32981),Wt=s(85168),Gt=s(26287);const Yt={name:"ChartPieIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Kt=(0,Mt.A)(Yt,(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 Qt=s(95101);const Xt=(0,s(53529).YK)().setApp("files").detectUser().build(),Jt={name:"NavigationQuota",components:{ChartPie:Kt,NcAppNavigationItem:Vt.A,NcProgressBar:Qt.A},data:()=>({loadingStorageStats:!1,storageStats:(0,Ht.C)("files","storageStats",null)}),computed:{storageStatsTitle(){var t,e,n;const s=(0,et.v7)(null===(t=this.storageStats)||void 0===t?void 0:t.used,!1,!1),i=(0,et.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,Ot.B1)("files:node:created",this.throttleUpdateStorageStats),(0,Ot.B1)("files:node:deleted",this.throttleUpdateStorageStats),(0,Ot.B1)("files:node:moved",this.throttleUpdateStorageStats),(0,Ot.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:(Zt={}.atBegin,$t(200,(function(t){this.updateStorageStats(t)}),{debounceMode:!1!==(void 0!==Zt&&Zt)})),throttleUpdateStorageStats:$t(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 Gt.A.get((0,rt.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){Xt.error("Could not refresh storage stats",{error:n}),e&&(0,Wt.Qg)(t("files","Could not refresh storage stats"))}finally{this.loadingStorageStats=!1}}},showStorageFullWarning(){(0,Wt.Qg)(this.t("files","Your storage is full, files can not be updated or synced anymore!"))},t:Ut.Tl}};var Zt,te=s(85072),ee=s.n(te),ne=s(97825),se=s.n(ne),ie=s(77659),re=s.n(ie),ae=s(55056),oe=s.n(ae),le=s(10540),ce=s.n(le),de=s(41113),ue=s.n(de),me=s(33149),pe={};pe.styleTagTransform=ue(),pe.setAttributes=oe(),pe.insert=re().bind(null,"head"),pe.domAPI=se(),pe.insertStyleElement=ce(),ee()(me.A,pe),me.A&&me.A.locals&&me.A.locals;const fe=(0,Mt.A)(Jt,(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 ge=s(39033),he=s(35845),Ae=s(32073);const ve={name:"ClipboardIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},we=(0,Mt.A)(ve,(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 ye=s(8369);const be={name:"Setting",props:{el:{type:Function,required:!0}},mounted(){this.$el.appendChild(this.el())}},Ce=(0,Mt.A)(be,(function(){return(0,this._self._c)("div")}),[],!1,null,null,null).exports,_e=(0,Ht.C)("files","config",{show_hidden:!1,crop_image_previews:!0,sort_favorites_first:!0,sort_folders_first:!0,grid_view:!1}),xe=function(){const t=tt("userconfig",{state:()=>({userConfig:_e}),actions:{onUpdate(t,e){st.Ay.set(this.userConfig,t,e)},async update(t,e){await Gt.A.put((0,rt.Jv)("/apps/files/api/v1/config/"+t),{value:e}),(0,Ot.Ic)("files:config:updated",{key:t,value:e})}}})(...arguments);return t._initialized||((0,Ot.B1)("files:config:updated",(function(e){let{key:n,value:s}=e;t.onUpdate(n,s)})),t._initialized=!0),t},Te={name:"Settings",components:{Clipboard:we,NcAppSettingsDialog:ge.N,NcAppSettingsSection:he.A,NcCheckboxRadioSwitch:Ae.A,NcInputField:ye.A,Setting:Ce},props:{open:{type:Boolean,default:!1}},setup:()=>({userConfigStore:xe()}),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,rt.dC)("dav/files/"+encodeURIComponent(null===(e=(0,nt.HW)())||void 0===e?void 0:e.uid)),webdavDocs:"https://docs.nextcloud.com/server/stable/go.php?to=user-webdav",appPasswordUrl:(0,rt.Jv)("/settings/user/security#generate-app-token-section"),webdavUrlCopied:!1,enableGridView:null===(n=(0,Ht.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,Wt.Te)(t("files","WebDAV URL copied to clipboard")),setTimeout((()=>{this.webdavUrlCopied=!1}),5e3)):(0,Wt.Qg)(t("files","Clipboard is not available"))},t:Ut.Tl}},ke=Te;var Se=s(83331),Ee={};Ee.styleTagTransform=ue(),Ee.setAttributes=oe(),Ee.insert=re().bind(null,"head"),Ee.domAPI=se(),Ee.insertStyleElement=ce(),ee()(Se.A,Ee),Se.A&&Se.A.locals&&Se.A.locals;const Le=(0,Mt.A)(ke,(function(){var t=this,e=t._self._c;return e("NcAppSettingsDialog",{attrs:{"data-cy-files-navigation-settings":"",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,"109572de",null).exports;function Ne(){const t=(0,et.bh)(),e=(0,st.IJ)(t.views),n=(0,st.IJ)(t.active);function s(t){n.value=t.detail}function i(){e.value=t.views}return(0,st.sV)((()=>{t.addEventListener("update",i),t.addEventListener("updateActive",s)})),(0,st.hi)((()=>{t.removeEventListener("update",i),t.removeEventListener("updateActive",s)})),{currentView:n,views:e}}const Fe=(0,Ht.C)("files","viewConfigs",{}),Pe=function(){const t=tt("viewconfig",{state:()=>({viewConfig:Fe}),getters:{getConfig:t=>e=>t.viewConfig[e]||{}},actions:{onUpdate(t,e,n){this.viewConfig[t]||st.Ay.set(this.viewConfig,t,{}),st.Ay.set(this.viewConfig[t],e,n)},async update(t,e,n){Gt.A.put((0,rt.Jv)("/apps/files/api/v1/views/".concat(t,"/").concat(e)),{value:n}),(0,Ot.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,Ot.B1)("files:viewconfig:updated",(function(t){let{view:n,key:s,value:i}=t;e.onUpdate(n,s,i)})),e._initialized=!0),e},Ie=(0,st.pM)({name:"Navigation",components:{IconCog:Rt,NavigationQuota:fe,NcAppNavigation:zt.A,NcAppNavigationItem:Vt.A,NcIconSvgWrapper:qt.A,SettingsModal:Le},setup(){const t=Pe(),{currentView:e,views:n}=Ne();return{currentView:e,views:n,viewConfigStore:t}},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"},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:{currentViewId(t,e){var n;if(this.currentViewId!==(null===(n=this.currentView)||void 0===n?void 0:n.id)){const n=this.views.find((t=>{let{id:e}=t;return e===this.currentViewId}));this.showView(n),Xt.debug("Navigation changed from ".concat(e," to ").concat(t),{to:n})}}},beforeMount(){const t=this.views.find((t=>{let{id:e}=t;return e===this.currentViewId}));this.showView(t),Xt.debug("Navigation mounted. Showing requested view",{view:t})},methods:{t:Ut.Tl,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.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,Ot.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}}});var Be=s(82989),De={};De.styleTagTransform=ue(),De.setAttributes=oe(),De.insert=re().bind(null,"head"),De.domAPI=se(),De.insertStyleElement=ce(),ee()(Be.A,De),Be.A&&Be.A.locals&&Be.A.locals;const Oe=(0,Mt.A)(Ie,(function(){var t=this,e=t._self._c;return t._self._setupProxy,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("IconCog",{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,"d0bcf126",null).exports;var Ue=s(87485),je=s(77905),Me=s(96995),Re=s(43627),ze=s(38805),Ve=s(89979);const qe={name:"FormatListBulletedSquareIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},$e=(0,Mt.A)(qe,(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 He=s(18195),We=s(54332),Ge=s(34196),Ye=s(84237),Ke=s(27577);const Qe={name:"AccountPlusIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Xe=(0,Mt.A)(Qe,(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,Je={name:"ViewGridIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ze=(0,Mt.A)(Je,(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 tn=s(49981);const en=new et.hY({id:"details",displayName:()=>(0,Ut.Tl)("files","Open details"),iconSvgInline:()=>tn,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!==et.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},{...window.OCP.Files.Router.query,dir:n},!0),null}catch(t){return Xt.error("Error while opening sidebar",{error:t}),!1}},order:-50});var nn,sn=s(44719);const rn="/files/".concat(null===(nn=(0,nt.HW)())||void 0===nn?void 0:nn.uid),an=(0,rt.dC)("dav"+rn),on=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:an;const e=(0,sn.UU)(t),n=t=>{null==e||e.setHeaders({"X-Requested-With":"XMLHttpRequest",requesttoken:null!=t?t:""})};return(0,nt.zo)(n),n((0,nt.do)()),(0,sn.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},ln=on(),cn=async t=>{const e=(0,et.VL)(),n=await ln.stat("".concat(et.lJ).concat(t.path),{details:!0,data:e});return(0,et.Al)(n.data)},dn=function(){const t=tt("files",{state:()=>({files:{},roots:{}}),getters:{getNode:t=>e=>t.files[e],getNodes:t=>e=>e.map((e=>t.files[e])).filter(Boolean),getNodesById:t=>e=>Object.values(t.files).filter((t=>t.fileid===e)),getRoot:t=>e=>t.roots[e]},actions:{updateNodes(t){const e=t.reduce(((t,e)=>e.fileid?(t[e.source]=e,t):(Xt.error("Trying to update/set a node without fileid",{node:e}),t)),{});st.Ay.set(this,"files",{...this.files,...e})},deleteNodes(t){t.forEach((t=>{t.source&&st.Ay.delete(this.files,t.source)}))},setRoot(t){let{service:e,root:n}=t;st.Ay.set(this.roots,e,n)},onDeletedNode(t){this.deleteNodes([t])},onCreatedNode(t){this.updateNodes([t])},async onUpdatedNode(t){if(!t.fileid)return void Xt.error("Trying to update/set a node without fileid",{node:t});const e=this.getNodesById(t.fileid);if(e.length>1)return await Promise.all(e.map(cn)).then(this.updateNodes),void Xt.debug(e.length+" nodes updated in store",{fileid:t.fileid});t.source!==e[0].source?cn(t).then((t=>this.updateNodes([t]))):this.updateNodes([t])}}})(...arguments);return t._initialized||((0,Ot.B1)("files:node:created",t.onCreatedNode),(0,Ot.B1)("files:node:deleted",t.onDeletedNode),(0,Ot.B1)("files:node:updated",t.onUpdatedNode),t._initialized=!0),t},un=function(){const t=dn(...arguments),e=tt("paths",{state:()=>({paths:{}}),getters:{getPath:t=>(e,n)=>{if(t.paths[e])return t.paths[e][n]}},actions:{addPath(t){this.paths[t.service]||st.Ay.set(this.paths,t.service,{}),st.Ay.set(this.paths[t.service],t.path,t.source)},onCreatedNode(e){var n;const s=(null===(n=(0,et.bh)())||void 0===n||null===(n=n.active)||void 0===n?void 0:n.id)||"files";if(e.fileid){if(e.type===et.pt.Folder&&this.addPath({service:s,path:e.path,source:e.source}),"/"===e.dirname){const n=t.getRoot(s);return n._children||st.Ay.set(n,"_children",[]),void n._children.push(e.source)}if(this.paths[s][e.dirname]){const n=this.paths[s][e.dirname],i=t.getNode(n);return Xt.debug("Path already exists, updating children",{parentFolder:i,node:e}),i?(i._children||st.Ay.set(i,"_children",[]),void i._children.push(e.source)):void Xt.error("Parent folder not found",{parentSource:n})}Xt.debug("Parent path does not exists, skipping children update",{node:e})}else Xt.error("Node has no fileid",{node:e})}}})(...arguments);return e._initialized||((0,Ot.B1)("files:node:created",e.onCreatedNode),e._initialized=!0),e},mn=tt("selection",{state:()=>({selected:[],lastSelection:[],lastSelectedIndex:null}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];st.Ay.set(this,"selected",[...new Set(t)])},setLastIndex(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;st.Ay.set(this,"lastSelection",t?this.selected:[]),st.Ay.set(this,"lastSelectedIndex",t)},reset(){st.Ay.set(this,"selected",[]),st.Ay.set(this,"lastSelection",[]),st.Ay.set(this,"lastSelectedIndex",null)}}});let pn;const fn=function(){return pn=(0,Me.g)(),tt("uploader",{state:()=>({queue:pn.queue})})(...arguments)};function gn(t){return t instanceof Date?t.toISOString():String(t)}var hn=s(51850),An=s(86383),vn=s(71089),wn=s(96763);class yn 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: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 bn=async t=>{if(t.isFile)return new Promise(((e,n)=>{t.file(e,n)}));Xt.debug("Handling recursive file tree",{entry:t.name});const e=t,n=await Cn(e),s=(await Promise.all(n.map(bn))).flat();return new yn(e.name,s)},Cn=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()}))},_n=async t=>{const e=(0,et.H4)();if(!await e.exists(t)){Xt.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,et.VL)()});(0,Ot.Ic)("files:node:created",(0,et.Al)(n.data))}},xn=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,Me.o)(e.path,s,n);return Xt.debug("Conflict resolution",{uploads:i,selected:r,renamed:a}),0===r.length&&0===a.length?((0,Wt.cf)((0,Ut.Tl)("files","Conflicts resolution skipped")),Xt.info("User skipped the conflict resolution"),[]):[...i,...r,...a]}catch(t){wn.error(t),(0,Wt.Qg)((0,Ut.Tl)("files","Upload cancelled")),Xt.error("User cancelled the upload")}return[]};var Tn=s(14456),kn={};kn.styleTagTransform=ue(),kn.setAttributes=oe(),kn.insert=re().bind(null,"head"),kn.domAPI=se(),kn.insertStyleElement=ce(),ee()(Tn.A,kn),Tn.A&&Tn.A.locals&&Tn.A.locals;var Sn=s(53110),En=s(36882),Ln=s(39285),Nn=s(49264);let Fn;const Pn=()=>(Fn||(Fn=new Nn.A({concurrency:5})),Fn);var In;!function(t){t.MOVE="Move",t.COPY="Copy",t.MOVE_OR_COPY="move-or-copy"}(In||(In={}));const Bn=t=>!!(t.reduce(((t,e)=>Math.min(t,e.permissions)),et.aX.ALL)&et.aX.UPDATE),Dn=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)&&!t.some((t=>t.permissions===et.aX.NONE));var On=s(36117);const Un=function(t){let e=0;for(let n=0;n<t.length;n++)e=(e<<5)-e+t.charCodeAt(n)|0;return e>>>0},jn=on(),Mn=function(t){var e;const n=null===(e=(0,nt.HW)())||void 0===e?void 0:e.uid;if(!n)throw new Error("No user id found");const s=t.props,i=(0,et.vb)(null==s?void 0:s.permissions),r=String(s["owner-id"]||n),a=(0,rt.dC)("dav"+rn+t.filename),o={id:(null==s?void 0:s.fileid)<0?Un(a):(null==s?void 0:s.fileid)||0,source:a,mtime:new Date(t.lastmod),mime:t.mime||"application/octet-stream",size:(null==s?void 0:s.size)||0,permissions:i,owner:r,root:rn,attributes:{...t,...s,"owner-id":r,"owner-display-name":String(s["owner-display-name"]),hasPreview:!(null==s||!s["has-preview"]),failed:(null==s?void 0:s.fileid)<0}};return delete o.attributes.props,"file"===t.type?new et.ZH(o):new et.vd(o)},Rn=t=>Bn(t)?Dn(t)?In.MOVE_OR_COPY:In.MOVE:In.COPY,zn=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!e)return;if(e.type!==et.pt.Folder)throw new Error((0,Ut.Tl)("files","Destination is not a folder"));if(n===In.MOVE&&t.dirname===e.path)throw new Error((0,Ut.Tl)("files","This file/folder is already in that directory"));if("".concat(e.path,"/").startsWith("".concat(t.path,"/")))throw new Error((0,Ut.Tl)("files","You cannot move a file/folder onto itself or into a subfolder of itself"));st.Ay.set(t,"status",et.zI.LOADING);const i=Pn();return await i.add((async()=>{const i=t=>1===t?(0,Ut.Tl)("files","(copy)"):(0,Ut.Tl)("files","(copy %n)",void 0,t);try{const r=(0,et.H4)(),a=(0,Re.join)(et.lJ,t.path),o=(0,Re.join)(et.lJ,e.path);if(n===In.COPY){let n=t.basename;if(!s){const e=await r.getDirectoryContents(o);n=(0,et.E6)(t.basename,e.map((t=>t.basename)),{suffix:i,ignoreFileExtension:t.type===et.pt.Folder})}if(await r.copyFile(a,(0,Re.join)(o,n)),t.dirname===e.path){const{data:t}=await r.stat((0,Re.join)(o,n),{details:!0,data:(0,et.VL)()});(0,Ot.Ic)("files:node:created",(0,et.Al)(t))}}else{const n=await function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/";const e=new AbortController,n=(0,et.VL)();return new On.CancelablePromise((async(s,i,r)=>{r((()=>e.abort()));try{const i=await jn.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:Mn(r),contents:a.map((t=>{try{return Mn(t)}catch(e){return Xt.error("Invalid node detected '".concat(t.basename,"'"),{error:e}),null}})).filter(Boolean)})}catch(t){i(t)}}))}(e.path);if((0,Me.h)([t],n.contents))try{const{selected:s,renamed:i}=await(0,Me.o)(e.path,[t],n.contents);if(!s.length&&!i.length)return}catch(t){return void(0,Wt.Qg)((0,Ut.Tl)("files","Move cancelled"))}await r.moveFile(a,(0,Re.join)(o,t.basename)),(0,Ot.Ic)("files:node:deleted",t)}}catch(t){if(t instanceof Sn.pe){var r,a,o;if(412===(null==t||null===(r=t.response)||void 0===r?void 0:r.status))throw new Error((0,Ut.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,Ut.Tl)("files","The files is locked"));if(404===(null==t||null===(o=t.response)||void 0===o?void 0:o.status))throw new Error((0,Ut.Tl)("files","The file does not exist anymore"));if(t.message)throw new Error(t.message)}throw Xt.debug(t),new Error}finally{st.Ay.set(t,"status",void 0)}}))},Vn=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,Wt.a1)((0,Ut.Tl)("files","Choose destination")).allowDirectories(!0).setFilter((t=>!s.includes(t.fileid))).setMimeTypeFilter([]).setMultiSelect(!1).startAt(e);return new Promise(((e,s)=>{i.setButtonFactory(((s,i)=>{const r=[],a=(0,Re.basename)(i),o=n.map((t=>t.dirname)),l=n.map((t=>t.path));return t!==In.COPY&&t!==In.MOVE_OR_COPY||r.push({label:a?(0,Ut.Tl)("files","Copy to {target}",{target:a},void 0,{escape:!1,sanitize:!1}):(0,Ut.Tl)("files","Copy"),type:"primary",icon:En,async callback(t){e({destination:t[0],action:In.COPY})}}),o.includes(i)||l.includes(i)||t!==In.MOVE&&t!==In.MOVE_OR_COPY||r.push({label:a?(0,Ut.Tl)("files","Move to {target}",{target:a},void 0,{escape:!1,sanitize:!1}):(0,Ut.Tl)("files","Move"),type:t===In.MOVE?"primary":"secondary",icon:Ln,async callback(t){e({destination:t[0],action:In.MOVE})}}),r})),i.build().pick().catch((t=>{Xt.debug(t),t instanceof Wt.vT?s(new Error((0,Ut.Tl)("files","Cancelled move or copy operation"))):s(new Error((0,Ut.Tl)("files","Move or copy operation failed")))}))}))};new et.hY({id:"move-copy",displayName(t){switch(Rn(t)){case In.MOVE:return(0,Ut.Tl)("files","Move");case In.COPY:return(0,Ut.Tl)("files","Copy");case In.MOVE_OR_COPY:return(0,Ut.Tl)("files","Move or copy")}},iconSvgInline:()=>Ln,enabled:t=>!!t.every((t=>{var e;return null===(e=t.root)||void 0===e?void 0:e.startsWith("/files/")}))&&t.length>0&&(Bn(t)||Dn(t)),async exec(t,e,n){const s=Rn([t]);let i;try{i=await Vn(s,n,[t])}catch(t){return Xt.error(t),!1}try{return await zn(t,i.destination,i.action),!0}catch(t){return!!(t instanceof Error&&t.message)&&((0,Wt.Qg)(t.message),null)}},async execBatch(t,e,n){const s=Rn(t),i=await Vn(s,n,t),r=t.map((async t=>{try{return await zn(t,i.destination,i.action),!0}catch(e){return Xt.error("Failed to ".concat(i.action," node"),{node:t,error:e}),!1}}));return await Promise.all(r)},order:15});var qn=s(96763);const $n=async t=>{const e=t.filter((t=>"file"===t.kind||(Xt.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 yn("root");for(const t of e)if(t instanceof DataTransferItem){Xt.warn("Could not get FilesystemEntry of item, falling back to file");const e=t.getAsFile();if(null===e){Xt.warn("Could not process DataTransferItem",{type:t.type,kind:t.kind}),(0,Wt.Qg)((0,Ut.Tl)("files","One of the dropped files could not be processed"));continue}if("httpd/unix-directory"===e.type||!e.type){n||(Xt.warn("Browser does not support Filesystem API. Directories will not be uploaded"),(0,Wt.I9)((0,Ut.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 bn(t))}catch(t){Xt.error("Error while traversing file tree",{error:t})}return s},Hn=async(t,e,n)=>{const s=(0,Me.g)();if(await(0,Me.h)(t.contents,n)&&(t.contents=await xn(t.contents,e,n)),0===t.contents.length)return Xt.info("No files to upload",{root:t}),(0,Wt.cf)((0,Ut.Tl)("files","No files to upload")),[];Xt.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,Re.join)(n,a.name);if(a instanceof yn){const n=(0,vn.HS)(et.lJ,e.path,t);try{qn.debug("Processing directory",{relativePath:t}),await _n(n),await r(a,t)}catch(t){(0,Wt.Qg)((0,Ut.Tl)("files","Unable to create the directory {directory}",{directory:a.name})),Xt.error("",{error:t,absolutePath:n,directory:a})}}else Xt.debug("Uploading file to "+(0,Re.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?(Xt.error("Error while uploading files",{errors:a}),(0,Wt.Qg)((0,Ut.Tl)("files","Some files could not be uploaded")),[]):(Xt.debug("Files uploaded successfully"),(0,Wt.Te)((0,Ut.Tl)("files","Files uploaded successfully")),Promise.all(i))},Wn=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];const i=[];if(await(0,Me.h)(t,n)&&(t=await xn(t,e,n)),0===t.length)return Xt.info("No files to process",{nodes:t}),void(0,Wt.cf)((0,Ut.Tl)("files","No files to process"));for(const n of t)st.Ay.set(n,"status",et.zI.LOADING),i.push(zn(n,e,s?In.COPY:In.MOVE));const r=await Promise.allSettled(i);t.forEach((t=>st.Ay.set(t,"status",void 0)));const a=r.filter((t=>"rejected"===t.status));if(a.length>0)return Xt.error("Error while copying or moving files",{errors:a}),void(0,Wt.Qg)(s?(0,Ut.Tl)("files","Some files could not be copied"):(0,Ut.Tl)("files","Some files could not be moved"));Xt.debug("Files copy/move successful"),(0,Wt.Te)(s?(0,Ut.Tl)("files","Files copied successfully"):(0,Ut.Tl)("files","Files moved successfully"))},Gn=tt("dragging",{state:()=>({dragging:[]}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];st.Ay.set(this,"dragging",t)},reset(){st.Ay.set(this,"dragging",[])}}}),Yn=st.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()}}),Kn=(0,st.pM)({name:"BreadCrumbs",components:{NcBreadcrumbs:An.N,NcBreadcrumb:hn.N,NcIconSvgWrapper:qt.A},mixins:[Yn],props:{path:{type:String,default:"/"}},setup(){const t=Gn(),e=dn(),n=un(),s=mn(),i=fn(),{currentView:r}=Ne();return{draggingStore:t,filesStore:e,pathsStore:n,selectionStore:s,uploaderStore:i,currentView:r}},computed:{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.getFileSourceFromPath(t),s=n?this.getNodeFromSource(n):void 0,i={...this.$route,params:{node:null==s?void 0:s.fileid},query:{dir:t}};return{dir:t,exact:!0,name:this.getDirDisplayName(t),to:i,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:{getNodeFromSource(t){return this.filesStore.getNode(t)},getFileSourceFromPath(t){var e;return null!==(e=this.currentView&&this.pathsStore.getPath(this.currentView.id,t))&&void 0!==e?e:null},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,Ut.Tl)("files","Home");const s=this.getFileSourceFromPath(t),i=s?this.getNodeFromSource(s):void 0;return(null==i||null===(e=i.attributes)||void 0===e?void 0:e.displayname)||(0,Re.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){t.dataTransfer&&(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)||[]],o=await $n(a),l=await(null===(i=this.currentView)||void 0===i?void 0:i.getContents(e)),c=null==l?void 0:l.folder;if(!c)return void(0,Wt.Qg)(this.t("files","Target folder does not exist any more"));const d=!!(c.permissions&et.aX.CREATE),u=t.ctrlKey;if(!d||0!==t.button)return;if(Xt.debug("Dropped",{event:t,folder:c,selection:r,fileTree:o}),o.contents.length>0)return void await Hn(o,c,l.contents);const m=r.map((t=>this.filesStore.getNode(t)));await Wn(m,c,l.contents,u),r.some((t=>this.selectedFiles.includes(t)))&&(Xt.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,Ut.Tl)("files","Reload current directory"):0===t?(0,Ut.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,Ut.Tl)("files","Reload current directory"):null},t:Ut.Tl}});var Qn=s(67430),Xn={};Xn.styleTagTransform=ue(),Xn.setAttributes=oe(),Xn.insert=re().bind(null,"head"),Xn.domAPI=se(),Xn.insertStyleElement=ce(),ee()(Qn.A,Xn),Qn.A&&Qn.A.locals&&Qn.A.locals;const Jn=(0,Mt.A)(Kn,(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,"77111ada",null).exports,Zn=t=>{const e=t.filter((t=>t.type===et.pt.File)).length,n=t.filter((t=>t.type===et.pt.Folder)).length;return 0===e?(0,Ut.zw)("files","{folderCount} folder","{folderCount} folders",n,{folderCount:n}):0===n?(0,Ut.zw)("files","{fileCount} file","{fileCount} files",e,{fileCount:e}):1===e?(0,Ut.zw)("files","1 file and {folderCount} folder","1 file and {folderCount} folders",n,{folderCount:n}):1===n?(0,Ut.zw)("files","{fileCount} file and 1 folder","{fileCount} files and 1 folder",e,{fileCount:e}):(0,Ut.Tl)("files","{fileCount} files and {folderCount} folders",{fileCount:e,folderCount:n})};var ts=s(19231);const es=tt("actionsmenu",{state:()=>({opened:null})}),ns=function(){const t=tt("renaming",{state:()=>({renamingNode:void 0,newName:""})})(...arguments);return t._initialized||((0,Ot.B1)("files:node:rename",(function(e){t.renamingNode=e,t.newName=e.basename})),t._initialized=!0),t};var ss=s(55042);const is={name:"FileMultipleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},rs=(0,Mt.A)(is,(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,as={name:"FolderIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},os=(0,Mt.A)(as,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon folder-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,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,ls=st.Ay.extend({name:"DragAndDropPreview",components:{FileMultipleIcon:rs,FolderIcon:os},data:()=>({nodes:[]}),computed:{isSingleNode(){return 1===this.nodes.length},isSingleFolder(){return this.isSingleNode&&this.nodes[0].type===et.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,et.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 Zn(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)}))}}}),cs=ls;var ds=s(76810),us={};us.styleTagTransform=ue(),us.setAttributes=oe(),us.insert=re().bind(null,"head"),us.domAPI=se(),us.insertStyleElement=ce(),ee()(ds.A,us),ds.A&&ds.A.locals&&ds.A.locals;const ms=(0,Mt.A)(cs,(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,ps=st.Ay.extend(ms);let fs;st.Ay.directive("onClickOutside",ss.z0);const gs=(0,st.pM)({props:{source:{type:[et.vd,et.ZH,et.bP],required:!0},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},data:()=>({loading:"",dragover:!1,gridMode:!1}),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")},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 Un(this.source.source)},isLoading(){return this.source.status===et.zI.LOADING},extension(){var t;return null!==(t=this.source.attributes)&&void 0!==t&&t.displayname?(0,Re.extname)(this.source.attributes.displayname):this.source.extension||""},displayName(){const t=this.extension,e=String(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.selectedFiles.includes(this.source.source)},isRenaming(){return this.renamingStore.renamingNode===this.source},isRenamingSmallScreen(){return this.isRenaming&&this.filesListWidth<512},isActive(){return String(this.fileid)===String(this.currentFileId)},canDrag(){if(this.isRenaming)return!1;const t=t=>!!((null==t?void 0:t.permissions)&et.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===et.pt.Folder&&!this.draggingFiles.includes(this.source.source)&&!!(this.source.permissions&et.aX.CREATE)},openedMenu:{get(){return this.actionsMenuStore.opened===this.uniqueId.toString()},set(t){this.actionsMenuStore.opened=t?this.uniqueId.toString():null}},isRenaming(){return this.renamingStore.renamingNode===this.source}},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 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")}else{var n;const e=null===(n=this.$el)||void 0===n?void 0:n.closest("main.app-content"),s=e.getBoundingClientRect();e.style.setProperty("--mouse-pos-x",Math.max(0,t.clientX-s.left-200)+"px"),e.style.setProperty("--mouse-pos-y",Math.max(0,t.clientY-s.top)+"px")}const s=this.selectedFiles.length>1;this.actionsMenuStore.opened=this.isSelected&&s?"global":this.uniqueId.toString(),t.preventDefault(),t.stopPropagation()},execDefaultAction(t){if(!(this.isRenaming||t.button>1))return t.ctrlKey||t.metaKey||1===t.button?(t.preventDefault(),window.open((0,rt.Jv)("/f/{fileId}",{fileId:this.fileid})),!1):void this.$refs.actions.execDefaultAction(t)},openDetailsIfAvailable(t){var e;t.preventDefault(),t.stopPropagation(),null!=en&&null!==(e=en.enabled)&&void 0!==e&&e.call(en,[this.source],this.currentView)&&en.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();Xt.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.source.source)?this.draggingStore.set(this.selectedFiles):this.draggingStore.set([this.source.source]);const i=this.draggingStore.dragging.map((t=>this.filesStore.getNode(t))),r=await(async t=>new Promise((e=>{fs||(fs=(new ps).$mount(),document.body.appendChild(fs.$el)),fs.update(t),fs.$on("loaded",(()=>{e(fs.$el),fs.$off("loaded")}))})))(i);null===(s=t.dataTransfer)||void 0===s||s.setDragImage(r,-10,-10)},onDragEnd(){this.draggingStore.reset(),this.dragover=!1,Xt.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 $n(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,Wt.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,Xt.debug("Dropped",{event:t,folder:l,selection:i,fileTree:a}),a.contents.length>0)return void await Hn(a,l,o.contents);const d=i.map((t=>this.filesStore.getNode(t)));await Wn(d,l,o.contents,c),i.some((t=>this.selectedFiles.includes(t)))&&(Xt.debug("Dropped selection, resetting select store..."),this.selectionStore.reset())},t:Ut.Tl}});var hs=s(4604);const As={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()}}},vs=(0,Mt.A)(As,(function(){return(0,this._self._c)("span")}),[],!1,null,null,null).exports,ws={name:"ArrowLeftIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ys=(0,Mt.A)(ws,(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;var bs=s(89257),Cs=s(24764),_s=s(80114);const xs=(0,et.qK)(),Ts=(0,st.pM)({name:"FileEntryActions",components:{ArrowLeftIcon:ys,CustomElementRender:vs,NcActionButton:bs.A,NcActions:Cs.A,NcActionSeparator:_s.A,NcIconSvgWrapper:qt.A,NcLoadingIcon:Ye.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}},setup(){const{currentView:t}=Ne();return{currentView:t}},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")},isLoading(){return this.source.status===et.zI.LOADING},enabledActions(){return this.source.attributes.failed?[]:xs.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!==et.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),this.$set(this.source,"status",et.zI.LOADING);const e=await t.exec(this.source,this.currentView,this.currentDir);if(null==e)return;if(e)return void(0,Wt.Te)((0,Ut.Tl)("files",'"{displayName}" action executed successfully',{displayName:n}));(0,Wt.Qg)((0,Ut.Tl)("files",'"{displayName}" action failed',{displayName:n}))}catch(e){Xt.error("Error while executing action",{action:t,e}),(0,Wt.Qg)((0,Ut.Tl)("files",'"{displayName}" action failed',{displayName:n}))}finally{this.$emit("update:loading",""),this.$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:Ut.Tl}}),ks=Ts;var Ss=s(73093),Es={};Es.styleTagTransform=ue(),Es.setAttributes=oe(),Es.insert=re().bind(null,"head"),Es.domAPI=se(),Es.insertStyleElement=ce(),ee()(Ss.A,Es),Ss.A&&Ss.A.locals&&Ss.A.locals;var Ls=s(49718),Ns={};Ns.styleTagTransform=ue(),Ns.setAttributes=oe(),Ns.insert=re().bind(null,"head"),Ns.domAPI=se(),Ns.insertStyleElement=ce(),ee()(Ls.A,Ns),Ls.A&&Ls.A.locals&&Ls.A.locals;var Fs=(0,Mt.A)(ks,(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":!1,"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,"0bcaefce",null);const Ps=Fs.exports,Is=(0,st.pM)({name:"FileEntryCheckbox",components:{NcCheckboxRadioSwitch:Ae.A,NcLoadingIcon:Ye.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=mn(),e=function(){const t=tt("keyboard",{state:()=>({altKey:!1,ctrlKey:!1,metaKey:!1,shiftKey:!1}),actions:{onEvent(t){t||(t=window.event),st.Ay.set(this,"altKey",!!t.altKey),st.Ay.set(this,"ctrlKey",!!t.ctrlKey),st.Ay.set(this,"metaKey",!!t.metaKey),st.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.source.source)},index(){return this.nodes.findIndex((t=>t.source===this.source.source))},isFile(){return this.source.type===et.pt.File},ariaLabel(){return this.isFile?(0,Ut.Tl)("files",'Toggle selection for file "{displayName}"',{displayName:this.source.basename}):(0,Ut.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.source.source),e=Math.min(n,s),i=Math.max(s,n),r=this.selectionStore.lastSelection,a=this.nodes.map((t=>t.source)).slice(e,i+1).filter(Boolean),o=[...r,...a].filter((e=>!t||e!==this.source.source));return Xt.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.source.source]:this.selectedFiles.filter((t=>t!==this.source.source));Xt.debug("Updating selection",{selection:i}),this.selectionStore.set(i),this.selectionStore.setLastIndex(n)},resetSelection(){this.selectionStore.reset()},t:Ut.Tl}}),Bs=(0,Mt.A)(Is,(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 Ds=s(82182);const Os=(0,Ht.C)("files","forbiddenCharacters","").split(""),Us=st.Ay.extend({name:"FileEntryName",components:{NcTextField:Ds.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(){const{currentView:t}=Ne();return{currentView:t,renamingStore:ns()}},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{[et.pt.File]:(0,Ut.Tl)("files","File name"),[et.pt.Folder]:(0,Ut.Tl)("files","Folder name")}[this.source.type]},linkTo(){var t,e;if(this.source.attributes.failed)return{is:"span",params:{title:(0,Ut.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)&et.aX.READ?{is:"a",params:{download:this.source.basename,href:this.source.source,title:(0,Ut.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))||"";Xt.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(),n=-1!==e.indexOf("/")?"/":Os.find((t=>e.includes(t)));if("."===e||".."===e)throw new Error((0,Ut.Tl)("files",'"{name}" is an invalid file name.',{name:t}));if(0===e.length)throw new Error((0,Ut.Tl)("files","File name cannot be empty."));if(n)throw new Error((0,Ut.Tl)("files",'"{char}" is not allowed inside a file name.',{char:n}));if(e.match(OC.config.blacklist_files_regex))throw new Error((0,Ut.Tl)("files",'"{name}" is not an allowed filetype.',{name:t}));if(this.checkIfNodeExists(t))throw new Error((0,Ut.Tl)("files","{newName} already exists.",{newName:t}));return!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"))):Xt.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,Wt.Qg)((0,Ut.Tl)("files","Another entry with the same name already exists"));else{this.loading="renaming",st.Ay.set(this.source,"status",et.zI.LOADING),this.source.rename(i),Xt.debug("Moving file to",{destination:this.source.encodedSource,oldEncodedSource:s});try{await(0,Gt.A)({method:"MOVE",url:s,headers:{Destination:this.source.encodedSource,Overwrite:"F"}}),(0,Ot.Ic)("files:node:updated",this.source),(0,Ot.Ic)("files:node:renamed",this.source),(0,Wt.Te)((0,Ut.Tl)("files",'Renamed "{oldName}" to "{newName}"',{oldName:n,newName:i})),this.stopRenaming(),this.$nextTick((()=>{this.$refs.basename.focus()}))}catch(t){var r,a;if(Xt.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,Wt.Qg)((0,Ut.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,Wt.Qg)((0,Ut.Tl)("files",'The name "{newName}" is already used in the folder "{dir}". Please choose a different name.',{newName:i,dir:this.currentDir}));(0,Wt.Qg)((0,Ut.Tl)("files",'Could not rename "{oldName}"',{oldName:n}))}finally{this.loading=!1,st.Ay.set(this.source,"status",void 0)}}else this.stopRenaming();else(0,Wt.Qg)((0,Ut.Tl)("files","Name cannot be empty"))},t:Ut.Tl}}),js=(0,Mt.A)(Us,(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":""}},"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 Ms=s(72755);const Rs={name:"FileIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},zs=(0,Mt.A)(Rs,(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,Vs={name:"FolderOpenIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},qs=(0,Mt.A)(Vs,(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,$s={name:"KeyIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Hs=(0,Mt.A)($s,(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,Ws={name:"NetworkIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Gs=(0,Mt.A)(Ws,(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,Ys={name:"TagIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ks=(0,Mt.A)(Ys,(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,Qs={name:"PlayCircleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Xs=(0,Mt.A)(Qs,(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,Js={name:"CollectivesIcon",props:{title:{type:String,default:""},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Zs=(0,Mt.A)(Js,(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,ti=(0,st.pM)({name:"FavoriteIcon",components:{NcIconSvgWrapper:qt.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:Ut.Tl}});var ei=s(55559),ni={};ni.styleTagTransform=ue(),ni.setAttributes=oe(),ni.insert=re().bind(null,"head"),ni.domAPI=se(),ni.insertStyleElement=ce(),ee()(ei.A,ni),ei.A&&ei.A.locals&&ei.A.locals;const si=(0,Mt.A)(ti,(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,"04e52abc",null).exports,ii=st.Ay.extend({name:"FileEntryPreview",components:{AccountGroupIcon:Ms.A,AccountPlusIcon:Xe,CollectivesIcon:Zs,FavoriteIcon:si,FileIcon:zs,FolderIcon:os,FolderOpenIcon:qs,KeyIcon:Hs,LinkIcon:Ve.A,NetworkIcon:Gs,TagIcon:Ks},props:{source:{type:Object,required:!0},dragover:{type:Boolean,default:!1},gridMode:{type:Boolean,default:!1}},setup:()=>({userConfigStore:xe()}),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===et.pt.Folder)return null;if(!0===this.backgroundFailed)return null;try{const t=this.source.attributes.previewUrl||(0,rt.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"]?Xs:null},folderOverlay(){var t,e,n,s;if(this.source.type!==et.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 Hs;if(null!==(e=this.source)&&void 0!==e&&null!==(e=e.attributes)&&void 0!==e&&e["is-tag"])return Ks;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===je.Z.SHARE_TYPE_LINK||t===je.Z.SHARE_TYPE_EMAIL)))return Ve.A;if(i.length>0)return Xe;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 Gs;case"group":return Ms.A;case"collective":return Zs}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:Ut.Tl}}),ri=(0,Mt.A)(ii,(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,ai=(0,st.pM)({name:"FileEntry",components:{CustomElementRender:vs,FileEntryActions:Ps,FileEntryCheckbox:Bs,FileEntryName:js,FileEntryPreview:ri,NcDateTime:hs.A},mixins:[gs],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},compact:{type:Boolean,default:!1}},setup(){const t=es(),e=Gn(),n=dn(),s=ns(),i=mn(),{currentView:r}=Ne();return{actionsMenuStore:t,draggingStore:e,filesStore:n,renamingStore:s,selectionStore:i,currentView:r}},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=this.source.size;return!t||t<0?this.t("files","Pending"):(0,et.v7)(t,!0)},sizeOpacity(){const t=this.source.size;if(!t||isNaN(t)||t<0)return{};const e=Math.round(Math.min(100,100*Math.pow(t/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,ts.A)(this.source.mtime).format("LLL"):""}},methods:{formatFileSize:et.v7}}),oi=(0,Mt.A)(ai,(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:{auxclick:function(e){return t.execDefaultAction.apply(null,arguments)},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},nativeOn:{auxclick:function(e){return t.execDefaultAction.apply(null,arguments)},click:function(e){return t.execDefaultAction.apply(null,arguments)}}})],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}},[t.source.mtime?e("NcDateTime",{attrs:{timestamp:t.source.mtime,"ignore-seconds":!0}}):t._e()],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,li=(0,st.pM)({name:"FileEntryGrid",components:{FileEntryActions:Ps,FileEntryCheckbox:Bs,FileEntryName:js,FileEntryPreview:ri},mixins:[gs],inheritAttrs:!1,setup(){const t=es(),e=Gn(),n=dn(),s=ns(),i=mn(),{currentView:r}=Ne();return{actionsMenuStore:t,draggingStore:e,filesStore:n,renamingStore:s,selectionStore:i,currentView:r}},data:()=>({gridMode:!0})}),ci=(0,Mt.A)(li,(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:{auxclick:function(e){return t.execDefaultAction.apply(null,arguments)},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},nativeOn:{auxclick:function(e){return t.execDefaultAction.apply(null,arguments)},click:function(e){return t.execDefaultAction.apply(null,arguments)}}})],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 di=s(96763);const ui={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(){di.debug("Mounted",this.header.id),this.header.render(this.$refs.mount,this.currentFolder,this.currentView)}},mi=(0,Mt.A)(ui,(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,pi=st.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=un();return{filesStore:dn(),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,et.v7)(this.currentFolder.size,!0):(0,et.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:Ut.Tl}});var fi=s(31840),gi={};gi.styleTagTransform=ue(),gi.setAttributes=oe(),gi.insert=re().bind(null,"head"),gi.domAPI=se(),gi.insertStyleElement=ce(),ee()(fi.A,gi),fi.A&&fi.A.locals&&fi.A.locals;const hi=(0,Mt.A)(pi,(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 Ai=s(1795),vi=s(33017);const wi=st.Ay.extend({computed:{...(bi=Pe,Ci=["getConfig","setSortingBy","toggleSortingDirection"],Array.isArray(Ci)?Ci.reduce(((t,e)=>(t[e]=function(){return bi(this.$pinia)[e]},t)),{}):Object.keys(Ci).reduce(((t,e)=>(t[e]=function(){const t=bi(this.$pinia),n=Ci[e];return"function"==typeof n?n.call(this,t):t[n]},t)),{})),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)}}}),yi=(0,st.pM)({name:"FilesListTableHeaderButton",components:{MenuDown:Ai.A,MenuUp:vi.A,NcButton:We.A},mixins:[wi],props:{name:{type:String,required:!0},mode:{type:String,required:!0}},methods:{t:Ut.Tl}});var bi,Ci,_i=s(75290),xi={};xi.styleTagTransform=ue(),xi.setAttributes=oe(),xi.insert=re().bind(null,"head"),xi.domAPI=se(),xi.insertStyleElement=ce(),ee()(_i.A,xi),_i.A&&_i.A.locals&&_i.A.locals;const Ti=(0,Mt.A)(yi,(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,"097f69d4",null).exports,ki=(0,st.pM)({name:"FilesListTableHeader",components:{FilesListTableHeaderButton:Ti,NcCheckboxRadioSwitch:Ae.A},mixins:[wi],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},setup(){const t=dn(),e=mn(),{currentView:n}=Ne();return{filesStore:t,selectionStore:e,currentView:n}},computed:{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,Ut.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.source)).filter(Boolean);Xt.debug("Added all nodes to selection",{selection:t}),this.selectionStore.setLastIndex(null),this.selectionStore.set(t)}else Xt.debug("Cleared selection"),this.selectionStore.reset()},resetSelection(){this.selectionStore.reset()},t:Ut.Tl}});var Si=s(75458),Ei={};Ei.styleTagTransform=ue(),Ei.setAttributes=oe(),Ei.insert=re().bind(null,"head"),Ei.domAPI=se(),Ei.insertStyleElement=ce(),ee()(Si.A,Ei),Si.A&&Si.A.locals&&Si.A.locals;const Li=(0,Mt.A)(ki,(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,"68d3de81",null).exports;var Ni=s(17334),Fi=s.n(Ni),Pi=s(96763);const Ii=st.Ay.extend({name:"VirtualList",mixins:[Yn],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}}))},totalRowCount(){return Math.floor(this.dataSources.length/this.columnCount)},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"),minHeight:"".concat(this.totalRowCount*this.itemHeight+this.beforeHeight,"px")}}},watch:{scrollToIndex(t){this.scrollTo(t)},totalRowCount(){this.scrollToIndex&&this.$nextTick((()=>this.scrollTo(this.scrollToIndex)))},columnCount(t,e){0!==e?this.scrollTo(this.index):Pi.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(Fi()((()=>{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,Xt.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 Xt.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;Xt.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")})))}}}),Bi=(0,Mt.A)(Ii,(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,Di=(0,et.qK)(),Oi=(0,st.pM)({name:"FilesListTableHeaderActions",components:{NcActions:Cs.A,NcActionButton:bs.A,NcIconSvgWrapper:qt.A,NcLoadingIcon:Ye.A},mixins:[Yn],props:{currentView:{type:Object,required:!0},selectedNodes:{type:Array,default:()=>[]}},setup:()=>({actionsMenuStore:es(),filesStore:dn(),selectionStore:mn()}),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 Di.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===et.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=>{st.Ay.set(t,"status",et.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,Wt.Qg)(this.t("files",'"{displayName}" failed on some elements ',{displayName:e}))}(0,Wt.Te)(this.t("files",'"{displayName}" batch action executed successfully',{displayName:e})),this.selectionStore.reset()}catch(n){Xt.error("Error while executing action",{action:t,e:n}),(0,Wt.Qg)(this.t("files",'"{displayName}" action failed',{displayName:e}))}finally{this.loading=null,this.nodes.forEach((t=>{st.Ay.set(t,"status",void 0)}))}},t:Ut.Tl}}),Ui=Oi;var ji=s(30651),Mi={};Mi.styleTagTransform=ue(),Mi.setAttributes=oe(),Mi.insert=re().bind(null,"head"),Mi.domAPI=se(),Mi.insertStyleElement=ce(),ee()(ji.A,Mi),ji.A&&ji.A.locals&&ji.A.locals;var Ri=(0,Mt.A)(Ui,(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,"91476734",null);const zi=Ri.exports,Vi=(0,st.pM)({name:"FilesListVirtual",components:{FilesListHeader:mi,FilesListTableFooter:hi,FilesListTableHeader:Li,VirtualList:Bi,FilesListTableHeaderActions:zi},mixins:[Yn],props:{currentView:{type:et.Ss,required:!0},currentFolder:{type:et.vd,required:!0},nodes:{type:Array,required:!0}},setup:()=>({userConfigStore:xe(),selectionStore:mn()}),data:()=>({FileEntry:oi,FileEntryGrid:ci,headers:(0,et.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 Zn(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,Ut.Tl)("files","List of files and folders."),e=this.currentView.caption||t,n=(0,Ut.Tl)("files","Column headers with buttons are sortable."),s=(0,Ut.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,Ht.C)("files","fileInfo",{});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!=en&&null!==(e=en.enabled)&&void 0!==e&&e.call(en,[n],this.currentView)&&(Xt.debug("Opening sidebar on file "+n.path,{node:n}),en.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,Wt.Qg)(this.t("files","File not found")),this.scrollToIndex=Math.max(0,n)}},handleOpenFile(t){if(!this.openFile)return;if(null===t||this.openFileId===t)return;const e=this.nodes.find((e=>e.fileid===t));if(void 0===e||e.type===et.pt.Folder)return;Xt.debug("Opening file "+e.path,{node:e}),this.openFileId=t;const n=(0,et.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:Ut.Tl}});var qi=s(67436),$i={};$i.styleTagTransform=ue(),$i.setAttributes=oe(),$i.insert=re().bind(null,"head"),$i.domAPI=se(),$i.insertStyleElement=ce(),ee()(qi.A,$i),qi.A&&qi.A.locals&&qi.A.locals;var Hi=s(31772),Wi={};Wi.styleTagTransform=ue(),Wi.setAttributes=oe(),Wi.insert=re().bind(null,"head"),Wi.domAPI=se(),Wi.insertStyleElement=ce(),ee()(Hi.A,Wi),Hi.A&&Hi.A.locals&&Hi.A.locals;const Gi=(0,Mt.A)(Vi,(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,"1e2b43b6",null).exports,Yi={name:"TrayArrowDownIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ki=(0,Mt.A)(Yi,(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,Qi=(0,st.pM)({name:"DragAndDropNotice",components:{TrayArrowDownIcon:Ki},props:{currentFolder:{type:Object,required:!0}},setup(){const{currentView:t}=Ne();return{currentView:t}},data:()=>({dragover:!1}),computed:{canUpload(){return this.currentFolder&&!!(this.currentFolder.permissions&et.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){Xt.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,Wt.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 $n(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,Wt.Qg)(this.t("files","Target folder does not exist any more"));if(t.button)return;Xt.debug("Dropped",{event:t,folder:o,fileTree:r});const l=(await Hn(r,o,a.contents)).findLast((t=>{var e;return t.status!==Me.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,d;void 0!==l&&(Xt.debug("Scrolling to last upload in current folder",{lastUpload:l}),this.$router.push({...this.$route,params:{view:null!==(c=null===(d=this.$route.params)||void 0===d?void 0:d.view)&&void 0!==c?c:"files",fileid:parseInt(l.response.headers["oc-fileid"])}})),this.dragover=!1},t:Ut.Tl}});var Xi=s(20746),Ji={};Ji.styleTagTransform=ue(),Ji.setAttributes=oe(),Ji.insert=re().bind(null,"head"),Ji.domAPI=se(),Ji.insertStyleElement=ce(),ee()(Xi.A,Ji),Xi.A&&Xi.A.locals&&Xi.A.locals;const Zi=(0,Mt.A)(Qi,(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,"2b498b48",null).exports;var tr,er=s(96763);const nr=void 0!==(null===(tr=(0,Ue.F)())||void 0===tr?void 0:tr.files_sharing),sr=(0,st.pM)({name:"FilesList",components:{BreadCrumbs:Jn,DragAndDropNotice:Zi,FilesListVirtual:Gi,LinkIcon:Ve.A,ListViewIcon:$e,NcAppContent:He.A,NcButton:We.A,NcEmptyContent:Ge.A,NcIconSvgWrapper:qt.A,NcLoadingIcon:Ye.A,PlusIcon:Ke.A,AccountPlusIcon:Xe,UploadPicker:Me.U,ViewGridIcon:Ze},mixins:[Yn,wi],setup(){var t;const e=dn(),n=un(),s=mn(),i=fn(),r=xe(),a=Pe(),{currentView:o}=Ne(),l=null===(t=(0,Ht.C)("core","config",[])["enable_non-accessible_features"])||void 0===t||t;return{currentView:o,n:Ut.zw,t:Ut.Tl,filesStore:e,pathsStore:n,selectionStore:s,uploaderStore:i,userConfigStore:r,viewConfigStore:a,enableGridView:l,ShareType:je.I}},data:()=>({filterText:"",loading:!0,promise:null,unsubscribeStoreCallback:()=>{}}),computed:{userConfig(){return this.userConfigStore.userConfig},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")},fileId(){var t,e;const n=Number.parseInt(null!==(t=null===(e=this.$route)||void 0===e?void 0:e.params.fileid)&&void 0!==t?t:"");return Number.isNaN(n)?null:n},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 void 0!==e?this.filesStore.getNode(e):void 0},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()))),er.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,Ut.Z0)(),(0,Ut.lO)()],{numeric:!0,usage:"sort"});return[...t].sort(((t,n)=>{for(const[s,i]of e.entries()){const e=a.compare(gn(i(t)),gn(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===je.I.Link?this.t("files","Shared by link"):this.t("files","Shared"):this.t("files","Share")},shareButtonType(){return this.shareAttributes?this.shareAttributes.some((t=>t===je.I.Link))?je.I.Link:je.I.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&&!!(this.currentFolder.permissions&et.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 nr&&this.currentFolder&&!!(this.currentFolder.permissions&et.aX.SHARE)},onSearch(){return Fi()((t=>{er.debug("Files app handling search event from unified search...",t),this.filterText=t.query}),500)}},watch:{currentView(t,e){(null==t?void 0:t.id)!==(null==e?void 0:e.id)&&(Xt.debug("View changed",{newView:t,oldView:e}),this.selectionStore.reset(),this.resetSearch(),this.fetchContent())},dir(t,e){var n;Xt.debug("Directory changed",{newDir:t,oldDir:e}),this.selectionStore.reset(),this.resetSearch(),this.fetchContent();const s=null===(n=this.$refs)||void 0===n?void 0:n.filesListVirtual;null!=s&&s.$el&&(s.$el.scrollTop=0)},dirContents(t){Xt.debug("Directory contents changed",{view:this.currentView,folder:this.currentFolder,contents:t}),(0,Ot.Ic)("files:list:updated",{view:this.currentView,folder:this.currentFolder,contents:t})}},mounted(){this.fetchContent(),(0,Ot.B1)("files:node:deleted",this.onNodeDeleted),(0,Ot.B1)("files:node:updated",this.onUpdatedNode),(0,Ot.B1)("nextcloud:unified-search.search",this.onSearch),(0,Ot.B1)("nextcloud:unified-search.reset",this.resetSearch),this.unsubscribeStoreCallback=this.userConfigStore.$subscribe((()=>this.fetchContent()),{deep:!0})},unmounted(){(0,Ot.al)("files:node:deleted",this.onNodeDeleted),(0,Ot.al)("files:node:updated",this.onUpdatedNode),(0,Ot.al)("nextcloud:unified-search.search",this.onSearch),(0,Ot.al)("nextcloud:unified-search.reset",this.resetSearch),this.unsubscribeStoreCallback()},methods:{async fetchContent(){this.loading=!0;const t=this.dir,e=this.currentView;if(e){this.promise&&"cancel"in this.promise&&(this.promise.cancel(),Xt.debug("Cancelled previous ongoing fetch")),this.promise=e.getContents(t);try{const{folder:n,contents:s}=await this.promise;Xt.debug("Fetched contents",{dir:t,folder:n,contents:s}),this.filesStore.updateNodes(s),this.$set(n,"_children",s.map((t=>t.source))),"/"===t?this.filesStore.setRoot({service:e.id,root:n}):n.fileid?(this.filesStore.updateNodes([n]),this.pathsStore.addPath({service:e.id,source:n.source,path:t})):Xt.error("Invalid root folder returned",{dir:t,folder:n,currentView:e}),s.filter((t=>"folder"===t.type)).forEach((n=>{this.pathsStore.addPath({service:e.id,source:n.source,path:(0,Re.join)(t,n.basename)})}))}catch(t){Xt.error("Error while fetching content",{error:t})}finally{this.loading=!1}}else Xt.debug("The current view doesn't exists or is not ready.",{currentView:e})},getNode(t){return this.filesStore.getNode(t)},onNodeDeleted(t){var e,n,s;t.fileid&&t.fileid===this.fileId&&(t.fileid===(null===(e=this.currentFolder)||void 0===e?void 0:e.fileid)?window.OCP.Files.Router.goToRoute(null,{view:this.$route.params.view},{dir:null!==(n=null===(s=this.currentFolder)||void 0===s?void 0:s.dirname)&&void 0!==n?n:"/"}):window.OCP.Files.Router.goToRoute(null,{...this.$route.params,fileid:void 0},{...this.$route.query,openfile:void 0}))},onUpload(t){var e;(0,Re.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 ze.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,Wt.Qg)(this.t("files","Error during upload: {message}",{message:n}))}catch(t){Xt.error("Error while parsing",{error:t})}0===n?(0,Wt.Qg)(this.t("files","Unknown error during upload")):(0,Wt.Qg)(this.t("files","Error during upload, status code {status}",{status:n}))}else(0,Wt.Qg)(this.t("files","Operation is blocked by access control"));else(0,Wt.Qg)(this.t("files","Target folder does not exist any more"));else(0,Wt.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()},resetSearch(){this.onSearch.clear(),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"),en.exec(this.currentFolder,this.currentView,this.currentFolder.path)):Xt.debug("No current folder found for opening sharing sidebar")},toggleGridView(){this.userConfigStore.update("grid_view",!this.userConfig.grid_view)}}});var ir=s(79335),rr={};rr.styleTagTransform=ue(),rr.setAttributes=oe(),rr.insert=re().bind(null,"head"),rr.domAPI=se(),rr.insertStyleElement=ce(),ee()(ir.A,rr),ir.A&&ir.A.locals&&ir.A.locals;const ar=(0,Mt.A)(sr,(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.ShareType.Link?s("LinkIcon"):s("AccountPlusIcon",{attrs:{size:20}})]},proxy:!0}],null,!1,4106306959)}):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,"139727ec",null).exports,or=(0,st.pM)({name:"FilesApp",components:{NcContent:Dt.A,FilesList:ar,Navigation:Oe}}),lr=(0,Mt.A)(or,(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 cr,dr;s.nc=btoa((0,nt.do)()),window.OCA.Files=null!==(cr=window.OCA.Files)&&void 0!==cr?cr:{},window.OCP.Files=null!==(dr=window.OCP.Files)&&void 0!==dr?dr:{};const ur=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: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})}}(Pt);Object.assign(window.OCP.Files,{Router:ur}),st.Ay.use((function(t){t.mixin({beforeCreate(){const t=this.$options;if(t.pinia){const e=t.pinia;if(!this._provided){const t={};Object.defineProperty(this,"_provided",{get:()=>t,set:e=>Object.assign(t,e)})}this._provided[d]=e,this.$pinia||(this.$pinia=e),e._a=this,p&&c(e),f&&R(e._a,e)}else!this.$pinia&&t.parent&&t.parent.$pinia&&(this.$pinia=t.parent.$pinia)},destroyed(){delete this._pStores}})}));const mr=st.Ay.observable((0,et.bh)());st.Ay.prototype.$navigation=mr;const pr=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:e+""}(e="_settings"))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,this._settings=[],Bt.debug("OCA.Files.Settings initialized")}register(t){return this._settings.filter((e=>e.name===t.name)).length>0?(Bt.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:pr}),Object.assign(window.OCA.Files.Settings,{Setting:class{constructor(t,e){let{el:n,open:s,close:i}=e;It(this,"_close",void 0),It(this,"_el",void 0),It(this,"_name",void 0),It(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(st.Ay.extend(lr))({router:Pt,pinia:it}).$mount("#content")},14456:(t,e,n)=>{"use strict";n.d(e,{A:()=>f});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r),o=n(4417),l=n.n(o),c=new URL(n(98383),n.b),d=new URL(n(39075),n.b),u=a()(i()),m=l()(c),p=l()(d);u.push([t.id,`/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n.toastify.dialogs {\n  min-width: 200px;\n  background: none;\n  background-color: var(--color-main-background);\n  color: var(--color-main-text);\n  box-shadow: 0 0 6px 0 var(--color-box-shadow);\n  padding: 0 12px;\n  margin-top: 45px;\n  position: fixed;\n  z-index: 10100;\n  border-radius: var(--border-radius);\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n  position: static;\n  overflow: hidden;\n  box-sizing: border-box;\n  min-width: 44px;\n  height: 100%;\n  padding: 12px;\n  white-space: nowrap;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-color: transparent;\n  min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n  text-indent: 0;\n  opacity: 0.4;\n  border: none;\n  min-height: 44px;\n  margin-left: 10px;\n  font-size: 0;\n  /* dark theme overrides for Nextcloud 25 and later */\n}\n.toastify.dialogs .toast-undo-button.toast-close::before,\n.toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(${m});\n  content: " ";\n  filter: var(--background-invert-if-dark);\n  display: inline-block;\n  width: 16px;\n  height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n  margin: 3px;\n  height: calc(100% - 2 * 3px);\n  margin-left: 12px;\n}\n.toastify.dialogs .toast-undo-button:hover, .toastify.dialogs .toast-undo-button:focus, .toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n  cursor: pointer;\n  opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n  right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n  cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n  border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n  border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n  border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success {\n  border-left: 3px solid var(--color-success);\n}\n.toastify.dialogs.toast-undo {\n  border-left: 3px solid var(--color-success);\n}\n\n/* dark theme overrides for Nextcloud 24 and earlier */\n.theme--dark .toastify.dialogs .toast-close {\n  /* close icon style */\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(${p});\n}\n.nc-generic-dialog .dialog__actions {\n\tjustify-content: space-between;\n\tmin-width: calc(100% - 12px);\n}\n/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * Icon styling of the file list row preview or fallback icon\n * (leading icon on the name row and header)\n */\n._file-picker__file-icon_19mjt_9 {\n  width: 32px;\n  height: 32px;\n  min-width: 32px;\n  min-height: 32px;\n  background-repeat: no-repeat;\n  background-size: contain;\n  display: flex;\n  justify-content: center;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-15187afc] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-15187afc] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-15187afc] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-15187afc]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-15187afc] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-15187afc] {\n  padding-inline: 2px 0;\n}\n@keyframes gradient-15187afc {\n0% {\n    background-position: 0% 50%;\n}\n50% {\n    background-position: 100% 50%;\n}\n100% {\n    background-position: 0% 50%;\n}\n}\n.loading-row .row-checkbox[data-v-15187afc] {\n  text-align: center !important;\n}\n.loading-row span[data-v-15187afc] {\n  display: inline-block;\n  height: 24px;\n  background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n  background-size: 600px 100%;\n  border-radius: var(--border-radius);\n  animation: gradient-15187afc 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-15187afc] {\n  display: inline-flex;\n  align-items: center;\n}\n.loading-row .row-checkbox span[data-v-15187afc] {\n  width: 24px;\n}\n.loading-row .row-name span[data-v-15187afc]:last-of-type {\n  margin-inline-start: 6px;\n  width: 130px;\n}\n.loading-row .row-size span[data-v-15187afc] {\n  width: 80px;\n}\n.loading-row .row-modified span[data-v-15187afc] {\n  width: 90px;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-cb12dccb] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-cb12dccb] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-cb12dccb] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-cb12dccb]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-cb12dccb] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-cb12dccb] {\n  padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-cb12dccb] {\n  background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-cb12dccb]:hover {\n  background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-cb12dccb] {\n  display: flex;\n  justify-content: start;\n  align-items: center;\n  height: 100%;\n}\n.file-picker__file-name[data-v-cb12dccb] {\n  padding-inline-start: 6px;\n  min-width: 0;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-cb12dccb] {\n  color: var(--color-text-maxcontrast);\n  min-width: fit-content;\n}.file-picker__header-preview[data-v-006fdbd0] {\n  width: 22px;\n  height: 32px;\n  flex: 0 0 auto;\n}\n.file-picker__files[data-v-006fdbd0] {\n  margin: 2px;\n  margin-inline-start: 12px;\n  overflow: scroll auto;\n}\n.file-picker__files table[data-v-006fdbd0] {\n  width: 100%;\n  max-height: 100%;\n  table-layout: fixed;\n}\n.file-picker__files th[data-v-006fdbd0] {\n  position: sticky;\n  z-index: 1;\n  top: 0;\n  background-color: var(--color-main-background);\n  padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-006fdbd0] {\n  display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-006fdbd0] {\n  width: 44px;\n}\n.file-picker__files th.row-name[data-v-006fdbd0] {\n  width: 230px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] {\n  width: 100px;\n}\n.file-picker__files th.row-modified[data-v-006fdbd0] {\n  width: 120px;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue__wrapper {\n  justify-content: start;\n  flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue {\n  padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] .button-vue__wrapper {\n  justify-content: end;\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper {\n  color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper .button-vue__text {\n  font-weight: normal;\n}.file-picker__breadcrumbs[data-v-b357227a] {\n  flex-grow: 0 !important;\n}.file-picker__side[data-v-b42054b8] {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  gap: 0.5rem;\n  min-width: 200px;\n  padding: 2px;\n  margin-block-start: 7px;\n  overflow: auto;\n}\n.file-picker__side[data-v-b42054b8] .button-vue__wrapper {\n  justify-content: start;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n  margin-block: 7px;\n  max-width: 260px;\n}\n@media (max-width: 736px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n}\n@media (max-width: 512px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n    max-width: unset;\n}\n}/* Ensure focus outline is visible */\n.file-picker__navigation {\n  padding-inline: 8px 2px;\n}\n.file-picker__navigation, .file-picker__navigation * {\n  box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n  min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n.file-picker__navigation {\n    gap: 11px;\n}\n}\n@media (max-width: 512px) {\n.file-picker__navigation {\n    flex-direction: column-reverse !important;\n}\n}.file-picker__view[data-v-20b719ba] {\n  height: 50px;\n  display: flex;\n  justify-content: start;\n  align-items: center;\n}\n.file-picker__view h3[data-v-20b719ba] {\n  font-weight: bold;\n  height: fit-content;\n  margin: 0;\n}\n.file-picker__main[data-v-20b719ba] {\n  box-sizing: border-box;\n  width: 100%;\n  display: flex;\n  flex-direction: column;\n  min-height: 0;\n  flex: 1;\n  padding-inline: 2px;\n}\n.file-picker__main *[data-v-20b719ba] {\n  box-sizing: border-box;\n}\n[data-v-20b719ba] .file-picker {\n  height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n[data-v-20b719ba] .file-picker {\n    height: calc(100% - 16px - var(--default-clickable-area)) !important;\n}\n}\n[data-v-20b719ba] .file-picker__content {\n  display: flex;\n  flex-direction: column;\n  overflow: hidden;\n}`,"",{version:3,sources:["webpack://./node_modules/@nextcloud/dialogs/dist/style.css"],names:[],mappings:"AAAA;;;EAGE;AACF;EACE,gBAAgB;EAChB,gBAAgB;EAChB,8CAA8C;EAC9C,6BAA6B;EAC7B,6CAA6C;EAC7C,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,cAAc;EACd,mCAAmC;EACnC,aAAa;EACb,mBAAmB;AACrB;AACA;EACE,aAAa;EACb,mBAAmB;AACrB;AACA;;EAEE,gBAAgB;EAChB,gBAAgB;EAChB,sBAAsB;EACtB,eAAe;EACf,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,4BAA4B;EAC5B,2BAA2B;EAC3B,6BAA6B;EAC7B,aAAa;AACf;AACA;;EAEE,cAAc;EACd,YAAY;EACZ,YAAY;EACZ,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;EACZ,oDAAoD;AACtD;AACA;;EAEE,yDAAsf;EACtf,YAAY;EACZ,wCAAwC;EACxC,qBAAqB;EACrB,WAAW;EACX,YAAY;AACd;AACA;;EAEE,WAAW;EACX,4BAA4B;EAC5B,iBAAiB;AACnB;AACA;;;;EAIE,eAAe;EACf,UAAU;AACZ;AACA;EACE,WAAW;AACb;AACA;EACE,eAAe;AACjB;AACA;EACE,yCAAyC;AAC3C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;;AAEA,sDAAsD;AACtD;EACE,qBAAqB;AACvB;AACA;EACE,yDAAkgB;AACpgB;AACA;CACC,8BAA8B;CAC9B,4BAA4B;AAC7B;AACA;;;EAGE;AACF;;;EAGE;AACF;EACE,WAAW;EACX,YAAY;EACZ,eAAe;EACf,gBAAgB;EAChB,4BAA4B;EAC5B,wBAAwB;EACxB,aAAa;EACb,uBAAuB;AACzB,CAAC;;;EAGC;AACF;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;AACA;IACI,2BAA2B;AAC/B;AACA;IACI,6BAA6B;AACjC;AACA;IACI,2BAA2B;AAC/B;AACA;AACA;EACE,6BAA6B;AAC/B;AACA;EACE,qBAAqB;EACrB,YAAY;EACZ,oIAAoI;EACpI,2BAA2B;EAC3B,mCAAmC;EACnC,8CAA8C;AAChD;AACA;EACE,oBAAoB;EACpB,mBAAmB;AACrB;AACA;EACE,WAAW;AACb;AACA;EACE,wBAAwB;EACxB,YAAY;AACd;AACA;EACE,WAAW;AACb;AACA;EACE,WAAW;AACb,CAAC;;;EAGC;AACF;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,8CAA8C;AAChD;AACA;EACE,+CAA+C;AACjD;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,yBAAyB;EACzB,YAAY;EACZ,gBAAgB;EAChB,uBAAuB;AACzB;AACA;EACE,oCAAoC;EACpC,sBAAsB;AACxB,CAAC;EACC,WAAW;EACX,YAAY;EACZ,cAAc;AAChB;AACA;EACE,WAAW;EACX,yBAAyB;EACzB,qBAAqB;AACvB;AACA;EACE,WAAW;EACX,gBAAgB;EAChB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,UAAU;EACV,MAAM;EACN,8CAA8C;EAC9C,YAAY;AACd;AACA;EACE,aAAa;AACf;AACA;EACE,WAAW;AACb;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,sBAAsB;EACtB,2BAA2B;AAC7B;AACA;EACE,wBAAwB;AAC1B;AACA;EACE,oBAAoB;AACtB;AACA;EACE,oCAAoC;AACtC;AACA;EACE,mBAAmB;AACrB,CAAC;EACC,uBAAuB;AACzB,CAAC;EACC,aAAa;EACb,sBAAsB;EACtB,oBAAoB;EACpB,WAAW;EACX,gBAAgB;EAChB,YAAY;EACZ,uBAAuB;EACvB,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,iBAAiB;EACjB,gBAAgB;AAClB;AACA;AACA;IACI,mBAAmB;IACnB,gBAAgB;AACpB;AACA;AACA;AACA;IACI,mBAAmB;IACnB,gBAAgB;AACpB;AACA;IACI,gBAAgB;AACpB;AACA,CAAC,oCAAoC;AACrC;EACE,uBAAuB;AACzB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,gBAAgB;AAClB;AACA;AACA;IACI,SAAS;AACb;AACA;AACA;AACA;IACI,yCAAyC;AAC7C;AACA,CAAC;EACC,YAAY;EACZ,aAAa;EACb,sBAAsB;EACtB,mBAAmB;AACrB;AACA;EACE,iBAAiB;EACjB,mBAAmB;EACnB,SAAS;AACX;AACA;EACE,sBAAsB;EACtB,WAAW;EACX,aAAa;EACb,sBAAsB;EACtB,aAAa;EACb,OAAO;EACP,mBAAmB;AACrB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,mCAAmC;AACrC;AACA;AACA;IACI,oEAAoE;AACxE;AACA;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,gBAAgB;AAClB",sourcesContent:["/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n.toastify.dialogs {\n  min-width: 200px;\n  background: none;\n  background-color: var(--color-main-background);\n  color: var(--color-main-text);\n  box-shadow: 0 0 6px 0 var(--color-box-shadow);\n  padding: 0 12px;\n  margin-top: 45px;\n  position: fixed;\n  z-index: 10100;\n  border-radius: var(--border-radius);\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n  position: static;\n  overflow: hidden;\n  box-sizing: border-box;\n  min-width: 44px;\n  height: 100%;\n  padding: 12px;\n  white-space: nowrap;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-color: transparent;\n  min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n  text-indent: 0;\n  opacity: 0.4;\n  border: none;\n  min-height: 44px;\n  margin-left: 10px;\n  font-size: 0;\n  /* dark theme overrides for Nextcloud 25 and later */\n}\n.toastify.dialogs .toast-undo-button.toast-close::before,\n.toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(\"data:image/svg+xml,%3csvg%20viewBox='0%200%2016%2016'%20height='16'%20width='16'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3e%3cpath%20d='M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z'%20style='fill-rule:nonzero'%20transform='matrix(.85714%200%200%20.85714%20-2.286%20-2.286)'/%3e%3c/svg%3e\");\n  content: \" \";\n  filter: var(--background-invert-if-dark);\n  display: inline-block;\n  width: 16px;\n  height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n  margin: 3px;\n  height: calc(100% - 2 * 3px);\n  margin-left: 12px;\n}\n.toastify.dialogs .toast-undo-button:hover, .toastify.dialogs .toast-undo-button:focus, .toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n  cursor: pointer;\n  opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n  right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n  cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n  border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n  border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n  border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success {\n  border-left: 3px solid var(--color-success);\n}\n.toastify.dialogs.toast-undo {\n  border-left: 3px solid var(--color-success);\n}\n\n/* dark theme overrides for Nextcloud 24 and earlier */\n.theme--dark .toastify.dialogs .toast-close {\n  /* close icon style */\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(\"data:image/svg+xml,%3csvg%20viewBox='0%200%2016%2016'%20height='16'%20width='16'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3e%3cpath%20d='M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z'%20style='fill:%23fff;fill-rule:nonzero'%20transform='matrix(.85714%200%200%20.85714%20-2.286%20-2.286)'/%3e%3c/svg%3e\");\n}\n.nc-generic-dialog .dialog__actions {\n\tjustify-content: space-between;\n\tmin-width: calc(100% - 12px);\n}\n/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * Icon styling of the file list row preview or fallback icon\n * (leading icon on the name row and header)\n */\n._file-picker__file-icon_19mjt_9 {\n  width: 32px;\n  height: 32px;\n  min-width: 32px;\n  min-height: 32px;\n  background-repeat: no-repeat;\n  background-size: contain;\n  display: flex;\n  justify-content: center;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-15187afc] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-15187afc] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-15187afc] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-15187afc]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-15187afc] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-15187afc] {\n  padding-inline: 2px 0;\n}\n@keyframes gradient-15187afc {\n0% {\n    background-position: 0% 50%;\n}\n50% {\n    background-position: 100% 50%;\n}\n100% {\n    background-position: 0% 50%;\n}\n}\n.loading-row .row-checkbox[data-v-15187afc] {\n  text-align: center !important;\n}\n.loading-row span[data-v-15187afc] {\n  display: inline-block;\n  height: 24px;\n  background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n  background-size: 600px 100%;\n  border-radius: var(--border-radius);\n  animation: gradient-15187afc 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-15187afc] {\n  display: inline-flex;\n  align-items: center;\n}\n.loading-row .row-checkbox span[data-v-15187afc] {\n  width: 24px;\n}\n.loading-row .row-name span[data-v-15187afc]:last-of-type {\n  margin-inline-start: 6px;\n  width: 130px;\n}\n.loading-row .row-size span[data-v-15187afc] {\n  width: 80px;\n}\n.loading-row .row-modified span[data-v-15187afc] {\n  width: 90px;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-cb12dccb] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-cb12dccb] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-cb12dccb] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-cb12dccb]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-cb12dccb] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-cb12dccb] {\n  padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-cb12dccb] {\n  background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-cb12dccb]:hover {\n  background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-cb12dccb] {\n  display: flex;\n  justify-content: start;\n  align-items: center;\n  height: 100%;\n}\n.file-picker__file-name[data-v-cb12dccb] {\n  padding-inline-start: 6px;\n  min-width: 0;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-cb12dccb] {\n  color: var(--color-text-maxcontrast);\n  min-width: fit-content;\n}.file-picker__header-preview[data-v-006fdbd0] {\n  width: 22px;\n  height: 32px;\n  flex: 0 0 auto;\n}\n.file-picker__files[data-v-006fdbd0] {\n  margin: 2px;\n  margin-inline-start: 12px;\n  overflow: scroll auto;\n}\n.file-picker__files table[data-v-006fdbd0] {\n  width: 100%;\n  max-height: 100%;\n  table-layout: fixed;\n}\n.file-picker__files th[data-v-006fdbd0] {\n  position: sticky;\n  z-index: 1;\n  top: 0;\n  background-color: var(--color-main-background);\n  padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-006fdbd0] {\n  display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-006fdbd0] {\n  width: 44px;\n}\n.file-picker__files th.row-name[data-v-006fdbd0] {\n  width: 230px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] {\n  width: 100px;\n}\n.file-picker__files th.row-modified[data-v-006fdbd0] {\n  width: 120px;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue__wrapper {\n  justify-content: start;\n  flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue {\n  padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] .button-vue__wrapper {\n  justify-content: end;\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper {\n  color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper .button-vue__text {\n  font-weight: normal;\n}.file-picker__breadcrumbs[data-v-b357227a] {\n  flex-grow: 0 !important;\n}.file-picker__side[data-v-b42054b8] {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  gap: 0.5rem;\n  min-width: 200px;\n  padding: 2px;\n  margin-block-start: 7px;\n  overflow: auto;\n}\n.file-picker__side[data-v-b42054b8] .button-vue__wrapper {\n  justify-content: start;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n  margin-block: 7px;\n  max-width: 260px;\n}\n@media (max-width: 736px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n}\n@media (max-width: 512px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n    max-width: unset;\n}\n}/* Ensure focus outline is visible */\n.file-picker__navigation {\n  padding-inline: 8px 2px;\n}\n.file-picker__navigation, .file-picker__navigation * {\n  box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n  min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n.file-picker__navigation {\n    gap: 11px;\n}\n}\n@media (max-width: 512px) {\n.file-picker__navigation {\n    flex-direction: column-reverse !important;\n}\n}.file-picker__view[data-v-20b719ba] {\n  height: 50px;\n  display: flex;\n  justify-content: start;\n  align-items: center;\n}\n.file-picker__view h3[data-v-20b719ba] {\n  font-weight: bold;\n  height: fit-content;\n  margin: 0;\n}\n.file-picker__main[data-v-20b719ba] {\n  box-sizing: border-box;\n  width: 100%;\n  display: flex;\n  flex-direction: column;\n  min-height: 0;\n  flex: 1;\n  padding-inline: 2px;\n}\n.file-picker__main *[data-v-20b719ba] {\n  box-sizing: border-box;\n}\n[data-v-20b719ba] .file-picker {\n  height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n[data-v-20b719ba] .file-picker {\n    height: calc(100% - 16px - var(--default-clickable-area)) !important;\n}\n}\n[data-v-20b719ba] .file-picker__content {\n  display: flex;\n  flex-direction: column;\n  overflow: hidden;\n}"],sourceRoot:""}]);const f=u},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},67430:(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-77111ada]{flex:1 1 100% !important;width:100%;height:100%;margin-block:0;margin-inline:10px}.files-list__breadcrumbs[data-v-77111ada]  a{cursor:pointer !important}.files-list__breadcrumbs--with-progress[data-v-77111ada]{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},20746:(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-2b498b48]{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-2b498b48]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-2b498b48]{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},76810:(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},55559:(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-04e52abc]{color:#a08b00;min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-04e52abc]  svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-04e52abc]  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,aAAA,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: #a08b00;\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},73093:(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},49718:(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-0bcaefce] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-0bcaefce] .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},75458:(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-68d3de81]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-68d3de81]{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},30651:(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-91476734]{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},75290:(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-097f69d4]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-097f69d4]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-097f69d4]{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-097f69d4]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-097f69d4]{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},67436:(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-1e2b43b6]{--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-1e2b43b6]  tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-1e2b43b6]  tbody tr{contain:strict}.files-list[data-v-1e2b43b6]  tbody tr:hover,.files-list[data-v-1e2b43b6]  tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-1e2b43b6]  .files-list__before{display:flex;flex-direction:column}.files-list[data-v-1e2b43b6]  .files-list__selected{padding-right:12px;white-space:nowrap}.files-list[data-v-1e2b43b6]  .files-list__table{display:block}.files-list[data-v-1e2b43b6]  .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__thead,.files-list[data-v-1e2b43b6]  .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-1e2b43b6]  .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-1e2b43b6]  .files-list__tfoot{min-height:300px}.files-list[data-v-1e2b43b6]  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-1e2b43b6]  td,.files-list[data-v-1e2b43b6]  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-1e2b43b6]  td span,.files-list[data-v-1e2b43b6]  th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-checkbox{justify-content:center}.files-list[data-v-1e2b43b6]  .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-1e2b43b6]  .files-list__row:hover,.files-list[data-v-1e2b43b6]  .files-list__row:focus,.files-list[data-v-1e2b43b6]  .files-list__row:active,.files-list[data-v-1e2b43b6]  .files-list__row--active,.files-list[data-v-1e2b43b6]  .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-1e2b43b6]  .files-list__row:hover>*,.files-list[data-v-1e2b43b6]  .files-list__row:focus>*,.files-list[data-v-1e2b43b6]  .files-list__row:active>*,.files-list[data-v-1e2b43b6]  .files-list__row--active>*,.files-list[data-v-1e2b43b6]  .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-1e2b43b6]  .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-1e2b43b6]  .files-list__row--dragover *{pointer-events:none}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon *{cursor:pointer}.files-list[data-v-1e2b43b6]  .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon>span.folder-icon,.files-list[data-v-1e2b43b6]  .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-1e2b43b6]  .files-list__row-icon>span.folder-icon svg,.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-1e2b43b6]  .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-1e2b43b6]  .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-1e2b43b6]  .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-1e2b43b6]  .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-1e2b43b6]  .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-1e2b43b6]  .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-1e2b43b6]  .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-1e2b43b6]  .files-list__row-actions{width:auto}.files-list[data-v-1e2b43b6]  .files-list__row-actions~td,.files-list[data-v-1e2b43b6]  .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-1e2b43b6]  .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-1e2b43b6]  .files-list__row-action--inline{margin-right:7px}.files-list[data-v-1e2b43b6]  .files-list__row-mtime,.files-list[data-v-1e2b43b6]  .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-1e2b43b6]  .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-1e2b43b6]  .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-1e2b43b6]  .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},31772:(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},79335:(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-139727ec]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-139727ec]{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-139727ec]{flex:0 0}.files-list__header-share-button[data-v-139727ec]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-139727ec]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-139727ec]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-139727ec]{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},82989:(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-d0bcf126] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-d0bcf126] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-d0bcf126]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-d0bcf126]{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},83331:(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-109572de]: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))}v(t,e,r,{once:!0}),"error"!==e&&function(t,e,n){"function"==typeof t.on&&v(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 d(t){if("function"!=typeof t)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}function u(t){return void 0===t._maxListeners?l.defaultMaxListeners:t._maxListeners}function m(t,e,n,s){var r,a,o,l;if(d(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=u(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 g(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):A(i,i.length)}function h(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 A(t,e){for(var n=new Array(e),s=0;s<e;++s)n[s]=t[s];return n}function v(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 u(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,d=A(l,c);for(n=0;n<c;++n)a(d[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 d(e),this.on(t,f(this,t,e)),this},l.prototype.prependOnceListener=function(t,e){return d(e),this.prependListener(t,f(this,t,e)),this},l.prototype.removeListener=function(t,e){var n,s,i,r,a;if(d(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 g(this,t,!0)},l.prototype.rawListeners=function(t){return g(this,t,!1)},l.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):h.call(t,e)},l.prototype.listenerCount=h,l.prototype.eventNames=function(){return this._eventsCount>0?s(this._events):[]}},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),S(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;R(n,r);continue;case T.BEGIN_WHITESPACE:R(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?(A(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(A(r));else if(y(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):v(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:v(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:v(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:A(r)?n.state=T.PROC_INST_BODY:n.procInstName+=r;continue;case T.PROC_INST_BODY:if(!n.procInstBody&&A(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:y(f,r)?n.tagName+=r:(B(n),">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:(A(r)||I(n,"Invalid character in tag name"),n.state=T.ATTRIB));continue;case T.OPEN_TAG_SLASH:">"===r?(U(n,!0),j(n)):(I(n,"Forward-slash in opening tag not followed by >"),n.state=T.ATTRIB);continue;case T.ATTRIB:if(A(r))continue;">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:y(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,O(n),U(n)):A(r)?n.state=T.ATTRIB_NAME_SAW_WHITE:y(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(A(r))continue;I(n,"Attribute without value"),n.tag.attributes[n.attribName]="",n.attribValue="",E(n,"onattribute",{name:n.attribName,value:""}),n.attribName="",">"===r?U(n):y(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(A(r))continue;v(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}O(n),n.q="",n.state=T.ATTRIB_VALUE_CLOSED;continue;case T.ATTRIB_VALUE_CLOSED:A(r)?n.state=T.ATTRIB:">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:y(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(!w(r)){"&"===r?n.state=T.ATTRIB_VALUE_ENTITY_U:n.attribValue+=r;continue}O(n),">"===r?U(n):n.state=T.ATTRIB;continue;case T.CLOSE_TAG:if(n.tagName)">"===r?j(n):y(f,r)?n.tagName+=r:n.script?(n.script+="</"+n.tagName,n.tagName="",n.state=T.SCRIPT):(A(r)||I(n,"Invalid tagname in closing tag"),n.state=T.CLOSE_TAG_SAW_WHITE);else{if(A(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(A(r))continue;">"===r?j(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 d,u;switch(n.state){case T.TEXT_ENTITY:d=T.TEXT,u="textNode";break;case T.ATTRIB_VALUE_ENTITY_Q:d=T.ATTRIB_VALUE_QUOTED,u="attribValue";break;case T.ATTRIB_VALUE_ENTITY_U:d=T.ATTRIB_VALUE_UNQUOTED,u="attribValue"}if(";"===r)if(n.opt.unparsedEntities){var m=M(n);n.entity="",n.state=d,n.write(m)}else n[u]+=M(n),n.entity="",n.state=d;else y(n.entity.length?h:g,r)?n.entity+=r:(I(n,"Invalid character in entity name"),n[u]+="&"+n.entity+r,n.entity="",n.state=d);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",d="http://www.w3.org/XML/1998/namespace",u="http://www.w3.org/2000/xmlns/",m={xml:d,xmlns:u},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-]/,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]/,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\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function A(t){return" "===t||"\n"===t||"\r"===t||"\t"===t}function v(t){return'"'===t||"'"===t}function w(t){return">"===t||A(t)}function y(t,e){return t.test(e)}function b(t,e){return!y(t,e)}var C,_,x,T=0;for(var k 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[k]]=k;function S(t,e,n){t[e]&&t[e](n)}function E(t,e,n){t.textNode&&L(t),S(t,e,n)}function L(t){t.textNode=N(t.opt,t.textNode),t.textNode&&S(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,S(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,S(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 B(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 D(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 O(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=D(t.attribName,!0),n=e.prefix,s=e.local;if("xmlns"===n)if("xml"===s&&t.attribValue!==d)I(t,"xml: prefix must be bound to "+d+"\nActual: "+t.attribValue);else if("xmlns"===s&&t.attribValue!==u)I(t,"xmlns: prefix must be bound to "+u+"\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 U(t,e){if(t.opt.xmlns){var n=t.tag,s=D(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],d=D(l,!0),u=d.prefix,m=d.local,p=""===u?"":n.ns[u]||"",f={name:l,value:c,prefix:u,local:m,uri:p};u&&"xmlns"!==u&&!p&&(I(t,"Unbound namespace prefix: "+JSON.stringify(u)),f.uri=u),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 j(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 M(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 R(t,e){"<"===e?(t.state=T.OPEN_WAKA,t.startTagPosition=t.position):A(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||(C=String.fromCharCode,_=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||_(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+=C.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={},d=!1,u=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)}):u&&"onreadystatechange"in u.createElement("script")?(i=u.documentElement,n=function(t){var e=u.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(d)setTimeout(f,0,t);else{var e=c[t];if(e){d=!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),d=!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,d=(n=e(t.historyTimeConstant,2.5),function(t,e,s){return t+s/(s+n)*(e-t)});function u(){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:d(o,s,n),c=t,l=e}}return{start:u,reset:function(){o=null,l=null,c=null,r&&u()},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(46891),i.Writable=n(81999),i.Duplex=n(88101),i.Transform=n(59083),i.PassThrough=n(3681),i.finished=n(14257),i.pipeline=n(5267),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(d(),0===s.listenerCount(this,"error"))throw t}function d(){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",d),n.removeListener("close",d),t.removeListener("close",d)}return n.on("error",c),t.on("error",c),n.on("end",d),n.on("close",d),t.on("close",d),t.emit("pipe",n),t}},12463: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},88101:(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=d;var r=n(46891),a=n(81999);n(56698)(d,r);for(var o=i(a.prototype),l=0;l<o.length;l++){var c=o[l];d.prototype[c]||(d.prototype[c]=a.prototype[c])}function d(t){if(!(this instanceof d))return new d(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",u)))}function u(){this._writableState.ended||s.nextTick(m,this)}function m(t){t.end()}Object.defineProperty(d.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(d.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(d.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(d.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)}})},3681:(t,e,n)=>{"use strict";t.exports=i;var s=n(59083);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)}},46891:(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(41396),l=n(48287).Buffer,c=(void 0!==n.g?n.g:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){},d=n(99580);r=d&&d.debuglog?d.debuglog("stream"):function(){};var u,m,p,f=n(81766),g=n(54347),h=n(66644).getHighWaterMark,A=n(12463).F,v=A.ERR_INVALID_ARG_TYPE,w=A.ERR_STREAM_PUSH_AFTER_EOF,y=A.ERR_METHOD_NOT_IMPLEMENTED,b=A.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;n(56698)(T,o);var C=g.errorOrDestroy,_=["error","close","destroy","pause","resume"];function x(t,e,i){s=s||n(88101),t=t||{},"boolean"!=typeof i&&(i=e instanceof s),this.objectMode=!!t.objectMode,i&&(this.objectMode=this.objectMode||!!t.readableObjectMode),this.highWaterMark=h(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&&(u||(u=n(83141).I),this.decoder=new u(t.encoding),this.encoding=t.encoding)}function T(t){if(s=s||n(88101),!(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 k(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 v("chunk",["string","Buffer","Uint8Array"],e)),n}(o,e)),a)C(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?C(t,new b):S(t,o,e,!0);else if(o.ended)C(t,new w);else{if(o.destroyed)return!1;o.reading=!1,o.decoder&&!n?(e=o.decoder.write(e),o.objectMode||0!==e.length?S(t,o,e,!1):P(t,o)):S(t,o,e,!1)}else s||(o.reading=!1,P(t,o));return!o.ended&&(o.length<o.highWaterMark||0===o.length)}function S(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=g.destroy,T.prototype._undestroy=g.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),k(this,t,e,!1,n)},T.prototype.unshift=function(t){return k(this,t,null,!0,!1)},T.prototype.isPaused=function(){return!1===this._readableState.flowing},T.prototype.setEncoding=function(t){u||(u=n(83141).I);var e=new u(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,U(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 B(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 D(t){r("readable nexttick read 0"),t.read(0)}function O(t,e){r("resume",e.reading),e.reading||t.read(0),e.resumeScheduled=!1,t.emit("resume"),U(t),e.flowing&&!e.reading&&t.read(0)}function U(t){var e=t._readableState;for(r("flow",e.flowing);e.flowing&&null!==t.read(););}function j(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 M(t){var e=t._readableState;r("endReadable",e.endEmitted),e.endEmitted||(e.ended=!0,i.nextTick(R,e,t))}function R(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?M(this):N(this),null;if(0===(t=L(t,e))&&e.ended)return 0===e.length&&M(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?j(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&&M(this)),null!==s&&this.emit("data",s),s},T.prototype._read=function(t){C(this,new y("_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?g: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",g),n.removeListener("data",u),d=!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,U(t))}}(n);t.on("drain",c);var d=!1;function u(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))&&!d&&(r("false write response, pause",s.awaitDrain),s.awaitDrain++),n.pause())}function m(e){r("onerror",e),g(),t.removeListener("error",m),0===a(t,"error")&&C(t,e)}function p(){t.removeListener("finish",f),g()}function f(){r("onfinish"),t.removeListener("close",p),g()}function g(){r("unpipe"),n.unpipe(t)}return n.on("data",u),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(D,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(B,this),n},T.prototype.removeAllListeners=function(t){var e=o.prototype.removeAllListeners.apply(this,arguments);return"readable"!==t&&void 0!==t||i.nextTick(B,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(O,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<_.length;a++)t.on(_[a],this.emit.bind(this,_[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(65034)),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=j,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(90968)),p(T,t,e)})},59083:(t,e,n)=>{"use strict";t.exports=d;var s=n(12463).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(88101);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 d(t){if(!(this instanceof d))return new d(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",u)}function u(){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)(d,l),d.prototype.push=function(t,e){return this._transformState.needTransform=!1,l.prototype.push.call(this,t,e)},d.prototype._transform=function(t,e,n){n(new i("_transform()"))},d.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)}},d.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))},d.prototype._destroy=function(t,e){l.prototype._destroy.call(this,t,(function(t){e(t)}))}},81999:(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(41396),c=n(48287).Buffer,d=(void 0!==n.g?n.g:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){},u=n(54347),m=n(66644).getHighWaterMark,p=n(12463).F,f=p.ERR_INVALID_ARG_TYPE,g=p.ERR_METHOD_NOT_IMPLEMENTED,h=p.ERR_MULTIPLE_CALLBACK,A=p.ERR_STREAM_CANNOT_PIPE,v=p.ERR_STREAM_DESTROYED,w=p.ERR_STREAM_NULL_VALUES,y=p.ERR_STREAM_WRITE_AFTER_END,b=p.ERR_UNKNOWN_ENCODING,C=u.errorOrDestroy;function _(){}function x(t,e,a){s=s||n(88101),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 h;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,C(t,s)):(r(s),t._writableState.errorEmitted=!0,C(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(S,t,n,a,r):S(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(88101));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 k(t,e,n,s,i,r,a){e.writelen=s,e.writecb=a,e.writing=!0,e.sync=!0,e.destroyed?e.onwrite(new v("write")):n?t._writev(i,e.onwrite):t._write(i,r,e.onwrite),e.sync=!1}function S(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,k(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,d=n.encoding,u=n.callback;if(k(t,e,!1,e.objectMode?1:c.length,c,d,u),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&&C(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(){C(this,new A)},T.prototype.write=function(t,e,n){var s,r=this._writableState,a=!1,o=!r.objectMode&&(s=t,c.isBuffer(s)||s instanceof d);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=_),r.ending?function(t,e){var n=new y;C(t,n),i.nextTick(e,n)}(this,n):(o||function(t,e,n,s){var r;return null===n?r=new w:"string"==typeof n||e.objectMode||(r=new f("chunk",["string","Buffer"],n)),!r||(C(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 d=e.lastBufferedRequest;e.lastBufferedRequest={chunk:s,encoding:i,isBuf:n,callback:r,next:null},d?d.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else k(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 g("_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=u.destroy,T.prototype._undestroy=u.undestroy,T.prototype._destroy=function(t,e){e(t)}},65034:(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(14257),o=Symbol("lastResolve"),l=Symbol("lastReject"),c=Symbol("error"),d=Symbol("ended"),u=Symbol("lastPromise"),m=Symbol("handlePromise"),p=Symbol("stream");function f(t,e){return{value:t,done:e}}function g(t){var e=t[o];if(null!==e){var n=t[p].read();null!==n&&(t[u]=null,t[o]=null,t[l]=null,e(f(n,!1)))}}function h(t){i.nextTick(g,t)}var A=Object.getPrototypeOf((function(){})),v=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[d])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[u];if(s)n=new Promise(function(t,e){return function(n,s){t.then((function(){e[d]?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[u]=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),A);t.exports=function(t){var e,n=Object.create(v,(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,d,{value:t._readableState.endEmitted,writable:!0}),r(e,m,{value:function(t,e){var s=n[p].read();s?(n[u]=null,n[o]=null,n[l]=null,t(f(s,!1))):(n[o]=t,n[l]=e)},writable:!0}),e));return n[u]=null,a(t,(function(t){if(t&&"ERR_STREAM_PREMATURE_CLOSE"!==t.code){var e=n[l];return null!==e&&(n[u]=null,n[o]=null,n[l]=null,e(t)),void(n[c]=t)}var s=n[o];null!==s&&(n[u]=null,n[o]=null,n[l]=null,s(f(void 0,!0))),n[d]=!0})),t.on("readable",h.bind(null,n)),n}},81766:(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(63779).inspect,d=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:d,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}()},54347:(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)}}},14257:(t,e,n)=>{"use strict";var s=n(12463).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||d()},c=e._writableState&&e._writableState.finished,d=function(){o=!1,c=!0,a||r.call(e)},u=e._readableState&&e._readableState.endEmitted,m=function(){a=!1,u=!0,o||r.call(e)},p=function(t){r.call(e,t)},f=function(){var t;return a&&!u?(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},g=function(){e.req.on("finish",d)};return function(t){return t.setHeader&&"function"==typeof t.abort}(e)?(e.on("complete",d),e.on("abort",f),e.req?g():e.on("request",g)):o&&!e._writableState&&(e.on("end",l),e.on("close",l)),e.on("end",m),e.on("finish",d),!1!==n.error&&e.on("error",p),e.on("close",f),function(){e.removeListener("complete",d),e.removeListener("abort",f),e.removeListener("request",g),e.req&&e.req.removeListener("finish",d),e.removeListener("end",l),e.removeListener("close",l),e.removeListener("finish",d),e.removeListener("end",m),e.removeListener("error",p),e.removeListener("close",f)}}},90968:t=>{t.exports=function(){throw new Error("Readable.from is not available in the browser")}},5267:(t,e,n)=>{"use strict";var s,i=n(12463).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 d,u=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(14257)),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){d||(d=t),t&&m.forEach(l),r||(m.forEach(l),u(d))}))}));return e.reduce(c)}},66644:(t,e,n)=>{"use strict";var s=n(12463).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}}},41396:(t,e,n)=>{t.exports=n(37007).EventEmitter},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=d,this.end=u,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 d(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 u(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,d,u;return n=this.options.attrkey,i=this.options.charkey,1===Object.keys(e).length&&this.options.rootName===s[.2].rootName?e=e[d=Object.keys(e)[0]]:d=this.options.rootName,u=this,l=function(t,e){var s,c,d,m,p,f;if("object"!=typeof e)u.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])d=c[p],t=l(t.ele(p),d).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=u.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(d=c[m])?u.options.cdata&&r(d)?t.ele(p).raw(a(d)).up():t.ele(p,d).up():l(t.ele(p),d).up());else"object"==typeof c?t=l(t.ele(p),c).up():"string"==typeof c&&u.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(d,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,d,u=function(t,e){return function(){return t.apply(e,arguments)}},m={}.hasOwnProperty;c=n(64043),r=n(37007),t=n(83177),l=n(92114),d=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=u(this.parseStringPromise,this),this.parseString=u(this.parseString,this),this.reset=u(this.reset,this),this.assignOrPush=u(this.assignOrPush,this),this.processAsync=u(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),d(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,d,u;if((c={})[e]="",!n.options.ignoreAttrs)for(a in u=r.attributes)m.call(u,a)&&(t in c||n.options.mergeAttrs||(c[t]={}),l=n.options.attrValueProcessors?o(n.options.attrValueProcessors,r.attributes[a],a):r.attributes[a],d=n.options.attrNameProcessors?o(n.options.attrNameProcessors,a):a,n.options.mergeAttrs?n.assignOrPush(c,d,l):i(c[t],d,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,d,u,p,f,g,h;if(u=s.pop(),d=u["#name"],t.options.explicitChildren&&t.options.preserveChildrenOrder||delete u["#name"],!0===u.cdata&&(n=u.cdata,delete u.cdata),g=s[s.length-1],u[e].match(/^\s*$/)&&!n?(r=u[e],delete u[e]):(t.options.trim&&(u[e]=u[e].trim()),t.options.normalize&&(u[e]=u[e].replace(/\s{2,}/g," ").trim()),u[e]=t.options.valueProcessors?o(t.options.valueProcessors,u[e],d):u[e],1===Object.keys(u).length&&e in u&&!t.EXPLICIT_CHARKEY&&(u=u[e])),a(u)&&(u="function"==typeof t.options.emptyTag?t.options.emptyTag():""!==t.options.emptyTag?t.options.emptyTag:r),null!=t.options.validator&&(h="/"+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(d).join("/"),function(){var e;try{return u=t.options.validator(h,g&&g[d],u)}catch(n){return e=n,t.emit("error",e)}}()),t.options.explicitChildren&&!t.options.mergeAttrs&&"object"==typeof u)if(t.options.preserveChildrenOrder){if(g){for(l in g[t.options.childkey]=g[t.options.childkey]||[],p={},u)m.call(u,l)&&i(p,l,u[l]);g[t.options.childkey].push(p),delete u["#name"],1===Object.keys(u).length&&e in u&&!t.EXPLICIT_CHARKEY&&(u=u[e])}}else c={},t.options.attrkey in u&&(c[t.options.attrkey]=u[t.options.attrkey],delete u[t.options.attrkey]),!t.options.charsAsChildren&&t.options.charkey in u&&(c[t.options.charkey]=u[t.options.charkey],delete u[t.options.charkey]),Object.getOwnPropertyNames(u).length>0&&(c[t.options.childkey]=u),u=c;return s.length>0?t.assignOrPush(g,d,u):(t.options.explicitRoot&&(f=u,i(u={},d,f)),t.resultObject=u,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,d(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,d={}.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,d,u;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=(d=s).pubID,i=d.sysID),null==i&&(i=(u=[s,i])[0],s=u[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)d.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,d,u,m,p,f,g,h,A,v,w,y,b,C,_,x,T={}.hasOwnProperty;x=n(49241),C=x.isObject,b=x.isFunction,_=x.isPlainObject,y=x.getValue,e=n(71737),p=n(71933),f=n(33906),r=n(92691),a=n(32679),h=n(1268),w=n(82535),g=n(85915),u=n(34130),m=n(96376),o=n(34111),c=n(5529),l=n(67696),d=n(28012),i=n(54238),v=n(43976),A=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?_(t.writer)&&(i=t.writer,t.writer=new A):t.writer=new A,this.options=t,this.writer=t.writer,this.writerOptions=this.writer.filterOptions(i),this.stringify=new v(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=y(t),null==e&&(e={}),e=y(e),C(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)||C(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=y(t)),C(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 w(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 h(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=y(t)),null!=e&&(e=y(e)),Array.isArray(t))for(n=0,r=t.length;n<r;n++)s=t[n],this.instruction(s);else if(C(t))for(s in t)T.call(t,s)&&(i=t[s],this.instruction(s,i));else b(e)&&(e=e.apply()),a=new g(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 u(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 d(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,d={}.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)d.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)d.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)d.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,d,u,m,p,f,g,h,A,v,w={}.hasOwnProperty;v=n(49241),A=v.isObject,h=v.isFunction,g=v.isEmpty,f=v.getValue,c=null,i=null,r=null,a=null,o=null,m=null,p=null,u=null,l=null,s=null,d=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),u=n(85915),l=n(21218),s=n(71737),d=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 d(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,d,u,m,p;if(l=null,null===e&&null==n&&(e=(u=[{},null])[0],n=u[1]),null==e&&(e={}),e=f(e),A(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(h(t))l=this.element(t.apply());else if(A(t)){for(o in t)if(w.call(t,o))if(p=t[o],h(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)&&g(p))l=this.dummy();else if(A(p)&&g(p))l=this.element(o);else if(this.options.keepNullNodes||null!=p)if(!this.options.separateArrayItems&&Array.isArray(p))for(a=0,d=p.length;a<d;a++)i=p[a],(s={})[o]=i,l=this.element(s);else A(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),A(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 A(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(A(t))for(n in t)w.call(t,n)&&(s=t[n],this.instruction(n,s));else h(e)&&(e=e.apply()),i=new u(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,d,u,m;for(n=this.document(),i=new o(n,t,e),r=a=0,c=(u=n.children).length;a<c;r=++a)if(u[r].type===s.DocType)return n.children[r]=i,i;for(r=l=0,d=(m=n.children).length;l<d;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,d;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),d=[],r=0,o=(c=t.children).length;r<o;r++)n=c[r],d.push(this.writeChildNode(n,e,0));return d},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,d,u,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,d=0,u=(f=t.children).length;d<u;d++)o=f[d],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,d;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!=(d=t.spaceBeforeSlash)?d: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,d,u,m,p,f,g,h,A,v,w;for(f in i||(i=0),g=!1,h="",this.openNode(t,n,i),n.state=s.OpenTag,h+=this.indent(t,n,i)+"<"+t.name,A=t.attribs)r.call(A,f)&&(a=A[f],h+=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?(h+=">",n.state=s.CloseTag,h+="</"+t.name+">"+this.endline(t,n,i)):(n.state=s.CloseTag,h+=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(d=0,m=(v=t.children).length;d<m;d++)if(((o=v[d]).type===e.Text||o.type===e.Raw)&&null!=o.value){n.suppressPrettyCount++,g=!0;break}for(h+=">"+this.endline(t,n,i),n.state=s.InsideTag,u=0,p=(w=t.children).length;u<p;u++)o=w[u],h+=this.writeChildNode(o,n,i+1);n.state=s.CloseTag,h+=this.indent(t,n,i)+"</"+t.name+">",g&&n.suppressPrettyCount--,h+=this.endline(t,n,i),n.state=s.None}else h+=">",n.state=s.InsideTag,n.suppressPrettyCount++,g=!0,h+=this.writeChildNode(c,n,i+1),n.suppressPrettyCount--,g=!1,n.state=s.CloseTag,h+="</"+t.name+">"+this.endline(t,n,i);return this.closeNode(t,n,i),h},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,d,u;u=n(49241),c=u.assign,d=u.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 d(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)},98383:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20viewBox=%270%200%2016%2016%27%20height=%2716%27%20width=%2716%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xml:space=%27preserve%27%20style=%27fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2%27%3e%3cpath%20d=%27M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z%27%20style=%27fill-rule:nonzero%27%20transform=%27matrix%28.85714%200%200%20.85714%20-2.286%20-2.286%29%27/%3e%3c/svg%3e"},39075:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20viewBox=%270%200%2016%2016%27%20height=%2716%27%20width=%2716%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xml:space=%27preserve%27%20style=%27fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2%27%3e%3cpath%20d=%27M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z%27%20style=%27fill:%23fff;fill-rule:nonzero%27%20transform=%27matrix%28.85714%200%200%20.85714%20-2.286%20-2.286%29%27/%3e%3c/svg%3e"},63779:()=>{},99580:()=>{},96995:(t,e,n)=>{"use strict";n.d(e,{U:()=>lt,a:()=>rt,c:()=>G,g:()=>dt,h:()=>mt,l:()=>K,n:()=>Z,o:()=>ut,t:()=>at});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),d=n.n(c),u=n(10540),m=n.n(u),p=n(41113),f=n.n(p),g=n(30521),h={};h.styleTagTransform=f(),h.setAttributes=d(),h.insert=l().bind(null,"head"),h.domAPI=a(),h.insertStyleElement=m(),i()(g.A,h),g.A&&g.A.locals&&g.A.locals;var A=n(53110),v=n(71089),w=n(92320),y=n(63814),b=n(21777),C=n(26287);class _ 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 _(t))}}get isCanceled(){return this.#n===x.canceled}#r(t){this.#n===x.pending&&(this.#n=t)}}Object.setPrototypeOf(T.prototype,Promise.prototype);var k=n(9052);class S 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 k{#o;#l;#c=0;#d;#u;#m=0;#p;#f;#a;#g;#h=0;#A;#v;#w;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.#d=t.intervalCap,this.#u=t.interval,this.#a=new t.queueClass,this.#g=t.queueClass,this.concurrency=t.concurrency,this.timeout=t.timeout,this.#w=!0===t.throwOnTimeout,this.#v=!1===t.autoStart}get#y(){return this.#l||this.#c<this.#d}get#b(){return this.#h<this.#A}#C(){this.#h--,this.#_(),this.emit("next")}#x(){this.#T(),this.#k(),this.#f=void 0}get#S(){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.#h:0}return!1}#_(){if(0===this.#a.size)return this.#p&&clearInterval(this.#p),this.#p=void 0,this.emit("empty"),0===this.#h&&this.emit("idle"),!1;if(!this.#v){const t=!this.#S;if(this.#y&&this.#b){const e=this.#a.dequeue();return!!e&&(this.emit("active"),e(),t&&this.#k(),!0)}}return!1}#k(){this.#l||void 0!==this.#p||(this.#p=setInterval((()=>{this.#T()}),this.#u),this.#m=Date.now()+this.#u)}#T(){0===this.#c&&0===this.#h&&this.#p&&(clearInterval(this.#p),this.#p=void 0),this.#c=this.#o?this.#h:0,this.#E()}#E(){for(;this.#_(););}get concurrency(){return this.#A}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.#A=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.#w,...e},new Promise(((n,s)=>{this.#a.enqueue((async()=>{this.#h++,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 S;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 S&&!e.throwOnTimeout)return void n();s(t),this.emit("error",t)}finally{this.#C()}}),e),this.emit("add"),this.#_()}))}async addAll(t,e){return Promise.all(t.map((async t=>this.add(t,e))))}start(){return this.#v?(this.#v=!1,this.#E(),this):this}pause(){this.#v=!0}clear(){this.#a=new this.#g}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.#h&&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.#h}get isPaused(){return this.#v}}var I=n(53529),B=n(85168),D=n(75270),O=n(85471),U=n(89257),j=n(24764),M=n(54332),R=n(6695),z=n(95101),V=n(82148);n(80002),n(42838),n(70580);class q{constructor(t,e,n){this.gt=new V({debug:n,sourceLocale:"en"});for(const t in e)this.gt.addTranslations(t,"messages",e[t]);this.gt.setLocale(t)}subtitudePlaceholders(t,e){return t.replace(/{([^{}]*)}/g,((t,n)=>{const s=e[n];return"string"==typeof s||"number"==typeof s?s.toString():t}))}gettext(t,e={}){return this.subtitudePlaceholders(this.gt.gettext(t),e)}ngettext(t,e,n,s={}){return this.subtitudePlaceholders(this.gt.ngettext(t,e,n).replace(/%n/g,n.toString()),s)}}const $=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 C.A.request({method:"PUT",url:t,data:a,signal:n,onUploadProgress:s,headers:r})},H=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"}))},W=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 G=(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))(G||{});let Y=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(W()>0?Math.ceil(n/W()):1,1e4);this._source=t,this._isChunked=e&&W()>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 K=null===(Q=(0,b.HW)())?(0,I.YK)().setApp("uploader").build():(0,I.YK)().setApp("uploader").setUid(Q.uid).build();var Q,X=(t=>(t[t.IDLE=0]="IDLE",t[t.UPLOADING=1]="UPLOADING",t[t.PAUSED=2]="PAUSED",t))(X||{});class J{_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,y.dC)(`dav/files/${t}`);if(!t)throw new Error("User is not logged in");e=new w.vd({id:0,owner:t,permissions:w.aX.ALL,root:`/files/${t}`,source:n})}this.destination=e,K.debug("Upload workspace initialized",{destination:this.destination,root:this.root,isPublic:t,maxChunksSize:W()})}get destination(){return this._destinationFolder}set destination(t){if(!t)throw new Error("Invalid destination folder");K.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,v.O0)(s.slice(i.length));K.debug(`Uploading ${e.name} to ${r}`);const a=W(e.size),o=0===a||e.size<a||this._isPublic,l=new Y(s,!o,e.size,e);return this._uploadQueue.push(l),this.updateStats(),new T((async(t,n,s)=>{if(s(l.cancel),o){K.debug("Initializing regular upload",{file:e,upload:l});const s=await H(e,0,l.size),i=async()=>{try{l.response=await $(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(),K.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){if(t instanceof A.k3)return l.status=G.FAILED,void n("Upload has been cancelled");t?.response&&(l.response=t.response),l.status=G.FAILED,K.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{K.debug("Initializing chunked upload",{file:e,upload:l});const s=await async function(t){const e=`${(0,y.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 C.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=()=>H(e,n,a),d=()=>$(`${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?(K.error("Upload failed, not enough space on the server or quota exceeded. Cancelling the remaining chunks",{error:e,upload:l}),l.cancel(),l.status=G.FAILED,e):(e instanceof A.k3||(K.error(`Chunk ${t+1} ${n} - ${o} uploading failed`,{error:e,upload:l}),l.cancel(),l.status=G.FAILED),e)}));i.push(this._jobQueue.add(d))}try{await Promise.all(i),this.updateStats(),l.response=await C.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=G.FINISHED,K.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){t instanceof A.k3?(l.status=G.FAILED,n("Upload has been cancelled")):(l.status=G.FAILED,n("Failed assembling the chunks together")),C.A.request({method:"DELETE",url:`${s}`})}this._notifiers.forEach((t=>{try{t(l)}catch{}}))}return this._jobQueue.onIdle().then((()=>this.reset())),l}))}}function Z(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 d=c.render;c.render=function(t,e){return l.call(e),d(t,e)}}else{var u=c.beforeCreate;c.beforeCreate=u?[].concat(u,l):[l]}return{exports:t,options:c}}const tt=Z({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,et=Z({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,nt=Z({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,st=(new class{constructor(){this.translations={},this.debug=!1}setLanguage(t){return this.locale=t,this}detectLocale(){return this.setLanguage((document.documentElement.lang||"en").replace("-","_"))}addTranslation(t,e){return this.translations[t]=e,this}enableDebugMode(){return this.debug=!0,this}build(){return new q(this.locale||"en",this.translations,this.debug)}}).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=>st.addTranslation(t.locale,t.json)));const it=st.build(),rt=it.ngettext.bind(it),at=it.gettext.bind(it),ot=O.Ay.extend({name:"UploadPicker",components:{Cancel:tt,NcActionButton:U.A,NcActions:j.A,NcButton:M.A,NcIconSvgWrapper:R.A,NcProgressBar:z.A,Plus:et,Upload:nt},props:{accept:{type:Array,default:null},disabled:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},destination:{type:w.vd,default:void 0},content:{type:Array,default:()=>[]},forbiddenCharacters:{type:Array,default:()=>[]}},data:()=>({addLabel:at("New"),cancelLabel:at("Cancel uploads"),uploadLabel:at("Upload files"),progressLabel:at("Upload progress"),progressTimeId:`nc-uploader-progress-${Math.random().toString(36).slice(7)}`,eta:null,timeLeft:"",newFileMenuEntries:[],uploadManager:dt()}),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===G.FAILED)).length},isUploading(){return this.queue?.length>0},isAssembling(){return 0!==this.queue?.filter((t=>t.status===G.ASSEMBLING)).length},isPaused(){return this.uploadManager.info?.status===X.PAUSED},buttonName(){if(!this.isUploading)return this.addLabel}},watch:{destination(t){this.setDestination(t)},totalQueueSize(t){this.eta=D({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),K.debug("UploadPicker initialised")},methods:{onClick(){this.$refs.input.click()},async onPick(){let t=[...this.$refs.input.files];if(mt(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,B.Qg)(at("Upload cancelled"))}}t.forEach((t=>{const e=(this.forbiddenCharacters||[]).find((e=>t.name.includes(e)));e?(0,B.Qg)(at(`"${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=at("paused"));const t=Math.round(this.eta.estimate());if(t!==1/0)if(t<10)this.timeLeft=at("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=at("{time} left",{time:n})}else this.timeLeft=at("{seconds} seconds left",{seconds:t});else this.timeLeft=at("estimating time left")},setDestination(t){this.destination?(this.uploadManager.destination=t,this.newFileMenuEntries=(0,w.m1)(t)):K.debug("Invalid destination")},onUploadCompletion(t){t.status===G.FAILED?this.$emit("failed",t):this.$emit("uploaded",t)}}}),lt=Z(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 ct=null;function dt(){const t=null!==document.querySelector('input[name="isPublic"][value="1"]');return ct instanceof J||(ct=new J(t)),ct}async function ut(t,e,s){const i=(0,O.$V)((()=>Promise.all([n.e(4208),n.e(6075)]).then(n.bind(n,56075))));return new Promise(((n,r)=>{const a=new O.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 mt(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:d,Cancel:u,isAxiosError:m,spread:p,toFormData:f,AxiosHeaders:g,HttpStatusCode:h,formToJSON:A,getAdapter:v,mergeConfig:w}=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(d=0;d<e.length;d++){n=e[d][0],s=e[d][1],i=e[d][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(d--,1);var c=s();void 0!==c&&(t=c)}}return t}i=i||0;for(var d=e.length;d>0&&e[d-1][2]>i;d--)e[d]=e[d-1];e[d]=[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="+{4065:"abd7c824140bd19a80a0",4254:"96661b9f421b07ce7189",6075:"b44c648f2d05e59d9999"}[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"),d=0;d<c.length;d++){var u=c[d];if(u.getAttribute("src")==t||u.getAttribute("data-webpack")==s+i){o=u;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 d=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(d)},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(27048)));o=a.O(o)})();
-//# sourceMappingURL=files-main.js.map?v=0a2d323818bd74845e50
\ No newline at end of file
+(()=>{var e,n,s,i={80002:(t,e,n)=>{"use strict";n(25440)},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,d=this._events[o],u=arguments.length;if(d.fn){switch(d.once&&this.removeListener(t,d.fn,void 0,!0),u){case 1:return d.fn.call(d.context),!0;case 2:return d.fn.call(d.context,e),!0;case 3:return d.fn.call(d.context,e,s),!0;case 4:return d.fn.call(d.context,e,s,i),!0;case 5:return d.fn.call(d.context,e,s,i,r),!0;case 6:return d.fn.call(d.context,e,s,i,r,a),!0}for(c=1,l=new Array(u-1);c<u;c++)l[c-1]=arguments[c];d.fn.apply(d.context,l)}else{var m,p=d.length;for(c=0;c<p;c++)switch(d[c].once&&this.removeListener(t,d[c].fn,void 0,!0),u){case 1:d[c].fn.call(d[c].context);break;case 2:d[c].fn.call(d[c].context,e);break;case 3:d[c].fn.call(d[c].context,e,s);break;case 4:d[c].fn.call(d[c].context,e,s,i);break;default:if(!l)for(m=1,l=new Array(u-1);m<u;m++)l[m-1]=arguments[m];d[c].fn.apply(d[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=[],d=o.length;l<d;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},24878:(e,n,s)=>{"use strict";var i={};s.r(i),s.d(i,{exclude:()=>Et,extract:()=>Ct,parse:()=>_t,parseUrl:()=>Tt,pick:()=>St,stringify:()=>xt,stringifyUrl:()=>kt});var r=s(19166),a=s(63757),o=s(96763);let l;const c=t=>l=t,d=Symbol();function u(t){return t&&"object"==typeof t&&"[object Object]"===Object.prototype.toString.call(t)&&"function"!=typeof t.toJSON}var m;!function(t){t.direct="direct",t.patchObject="patch object",t.patchFunction="patch function"}(m||(m={}));const p="undefined"!=typeof window,f="undefined"!=typeof __VUE_PROD_DEVTOOLS__&&__VUE_PROD_DEVTOOLS__&&p,g=(()=>"object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof global&&global.global===global?global:"object"==typeof globalThis?globalThis:{HTMLElement:null})();function h(t,e,n){const s=new XMLHttpRequest;s.open("GET",t),s.responseType="blob",s.onload=function(){b(s.response,e,n)},s.onerror=function(){o.error("could not download file")},s.send()}function A(t){const e=new XMLHttpRequest;e.open("HEAD",t,!1);try{e.send()}catch(t){}return e.status>=200&&e.status<=299}function v(t){try{t.dispatchEvent(new MouseEvent("click"))}catch(e){const n=document.createEvent("MouseEvents");n.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),t.dispatchEvent(n)}}const w="object"==typeof navigator?navigator:{userAgent:""},y=(()=>/Macintosh/.test(w.userAgent)&&/AppleWebKit/.test(w.userAgent)&&!/Safari/.test(w.userAgent))(),b=p?"undefined"!=typeof HTMLAnchorElement&&"download"in HTMLAnchorElement.prototype&&!y?function(t,e="download",n){const s=document.createElement("a");s.download=e,s.rel="noopener","string"==typeof t?(s.href=t,s.origin!==location.origin?A(s.href)?h(t,e,n):(s.target="_blank",v(s)):v(s)):(s.href=URL.createObjectURL(t),setTimeout((function(){URL.revokeObjectURL(s.href)}),4e4),setTimeout((function(){v(s)}),0))}:"msSaveOrOpenBlob"in w?function(t,e="download",n){if("string"==typeof t)if(A(t))h(t,e,n);else{const e=document.createElement("a");e.href=t,e.target="_blank",setTimeout((function(){v(e)}))}else navigator.msSaveOrOpenBlob(function(t,{autoBom:e=!1}={}){return e&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(t.type)?new Blob([String.fromCharCode(65279),t],{type:t.type}):t}(t,n),e)}:function(t,e,n,s){if((s=s||open("","_blank"))&&(s.document.title=s.document.body.innerText="downloading..."),"string"==typeof t)return h(t,e,n);const i="application/octet-stream"===t.type,r=/constructor/i.test(String(g.HTMLElement))||"safari"in g,a=/CriOS\/[\d]+/.test(navigator.userAgent);if((a||i&&r||y)&&"undefined"!=typeof FileReader){const e=new FileReader;e.onloadend=function(){let t=e.result;if("string"!=typeof t)throw s=null,new Error("Wrong reader.result type");t=a?t:t.replace(/^data:[^;]*;/,"data:attachment/file;"),s?s.location.href=t:location.assign(t),s=null},e.readAsDataURL(t)}else{const e=URL.createObjectURL(t);s?s.location.assign(e):location.href=e,s=null,setTimeout((function(){URL.revokeObjectURL(e)}),4e4)}}:()=>{};function C(t,e){const n="🍍 "+t;"function"==typeof __VUE_DEVTOOLS_TOAST__?__VUE_DEVTOOLS_TOAST__(n,e):"error"===e?o.error(n):"warn"===e?o.warn(n):o.log(n)}function _(t){return"_a"in t&&"install"in t}function x(){if(!("clipboard"in navigator))return C("Your browser doesn't support the Clipboard API","error"),!0}function T(t){return!!(t instanceof Error&&t.message.toLowerCase().includes("document is not focused"))&&(C('You need to activate the "Emulate a focused page" setting in the "Rendering" panel of devtools.',"warn"),!0)}let k;function S(t,e){for(const n in e){const s=t.state.value[n];s?Object.assign(s,e[n]):t.state.value[n]=e[n]}}function E(t){return{_custom:{display:t}}}const L="🍍 Pinia (root)",N="_root";function F(t){return _(t)?{id:N,label:L}:{id:t.$id,label:t.$id}}function P(t){return t?Array.isArray(t)?t.reduce(((t,e)=>(t.keys.push(e.key),t.operations.push(e.type),t.oldValue[e.key]=e.oldValue,t.newValue[e.key]=e.newValue,t)),{oldValue:{},keys:[],operations:[],newValue:{}}):{operation:E(t.type),key:E(t.key),oldValue:t.oldValue,newValue:t.newValue}:{}}function I(t){switch(t){case m.direct:return"mutation";case m.patchFunction:case m.patchObject:return"$patch";default:return"unknown"}}let B=!0;const D=[],O="pinia:mutations",U="pinia",{assign:j}=Object,M=t=>"🍍 "+t;function R(t,e){(0,a.$q)({id:"dev.esm.pinia",label:"Pinia 🍍",logo:"https://pinia.vuejs.org/logo.svg",packageName:"pinia",homepage:"https://pinia.vuejs.org",componentStateTypes:D,app:t},(n=>{"function"!=typeof n.now&&C("You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html."),n.addTimelineLayer({id:O,label:"Pinia 🍍",color:15064968}),n.addInspector({id:U,label:"Pinia 🍍",icon:"storage",treeFilterPlaceholder:"Search stores",actions:[{icon:"content_copy",action:()=>{!async function(t){if(!x())try{await navigator.clipboard.writeText(JSON.stringify(t.state.value)),C("Global state copied to clipboard.")}catch(t){if(T(t))return;C("Failed to serialize the state. Check the console for more details.","error"),o.error(t)}}(e)},tooltip:"Serialize and copy the state"},{icon:"content_paste",action:async()=>{await async function(t){if(!x())try{S(t,JSON.parse(await navigator.clipboard.readText())),C("Global state pasted from clipboard.")}catch(t){if(T(t))return;C("Failed to deserialize the state from clipboard. Check the console for more details.","error"),o.error(t)}}(e),n.sendInspectorTree(U),n.sendInspectorState(U)},tooltip:"Replace the state with the content of your clipboard"},{icon:"save",action:()=>{!async function(t){try{b(new Blob([JSON.stringify(t.state.value)],{type:"text/plain;charset=utf-8"}),"pinia-state.json")}catch(t){C("Failed to export the state as JSON. Check the console for more details.","error"),o.error(t)}}(e)},tooltip:"Save the state as a JSON file"},{icon:"folder_open",action:async()=>{await async function(t){try{const e=(k||(k=document.createElement("input"),k.type="file",k.accept=".json"),function(){return new Promise(((t,e)=>{k.onchange=async()=>{const e=k.files;if(!e)return t(null);const n=e.item(0);return t(n?{text:await n.text(),file:n}:null)},k.oncancel=()=>t(null),k.onerror=e,k.click()}))}),n=await e();if(!n)return;const{text:s,file:i}=n;S(t,JSON.parse(s)),C(`Global state imported from "${i.name}".`)}catch(t){C("Failed to import the state from JSON. Check the console for more details.","error"),o.error(t)}}(e),n.sendInspectorTree(U),n.sendInspectorState(U)},tooltip:"Import the state from a JSON file"}],nodeActions:[{icon:"restore",tooltip:'Reset the state (with "$reset")',action:t=>{const n=e._s.get(t);n?"function"!=typeof n.$reset?C(`Cannot reset "${t}" store because it doesn't have a "$reset" method implemented.`,"warn"):(n.$reset(),C(`Store "${t}" reset.`)):C(`Cannot reset "${t}" store because it wasn't found.`,"warn")}}]}),n.on.inspectComponent(((t,e)=>{const n=t.componentInstance&&t.componentInstance.proxy;if(n&&n._pStores){const e=t.componentInstance.proxy._pStores;Object.values(e).forEach((e=>{t.instanceData.state.push({type:M(e.$id),key:"state",editable:!0,value:e._isOptionsAPI?{_custom:{value:(0,r.ux)(e.$state),actions:[{icon:"restore",tooltip:"Reset the state of this store",action:()=>e.$reset()}]}}:Object.keys(e.$state).reduce(((t,n)=>(t[n]=e.$state[n],t)),{})}),e._getters&&e._getters.length&&t.instanceData.state.push({type:M(e.$id),key:"getters",editable:!1,value:e._getters.reduce(((t,n)=>{try{t[n]=e[n]}catch(e){t[n]=e}return t}),{})})}))}})),n.on.getInspectorTree((n=>{if(n.app===t&&n.inspectorId===U){let t=[e];t=t.concat(Array.from(e._s.values())),n.rootNodes=(n.filter?t.filter((t=>"$id"in t?t.$id.toLowerCase().includes(n.filter.toLowerCase()):L.toLowerCase().includes(n.filter.toLowerCase()))):t).map(F)}})),n.on.getInspectorState((n=>{if(n.app===t&&n.inspectorId===U){const t=n.nodeId===N?e:e._s.get(n.nodeId);if(!t)return;t&&(n.state=function(t){if(_(t)){const e=Array.from(t._s.keys()),n=t._s,s={state:e.map((e=>({editable:!0,key:e,value:t.state.value[e]}))),getters:e.filter((t=>n.get(t)._getters)).map((t=>{const e=n.get(t);return{editable:!1,key:t,value:e._getters.reduce(((t,n)=>(t[n]=e[n],t)),{})}}))};return s}const e={state:Object.keys(t.$state).map((e=>({editable:!0,key:e,value:t.$state[e]})))};return t._getters&&t._getters.length&&(e.getters=t._getters.map((e=>({editable:!1,key:e,value:t[e]})))),t._customProperties.size&&(e.customProperties=Array.from(t._customProperties).map((e=>({editable:!0,key:e,value:t[e]})))),e}(t))}})),n.on.editInspectorState(((n,s)=>{if(n.app===t&&n.inspectorId===U){const t=n.nodeId===N?e:e._s.get(n.nodeId);if(!t)return C(`store "${n.nodeId}" not found`,"error");const{path:s}=n;_(t)?s.unshift("state"):1===s.length&&t._customProperties.has(s[0])&&!(s[0]in t.$state)||s.unshift("$state"),B=!1,n.set(t,s,n.state.value),B=!0}})),n.on.editComponentState((t=>{if(t.type.startsWith("🍍")){const n=t.type.replace(/^🍍\s*/,""),s=e._s.get(n);if(!s)return C(`store "${n}" not found`,"error");const{path:i}=t;if("state"!==i[0])return C(`Invalid path for store "${n}":\n${i}\nOnly state can be modified.`);i[0]="$state",B=!1,t.set(s,i,t.state.value),B=!0}}))}))}let z,V=0;function q(t,e,n){const s=e.reduce(((e,n)=>(e[n]=(0,r.ux)(t)[n],e)),{});for(const e in s)t[e]=function(){const i=V,r=n?new Proxy(t,{get:(...t)=>(z=i,Reflect.get(...t)),set:(...t)=>(z=i,Reflect.set(...t))}):t;z=i;const a=s[e].apply(r,arguments);return z=void 0,a}}function $({app:t,store:e,options:n}){if(e.$id.startsWith("__hot:"))return;e._isOptionsAPI=!!n.state,q(e,Object.keys(n.actions),e._isOptionsAPI);const s=e._hotUpdate;(0,r.ux)(e)._hotUpdate=function(t){s.apply(this,arguments),q(e,Object.keys(t._hmrPayload.actions),!!e._isOptionsAPI)},function(t,e){D.includes(M(e.$id))||D.push(M(e.$id)),(0,a.$q)({id:"dev.esm.pinia",label:"Pinia 🍍",logo:"https://pinia.vuejs.org/logo.svg",packageName:"pinia",homepage:"https://pinia.vuejs.org",componentStateTypes:D,app:t,settings:{logStoreChanges:{label:"Notify about new/deleted stores",type:"boolean",defaultValue:!0}}},(t=>{const n="function"==typeof t.now?t.now.bind(t):Date.now;e.$onAction((({after:s,onError:i,name:r,args:a})=>{const o=V++;t.addTimelineEvent({layerId:O,event:{time:n(),title:"🛫 "+r,subtitle:"start",data:{store:E(e.$id),action:E(r),args:a},groupId:o}}),s((s=>{z=void 0,t.addTimelineEvent({layerId:O,event:{time:n(),title:"🛬 "+r,subtitle:"end",data:{store:E(e.$id),action:E(r),args:a,result:s},groupId:o}})})),i((s=>{z=void 0,t.addTimelineEvent({layerId:O,event:{time:n(),logType:"error",title:"💥 "+r,subtitle:"end",data:{store:E(e.$id),action:E(r),args:a,error:s},groupId:o}})}))}),!0),e._customProperties.forEach((s=>{(0,r.wB)((()=>(0,r.R1)(e[s])),((e,i)=>{t.notifyComponentUpdate(),t.sendInspectorState(U),B&&t.addTimelineEvent({layerId:O,event:{time:n(),title:"Change",subtitle:s,data:{newValue:e,oldValue:i},groupId:z}})}),{deep:!0})})),e.$subscribe((({events:s,type:i},r)=>{if(t.notifyComponentUpdate(),t.sendInspectorState(U),!B)return;const a={time:n(),title:I(i),data:j({store:E(e.$id)},P(s)),groupId:z};i===m.patchFunction?a.subtitle="⤵️":i===m.patchObject?a.subtitle="🧩":s&&!Array.isArray(s)&&(a.subtitle=s.type),s&&(a.data["rawEvent(s)"]={_custom:{display:"DebuggerEvent",type:"object",tooltip:"raw DebuggerEvent[]",value:s}}),t.addTimelineEvent({layerId:O,event:a})}),{detached:!0,flush:"sync"});const s=e._hotUpdate;e._hotUpdate=(0,r.IG)((i=>{s(i),t.addTimelineEvent({layerId:O,event:{time:n(),title:"🔥 "+e.$id,subtitle:"HMR update",data:{store:E(e.$id),info:E("HMR update")}}}),t.notifyComponentUpdate(),t.sendInspectorTree(U),t.sendInspectorState(U)}));const{$dispose:i}=e;e.$dispose=()=>{i(),t.notifyComponentUpdate(),t.sendInspectorTree(U),t.sendInspectorState(U),t.getSettings().logStoreChanges&&C(`Disposed "${e.$id}" store 🗑`)},t.notifyComponentUpdate(),t.sendInspectorTree(U),t.sendInspectorState(U),t.getSettings().logStoreChanges&&C(`"${e.$id}" store installed 🆕`)}))}(t,e)}const H=()=>{};function W(t,e,n,s=H){t.push(e);const i=()=>{const n=t.indexOf(e);n>-1&&(t.splice(n,1),s())};return!n&&(0,r.o5)()&&(0,r.jr)(i),i}function G(t,...e){t.slice().forEach((t=>{t(...e)}))}const Y=t=>t();function K(t,e){t instanceof Map&&e instanceof Map&&e.forEach(((e,n)=>t.set(n,e))),t instanceof Set&&e instanceof Set&&e.forEach(t.add,t);for(const n in e){if(!e.hasOwnProperty(n))continue;const s=e[n],i=t[n];u(i)&&u(s)&&t.hasOwnProperty(n)&&!(0,r.i9)(s)&&!(0,r.g8)(s)?t[n]=K(i,s):t[n]=s}return t}const Q=Symbol(),X=new WeakMap,{assign:J}=Object;function Z(t,e,n={},s,i,a){let o;const l=J({actions:{}},n),d={deep:!0};let p,g,h,A=[],v=[];const w=s.state.value[t];a||w||(r.LE?(0,r.hZ)(s.state.value,t,{}):s.state.value[t]={});const y=(0,r.KR)({});let b;function C(e){let n;p=g=!1,"function"==typeof e?(e(s.state.value[t]),n={type:m.patchFunction,storeId:t,events:h}):(K(s.state.value[t],e),n={type:m.patchObject,payload:e,storeId:t,events:h});const i=b=Symbol();(0,r.dY)().then((()=>{b===i&&(p=!0)})),g=!0,G(A,n,s.state.value[t])}const _=a?function(){const{state:t}=n,e=t?t():{};this.$patch((t=>{J(t,e)}))}:H;function x(e,n){return function(){c(s);const i=Array.from(arguments),r=[],a=[];let o;G(v,{args:i,name:e,store:S,after:function(t){r.push(t)},onError:function(t){a.push(t)}});try{o=n.apply(this&&this.$id===t?this:S,i)}catch(t){throw G(a,t),t}return o instanceof Promise?o.then((t=>(G(r,t),t))).catch((t=>(G(a,t),Promise.reject(t)))):(G(r,o),o)}}const T=(0,r.IG)({actions:{},getters:{},state:[],hotState:y}),k={_p:s,$id:t,$onAction:W.bind(null,v),$patch:C,$reset:_,$subscribe(e,n={}){const i=W(A,e,n.detached,(()=>a())),a=o.run((()=>(0,r.wB)((()=>s.state.value[t]),(s=>{("sync"===n.flush?g:p)&&e({storeId:t,type:m.direct,events:h},s)}),J({},d,n))));return i},$dispose:function(){o.stop(),A=[],v=[],s._s.delete(t)}};r.LE&&(k._r=!1);const S=(0,r.Kh)(f?J({_hmrPayload:T,_customProperties:(0,r.IG)(new Set)},k):k);s._s.set(t,S);const E=(s._a&&s._a.runWithContext||Y)((()=>s._e.run((()=>(o=(0,r.uY)()).run(e)))));for(const e in E){const n=E[e];if((0,r.i9)(n)&&(N=n,!(0,r.i9)(N)||!N.effect)||(0,r.g8)(n))a||(!w||(L=n,r.LE?X.has(L):u(L)&&L.hasOwnProperty(Q))||((0,r.i9)(n)?n.value=w[e]:K(n,w[e])),r.LE?(0,r.hZ)(s.state.value[t],e,n):s.state.value[t][e]=n);else if("function"==typeof n){const t=x(e,n);r.LE?(0,r.hZ)(E,e,t):E[e]=t,l.actions[e]=n}}var L,N;if(r.LE?Object.keys(E).forEach((t=>{(0,r.hZ)(S,t,E[t])})):(J(S,E),J((0,r.ux)(S),E)),Object.defineProperty(S,"$state",{get:()=>s.state.value[t],set:t=>{C((e=>{J(e,t)}))}}),f){const t={writable:!0,configurable:!0,enumerable:!1};["_p","_hmrPayload","_getters","_customProperties"].forEach((e=>{Object.defineProperty(S,e,J({value:S[e]},t))}))}return r.LE&&(S._r=!0),s._p.forEach((t=>{if(f){const e=o.run((()=>t({store:S,app:s._a,pinia:s,options:l})));Object.keys(e||{}).forEach((t=>S._customProperties.add(t))),J(S,e)}else J(S,o.run((()=>t({store:S,app:s._a,pinia:s,options:l}))))})),w&&a&&n.hydrate&&n.hydrate(S.$state,w),p=!0,g=!0,S}function tt(t,e,n){let s,i;const a="function"==typeof e;function o(t,n){const o=(0,r.PS)();return(t=t||(o?(0,r.WQ)(d,null):null))&&c(t),(t=l)._s.has(s)||(a?Z(s,e,i,t):function(t,e,n,s){const{state:i,actions:a,getters:o}=e,l=n.state.value[t];let d;d=Z(t,(function(){l||(r.LE?(0,r.hZ)(n.state.value,t,i?i():{}):n.state.value[t]=i?i():{});const e=(0,r.QW)(n.state.value[t]);return J(e,a,Object.keys(o||{}).reduce(((e,s)=>(e[s]=(0,r.IG)((0,r.EW)((()=>{c(n);const e=n._s.get(t);if(!r.LE||e._r)return o[s].call(e,e)}))),e)),{}))}),e,n,0,!0)}(s,i,t)),t._s.get(s)}return"string"==typeof t?(s=t,i=a?n:e):(i=t,s=t.id),o.$id=s,o}var et=s(92320),nt=s(21777),st=s(85471);const it=function(){const t=(0,r.uY)(!0),e=t.run((()=>(0,r.KR)({})));let n=[],s=[];const i=(0,r.IG)({install(t){c(i),r.LE||(i._a=t,t.provide(d,i),t.config.globalProperties.$pinia=i,f&&R(t,i),s.forEach((t=>n.push(t))),s=[])},use(t){return this._a||r.LE?n.push(t):s.push(t),this},_p:n,_a:null,_e:t,_s:new Map,state:e});return f&&"undefined"!=typeof Proxy&&i.use($),i}();var rt=s(63814);const at="%[a-f0-9]{2}",ot=new RegExp("("+at+")|([^%]+?)","gi"),lt=new RegExp("("+at+")+","gi");function ct(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([],ct(n),ct(s))}function dt(t){try{return decodeURIComponent(t)}catch{let e=t.match(ot)||[];for(let n=1;n<e.length;n++)e=(t=ct(e,n).join("")).match(ot)||[];return t}}function ut(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 mt(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 pt=t=>null==t,ft=t=>encodeURIComponent(t).replace(/[!'()*]/g,(t=>`%${t.charCodeAt(0).toString(16).toUpperCase()}`)),gt=Symbol("encodeFragmentIdentifier");function ht(t){if("string"!=typeof t||1!==t.length)throw new TypeError("arrayFormatSeparator must be single character string")}function At(t,e){return e.encode?e.strict?ft(t):encodeURIComponent(t):t}function vt(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=lt.exec(t);for(;n;){try{e[n[0]]=decodeURIComponent(n[0])}catch{const t=dt(n[0]);t!==n[0]&&(e[n[0]]=t)}n=lt.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 wt(t){return Array.isArray(t)?t.sort():"object"==typeof t?wt(Object.keys(t)).sort(((t,e)=>Number(t)-Number(e))).map((e=>t[e])):t}function yt(t){const e=t.indexOf("#");return-1!==e&&(t=t.slice(0,e)),t}function bt(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 Ct(t){const e=(t=yt(t)).indexOf("?");return-1===e?"":t.slice(e+1)}function _t(t,e){ht((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&&vt(n,t).includes(t.arrayFormatSeparator);n=r?vt(n,t):n;const a=i||r?n.split(t.arrayFormatSeparator).map((e=>vt(e,t))):null===n?n:vt(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?vt(n,t):n);const r=null===n?[]:n.split(t.arrayFormatSeparator).map((e=>vt(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.replace(/\+/g," "):i;let[r,a]=ut(t,"=");void 0===r&&(r=t),a=void 0===a?null:["comma","separator","bracket-separator"].includes(e.arrayFormat)?a:vt(a,e),n(vt(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]=bt(s,e);else s[t]=bt(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)?wt(n):n,t}),Object.create(null))}function xt(t,e){if(!t)return"";ht((e={encode:!0,strict:!0,arrayFormat:"none",arrayFormatSeparator:",",...e}).arrayFormatSeparator);const n=n=>e.skipNull&&pt(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,[At(e,t),"[",i,"]"].join("")]:[...n,[At(e,t),"[",At(i,t),"]=",At(s,t)].join("")]};case"bracket":return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[At(e,t),"[]"].join("")]:[...n,[At(e,t),"[]=",At(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,[At(e,t),":list="].join("")]:[...n,[At(e,t),":list=",At(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?[[At(n,t),e,At(i,t)].join("")]:[[s,At(i,t)].join(t.arrayFormatSeparator)])}default:return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,At(e,t)]:[...n,[At(e,t),"=",At(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?At(n,e):Array.isArray(i)?0===i.length&&"bracket-separator"===e.arrayFormat?At(n,e)+"[]":i.reduce(s(n),[]).join("&"):At(n,e)+"="+At(i,e)})).filter((t=>t.length>0)).join("&")}function Tt(t,e){e={decode:!0,...e};let[n,s]=ut(t,"#");return void 0===n&&(n=t),{url:n?.split("?")?.[0]??"",query:_t(Ct(t),e),...e&&e.parseFragmentIdentifier&&s?{fragmentIdentifier:vt(s,e)}:{}}}function kt(t,e){e={encode:!0,strict:!0,[gt]:!0,...e};const n=yt(t.url).split("?")[0]||"";let s=xt({..._t(Ct(t.url),{sort:!1}),...t.query},e);s&&(s=`?${s}`);let i=function(t){let e="";const n=t.indexOf("#");return-1!==n&&(e=t.slice(n)),e}(t.url);if(t.fragmentIdentifier){const s=new URL(n);s.hash=t.fragmentIdentifier,i=e[gt]?s.hash:`#${t.fragmentIdentifier}`}return`${n}${s}${i}`}function St(t,e,n){n={parseFragmentIdentifier:!0,[gt]:!1,...n};const{url:s,query:i,fragmentIdentifier:r}=Tt(t,n);return kt({url:s,query:mt(i,e),fragmentIdentifier:r},n)}function Et(t,e,n){return St(t,Array.isArray(e)?t=>!e.includes(t):(t,n)=>!e(t,n),n)}const Lt=i;var Nt=s(40173);st.Ay.use(Nt.Ay);const Ft=Nt.Ay.prototype.push;Nt.Ay.prototype.push=function(t,e,n){return e||n?Ft.call(this,t,e,n):Ft.call(this,t).catch((t=>t))};const Pt=new Nt.Ay({mode:"history",base:(0,rt.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=Lt.stringify(t).replace(/%2F/gim,"/");return e?"?"+e:""}});function It(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:e+""}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Bt=s(96763);var Dt=s(22378),Ot=s(61338),Ut=s(53334);const jt={name:"CogIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Mt=s(14486);const Rt=(0,Mt.A)(jt,(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 zt=s(42530),Vt=s(52439),qt=s(6695);function $t(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,d=void 0===c?void 0:c,u=!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 g(){s=void 0}u||(l||!d||s||f(),p(),void 0===d&&c>t?l?(m=Date.now(),a||(s=setTimeout(d?g:f,t))):f():!0!==a&&(s=setTimeout(d?g:f,void 0===d?t-c:t)))}return f.cancel=function(t){var e=(t||{}).upcomingOnly,n=void 0!==e&&e;p(),u=!n},f}var Ht=s(32981),Wt=s(85168),Gt=s(26287);const Yt={name:"ChartPieIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Kt=(0,Mt.A)(Yt,(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 Qt=s(95101);const Xt=(0,s(53529).YK)().setApp("files").detectUser().build(),Jt={name:"NavigationQuota",components:{ChartPie:Kt,NcAppNavigationItem:Vt.A,NcProgressBar:Qt.A},data:()=>({loadingStorageStats:!1,storageStats:(0,Ht.C)("files","storageStats",null)}),computed:{storageStatsTitle(){var t,e,n;const s=(0,et.v7)(null===(t=this.storageStats)||void 0===t?void 0:t.used,!1,!1),i=(0,et.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,Ot.B1)("files:node:created",this.throttleUpdateStorageStats),(0,Ot.B1)("files:node:deleted",this.throttleUpdateStorageStats),(0,Ot.B1)("files:node:moved",this.throttleUpdateStorageStats),(0,Ot.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:(Zt={}.atBegin,$t(200,(function(t){this.updateStorageStats(t)}),{debounceMode:!1!==(void 0!==Zt&&Zt)})),throttleUpdateStorageStats:$t(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 Gt.A.get((0,rt.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){Xt.error("Could not refresh storage stats",{error:n}),e&&(0,Wt.Qg)(t("files","Could not refresh storage stats"))}finally{this.loadingStorageStats=!1}}},showStorageFullWarning(){(0,Wt.Qg)(this.t("files","Your storage is full, files can not be updated or synced anymore!"))},t:Ut.Tl}};var Zt,te=s(85072),ee=s.n(te),ne=s(97825),se=s.n(ne),ie=s(77659),re=s.n(ie),ae=s(55056),oe=s.n(ae),le=s(10540),ce=s.n(le),de=s(41113),ue=s.n(de),me=s(33149),pe={};pe.styleTagTransform=ue(),pe.setAttributes=oe(),pe.insert=re().bind(null,"head"),pe.domAPI=se(),pe.insertStyleElement=ce(),ee()(me.A,pe),me.A&&me.A.locals&&me.A.locals;const fe=(0,Mt.A)(Jt,(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 ge=s(39033),he=s(35845),Ae=s(32073);const ve={name:"ClipboardIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},we=(0,Mt.A)(ve,(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 ye=s(8369);const be={name:"Setting",props:{el:{type:Function,required:!0}},mounted(){this.$el.appendChild(this.el())}},Ce=(0,Mt.A)(be,(function(){return(0,this._self._c)("div")}),[],!1,null,null,null).exports,_e=(0,Ht.C)("files","config",{show_hidden:!1,crop_image_previews:!0,sort_favorites_first:!0,sort_folders_first:!0,grid_view:!1}),xe=function(){const t=tt("userconfig",{state:()=>({userConfig:_e}),actions:{onUpdate(t,e){st.Ay.set(this.userConfig,t,e)},async update(t,e){await Gt.A.put((0,rt.Jv)("/apps/files/api/v1/config/"+t),{value:e}),(0,Ot.Ic)("files:config:updated",{key:t,value:e})}}})(...arguments);return t._initialized||((0,Ot.B1)("files:config:updated",(function(e){let{key:n,value:s}=e;t.onUpdate(n,s)})),t._initialized=!0),t},Te={name:"Settings",components:{Clipboard:we,NcAppSettingsDialog:ge.N,NcAppSettingsSection:he.A,NcCheckboxRadioSwitch:Ae.A,NcInputField:ye.A,Setting:Ce},props:{open:{type:Boolean,default:!1}},setup:()=>({userConfigStore:xe()}),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,rt.dC)("dav/files/"+encodeURIComponent(null===(e=(0,nt.HW)())||void 0===e?void 0:e.uid)),webdavDocs:"https://docs.nextcloud.com/server/stable/go.php?to=user-webdav",appPasswordUrl:(0,rt.Jv)("/settings/user/security#generate-app-token-section"),webdavUrlCopied:!1,enableGridView:null===(n=(0,Ht.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,Wt.Te)(t("files","WebDAV URL copied to clipboard")),setTimeout((()=>{this.webdavUrlCopied=!1}),5e3)):(0,Wt.Qg)(t("files","Clipboard is not available"))},t:Ut.Tl}},ke=Te;var Se=s(83331),Ee={};Ee.styleTagTransform=ue(),Ee.setAttributes=oe(),Ee.insert=re().bind(null,"head"),Ee.domAPI=se(),Ee.insertStyleElement=ce(),ee()(Se.A,Ee),Se.A&&Se.A.locals&&Se.A.locals;const Le=(0,Mt.A)(ke,(function(){var t=this,e=t._self._c;return e("NcAppSettingsDialog",{attrs:{"data-cy-files-navigation-settings":"",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,"109572de",null).exports;function Ne(){const t=(0,et.bh)(),e=(0,st.IJ)(t.views),n=(0,st.IJ)(t.active);function s(t){n.value=t.detail}function i(){e.value=t.views}return(0,st.sV)((()=>{t.addEventListener("update",i),t.addEventListener("updateActive",s)})),(0,st.hi)((()=>{t.removeEventListener("update",i),t.removeEventListener("updateActive",s)})),{currentView:n,views:e}}const Fe=(0,Ht.C)("files","viewConfigs",{}),Pe=function(){const t=tt("viewconfig",{state:()=>({viewConfig:Fe}),getters:{getConfig:t=>e=>t.viewConfig[e]||{}},actions:{onUpdate(t,e,n){this.viewConfig[t]||st.Ay.set(this.viewConfig,t,{}),st.Ay.set(this.viewConfig[t],e,n)},async update(t,e,n){Gt.A.put((0,rt.Jv)("/apps/files/api/v1/views/".concat(t,"/").concat(e)),{value:n}),(0,Ot.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,Ot.B1)("files:viewconfig:updated",(function(t){let{view:n,key:s,value:i}=t;e.onUpdate(n,s,i)})),e._initialized=!0),e},Ie=(0,st.pM)({name:"Navigation",components:{IconCog:Rt,NavigationQuota:fe,NcAppNavigation:zt.A,NcAppNavigationItem:Vt.A,NcIconSvgWrapper:qt.A,SettingsModal:Le},setup(){const t=Pe(),{currentView:e,views:n}=Ne();return{currentView:e,views:n,viewConfigStore:t}},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"},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:{currentViewId(t,e){var n;if(this.currentViewId!==(null===(n=this.currentView)||void 0===n?void 0:n.id)){const n=this.views.find((t=>{let{id:e}=t;return e===this.currentViewId}));this.showView(n),Xt.debug("Navigation changed from ".concat(e," to ").concat(t),{to:n})}}},beforeMount(){const t=this.views.find((t=>{let{id:e}=t;return e===this.currentViewId}));this.showView(t),Xt.debug("Navigation mounted. Showing requested view",{view:t})},methods:{t:Ut.Tl,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.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,Ot.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}}});var Be=s(82989),De={};De.styleTagTransform=ue(),De.setAttributes=oe(),De.insert=re().bind(null,"head"),De.domAPI=se(),De.insertStyleElement=ce(),ee()(Be.A,De),Be.A&&Be.A.locals&&Be.A.locals;const Oe=(0,Mt.A)(Ie,(function(){var t=this,e=t._self._c;return t._self._setupProxy,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("IconCog",{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,"d0bcf126",null).exports;var Ue=s(87485),je=s(77905),Me=s(96995),Re=s(43627),ze=s(38805),Ve=s(89979);const qe={name:"FormatListBulletedSquareIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},$e=(0,Mt.A)(qe,(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 He=s(18195),We=s(54332),Ge=s(34196),Ye=s(84237),Ke=s(27577);const Qe={name:"AccountPlusIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Xe=(0,Mt.A)(Qe,(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,Je={name:"ViewGridIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ze=(0,Mt.A)(Je,(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 tn=s(49981);const en=new et.hY({id:"details",displayName:()=>(0,Ut.Tl)("files","Open details"),iconSvgInline:()=>tn,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!==et.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},{...window.OCP.Files.Router.query,dir:n},!0),null}catch(t){return Xt.error("Error while opening sidebar",{error:t}),!1}},order:-50});var nn,sn=s(44719);const rn="/files/".concat(null===(nn=(0,nt.HW)())||void 0===nn?void 0:nn.uid),an=(0,rt.dC)("dav"+rn),on=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:an;const e=(0,sn.UU)(t),n=t=>{null==e||e.setHeaders({"X-Requested-With":"XMLHttpRequest",requesttoken:null!=t?t:""})};return(0,nt.zo)(n),n((0,nt.do)()),(0,sn.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},ln=on(),cn=async t=>{const e=(0,et.VL)(),n=await ln.stat("".concat(et.lJ).concat(t.path),{details:!0,data:e});return(0,et.Al)(n.data)},dn=function(){const t=tt("files",{state:()=>({files:{},roots:{}}),getters:{getNode:t=>e=>t.files[e],getNodes:t=>e=>e.map((e=>t.files[e])).filter(Boolean),getNodesById:t=>e=>Object.values(t.files).filter((t=>t.fileid===e)),getRoot:t=>e=>t.roots[e]},actions:{updateNodes(t){const e=t.reduce(((t,e)=>e.fileid?(t[e.source]=e,t):(Xt.error("Trying to update/set a node without fileid",{node:e}),t)),{});st.Ay.set(this,"files",{...this.files,...e})},deleteNodes(t){t.forEach((t=>{t.source&&st.Ay.delete(this.files,t.source)}))},setRoot(t){let{service:e,root:n}=t;st.Ay.set(this.roots,e,n)},onDeletedNode(t){this.deleteNodes([t])},onCreatedNode(t){this.updateNodes([t])},async onUpdatedNode(t){if(!t.fileid)return void Xt.error("Trying to update/set a node without fileid",{node:t});const e=this.getNodesById(t.fileid);if(e.length>1)return await Promise.all(e.map(cn)).then(this.updateNodes),void Xt.debug(e.length+" nodes updated in store",{fileid:t.fileid});t.source!==e[0].source?cn(t).then((t=>this.updateNodes([t]))):this.updateNodes([t])}}})(...arguments);return t._initialized||((0,Ot.B1)("files:node:created",t.onCreatedNode),(0,Ot.B1)("files:node:deleted",t.onDeletedNode),(0,Ot.B1)("files:node:updated",t.onUpdatedNode),t._initialized=!0),t},un=function(){const t=dn(...arguments),e=tt("paths",{state:()=>({paths:{}}),getters:{getPath:t=>(e,n)=>{if(t.paths[e])return t.paths[e][n]}},actions:{addPath(t){this.paths[t.service]||st.Ay.set(this.paths,t.service,{}),st.Ay.set(this.paths[t.service],t.path,t.source)},onCreatedNode(e){var n;const s=(null===(n=(0,et.bh)())||void 0===n||null===(n=n.active)||void 0===n?void 0:n.id)||"files";if(e.fileid){if(e.type===et.pt.Folder&&this.addPath({service:s,path:e.path,source:e.source}),"/"===e.dirname){const n=t.getRoot(s);return n._children||st.Ay.set(n,"_children",[]),void n._children.push(e.source)}if(this.paths[s][e.dirname]){const n=this.paths[s][e.dirname],i=t.getNode(n);return Xt.debug("Path already exists, updating children",{parentFolder:i,node:e}),i?(i._children||st.Ay.set(i,"_children",[]),void i._children.push(e.source)):void Xt.error("Parent folder not found",{parentSource:n})}Xt.debug("Parent path does not exists, skipping children update",{node:e})}else Xt.error("Node has no fileid",{node:e})}}})(...arguments);return e._initialized||((0,Ot.B1)("files:node:created",e.onCreatedNode),e._initialized=!0),e},mn=tt("selection",{state:()=>({selected:[],lastSelection:[],lastSelectedIndex:null}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];st.Ay.set(this,"selected",[...new Set(t)])},setLastIndex(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;st.Ay.set(this,"lastSelection",t?this.selected:[]),st.Ay.set(this,"lastSelectedIndex",t)},reset(){st.Ay.set(this,"selected",[]),st.Ay.set(this,"lastSelection",[]),st.Ay.set(this,"lastSelectedIndex",null)}}});let pn;const fn=function(){return pn=(0,Me.g)(),tt("uploader",{state:()=>({queue:pn.queue})})(...arguments)};function gn(t){return t instanceof Date?t.toISOString():String(t)}var hn=s(51850),An=s(86383),vn=s(71089),wn=s(96763);class yn 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: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 bn=async t=>{if(t.isFile)return new Promise(((e,n)=>{t.file(e,n)}));Xt.debug("Handling recursive file tree",{entry:t.name});const e=t,n=await Cn(e),s=(await Promise.all(n.map(bn))).flat();return new yn(e.name,s)},Cn=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()}))},_n=async t=>{const e=(0,et.H4)();if(!await e.exists(t)){Xt.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,et.VL)()});(0,Ot.Ic)("files:node:created",(0,et.Al)(n.data))}},xn=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,Me.o)(e.path,s,n);return Xt.debug("Conflict resolution",{uploads:i,selected:r,renamed:a}),0===r.length&&0===a.length?((0,Wt.cf)((0,Ut.Tl)("files","Conflicts resolution skipped")),Xt.info("User skipped the conflict resolution"),[]):[...i,...r,...a]}catch(t){wn.error(t),(0,Wt.Qg)((0,Ut.Tl)("files","Upload cancelled")),Xt.error("User cancelled the upload")}return[]};var Tn=s(14456),kn={};kn.styleTagTransform=ue(),kn.setAttributes=oe(),kn.insert=re().bind(null,"head"),kn.domAPI=se(),kn.insertStyleElement=ce(),ee()(Tn.A,kn),Tn.A&&Tn.A.locals&&Tn.A.locals;var Sn=s(53110),En=s(36882),Ln=s(39285),Nn=s(49264);let Fn;const Pn=()=>(Fn||(Fn=new Nn.A({concurrency:5})),Fn);var In;!function(t){t.MOVE="Move",t.COPY="Copy",t.MOVE_OR_COPY="move-or-copy"}(In||(In={}));const Bn=t=>!!(t.reduce(((t,e)=>Math.min(t,e.permissions)),et.aX.ALL)&et.aX.UPDATE),Dn=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)&&!t.some((t=>t.permissions===et.aX.NONE));var On=s(36117);const Un=function(t){let e=0;for(let n=0;n<t.length;n++)e=(e<<5)-e+t.charCodeAt(n)|0;return e>>>0},jn=on(),Mn=function(t){var e;const n=null===(e=(0,nt.HW)())||void 0===e?void 0:e.uid;if(!n)throw new Error("No user id found");const s=t.props,i=(0,et.vb)(null==s?void 0:s.permissions),r=String(s["owner-id"]||n),a=(0,rt.dC)("dav"+rn+t.filename),o={id:(null==s?void 0:s.fileid)<0?Un(a):(null==s?void 0:s.fileid)||0,source:a,mtime:new Date(t.lastmod),mime:t.mime||"application/octet-stream",size:(null==s?void 0:s.size)||0,permissions:i,owner:r,root:rn,attributes:{...t,...s,"owner-id":r,"owner-display-name":String(s["owner-display-name"]),hasPreview:!(null==s||!s["has-preview"]),failed:(null==s?void 0:s.fileid)<0}};return delete o.attributes.props,"file"===t.type?new et.ZH(o):new et.vd(o)},Rn=t=>Bn(t)?Dn(t)?In.MOVE_OR_COPY:In.MOVE:In.COPY,zn=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!e)return;if(e.type!==et.pt.Folder)throw new Error((0,Ut.Tl)("files","Destination is not a folder"));if(n===In.MOVE&&t.dirname===e.path)throw new Error((0,Ut.Tl)("files","This file/folder is already in that directory"));if("".concat(e.path,"/").startsWith("".concat(t.path,"/")))throw new Error((0,Ut.Tl)("files","You cannot move a file/folder onto itself or into a subfolder of itself"));st.Ay.set(t,"status",et.zI.LOADING);const i=Pn();return await i.add((async()=>{const i=t=>1===t?(0,Ut.Tl)("files","(copy)"):(0,Ut.Tl)("files","(copy %n)",void 0,t);try{const r=(0,et.H4)(),a=(0,Re.join)(et.lJ,t.path),o=(0,Re.join)(et.lJ,e.path);if(n===In.COPY){let n=t.basename;if(!s){const e=await r.getDirectoryContents(o);n=(0,et.E6)(t.basename,e.map((t=>t.basename)),{suffix:i,ignoreFileExtension:t.type===et.pt.Folder})}if(await r.copyFile(a,(0,Re.join)(o,n)),t.dirname===e.path){const{data:t}=await r.stat((0,Re.join)(o,n),{details:!0,data:(0,et.VL)()});(0,Ot.Ic)("files:node:created",(0,et.Al)(t))}}else{const n=await function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/";const e=new AbortController,n=(0,et.VL)();return new On.CancelablePromise((async(s,i,r)=>{r((()=>e.abort()));try{const i=await jn.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:Mn(r),contents:a.map((t=>{try{return Mn(t)}catch(e){return Xt.error("Invalid node detected '".concat(t.basename,"'"),{error:e}),null}})).filter(Boolean)})}catch(t){i(t)}}))}(e.path);if((0,Me.h)([t],n.contents))try{const{selected:s,renamed:i}=await(0,Me.o)(e.path,[t],n.contents);if(!s.length&&!i.length)return}catch(t){return void(0,Wt.Qg)((0,Ut.Tl)("files","Move cancelled"))}await r.moveFile(a,(0,Re.join)(o,t.basename)),(0,Ot.Ic)("files:node:deleted",t)}}catch(t){if(t instanceof Sn.pe){var r,a,o;if(412===(null==t||null===(r=t.response)||void 0===r?void 0:r.status))throw new Error((0,Ut.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,Ut.Tl)("files","The files is locked"));if(404===(null==t||null===(o=t.response)||void 0===o?void 0:o.status))throw new Error((0,Ut.Tl)("files","The file does not exist anymore"));if(t.message)throw new Error(t.message)}throw Xt.debug(t),new Error}finally{st.Ay.set(t,"status",void 0)}}))},Vn=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,Wt.a1)((0,Ut.Tl)("files","Choose destination")).allowDirectories(!0).setFilter((t=>!s.includes(t.fileid))).setMimeTypeFilter([]).setMultiSelect(!1).startAt(e);return new Promise(((e,s)=>{i.setButtonFactory(((s,i)=>{const r=[],a=(0,Re.basename)(i),o=n.map((t=>t.dirname)),l=n.map((t=>t.path));return t!==In.COPY&&t!==In.MOVE_OR_COPY||r.push({label:a?(0,Ut.Tl)("files","Copy to {target}",{target:a},void 0,{escape:!1,sanitize:!1}):(0,Ut.Tl)("files","Copy"),type:"primary",icon:En,async callback(t){e({destination:t[0],action:In.COPY})}}),o.includes(i)||l.includes(i)||t!==In.MOVE&&t!==In.MOVE_OR_COPY||r.push({label:a?(0,Ut.Tl)("files","Move to {target}",{target:a},void 0,{escape:!1,sanitize:!1}):(0,Ut.Tl)("files","Move"),type:t===In.MOVE?"primary":"secondary",icon:Ln,async callback(t){e({destination:t[0],action:In.MOVE})}}),r})),i.build().pick().catch((t=>{Xt.debug(t),t instanceof Wt.vT?s(new Error((0,Ut.Tl)("files","Cancelled move or copy operation"))):s(new Error((0,Ut.Tl)("files","Move or copy operation failed")))}))}))};new et.hY({id:"move-copy",displayName(t){switch(Rn(t)){case In.MOVE:return(0,Ut.Tl)("files","Move");case In.COPY:return(0,Ut.Tl)("files","Copy");case In.MOVE_OR_COPY:return(0,Ut.Tl)("files","Move or copy")}},iconSvgInline:()=>Ln,enabled:t=>!!t.every((t=>{var e;return null===(e=t.root)||void 0===e?void 0:e.startsWith("/files/")}))&&t.length>0&&(Bn(t)||Dn(t)),async exec(t,e,n){const s=Rn([t]);let i;try{i=await Vn(s,n,[t])}catch(t){return Xt.error(t),!1}try{return await zn(t,i.destination,i.action),!0}catch(t){return!!(t instanceof Error&&t.message)&&((0,Wt.Qg)(t.message),null)}},async execBatch(t,e,n){const s=Rn(t),i=await Vn(s,n,t),r=t.map((async t=>{try{return await zn(t,i.destination,i.action),!0}catch(e){return Xt.error("Failed to ".concat(i.action," node"),{node:t,error:e}),!1}}));return await Promise.all(r)},order:15});var qn=s(96763);const $n=async t=>{const e=t.filter((t=>"file"===t.kind||(Xt.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 yn("root");for(const t of e)if(t instanceof DataTransferItem){Xt.warn("Could not get FilesystemEntry of item, falling back to file");const e=t.getAsFile();if(null===e){Xt.warn("Could not process DataTransferItem",{type:t.type,kind:t.kind}),(0,Wt.Qg)((0,Ut.Tl)("files","One of the dropped files could not be processed"));continue}if("httpd/unix-directory"===e.type||!e.type){n||(Xt.warn("Browser does not support Filesystem API. Directories will not be uploaded"),(0,Wt.I9)((0,Ut.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 bn(t))}catch(t){Xt.error("Error while traversing file tree",{error:t})}return s},Hn=async(t,e,n)=>{const s=(0,Me.g)();if(await(0,Me.h)(t.contents,n)&&(t.contents=await xn(t.contents,e,n)),0===t.contents.length)return Xt.info("No files to upload",{root:t}),(0,Wt.cf)((0,Ut.Tl)("files","No files to upload")),[];Xt.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,Re.join)(n,a.name);if(a instanceof yn){const n=(0,vn.HS)(et.lJ,e.path,t);try{qn.debug("Processing directory",{relativePath:t}),await _n(n),await r(a,t)}catch(t){(0,Wt.Qg)((0,Ut.Tl)("files","Unable to create the directory {directory}",{directory:a.name})),Xt.error("",{error:t,absolutePath:n,directory:a})}}else Xt.debug("Uploading file to "+(0,Re.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?(Xt.error("Error while uploading files",{errors:a}),(0,Wt.Qg)((0,Ut.Tl)("files","Some files could not be uploaded")),[]):(Xt.debug("Files uploaded successfully"),(0,Wt.Te)((0,Ut.Tl)("files","Files uploaded successfully")),Promise.all(i))},Wn=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];const i=[];if(await(0,Me.h)(t,n)&&(t=await xn(t,e,n)),0===t.length)return Xt.info("No files to process",{nodes:t}),void(0,Wt.cf)((0,Ut.Tl)("files","No files to process"));for(const n of t)st.Ay.set(n,"status",et.zI.LOADING),i.push(zn(n,e,s?In.COPY:In.MOVE));const r=await Promise.allSettled(i);t.forEach((t=>st.Ay.set(t,"status",void 0)));const a=r.filter((t=>"rejected"===t.status));if(a.length>0)return Xt.error("Error while copying or moving files",{errors:a}),void(0,Wt.Qg)(s?(0,Ut.Tl)("files","Some files could not be copied"):(0,Ut.Tl)("files","Some files could not be moved"));Xt.debug("Files copy/move successful"),(0,Wt.Te)(s?(0,Ut.Tl)("files","Files copied successfully"):(0,Ut.Tl)("files","Files moved successfully"))},Gn=tt("dragging",{state:()=>({dragging:[]}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];st.Ay.set(this,"dragging",t)},reset(){st.Ay.set(this,"dragging",[])}}}),Yn=st.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()}}),Kn=(0,st.pM)({name:"BreadCrumbs",components:{NcBreadcrumbs:An.N,NcBreadcrumb:hn.N,NcIconSvgWrapper:qt.A},mixins:[Yn],props:{path:{type:String,default:"/"}},setup(){const t=Gn(),e=dn(),n=un(),s=mn(),i=fn(),{currentView:r}=Ne();return{draggingStore:t,filesStore:e,pathsStore:n,selectionStore:s,uploaderStore:i,currentView:r}},computed:{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.getFileSourceFromPath(t),s=n?this.getNodeFromSource(n):void 0,i={...this.$route,params:{node:null==s?void 0:s.fileid},query:{dir:t}};return{dir:t,exact:!0,name:this.getDirDisplayName(t),to:i,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:{getNodeFromSource(t){return this.filesStore.getNode(t)},getFileSourceFromPath(t){var e;return null!==(e=this.currentView&&this.pathsStore.getPath(this.currentView.id,t))&&void 0!==e?e:null},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,Ut.Tl)("files","Home");const s=this.getFileSourceFromPath(t),i=s?this.getNodeFromSource(s):void 0;return(null==i||null===(e=i.attributes)||void 0===e?void 0:e.displayname)||(0,Re.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){t.dataTransfer&&(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)||[]],o=await $n(a),l=await(null===(i=this.currentView)||void 0===i?void 0:i.getContents(e)),c=null==l?void 0:l.folder;if(!c)return void(0,Wt.Qg)(this.t("files","Target folder does not exist any more"));const d=!!(c.permissions&et.aX.CREATE),u=t.ctrlKey;if(!d||0!==t.button)return;if(Xt.debug("Dropped",{event:t,folder:c,selection:r,fileTree:o}),o.contents.length>0)return void await Hn(o,c,l.contents);const m=r.map((t=>this.filesStore.getNode(t)));await Wn(m,c,l.contents,u),r.some((t=>this.selectedFiles.includes(t)))&&(Xt.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,Ut.Tl)("files","Reload current directory"):0===t?(0,Ut.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,Ut.Tl)("files","Reload current directory"):null},t:Ut.Tl}});var Qn=s(67430),Xn={};Xn.styleTagTransform=ue(),Xn.setAttributes=oe(),Xn.insert=re().bind(null,"head"),Xn.domAPI=se(),Xn.insertStyleElement=ce(),ee()(Qn.A,Xn),Qn.A&&Qn.A.locals&&Qn.A.locals;const Jn=(0,Mt.A)(Kn,(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,"77111ada",null).exports,Zn=t=>{const e=t.filter((t=>t.type===et.pt.File)).length,n=t.filter((t=>t.type===et.pt.Folder)).length;return 0===e?(0,Ut.zw)("files","{folderCount} folder","{folderCount} folders",n,{folderCount:n}):0===n?(0,Ut.zw)("files","{fileCount} file","{fileCount} files",e,{fileCount:e}):1===e?(0,Ut.zw)("files","1 file and {folderCount} folder","1 file and {folderCount} folders",n,{folderCount:n}):1===n?(0,Ut.zw)("files","{fileCount} file and 1 folder","{fileCount} files and 1 folder",e,{fileCount:e}):(0,Ut.Tl)("files","{fileCount} files and {folderCount} folders",{fileCount:e,folderCount:n})};var ts=s(19231);const es=tt("actionsmenu",{state:()=>({opened:null})}),ns=function(){const t=tt("renaming",{state:()=>({renamingNode:void 0,newName:""})})(...arguments);return t._initialized||((0,Ot.B1)("files:node:rename",(function(e){t.renamingNode=e,t.newName=e.basename})),t._initialized=!0),t};var ss=s(55042);const is={name:"FileMultipleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},rs=(0,Mt.A)(is,(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,as={name:"FolderIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},os=(0,Mt.A)(as,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon folder-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,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,ls=st.Ay.extend({name:"DragAndDropPreview",components:{FileMultipleIcon:rs,FolderIcon:os},data:()=>({nodes:[]}),computed:{isSingleNode(){return 1===this.nodes.length},isSingleFolder(){return this.isSingleNode&&this.nodes[0].type===et.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,et.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 Zn(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)}))}}}),cs=ls;var ds=s(76810),us={};us.styleTagTransform=ue(),us.setAttributes=oe(),us.insert=re().bind(null,"head"),us.domAPI=se(),us.insertStyleElement=ce(),ee()(ds.A,us),ds.A&&ds.A.locals&&ds.A.locals;const ms=(0,Mt.A)(cs,(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,ps=st.Ay.extend(ms);let fs;st.Ay.directive("onClickOutside",ss.z0);const gs=(0,st.pM)({props:{source:{type:[et.vd,et.ZH,et.bP],required:!0},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},data:()=>({loading:"",dragover:!1,gridMode:!1}),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")},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 Un(this.source.source)},isLoading(){return this.source.status===et.zI.LOADING},extension(){var t;return null!==(t=this.source.attributes)&&void 0!==t&&t.displayname?(0,Re.extname)(this.source.attributes.displayname):this.source.extension||""},displayName(){const t=this.extension,e=String(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.selectedFiles.includes(this.source.source)},isRenaming(){return this.renamingStore.renamingNode===this.source},isRenamingSmallScreen(){return this.isRenaming&&this.filesListWidth<512},isActive(){return String(this.fileid)===String(this.currentFileId)},canDrag(){if(this.isRenaming)return!1;const t=t=>!!((null==t?void 0:t.permissions)&et.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===et.pt.Folder&&!this.draggingFiles.includes(this.source.source)&&!!(this.source.permissions&et.aX.CREATE)},openedMenu:{get(){return this.actionsMenuStore.opened===this.uniqueId.toString()},set(t){this.actionsMenuStore.opened=t?this.uniqueId.toString():null}},isRenaming(){return this.renamingStore.renamingNode===this.source}},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 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")}else{var n;const e=null===(n=this.$el)||void 0===n?void 0:n.closest("main.app-content"),s=e.getBoundingClientRect();e.style.setProperty("--mouse-pos-x",Math.max(0,t.clientX-s.left-200)+"px"),e.style.setProperty("--mouse-pos-y",Math.max(0,t.clientY-s.top)+"px")}const s=this.selectedFiles.length>1;this.actionsMenuStore.opened=this.isSelected&&s?"global":this.uniqueId.toString(),t.preventDefault(),t.stopPropagation()},execDefaultAction(t){if(!(this.isRenaming||t.button>1))return t.ctrlKey||t.metaKey||1===t.button?(t.preventDefault(),window.open((0,rt.Jv)("/f/{fileId}",{fileId:this.fileid})),!1):void this.$refs.actions.execDefaultAction(t)},openDetailsIfAvailable(t){var e;t.preventDefault(),t.stopPropagation(),null!=en&&null!==(e=en.enabled)&&void 0!==e&&e.call(en,[this.source],this.currentView)&&en.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();Xt.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.source.source)?this.draggingStore.set(this.selectedFiles):this.draggingStore.set([this.source.source]);const i=this.draggingStore.dragging.map((t=>this.filesStore.getNode(t))),r=await(async t=>new Promise((e=>{fs||(fs=(new ps).$mount(),document.body.appendChild(fs.$el)),fs.update(t),fs.$on("loaded",(()=>{e(fs.$el),fs.$off("loaded")}))})))(i);null===(s=t.dataTransfer)||void 0===s||s.setDragImage(r,-10,-10)},onDragEnd(){this.draggingStore.reset(),this.dragover=!1,Xt.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 $n(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,Wt.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,Xt.debug("Dropped",{event:t,folder:l,selection:i,fileTree:a}),a.contents.length>0)return void await Hn(a,l,o.contents);const d=i.map((t=>this.filesStore.getNode(t)));await Wn(d,l,o.contents,c),i.some((t=>this.selectedFiles.includes(t)))&&(Xt.debug("Dropped selection, resetting select store..."),this.selectionStore.reset())},t:Ut.Tl}});var hs=s(4604);const As={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()}}},vs=(0,Mt.A)(As,(function(){return(0,this._self._c)("span")}),[],!1,null,null,null).exports,ws={name:"ArrowLeftIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ys=(0,Mt.A)(ws,(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;var bs=s(89257),Cs=s(24764),_s=s(80114);const xs=(0,et.qK)(),Ts=(0,st.pM)({name:"FileEntryActions",components:{ArrowLeftIcon:ys,CustomElementRender:vs,NcActionButton:bs.A,NcActions:Cs.A,NcActionSeparator:_s.A,NcIconSvgWrapper:qt.A,NcLoadingIcon:Ye.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}},setup(){const{currentView:t}=Ne();return{currentView:t}},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")},isLoading(){return this.source.status===et.zI.LOADING},enabledActions(){return this.source.attributes.failed?[]:xs.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!==et.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),this.$set(this.source,"status",et.zI.LOADING);const e=await t.exec(this.source,this.currentView,this.currentDir);if(null==e)return;if(e)return void(0,Wt.Te)((0,Ut.Tl)("files",'"{displayName}" action executed successfully',{displayName:n}));(0,Wt.Qg)((0,Ut.Tl)("files",'"{displayName}" action failed',{displayName:n}))}catch(e){Xt.error("Error while executing action",{action:t,e}),(0,Wt.Qg)((0,Ut.Tl)("files",'"{displayName}" action failed',{displayName:n}))}finally{this.$emit("update:loading",""),this.$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:Ut.Tl}}),ks=Ts;var Ss=s(73093),Es={};Es.styleTagTransform=ue(),Es.setAttributes=oe(),Es.insert=re().bind(null,"head"),Es.domAPI=se(),Es.insertStyleElement=ce(),ee()(Ss.A,Es),Ss.A&&Ss.A.locals&&Ss.A.locals;var Ls=s(49718),Ns={};Ns.styleTagTransform=ue(),Ns.setAttributes=oe(),Ns.insert=re().bind(null,"head"),Ns.domAPI=se(),Ns.insertStyleElement=ce(),ee()(Ls.A,Ns),Ls.A&&Ls.A.locals&&Ls.A.locals;var Fs=(0,Mt.A)(ks,(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":!1,"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,"0bcaefce",null);const Ps=Fs.exports,Is=(0,st.pM)({name:"FileEntryCheckbox",components:{NcCheckboxRadioSwitch:Ae.A,NcLoadingIcon:Ye.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=mn(),e=function(){const t=tt("keyboard",{state:()=>({altKey:!1,ctrlKey:!1,metaKey:!1,shiftKey:!1}),actions:{onEvent(t){t||(t=window.event),st.Ay.set(this,"altKey",!!t.altKey),st.Ay.set(this,"ctrlKey",!!t.ctrlKey),st.Ay.set(this,"metaKey",!!t.metaKey),st.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.source.source)},index(){return this.nodes.findIndex((t=>t.source===this.source.source))},isFile(){return this.source.type===et.pt.File},ariaLabel(){return this.isFile?(0,Ut.Tl)("files",'Toggle selection for file "{displayName}"',{displayName:this.source.basename}):(0,Ut.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.source.source),e=Math.min(n,s),i=Math.max(s,n),r=this.selectionStore.lastSelection,a=this.nodes.map((t=>t.source)).slice(e,i+1).filter(Boolean),o=[...r,...a].filter((e=>!t||e!==this.source.source));return Xt.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.source.source]:this.selectedFiles.filter((t=>t!==this.source.source));Xt.debug("Updating selection",{selection:i}),this.selectionStore.set(i),this.selectionStore.setLastIndex(n)},resetSelection(){this.selectionStore.reset()},t:Ut.Tl}}),Bs=(0,Mt.A)(Is,(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 Ds=s(82182);const Os=(0,Ht.C)("files","forbiddenCharacters","").split(""),Us=st.Ay.extend({name:"FileEntryName",components:{NcTextField:Ds.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(){const{currentView:t}=Ne();return{currentView:t,renamingStore:ns()}},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{[et.pt.File]:(0,Ut.Tl)("files","File name"),[et.pt.Folder]:(0,Ut.Tl)("files","Folder name")}[this.source.type]},linkTo(){var t,e;if(this.source.attributes.failed)return{is:"span",params:{title:(0,Ut.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)&et.aX.READ?{is:"a",params:{download:this.source.basename,href:this.source.source,title:(0,Ut.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))||"";Xt.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(),n=-1!==e.indexOf("/")?"/":Os.find((t=>e.includes(t)));if("."===e||".."===e)throw new Error((0,Ut.Tl)("files",'"{name}" is an invalid file name.',{name:t}));if(0===e.length)throw new Error((0,Ut.Tl)("files","File name cannot be empty."));if(n)throw new Error((0,Ut.Tl)("files",'"{char}" is not allowed inside a file name.',{char:n}));if(e.match(OC.config.blacklist_files_regex))throw new Error((0,Ut.Tl)("files",'"{name}" is not an allowed filetype.',{name:t}));if(this.checkIfNodeExists(t))throw new Error((0,Ut.Tl)("files","{newName} already exists.",{newName:t}));return!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"))):Xt.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,Wt.Qg)((0,Ut.Tl)("files","Another entry with the same name already exists"));else{this.loading="renaming",st.Ay.set(this.source,"status",et.zI.LOADING),this.source.rename(i),Xt.debug("Moving file to",{destination:this.source.encodedSource,oldEncodedSource:s});try{await(0,Gt.A)({method:"MOVE",url:s,headers:{Destination:this.source.encodedSource,Overwrite:"F"}}),(0,Ot.Ic)("files:node:updated",this.source),(0,Ot.Ic)("files:node:renamed",this.source),(0,Wt.Te)((0,Ut.Tl)("files",'Renamed "{oldName}" to "{newName}"',{oldName:n,newName:i})),this.stopRenaming(),this.$nextTick((()=>{this.$refs.basename.focus()}))}catch(t){var r,a;if(Xt.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,Wt.Qg)((0,Ut.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,Wt.Qg)((0,Ut.Tl)("files",'The name "{newName}" is already used in the folder "{dir}". Please choose a different name.',{newName:i,dir:this.currentDir}));(0,Wt.Qg)((0,Ut.Tl)("files",'Could not rename "{oldName}"',{oldName:n}))}finally{this.loading=!1,st.Ay.set(this.source,"status",void 0)}}else this.stopRenaming();else(0,Wt.Qg)((0,Ut.Tl)("files","Name cannot be empty"))},t:Ut.Tl}}),js=(0,Mt.A)(Us,(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":""}},"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 Ms=s(72755);const Rs={name:"FileIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},zs=(0,Mt.A)(Rs,(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,Vs={name:"FolderOpenIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},qs=(0,Mt.A)(Vs,(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,$s={name:"KeyIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Hs=(0,Mt.A)($s,(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,Ws={name:"NetworkIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Gs=(0,Mt.A)(Ws,(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,Ys={name:"TagIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ks=(0,Mt.A)(Ys,(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,Qs={name:"PlayCircleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Xs=(0,Mt.A)(Qs,(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,Js={name:"CollectivesIcon",props:{title:{type:String,default:""},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Zs=(0,Mt.A)(Js,(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,ti=(0,st.pM)({name:"FavoriteIcon",components:{NcIconSvgWrapper:qt.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:Ut.Tl}});var ei=s(55559),ni={};ni.styleTagTransform=ue(),ni.setAttributes=oe(),ni.insert=re().bind(null,"head"),ni.domAPI=se(),ni.insertStyleElement=ce(),ee()(ei.A,ni),ei.A&&ei.A.locals&&ei.A.locals;const si=(0,Mt.A)(ti,(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,"04e52abc",null).exports,ii=st.Ay.extend({name:"FileEntryPreview",components:{AccountGroupIcon:Ms.A,AccountPlusIcon:Xe,CollectivesIcon:Zs,FavoriteIcon:si,FileIcon:zs,FolderIcon:os,FolderOpenIcon:qs,KeyIcon:Hs,LinkIcon:Ve.A,NetworkIcon:Gs,TagIcon:Ks},props:{source:{type:Object,required:!0},dragover:{type:Boolean,default:!1},gridMode:{type:Boolean,default:!1}},setup:()=>({userConfigStore:xe()}),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===et.pt.Folder)return null;if(!0===this.backgroundFailed)return null;try{const t=this.source.attributes.previewUrl||(0,rt.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"]?Xs:null},folderOverlay(){var t,e,n,s;if(this.source.type!==et.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 Hs;if(null!==(e=this.source)&&void 0!==e&&null!==(e=e.attributes)&&void 0!==e&&e["is-tag"])return Ks;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===je.Z.SHARE_TYPE_LINK||t===je.Z.SHARE_TYPE_EMAIL)))return Ve.A;if(i.length>0)return Xe;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 Gs;case"group":return Ms.A;case"collective":return Zs}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:Ut.Tl}}),ri=(0,Mt.A)(ii,(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,ai=(0,st.pM)({name:"FileEntry",components:{CustomElementRender:vs,FileEntryActions:Ps,FileEntryCheckbox:Bs,FileEntryName:js,FileEntryPreview:ri,NcDateTime:hs.A},mixins:[gs],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},compact:{type:Boolean,default:!1}},setup(){const t=es(),e=Gn(),n=dn(),s=ns(),i=mn(),{currentView:r}=Ne();return{actionsMenuStore:t,draggingStore:e,filesStore:n,renamingStore:s,selectionStore:i,currentView:r}},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=this.source.size;return void 0===t||isNaN(t)||t<0?this.t("files","Pending"):(0,et.v7)(t,!0)},sizeOpacity(){const t=this.source.size;if(void 0===t||isNaN(t)||t<0)return{};const e=Math.round(Math.min(100,100*Math.pow(t/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,ts.A)(this.source.mtime).format("LLL"):""}},methods:{formatFileSize:et.v7}}),oi=(0,Mt.A)(ai,(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:{auxclick:function(e){return t.execDefaultAction.apply(null,arguments)},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},nativeOn:{auxclick:function(e){return t.execDefaultAction.apply(null,arguments)},click:function(e){return t.execDefaultAction.apply(null,arguments)}}})],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}},[t.source.mtime?e("NcDateTime",{attrs:{timestamp:t.source.mtime,"ignore-seconds":!0}}):t._e()],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,li=(0,st.pM)({name:"FileEntryGrid",components:{FileEntryActions:Ps,FileEntryCheckbox:Bs,FileEntryName:js,FileEntryPreview:ri},mixins:[gs],inheritAttrs:!1,setup(){const t=es(),e=Gn(),n=dn(),s=ns(),i=mn(),{currentView:r}=Ne();return{actionsMenuStore:t,draggingStore:e,filesStore:n,renamingStore:s,selectionStore:i,currentView:r}},data:()=>({gridMode:!0})}),ci=(0,Mt.A)(li,(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:{auxclick:function(e){return t.execDefaultAction.apply(null,arguments)},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},nativeOn:{auxclick:function(e){return t.execDefaultAction.apply(null,arguments)},click:function(e){return t.execDefaultAction.apply(null,arguments)}}})],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 di=s(96763);const ui={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(){di.debug("Mounted",this.header.id),this.header.render(this.$refs.mount,this.currentFolder,this.currentView)}},mi=(0,Mt.A)(ui,(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,pi=st.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=un();return{filesStore:dn(),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,et.v7)(this.currentFolder.size,!0):(0,et.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:Ut.Tl}});var fi=s(31840),gi={};gi.styleTagTransform=ue(),gi.setAttributes=oe(),gi.insert=re().bind(null,"head"),gi.domAPI=se(),gi.insertStyleElement=ce(),ee()(fi.A,gi),fi.A&&fi.A.locals&&fi.A.locals;const hi=(0,Mt.A)(pi,(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 Ai=s(1795),vi=s(33017);const wi=st.Ay.extend({computed:{...(bi=Pe,Ci=["getConfig","setSortingBy","toggleSortingDirection"],Array.isArray(Ci)?Ci.reduce(((t,e)=>(t[e]=function(){return bi(this.$pinia)[e]},t)),{}):Object.keys(Ci).reduce(((t,e)=>(t[e]=function(){const t=bi(this.$pinia),n=Ci[e];return"function"==typeof n?n.call(this,t):t[n]},t)),{})),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)}}}),yi=(0,st.pM)({name:"FilesListTableHeaderButton",components:{MenuDown:Ai.A,MenuUp:vi.A,NcButton:We.A},mixins:[wi],props:{name:{type:String,required:!0},mode:{type:String,required:!0}},methods:{t:Ut.Tl}});var bi,Ci,_i=s(75290),xi={};xi.styleTagTransform=ue(),xi.setAttributes=oe(),xi.insert=re().bind(null,"head"),xi.domAPI=se(),xi.insertStyleElement=ce(),ee()(_i.A,xi),_i.A&&_i.A.locals&&_i.A.locals;const Ti=(0,Mt.A)(yi,(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,"097f69d4",null).exports,ki=(0,st.pM)({name:"FilesListTableHeader",components:{FilesListTableHeaderButton:Ti,NcCheckboxRadioSwitch:Ae.A},mixins:[wi],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},setup(){const t=dn(),e=mn(),{currentView:n}=Ne();return{filesStore:t,selectionStore:e,currentView:n}},computed:{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,Ut.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.source)).filter(Boolean);Xt.debug("Added all nodes to selection",{selection:t}),this.selectionStore.setLastIndex(null),this.selectionStore.set(t)}else Xt.debug("Cleared selection"),this.selectionStore.reset()},resetSelection(){this.selectionStore.reset()},t:Ut.Tl}});var Si=s(75458),Ei={};Ei.styleTagTransform=ue(),Ei.setAttributes=oe(),Ei.insert=re().bind(null,"head"),Ei.domAPI=se(),Ei.insertStyleElement=ce(),ee()(Si.A,Ei),Si.A&&Si.A.locals&&Si.A.locals;const Li=(0,Mt.A)(ki,(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,"68d3de81",null).exports;var Ni=s(17334),Fi=s.n(Ni),Pi=s(96763);const Ii=st.Ay.extend({name:"VirtualList",mixins:[Yn],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}}))},totalRowCount(){return Math.floor(this.dataSources.length/this.columnCount)},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"),minHeight:"".concat(this.totalRowCount*this.itemHeight+this.beforeHeight,"px")}}},watch:{scrollToIndex(t){this.scrollTo(t)},totalRowCount(){this.scrollToIndex&&this.$nextTick((()=>this.scrollTo(this.scrollToIndex)))},columnCount(t,e){0!==e?this.scrollTo(this.index):Pi.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(Fi()((()=>{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,Xt.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 Xt.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;Xt.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")})))}}}),Bi=(0,Mt.A)(Ii,(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,Di=(0,et.qK)(),Oi=(0,st.pM)({name:"FilesListTableHeaderActions",components:{NcActions:Cs.A,NcActionButton:bs.A,NcIconSvgWrapper:qt.A,NcLoadingIcon:Ye.A},mixins:[Yn],props:{currentView:{type:Object,required:!0},selectedNodes:{type:Array,default:()=>[]}},setup:()=>({actionsMenuStore:es(),filesStore:dn(),selectionStore:mn()}),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 Di.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===et.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=>{st.Ay.set(t,"status",et.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,Wt.Qg)(this.t("files",'"{displayName}" failed on some elements ',{displayName:e}))}(0,Wt.Te)(this.t("files",'"{displayName}" batch action executed successfully',{displayName:e})),this.selectionStore.reset()}catch(n){Xt.error("Error while executing action",{action:t,e:n}),(0,Wt.Qg)(this.t("files",'"{displayName}" action failed',{displayName:e}))}finally{this.loading=null,this.nodes.forEach((t=>{st.Ay.set(t,"status",void 0)}))}},t:Ut.Tl}}),Ui=Oi;var ji=s(30651),Mi={};Mi.styleTagTransform=ue(),Mi.setAttributes=oe(),Mi.insert=re().bind(null,"head"),Mi.domAPI=se(),Mi.insertStyleElement=ce(),ee()(ji.A,Mi),ji.A&&ji.A.locals&&ji.A.locals;var Ri=(0,Mt.A)(Ui,(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,"91476734",null);const zi=Ri.exports,Vi=(0,st.pM)({name:"FilesListVirtual",components:{FilesListHeader:mi,FilesListTableFooter:hi,FilesListTableHeader:Li,VirtualList:Bi,FilesListTableHeaderActions:zi},mixins:[Yn],props:{currentView:{type:et.Ss,required:!0},currentFolder:{type:et.vd,required:!0},nodes:{type:Array,required:!0}},setup:()=>({userConfigStore:xe(),selectionStore:mn()}),data:()=>({FileEntry:oi,FileEntryGrid:ci,headers:(0,et.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 Zn(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,Ut.Tl)("files","List of files and folders."),e=this.currentView.caption||t,n=(0,Ut.Tl)("files","Column headers with buttons are sortable."),s=(0,Ut.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,Ht.C)("files","fileInfo",{});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!=en&&null!==(e=en.enabled)&&void 0!==e&&e.call(en,[n],this.currentView)&&(Xt.debug("Opening sidebar on file "+n.path,{node:n}),en.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,Wt.Qg)(this.t("files","File not found")),this.scrollToIndex=Math.max(0,n)}},handleOpenFile(t){if(!this.openFile)return;if(null===t||this.openFileId===t)return;const e=this.nodes.find((e=>e.fileid===t));if(void 0===e||e.type===et.pt.Folder)return;Xt.debug("Opening file "+e.path,{node:e}),this.openFileId=t;const n=(0,et.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:Ut.Tl}});var qi=s(67436),$i={};$i.styleTagTransform=ue(),$i.setAttributes=oe(),$i.insert=re().bind(null,"head"),$i.domAPI=se(),$i.insertStyleElement=ce(),ee()(qi.A,$i),qi.A&&qi.A.locals&&qi.A.locals;var Hi=s(31772),Wi={};Wi.styleTagTransform=ue(),Wi.setAttributes=oe(),Wi.insert=re().bind(null,"head"),Wi.domAPI=se(),Wi.insertStyleElement=ce(),ee()(Hi.A,Wi),Hi.A&&Hi.A.locals&&Hi.A.locals;const Gi=(0,Mt.A)(Vi,(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,"1e2b43b6",null).exports,Yi={name:"TrayArrowDownIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ki=(0,Mt.A)(Yi,(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,Qi=(0,st.pM)({name:"DragAndDropNotice",components:{TrayArrowDownIcon:Ki},props:{currentFolder:{type:Object,required:!0}},setup(){const{currentView:t}=Ne();return{currentView:t}},data:()=>({dragover:!1}),computed:{canUpload(){return this.currentFolder&&!!(this.currentFolder.permissions&et.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){Xt.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,Wt.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 $n(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,Wt.Qg)(this.t("files","Target folder does not exist any more"));if(t.button)return;Xt.debug("Dropped",{event:t,folder:o,fileTree:r});const l=(await Hn(r,o,a.contents)).findLast((t=>{var e;return t.status!==Me.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,d;void 0!==l&&(Xt.debug("Scrolling to last upload in current folder",{lastUpload:l}),this.$router.push({...this.$route,params:{view:null!==(c=null===(d=this.$route.params)||void 0===d?void 0:d.view)&&void 0!==c?c:"files",fileid:parseInt(l.response.headers["oc-fileid"])}})),this.dragover=!1},t:Ut.Tl}});var Xi=s(20746),Ji={};Ji.styleTagTransform=ue(),Ji.setAttributes=oe(),Ji.insert=re().bind(null,"head"),Ji.domAPI=se(),Ji.insertStyleElement=ce(),ee()(Xi.A,Ji),Xi.A&&Xi.A.locals&&Xi.A.locals;const Zi=(0,Mt.A)(Qi,(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,"2b498b48",null).exports;var tr,er=s(96763);const nr=void 0!==(null===(tr=(0,Ue.F)())||void 0===tr?void 0:tr.files_sharing),sr=(0,st.pM)({name:"FilesList",components:{BreadCrumbs:Jn,DragAndDropNotice:Zi,FilesListVirtual:Gi,LinkIcon:Ve.A,ListViewIcon:$e,NcAppContent:He.A,NcButton:We.A,NcEmptyContent:Ge.A,NcIconSvgWrapper:qt.A,NcLoadingIcon:Ye.A,PlusIcon:Ke.A,AccountPlusIcon:Xe,UploadPicker:Me.U,ViewGridIcon:Ze},mixins:[Yn,wi],setup(){var t;const e=dn(),n=un(),s=mn(),i=fn(),r=xe(),a=Pe(),{currentView:o}=Ne(),l=null===(t=(0,Ht.C)("core","config",[])["enable_non-accessible_features"])||void 0===t||t;return{currentView:o,n:Ut.zw,t:Ut.Tl,filesStore:e,pathsStore:n,selectionStore:s,uploaderStore:i,userConfigStore:r,viewConfigStore:a,enableGridView:l,ShareType:je.I}},data:()=>({filterText:"",loading:!0,promise:null,unsubscribeStoreCallback:()=>{}}),computed:{userConfig(){return this.userConfigStore.userConfig},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")},fileId(){var t,e;const n=Number.parseInt(null!==(t=null===(e=this.$route)||void 0===e?void 0:e.params.fileid)&&void 0!==t?t:"");return Number.isNaN(n)?null:n},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 void 0!==e?this.filesStore.getNode(e):void 0},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()))),er.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,Ut.Z0)(),(0,Ut.lO)()],{numeric:!0,usage:"sort"});return[...t].sort(((t,n)=>{for(const[s,i]of e.entries()){const e=a.compare(gn(i(t)),gn(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===je.I.Link?this.t("files","Shared by link"):this.t("files","Shared"):this.t("files","Share")},shareButtonType(){return this.shareAttributes?this.shareAttributes.some((t=>t===je.I.Link))?je.I.Link:je.I.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&&!!(this.currentFolder.permissions&et.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 nr&&this.currentFolder&&!!(this.currentFolder.permissions&et.aX.SHARE)},onSearch(){return Fi()((t=>{er.debug("Files app handling search event from unified search...",t),this.filterText=t.query}),500)}},watch:{currentView(t,e){(null==t?void 0:t.id)!==(null==e?void 0:e.id)&&(Xt.debug("View changed",{newView:t,oldView:e}),this.selectionStore.reset(),this.resetSearch(),this.fetchContent())},dir(t,e){var n;Xt.debug("Directory changed",{newDir:t,oldDir:e}),this.selectionStore.reset(),this.resetSearch(),this.fetchContent();const s=null===(n=this.$refs)||void 0===n?void 0:n.filesListVirtual;null!=s&&s.$el&&(s.$el.scrollTop=0)},dirContents(t){Xt.debug("Directory contents changed",{view:this.currentView,folder:this.currentFolder,contents:t}),(0,Ot.Ic)("files:list:updated",{view:this.currentView,folder:this.currentFolder,contents:t})}},mounted(){this.fetchContent(),(0,Ot.B1)("files:node:deleted",this.onNodeDeleted),(0,Ot.B1)("files:node:updated",this.onUpdatedNode),(0,Ot.B1)("nextcloud:unified-search.search",this.onSearch),(0,Ot.B1)("nextcloud:unified-search.reset",this.resetSearch),this.unsubscribeStoreCallback=this.userConfigStore.$subscribe((()=>this.fetchContent()),{deep:!0})},unmounted(){(0,Ot.al)("files:node:deleted",this.onNodeDeleted),(0,Ot.al)("files:node:updated",this.onUpdatedNode),(0,Ot.al)("nextcloud:unified-search.search",this.onSearch),(0,Ot.al)("nextcloud:unified-search.reset",this.resetSearch),this.unsubscribeStoreCallback()},methods:{async fetchContent(){this.loading=!0;const t=this.dir,e=this.currentView;if(e){this.promise&&"cancel"in this.promise&&(this.promise.cancel(),Xt.debug("Cancelled previous ongoing fetch")),this.promise=e.getContents(t);try{const{folder:n,contents:s}=await this.promise;Xt.debug("Fetched contents",{dir:t,folder:n,contents:s}),this.filesStore.updateNodes(s),this.$set(n,"_children",s.map((t=>t.source))),"/"===t?this.filesStore.setRoot({service:e.id,root:n}):n.fileid?(this.filesStore.updateNodes([n]),this.pathsStore.addPath({service:e.id,source:n.source,path:t})):Xt.error("Invalid root folder returned",{dir:t,folder:n,currentView:e}),s.filter((t=>"folder"===t.type)).forEach((n=>{this.pathsStore.addPath({service:e.id,source:n.source,path:(0,Re.join)(t,n.basename)})}))}catch(t){Xt.error("Error while fetching content",{error:t})}finally{this.loading=!1}}else Xt.debug("The current view doesn't exists or is not ready.",{currentView:e})},getNode(t){return this.filesStore.getNode(t)},onNodeDeleted(t){var e,n,s;t.fileid&&t.fileid===this.fileId&&(t.fileid===(null===(e=this.currentFolder)||void 0===e?void 0:e.fileid)?window.OCP.Files.Router.goToRoute(null,{view:this.$route.params.view},{dir:null!==(n=null===(s=this.currentFolder)||void 0===s?void 0:s.dirname)&&void 0!==n?n:"/"}):window.OCP.Files.Router.goToRoute(null,{...this.$route.params,fileid:void 0},{...this.$route.query,openfile:void 0}))},onUpload(t){var e;(0,Re.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 ze.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,Wt.Qg)(this.t("files","Error during upload: {message}",{message:n}))}catch(t){Xt.error("Error while parsing",{error:t})}0===n?(0,Wt.Qg)(this.t("files","Unknown error during upload")):(0,Wt.Qg)(this.t("files","Error during upload, status code {status}",{status:n}))}else(0,Wt.Qg)(this.t("files","Operation is blocked by access control"));else(0,Wt.Qg)(this.t("files","Target folder does not exist any more"));else(0,Wt.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()},resetSearch(){this.onSearch.clear(),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"),en.exec(this.currentFolder,this.currentView,this.currentFolder.path)):Xt.debug("No current folder found for opening sharing sidebar")},toggleGridView(){this.userConfigStore.update("grid_view",!this.userConfig.grid_view)}}});var ir=s(79335),rr={};rr.styleTagTransform=ue(),rr.setAttributes=oe(),rr.insert=re().bind(null,"head"),rr.domAPI=se(),rr.insertStyleElement=ce(),ee()(ir.A,rr),ir.A&&ir.A.locals&&ir.A.locals;const ar=(0,Mt.A)(sr,(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.ShareType.Link?s("LinkIcon"):s("AccountPlusIcon",{attrs:{size:20}})]},proxy:!0}],null,!1,4106306959)}):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,"139727ec",null).exports,or=(0,st.pM)({name:"FilesApp",components:{NcContent:Dt.A,FilesList:ar,Navigation:Oe}}),lr=(0,Mt.A)(or,(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 cr,dr;s.nc=btoa((0,nt.do)()),window.OCA.Files=null!==(cr=window.OCA.Files)&&void 0!==cr?cr:{},window.OCP.Files=null!==(dr=window.OCP.Files)&&void 0!==dr?dr:{};const ur=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: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})}}(Pt);Object.assign(window.OCP.Files,{Router:ur}),st.Ay.use((function(t){t.mixin({beforeCreate(){const t=this.$options;if(t.pinia){const e=t.pinia;if(!this._provided){const t={};Object.defineProperty(this,"_provided",{get:()=>t,set:e=>Object.assign(t,e)})}this._provided[d]=e,this.$pinia||(this.$pinia=e),e._a=this,p&&c(e),f&&R(e._a,e)}else!this.$pinia&&t.parent&&t.parent.$pinia&&(this.$pinia=t.parent.$pinia)},destroyed(){delete this._pStores}})}));const mr=st.Ay.observable((0,et.bh)());st.Ay.prototype.$navigation=mr;const pr=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:e+""}(e="_settings"))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,this._settings=[],Bt.debug("OCA.Files.Settings initialized")}register(t){return this._settings.filter((e=>e.name===t.name)).length>0?(Bt.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:pr}),Object.assign(window.OCA.Files.Settings,{Setting:class{constructor(t,e){let{el:n,open:s,close:i}=e;It(this,"_close",void 0),It(this,"_el",void 0),It(this,"_name",void 0),It(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(st.Ay.extend(lr))({router:Pt,pinia:it}).$mount("#content")},14456:(t,e,n)=>{"use strict";n.d(e,{A:()=>f});var s=n(71354),i=n.n(s),r=n(76314),a=n.n(r),o=n(4417),l=n.n(o),c=new URL(n(98383),n.b),d=new URL(n(39075),n.b),u=a()(i()),m=l()(c),p=l()(d);u.push([t.id,`/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n.toastify.dialogs {\n  min-width: 200px;\n  background: none;\n  background-color: var(--color-main-background);\n  color: var(--color-main-text);\n  box-shadow: 0 0 6px 0 var(--color-box-shadow);\n  padding: 0 12px;\n  margin-top: 45px;\n  position: fixed;\n  z-index: 10100;\n  border-radius: var(--border-radius);\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n  position: static;\n  overflow: hidden;\n  box-sizing: border-box;\n  min-width: 44px;\n  height: 100%;\n  padding: 12px;\n  white-space: nowrap;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-color: transparent;\n  min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n  text-indent: 0;\n  opacity: 0.4;\n  border: none;\n  min-height: 44px;\n  margin-left: 10px;\n  font-size: 0;\n  /* dark theme overrides for Nextcloud 25 and later */\n}\n.toastify.dialogs .toast-undo-button.toast-close::before,\n.toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(${m});\n  content: " ";\n  filter: var(--background-invert-if-dark);\n  display: inline-block;\n  width: 16px;\n  height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n  margin: 3px;\n  height: calc(100% - 2 * 3px);\n  margin-left: 12px;\n}\n.toastify.dialogs .toast-undo-button:hover, .toastify.dialogs .toast-undo-button:focus, .toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n  cursor: pointer;\n  opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n  right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n  cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n  border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n  border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n  border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success {\n  border-left: 3px solid var(--color-success);\n}\n.toastify.dialogs.toast-undo {\n  border-left: 3px solid var(--color-success);\n}\n\n/* dark theme overrides for Nextcloud 24 and earlier */\n.theme--dark .toastify.dialogs .toast-close {\n  /* close icon style */\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(${p});\n}\n.nc-generic-dialog .dialog__actions {\n\tjustify-content: space-between;\n\tmin-width: calc(100% - 12px);\n}\n/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * Icon styling of the file list row preview or fallback icon\n * (leading icon on the name row and header)\n */\n._file-picker__file-icon_19mjt_9 {\n  width: 32px;\n  height: 32px;\n  min-width: 32px;\n  min-height: 32px;\n  background-repeat: no-repeat;\n  background-size: contain;\n  display: flex;\n  justify-content: center;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-15187afc] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-15187afc] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-15187afc] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-15187afc]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-15187afc] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-15187afc] {\n  padding-inline: 2px 0;\n}\n@keyframes gradient-15187afc {\n0% {\n    background-position: 0% 50%;\n}\n50% {\n    background-position: 100% 50%;\n}\n100% {\n    background-position: 0% 50%;\n}\n}\n.loading-row .row-checkbox[data-v-15187afc] {\n  text-align: center !important;\n}\n.loading-row span[data-v-15187afc] {\n  display: inline-block;\n  height: 24px;\n  background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n  background-size: 600px 100%;\n  border-radius: var(--border-radius);\n  animation: gradient-15187afc 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-15187afc] {\n  display: inline-flex;\n  align-items: center;\n}\n.loading-row .row-checkbox span[data-v-15187afc] {\n  width: 24px;\n}\n.loading-row .row-name span[data-v-15187afc]:last-of-type {\n  margin-inline-start: 6px;\n  width: 130px;\n}\n.loading-row .row-size span[data-v-15187afc] {\n  width: 80px;\n}\n.loading-row .row-modified span[data-v-15187afc] {\n  width: 90px;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-cb12dccb] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-cb12dccb] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-cb12dccb] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-cb12dccb]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-cb12dccb] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-cb12dccb] {\n  padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-cb12dccb] {\n  background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-cb12dccb]:hover {\n  background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-cb12dccb] {\n  display: flex;\n  justify-content: start;\n  align-items: center;\n  height: 100%;\n}\n.file-picker__file-name[data-v-cb12dccb] {\n  padding-inline-start: 6px;\n  min-width: 0;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-cb12dccb] {\n  color: var(--color-text-maxcontrast);\n  min-width: fit-content;\n}.file-picker__header-preview[data-v-006fdbd0] {\n  width: 22px;\n  height: 32px;\n  flex: 0 0 auto;\n}\n.file-picker__files[data-v-006fdbd0] {\n  margin: 2px;\n  margin-inline-start: 12px;\n  overflow: scroll auto;\n}\n.file-picker__files table[data-v-006fdbd0] {\n  width: 100%;\n  max-height: 100%;\n  table-layout: fixed;\n}\n.file-picker__files th[data-v-006fdbd0] {\n  position: sticky;\n  z-index: 1;\n  top: 0;\n  background-color: var(--color-main-background);\n  padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-006fdbd0] {\n  display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-006fdbd0] {\n  width: 44px;\n}\n.file-picker__files th.row-name[data-v-006fdbd0] {\n  width: 230px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] {\n  width: 100px;\n}\n.file-picker__files th.row-modified[data-v-006fdbd0] {\n  width: 120px;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue__wrapper {\n  justify-content: start;\n  flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue {\n  padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] .button-vue__wrapper {\n  justify-content: end;\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper {\n  color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper .button-vue__text {\n  font-weight: normal;\n}.file-picker__breadcrumbs[data-v-b357227a] {\n  flex-grow: 0 !important;\n}.file-picker__side[data-v-b42054b8] {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  gap: 0.5rem;\n  min-width: 200px;\n  padding: 2px;\n  margin-block-start: 7px;\n  overflow: auto;\n}\n.file-picker__side[data-v-b42054b8] .button-vue__wrapper {\n  justify-content: start;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n  margin-block: 7px;\n  max-width: 260px;\n}\n@media (max-width: 736px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n}\n@media (max-width: 512px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n    max-width: unset;\n}\n}/* Ensure focus outline is visible */\n.file-picker__navigation {\n  padding-inline: 8px 2px;\n}\n.file-picker__navigation, .file-picker__navigation * {\n  box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n  min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n.file-picker__navigation {\n    gap: 11px;\n}\n}\n@media (max-width: 512px) {\n.file-picker__navigation {\n    flex-direction: column-reverse !important;\n}\n}.file-picker__view[data-v-20b719ba] {\n  height: 50px;\n  display: flex;\n  justify-content: start;\n  align-items: center;\n}\n.file-picker__view h3[data-v-20b719ba] {\n  font-weight: bold;\n  height: fit-content;\n  margin: 0;\n}\n.file-picker__main[data-v-20b719ba] {\n  box-sizing: border-box;\n  width: 100%;\n  display: flex;\n  flex-direction: column;\n  min-height: 0;\n  flex: 1;\n  padding-inline: 2px;\n}\n.file-picker__main *[data-v-20b719ba] {\n  box-sizing: border-box;\n}\n[data-v-20b719ba] .file-picker {\n  height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n[data-v-20b719ba] .file-picker {\n    height: calc(100% - 16px - var(--default-clickable-area)) !important;\n}\n}\n[data-v-20b719ba] .file-picker__content {\n  display: flex;\n  flex-direction: column;\n  overflow: hidden;\n}`,"",{version:3,sources:["webpack://./node_modules/@nextcloud/dialogs/dist/style.css"],names:[],mappings:"AAAA;;;EAGE;AACF;EACE,gBAAgB;EAChB,gBAAgB;EAChB,8CAA8C;EAC9C,6BAA6B;EAC7B,6CAA6C;EAC7C,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,cAAc;EACd,mCAAmC;EACnC,aAAa;EACb,mBAAmB;AACrB;AACA;EACE,aAAa;EACb,mBAAmB;AACrB;AACA;;EAEE,gBAAgB;EAChB,gBAAgB;EAChB,sBAAsB;EACtB,eAAe;EACf,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,4BAA4B;EAC5B,2BAA2B;EAC3B,6BAA6B;EAC7B,aAAa;AACf;AACA;;EAEE,cAAc;EACd,YAAY;EACZ,YAAY;EACZ,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;EACZ,oDAAoD;AACtD;AACA;;EAEE,yDAAsf;EACtf,YAAY;EACZ,wCAAwC;EACxC,qBAAqB;EACrB,WAAW;EACX,YAAY;AACd;AACA;;EAEE,WAAW;EACX,4BAA4B;EAC5B,iBAAiB;AACnB;AACA;;;;EAIE,eAAe;EACf,UAAU;AACZ;AACA;EACE,WAAW;AACb;AACA;EACE,eAAe;AACjB;AACA;EACE,yCAAyC;AAC3C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;;AAEA,sDAAsD;AACtD;EACE,qBAAqB;AACvB;AACA;EACE,yDAAkgB;AACpgB;AACA;CACC,8BAA8B;CAC9B,4BAA4B;AAC7B;AACA;;;EAGE;AACF;;;EAGE;AACF;EACE,WAAW;EACX,YAAY;EACZ,eAAe;EACf,gBAAgB;EAChB,4BAA4B;EAC5B,wBAAwB;EACxB,aAAa;EACb,uBAAuB;AACzB,CAAC;;;EAGC;AACF;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;AACA;IACI,2BAA2B;AAC/B;AACA;IACI,6BAA6B;AACjC;AACA;IACI,2BAA2B;AAC/B;AACA;AACA;EACE,6BAA6B;AAC/B;AACA;EACE,qBAAqB;EACrB,YAAY;EACZ,oIAAoI;EACpI,2BAA2B;EAC3B,mCAAmC;EACnC,8CAA8C;AAChD;AACA;EACE,oBAAoB;EACpB,mBAAmB;AACrB;AACA;EACE,WAAW;AACb;AACA;EACE,wBAAwB;EACxB,YAAY;AACd;AACA;EACE,WAAW;AACb;AACA;EACE,WAAW;AACb,CAAC;;;EAGC;AACF;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,8CAA8C;AAChD;AACA;EACE,+CAA+C;AACjD;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,yBAAyB;EACzB,YAAY;EACZ,gBAAgB;EAChB,uBAAuB;AACzB;AACA;EACE,oCAAoC;EACpC,sBAAsB;AACxB,CAAC;EACC,WAAW;EACX,YAAY;EACZ,cAAc;AAChB;AACA;EACE,WAAW;EACX,yBAAyB;EACzB,qBAAqB;AACvB;AACA;EACE,WAAW;EACX,gBAAgB;EAChB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,UAAU;EACV,MAAM;EACN,8CAA8C;EAC9C,YAAY;AACd;AACA;EACE,aAAa;AACf;AACA;EACE,WAAW;AACb;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,sBAAsB;EACtB,2BAA2B;AAC7B;AACA;EACE,wBAAwB;AAC1B;AACA;EACE,oBAAoB;AACtB;AACA;EACE,oCAAoC;AACtC;AACA;EACE,mBAAmB;AACrB,CAAC;EACC,uBAAuB;AACzB,CAAC;EACC,aAAa;EACb,sBAAsB;EACtB,oBAAoB;EACpB,WAAW;EACX,gBAAgB;EAChB,YAAY;EACZ,uBAAuB;EACvB,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,iBAAiB;EACjB,gBAAgB;AAClB;AACA;AACA;IACI,mBAAmB;IACnB,gBAAgB;AACpB;AACA;AACA;AACA;IACI,mBAAmB;IACnB,gBAAgB;AACpB;AACA;IACI,gBAAgB;AACpB;AACA,CAAC,oCAAoC;AACrC;EACE,uBAAuB;AACzB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,gBAAgB;AAClB;AACA;AACA;IACI,SAAS;AACb;AACA;AACA;AACA;IACI,yCAAyC;AAC7C;AACA,CAAC;EACC,YAAY;EACZ,aAAa;EACb,sBAAsB;EACtB,mBAAmB;AACrB;AACA;EACE,iBAAiB;EACjB,mBAAmB;EACnB,SAAS;AACX;AACA;EACE,sBAAsB;EACtB,WAAW;EACX,aAAa;EACb,sBAAsB;EACtB,aAAa;EACb,OAAO;EACP,mBAAmB;AACrB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,mCAAmC;AACrC;AACA;AACA;IACI,oEAAoE;AACxE;AACA;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,gBAAgB;AAClB",sourcesContent:["/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n.toastify.dialogs {\n  min-width: 200px;\n  background: none;\n  background-color: var(--color-main-background);\n  color: var(--color-main-text);\n  box-shadow: 0 0 6px 0 var(--color-box-shadow);\n  padding: 0 12px;\n  margin-top: 45px;\n  position: fixed;\n  z-index: 10100;\n  border-radius: var(--border-radius);\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n  position: static;\n  overflow: hidden;\n  box-sizing: border-box;\n  min-width: 44px;\n  height: 100%;\n  padding: 12px;\n  white-space: nowrap;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-color: transparent;\n  min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n  text-indent: 0;\n  opacity: 0.4;\n  border: none;\n  min-height: 44px;\n  margin-left: 10px;\n  font-size: 0;\n  /* dark theme overrides for Nextcloud 25 and later */\n}\n.toastify.dialogs .toast-undo-button.toast-close::before,\n.toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(\"data:image/svg+xml,%3csvg%20viewBox='0%200%2016%2016'%20height='16'%20width='16'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3e%3cpath%20d='M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z'%20style='fill-rule:nonzero'%20transform='matrix(.85714%200%200%20.85714%20-2.286%20-2.286)'/%3e%3c/svg%3e\");\n  content: \" \";\n  filter: var(--background-invert-if-dark);\n  display: inline-block;\n  width: 16px;\n  height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n  margin: 3px;\n  height: calc(100% - 2 * 3px);\n  margin-left: 12px;\n}\n.toastify.dialogs .toast-undo-button:hover, .toastify.dialogs .toast-undo-button:focus, .toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n  cursor: pointer;\n  opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n  right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n  cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n  border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n  border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n  border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success {\n  border-left: 3px solid var(--color-success);\n}\n.toastify.dialogs.toast-undo {\n  border-left: 3px solid var(--color-success);\n}\n\n/* dark theme overrides for Nextcloud 24 and earlier */\n.theme--dark .toastify.dialogs .toast-close {\n  /* close icon style */\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(\"data:image/svg+xml,%3csvg%20viewBox='0%200%2016%2016'%20height='16'%20width='16'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3e%3cpath%20d='M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z'%20style='fill:%23fff;fill-rule:nonzero'%20transform='matrix(.85714%200%200%20.85714%20-2.286%20-2.286)'/%3e%3c/svg%3e\");\n}\n.nc-generic-dialog .dialog__actions {\n\tjustify-content: space-between;\n\tmin-width: calc(100% - 12px);\n}\n/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * Icon styling of the file list row preview or fallback icon\n * (leading icon on the name row and header)\n */\n._file-picker__file-icon_19mjt_9 {\n  width: 32px;\n  height: 32px;\n  min-width: 32px;\n  min-height: 32px;\n  background-repeat: no-repeat;\n  background-size: contain;\n  display: flex;\n  justify-content: center;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-15187afc] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-15187afc] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-15187afc] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-15187afc]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-15187afc] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-15187afc] {\n  padding-inline: 2px 0;\n}\n@keyframes gradient-15187afc {\n0% {\n    background-position: 0% 50%;\n}\n50% {\n    background-position: 100% 50%;\n}\n100% {\n    background-position: 0% 50%;\n}\n}\n.loading-row .row-checkbox[data-v-15187afc] {\n  text-align: center !important;\n}\n.loading-row span[data-v-15187afc] {\n  display: inline-block;\n  height: 24px;\n  background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n  background-size: 600px 100%;\n  border-radius: var(--border-radius);\n  animation: gradient-15187afc 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-15187afc] {\n  display: inline-flex;\n  align-items: center;\n}\n.loading-row .row-checkbox span[data-v-15187afc] {\n  width: 24px;\n}\n.loading-row .row-name span[data-v-15187afc]:last-of-type {\n  margin-inline-start: 6px;\n  width: 130px;\n}\n.loading-row .row-size span[data-v-15187afc] {\n  width: 80px;\n}\n.loading-row .row-modified span[data-v-15187afc] {\n  width: 90px;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-cb12dccb] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-cb12dccb] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-cb12dccb] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-cb12dccb]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-cb12dccb] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-cb12dccb] {\n  padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-cb12dccb] {\n  background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-cb12dccb]:hover {\n  background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-cb12dccb] {\n  display: flex;\n  justify-content: start;\n  align-items: center;\n  height: 100%;\n}\n.file-picker__file-name[data-v-cb12dccb] {\n  padding-inline-start: 6px;\n  min-width: 0;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-cb12dccb] {\n  color: var(--color-text-maxcontrast);\n  min-width: fit-content;\n}.file-picker__header-preview[data-v-006fdbd0] {\n  width: 22px;\n  height: 32px;\n  flex: 0 0 auto;\n}\n.file-picker__files[data-v-006fdbd0] {\n  margin: 2px;\n  margin-inline-start: 12px;\n  overflow: scroll auto;\n}\n.file-picker__files table[data-v-006fdbd0] {\n  width: 100%;\n  max-height: 100%;\n  table-layout: fixed;\n}\n.file-picker__files th[data-v-006fdbd0] {\n  position: sticky;\n  z-index: 1;\n  top: 0;\n  background-color: var(--color-main-background);\n  padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-006fdbd0] {\n  display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-006fdbd0] {\n  width: 44px;\n}\n.file-picker__files th.row-name[data-v-006fdbd0] {\n  width: 230px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] {\n  width: 100px;\n}\n.file-picker__files th.row-modified[data-v-006fdbd0] {\n  width: 120px;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue__wrapper {\n  justify-content: start;\n  flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue {\n  padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] .button-vue__wrapper {\n  justify-content: end;\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper {\n  color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper .button-vue__text {\n  font-weight: normal;\n}.file-picker__breadcrumbs[data-v-b357227a] {\n  flex-grow: 0 !important;\n}.file-picker__side[data-v-b42054b8] {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  gap: 0.5rem;\n  min-width: 200px;\n  padding: 2px;\n  margin-block-start: 7px;\n  overflow: auto;\n}\n.file-picker__side[data-v-b42054b8] .button-vue__wrapper {\n  justify-content: start;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n  margin-block: 7px;\n  max-width: 260px;\n}\n@media (max-width: 736px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n}\n@media (max-width: 512px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n    max-width: unset;\n}\n}/* Ensure focus outline is visible */\n.file-picker__navigation {\n  padding-inline: 8px 2px;\n}\n.file-picker__navigation, .file-picker__navigation * {\n  box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n  min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n.file-picker__navigation {\n    gap: 11px;\n}\n}\n@media (max-width: 512px) {\n.file-picker__navigation {\n    flex-direction: column-reverse !important;\n}\n}.file-picker__view[data-v-20b719ba] {\n  height: 50px;\n  display: flex;\n  justify-content: start;\n  align-items: center;\n}\n.file-picker__view h3[data-v-20b719ba] {\n  font-weight: bold;\n  height: fit-content;\n  margin: 0;\n}\n.file-picker__main[data-v-20b719ba] {\n  box-sizing: border-box;\n  width: 100%;\n  display: flex;\n  flex-direction: column;\n  min-height: 0;\n  flex: 1;\n  padding-inline: 2px;\n}\n.file-picker__main *[data-v-20b719ba] {\n  box-sizing: border-box;\n}\n[data-v-20b719ba] .file-picker {\n  height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n[data-v-20b719ba] .file-picker {\n    height: calc(100% - 16px - var(--default-clickable-area)) !important;\n}\n}\n[data-v-20b719ba] .file-picker__content {\n  display: flex;\n  flex-direction: column;\n  overflow: hidden;\n}"],sourceRoot:""}]);const f=u},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},67430:(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-77111ada]{flex:1 1 100% !important;width:100%;height:100%;margin-block:0;margin-inline:10px}.files-list__breadcrumbs[data-v-77111ada]  a{cursor:pointer !important}.files-list__breadcrumbs--with-progress[data-v-77111ada]{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},20746:(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-2b498b48]{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-2b498b48]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-2b498b48]{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},76810:(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},55559:(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-04e52abc]{color:#a08b00;min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-04e52abc]  svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-04e52abc]  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,aAAA,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: #a08b00;\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},73093:(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},49718:(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-0bcaefce] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-0bcaefce] .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},75458:(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-68d3de81]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-68d3de81]{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},30651:(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-91476734]{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},75290:(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-097f69d4]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-097f69d4]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-097f69d4]{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-097f69d4]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-097f69d4]{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},67436:(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-1e2b43b6]{--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-1e2b43b6]  tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-1e2b43b6]  tbody tr{contain:strict}.files-list[data-v-1e2b43b6]  tbody tr:hover,.files-list[data-v-1e2b43b6]  tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-1e2b43b6]  .files-list__before{display:flex;flex-direction:column}.files-list[data-v-1e2b43b6]  .files-list__selected{padding-right:12px;white-space:nowrap}.files-list[data-v-1e2b43b6]  .files-list__table{display:block}.files-list[data-v-1e2b43b6]  .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__thead,.files-list[data-v-1e2b43b6]  .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-1e2b43b6]  .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-1e2b43b6]  .files-list__tfoot{min-height:300px}.files-list[data-v-1e2b43b6]  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-1e2b43b6]  td,.files-list[data-v-1e2b43b6]  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-1e2b43b6]  td span,.files-list[data-v-1e2b43b6]  th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-checkbox{justify-content:center}.files-list[data-v-1e2b43b6]  .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-1e2b43b6]  .files-list__row:hover,.files-list[data-v-1e2b43b6]  .files-list__row:focus,.files-list[data-v-1e2b43b6]  .files-list__row:active,.files-list[data-v-1e2b43b6]  .files-list__row--active,.files-list[data-v-1e2b43b6]  .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-1e2b43b6]  .files-list__row:hover>*,.files-list[data-v-1e2b43b6]  .files-list__row:focus>*,.files-list[data-v-1e2b43b6]  .files-list__row:active>*,.files-list[data-v-1e2b43b6]  .files-list__row--active>*,.files-list[data-v-1e2b43b6]  .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-1e2b43b6]  .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-1e2b43b6]  .files-list__row--dragover *{pointer-events:none}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon *{cursor:pointer}.files-list[data-v-1e2b43b6]  .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon>span.folder-icon,.files-list[data-v-1e2b43b6]  .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-1e2b43b6]  .files-list__row-icon>span.folder-icon svg,.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-1e2b43b6]  .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-1e2b43b6]  .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-1e2b43b6]  .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-1e2b43b6]  .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-1e2b43b6]  .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-1e2b43b6]  .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-1e2b43b6]  .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-1e2b43b6]  .files-list__row-actions{width:auto}.files-list[data-v-1e2b43b6]  .files-list__row-actions~td,.files-list[data-v-1e2b43b6]  .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-1e2b43b6]  .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-1e2b43b6]  .files-list__row-action--inline{margin-right:7px}.files-list[data-v-1e2b43b6]  .files-list__row-mtime,.files-list[data-v-1e2b43b6]  .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-1e2b43b6]  .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-1e2b43b6]  .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-1e2b43b6]  .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},31772:(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},79335:(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-139727ec]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-139727ec]{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-139727ec]{flex:0 0}.files-list__header-share-button[data-v-139727ec]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-139727ec]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-139727ec]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-139727ec]{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},82989:(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-d0bcf126] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-d0bcf126] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-d0bcf126]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-d0bcf126]{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},83331:(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-109572de]: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))}v(t,e,r,{once:!0}),"error"!==e&&function(t,e,n){"function"==typeof t.on&&v(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 d(t){if("function"!=typeof t)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}function u(t){return void 0===t._maxListeners?l.defaultMaxListeners:t._maxListeners}function m(t,e,n,s){var r,a,o,l;if(d(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=u(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 g(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):A(i,i.length)}function h(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 A(t,e){for(var n=new Array(e),s=0;s<e;++s)n[s]=t[s];return n}function v(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 u(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,d=A(l,c);for(n=0;n<c;++n)a(d[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 d(e),this.on(t,f(this,t,e)),this},l.prototype.prependOnceListener=function(t,e){return d(e),this.prependListener(t,f(this,t,e)),this},l.prototype.removeListener=function(t,e){var n,s,i,r,a;if(d(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 g(this,t,!0)},l.prototype.rawListeners=function(t){return g(this,t,!1)},l.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):h.call(t,e)},l.prototype.listenerCount=h,l.prototype.eventNames=function(){return this._eventsCount>0?s(this._events):[]}},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),S(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;R(n,r);continue;case T.BEGIN_WHITESPACE:R(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?(A(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(A(r));else if(y(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):v(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:v(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:v(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:A(r)?n.state=T.PROC_INST_BODY:n.procInstName+=r;continue;case T.PROC_INST_BODY:if(!n.procInstBody&&A(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:y(f,r)?n.tagName+=r:(B(n),">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:(A(r)||I(n,"Invalid character in tag name"),n.state=T.ATTRIB));continue;case T.OPEN_TAG_SLASH:">"===r?(U(n,!0),j(n)):(I(n,"Forward-slash in opening tag not followed by >"),n.state=T.ATTRIB);continue;case T.ATTRIB:if(A(r))continue;">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:y(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,O(n),U(n)):A(r)?n.state=T.ATTRIB_NAME_SAW_WHITE:y(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(A(r))continue;I(n,"Attribute without value"),n.tag.attributes[n.attribName]="",n.attribValue="",E(n,"onattribute",{name:n.attribName,value:""}),n.attribName="",">"===r?U(n):y(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(A(r))continue;v(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}O(n),n.q="",n.state=T.ATTRIB_VALUE_CLOSED;continue;case T.ATTRIB_VALUE_CLOSED:A(r)?n.state=T.ATTRIB:">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:y(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(!w(r)){"&"===r?n.state=T.ATTRIB_VALUE_ENTITY_U:n.attribValue+=r;continue}O(n),">"===r?U(n):n.state=T.ATTRIB;continue;case T.CLOSE_TAG:if(n.tagName)">"===r?j(n):y(f,r)?n.tagName+=r:n.script?(n.script+="</"+n.tagName,n.tagName="",n.state=T.SCRIPT):(A(r)||I(n,"Invalid tagname in closing tag"),n.state=T.CLOSE_TAG_SAW_WHITE);else{if(A(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(A(r))continue;">"===r?j(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 d,u;switch(n.state){case T.TEXT_ENTITY:d=T.TEXT,u="textNode";break;case T.ATTRIB_VALUE_ENTITY_Q:d=T.ATTRIB_VALUE_QUOTED,u="attribValue";break;case T.ATTRIB_VALUE_ENTITY_U:d=T.ATTRIB_VALUE_UNQUOTED,u="attribValue"}if(";"===r)if(n.opt.unparsedEntities){var m=M(n);n.entity="",n.state=d,n.write(m)}else n[u]+=M(n),n.entity="",n.state=d;else y(n.entity.length?h:g,r)?n.entity+=r:(I(n,"Invalid character in entity name"),n[u]+="&"+n.entity+r,n.entity="",n.state=d);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",d="http://www.w3.org/XML/1998/namespace",u="http://www.w3.org/2000/xmlns/",m={xml:d,xmlns:u},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-]/,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]/,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\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function A(t){return" "===t||"\n"===t||"\r"===t||"\t"===t}function v(t){return'"'===t||"'"===t}function w(t){return">"===t||A(t)}function y(t,e){return t.test(e)}function b(t,e){return!y(t,e)}var C,_,x,T=0;for(var k 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[k]]=k;function S(t,e,n){t[e]&&t[e](n)}function E(t,e,n){t.textNode&&L(t),S(t,e,n)}function L(t){t.textNode=N(t.opt,t.textNode),t.textNode&&S(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,S(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,S(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 B(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 D(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 O(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=D(t.attribName,!0),n=e.prefix,s=e.local;if("xmlns"===n)if("xml"===s&&t.attribValue!==d)I(t,"xml: prefix must be bound to "+d+"\nActual: "+t.attribValue);else if("xmlns"===s&&t.attribValue!==u)I(t,"xmlns: prefix must be bound to "+u+"\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 U(t,e){if(t.opt.xmlns){var n=t.tag,s=D(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],d=D(l,!0),u=d.prefix,m=d.local,p=""===u?"":n.ns[u]||"",f={name:l,value:c,prefix:u,local:m,uri:p};u&&"xmlns"!==u&&!p&&(I(t,"Unbound namespace prefix: "+JSON.stringify(u)),f.uri=u),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 j(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 M(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 R(t,e){"<"===e?(t.state=T.OPEN_WAKA,t.startTagPosition=t.position):A(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||(C=String.fromCharCode,_=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||_(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+=C.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={},d=!1,u=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)}):u&&"onreadystatechange"in u.createElement("script")?(i=u.documentElement,n=function(t){var e=u.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(d)setTimeout(f,0,t);else{var e=c[t];if(e){d=!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),d=!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,d=(n=e(t.historyTimeConstant,2.5),function(t,e,s){return t+s/(s+n)*(e-t)});function u(){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:d(o,s,n),c=t,l=e}}return{start:u,reset:function(){o=null,l=null,c=null,r&&u()},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(46891),i.Writable=n(81999),i.Duplex=n(88101),i.Transform=n(59083),i.PassThrough=n(3681),i.finished=n(14257),i.pipeline=n(5267),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(d(),0===s.listenerCount(this,"error"))throw t}function d(){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",d),n.removeListener("close",d),t.removeListener("close",d)}return n.on("error",c),t.on("error",c),n.on("end",d),n.on("close",d),t.on("close",d),t.emit("pipe",n),t}},12463: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},88101:(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=d;var r=n(46891),a=n(81999);n(56698)(d,r);for(var o=i(a.prototype),l=0;l<o.length;l++){var c=o[l];d.prototype[c]||(d.prototype[c]=a.prototype[c])}function d(t){if(!(this instanceof d))return new d(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",u)))}function u(){this._writableState.ended||s.nextTick(m,this)}function m(t){t.end()}Object.defineProperty(d.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(d.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(d.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(d.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)}})},3681:(t,e,n)=>{"use strict";t.exports=i;var s=n(59083);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)}},46891:(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(41396),l=n(48287).Buffer,c=(void 0!==n.g?n.g:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){},d=n(99580);r=d&&d.debuglog?d.debuglog("stream"):function(){};var u,m,p,f=n(81766),g=n(54347),h=n(66644).getHighWaterMark,A=n(12463).F,v=A.ERR_INVALID_ARG_TYPE,w=A.ERR_STREAM_PUSH_AFTER_EOF,y=A.ERR_METHOD_NOT_IMPLEMENTED,b=A.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;n(56698)(T,o);var C=g.errorOrDestroy,_=["error","close","destroy","pause","resume"];function x(t,e,i){s=s||n(88101),t=t||{},"boolean"!=typeof i&&(i=e instanceof s),this.objectMode=!!t.objectMode,i&&(this.objectMode=this.objectMode||!!t.readableObjectMode),this.highWaterMark=h(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&&(u||(u=n(83141).I),this.decoder=new u(t.encoding),this.encoding=t.encoding)}function T(t){if(s=s||n(88101),!(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 k(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 v("chunk",["string","Buffer","Uint8Array"],e)),n}(o,e)),a)C(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?C(t,new b):S(t,o,e,!0);else if(o.ended)C(t,new w);else{if(o.destroyed)return!1;o.reading=!1,o.decoder&&!n?(e=o.decoder.write(e),o.objectMode||0!==e.length?S(t,o,e,!1):P(t,o)):S(t,o,e,!1)}else s||(o.reading=!1,P(t,o));return!o.ended&&(o.length<o.highWaterMark||0===o.length)}function S(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=g.destroy,T.prototype._undestroy=g.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),k(this,t,e,!1,n)},T.prototype.unshift=function(t){return k(this,t,null,!0,!1)},T.prototype.isPaused=function(){return!1===this._readableState.flowing},T.prototype.setEncoding=function(t){u||(u=n(83141).I);var e=new u(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,U(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 B(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 D(t){r("readable nexttick read 0"),t.read(0)}function O(t,e){r("resume",e.reading),e.reading||t.read(0),e.resumeScheduled=!1,t.emit("resume"),U(t),e.flowing&&!e.reading&&t.read(0)}function U(t){var e=t._readableState;for(r("flow",e.flowing);e.flowing&&null!==t.read(););}function j(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 M(t){var e=t._readableState;r("endReadable",e.endEmitted),e.endEmitted||(e.ended=!0,i.nextTick(R,e,t))}function R(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?M(this):N(this),null;if(0===(t=L(t,e))&&e.ended)return 0===e.length&&M(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?j(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&&M(this)),null!==s&&this.emit("data",s),s},T.prototype._read=function(t){C(this,new y("_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?g: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",g),n.removeListener("data",u),d=!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,U(t))}}(n);t.on("drain",c);var d=!1;function u(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))&&!d&&(r("false write response, pause",s.awaitDrain),s.awaitDrain++),n.pause())}function m(e){r("onerror",e),g(),t.removeListener("error",m),0===a(t,"error")&&C(t,e)}function p(){t.removeListener("finish",f),g()}function f(){r("onfinish"),t.removeListener("close",p),g()}function g(){r("unpipe"),n.unpipe(t)}return n.on("data",u),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(D,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(B,this),n},T.prototype.removeAllListeners=function(t){var e=o.prototype.removeAllListeners.apply(this,arguments);return"readable"!==t&&void 0!==t||i.nextTick(B,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(O,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<_.length;a++)t.on(_[a],this.emit.bind(this,_[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(65034)),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=j,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(90968)),p(T,t,e)})},59083:(t,e,n)=>{"use strict";t.exports=d;var s=n(12463).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(88101);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 d(t){if(!(this instanceof d))return new d(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",u)}function u(){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)(d,l),d.prototype.push=function(t,e){return this._transformState.needTransform=!1,l.prototype.push.call(this,t,e)},d.prototype._transform=function(t,e,n){n(new i("_transform()"))},d.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)}},d.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))},d.prototype._destroy=function(t,e){l.prototype._destroy.call(this,t,(function(t){e(t)}))}},81999:(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(41396),c=n(48287).Buffer,d=(void 0!==n.g?n.g:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){},u=n(54347),m=n(66644).getHighWaterMark,p=n(12463).F,f=p.ERR_INVALID_ARG_TYPE,g=p.ERR_METHOD_NOT_IMPLEMENTED,h=p.ERR_MULTIPLE_CALLBACK,A=p.ERR_STREAM_CANNOT_PIPE,v=p.ERR_STREAM_DESTROYED,w=p.ERR_STREAM_NULL_VALUES,y=p.ERR_STREAM_WRITE_AFTER_END,b=p.ERR_UNKNOWN_ENCODING,C=u.errorOrDestroy;function _(){}function x(t,e,a){s=s||n(88101),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 h;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,C(t,s)):(r(s),t._writableState.errorEmitted=!0,C(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(S,t,n,a,r):S(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(88101));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 k(t,e,n,s,i,r,a){e.writelen=s,e.writecb=a,e.writing=!0,e.sync=!0,e.destroyed?e.onwrite(new v("write")):n?t._writev(i,e.onwrite):t._write(i,r,e.onwrite),e.sync=!1}function S(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,k(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,d=n.encoding,u=n.callback;if(k(t,e,!1,e.objectMode?1:c.length,c,d,u),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&&C(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(){C(this,new A)},T.prototype.write=function(t,e,n){var s,r=this._writableState,a=!1,o=!r.objectMode&&(s=t,c.isBuffer(s)||s instanceof d);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=_),r.ending?function(t,e){var n=new y;C(t,n),i.nextTick(e,n)}(this,n):(o||function(t,e,n,s){var r;return null===n?r=new w:"string"==typeof n||e.objectMode||(r=new f("chunk",["string","Buffer"],n)),!r||(C(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 d=e.lastBufferedRequest;e.lastBufferedRequest={chunk:s,encoding:i,isBuf:n,callback:r,next:null},d?d.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else k(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 g("_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=u.destroy,T.prototype._undestroy=u.undestroy,T.prototype._destroy=function(t,e){e(t)}},65034:(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(14257),o=Symbol("lastResolve"),l=Symbol("lastReject"),c=Symbol("error"),d=Symbol("ended"),u=Symbol("lastPromise"),m=Symbol("handlePromise"),p=Symbol("stream");function f(t,e){return{value:t,done:e}}function g(t){var e=t[o];if(null!==e){var n=t[p].read();null!==n&&(t[u]=null,t[o]=null,t[l]=null,e(f(n,!1)))}}function h(t){i.nextTick(g,t)}var A=Object.getPrototypeOf((function(){})),v=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[d])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[u];if(s)n=new Promise(function(t,e){return function(n,s){t.then((function(){e[d]?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[u]=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),A);t.exports=function(t){var e,n=Object.create(v,(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,d,{value:t._readableState.endEmitted,writable:!0}),r(e,m,{value:function(t,e){var s=n[p].read();s?(n[u]=null,n[o]=null,n[l]=null,t(f(s,!1))):(n[o]=t,n[l]=e)},writable:!0}),e));return n[u]=null,a(t,(function(t){if(t&&"ERR_STREAM_PREMATURE_CLOSE"!==t.code){var e=n[l];return null!==e&&(n[u]=null,n[o]=null,n[l]=null,e(t)),void(n[c]=t)}var s=n[o];null!==s&&(n[u]=null,n[o]=null,n[l]=null,s(f(void 0,!0))),n[d]=!0})),t.on("readable",h.bind(null,n)),n}},81766:(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(63779).inspect,d=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:d,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}()},54347:(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)}}},14257:(t,e,n)=>{"use strict";var s=n(12463).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||d()},c=e._writableState&&e._writableState.finished,d=function(){o=!1,c=!0,a||r.call(e)},u=e._readableState&&e._readableState.endEmitted,m=function(){a=!1,u=!0,o||r.call(e)},p=function(t){r.call(e,t)},f=function(){var t;return a&&!u?(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},g=function(){e.req.on("finish",d)};return function(t){return t.setHeader&&"function"==typeof t.abort}(e)?(e.on("complete",d),e.on("abort",f),e.req?g():e.on("request",g)):o&&!e._writableState&&(e.on("end",l),e.on("close",l)),e.on("end",m),e.on("finish",d),!1!==n.error&&e.on("error",p),e.on("close",f),function(){e.removeListener("complete",d),e.removeListener("abort",f),e.removeListener("request",g),e.req&&e.req.removeListener("finish",d),e.removeListener("end",l),e.removeListener("close",l),e.removeListener("finish",d),e.removeListener("end",m),e.removeListener("error",p),e.removeListener("close",f)}}},90968:t=>{t.exports=function(){throw new Error("Readable.from is not available in the browser")}},5267:(t,e,n)=>{"use strict";var s,i=n(12463).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 d,u=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(14257)),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){d||(d=t),t&&m.forEach(l),r||(m.forEach(l),u(d))}))}));return e.reduce(c)}},66644:(t,e,n)=>{"use strict";var s=n(12463).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}}},41396:(t,e,n)=>{t.exports=n(37007).EventEmitter},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=d,this.end=u,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 d(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 u(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,d,u;return n=this.options.attrkey,i=this.options.charkey,1===Object.keys(e).length&&this.options.rootName===s[.2].rootName?e=e[d=Object.keys(e)[0]]:d=this.options.rootName,u=this,l=function(t,e){var s,c,d,m,p,f;if("object"!=typeof e)u.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])d=c[p],t=l(t.ele(p),d).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=u.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(d=c[m])?u.options.cdata&&r(d)?t.ele(p).raw(a(d)).up():t.ele(p,d).up():l(t.ele(p),d).up());else"object"==typeof c?t=l(t.ele(p),c).up():"string"==typeof c&&u.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(d,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,d,u=function(t,e){return function(){return t.apply(e,arguments)}},m={}.hasOwnProperty;c=n(64043),r=n(37007),t=n(83177),l=n(92114),d=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=u(this.parseStringPromise,this),this.parseString=u(this.parseString,this),this.reset=u(this.reset,this),this.assignOrPush=u(this.assignOrPush,this),this.processAsync=u(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),d(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,d,u;if((c={})[e]="",!n.options.ignoreAttrs)for(a in u=r.attributes)m.call(u,a)&&(t in c||n.options.mergeAttrs||(c[t]={}),l=n.options.attrValueProcessors?o(n.options.attrValueProcessors,r.attributes[a],a):r.attributes[a],d=n.options.attrNameProcessors?o(n.options.attrNameProcessors,a):a,n.options.mergeAttrs?n.assignOrPush(c,d,l):i(c[t],d,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,d,u,p,f,g,h;if(u=s.pop(),d=u["#name"],t.options.explicitChildren&&t.options.preserveChildrenOrder||delete u["#name"],!0===u.cdata&&(n=u.cdata,delete u.cdata),g=s[s.length-1],u[e].match(/^\s*$/)&&!n?(r=u[e],delete u[e]):(t.options.trim&&(u[e]=u[e].trim()),t.options.normalize&&(u[e]=u[e].replace(/\s{2,}/g," ").trim()),u[e]=t.options.valueProcessors?o(t.options.valueProcessors,u[e],d):u[e],1===Object.keys(u).length&&e in u&&!t.EXPLICIT_CHARKEY&&(u=u[e])),a(u)&&(u="function"==typeof t.options.emptyTag?t.options.emptyTag():""!==t.options.emptyTag?t.options.emptyTag:r),null!=t.options.validator&&(h="/"+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(d).join("/"),function(){var e;try{return u=t.options.validator(h,g&&g[d],u)}catch(n){return e=n,t.emit("error",e)}}()),t.options.explicitChildren&&!t.options.mergeAttrs&&"object"==typeof u)if(t.options.preserveChildrenOrder){if(g){for(l in g[t.options.childkey]=g[t.options.childkey]||[],p={},u)m.call(u,l)&&i(p,l,u[l]);g[t.options.childkey].push(p),delete u["#name"],1===Object.keys(u).length&&e in u&&!t.EXPLICIT_CHARKEY&&(u=u[e])}}else c={},t.options.attrkey in u&&(c[t.options.attrkey]=u[t.options.attrkey],delete u[t.options.attrkey]),!t.options.charsAsChildren&&t.options.charkey in u&&(c[t.options.charkey]=u[t.options.charkey],delete u[t.options.charkey]),Object.getOwnPropertyNames(u).length>0&&(c[t.options.childkey]=u),u=c;return s.length>0?t.assignOrPush(g,d,u):(t.options.explicitRoot&&(f=u,i(u={},d,f)),t.resultObject=u,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,d(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,d={}.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,d,u;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=(d=s).pubID,i=d.sysID),null==i&&(i=(u=[s,i])[0],s=u[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)d.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,d,u,m,p,f,g,h,A,v,w,y,b,C,_,x,T={}.hasOwnProperty;x=n(49241),C=x.isObject,b=x.isFunction,_=x.isPlainObject,y=x.getValue,e=n(71737),p=n(71933),f=n(33906),r=n(92691),a=n(32679),h=n(1268),w=n(82535),g=n(85915),u=n(34130),m=n(96376),o=n(34111),c=n(5529),l=n(67696),d=n(28012),i=n(54238),v=n(43976),A=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?_(t.writer)&&(i=t.writer,t.writer=new A):t.writer=new A,this.options=t,this.writer=t.writer,this.writerOptions=this.writer.filterOptions(i),this.stringify=new v(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=y(t),null==e&&(e={}),e=y(e),C(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)||C(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=y(t)),C(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 w(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 h(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=y(t)),null!=e&&(e=y(e)),Array.isArray(t))for(n=0,r=t.length;n<r;n++)s=t[n],this.instruction(s);else if(C(t))for(s in t)T.call(t,s)&&(i=t[s],this.instruction(s,i));else b(e)&&(e=e.apply()),a=new g(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 u(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 d(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,d={}.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)d.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)d.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)d.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,d,u,m,p,f,g,h,A,v,w={}.hasOwnProperty;v=n(49241),A=v.isObject,h=v.isFunction,g=v.isEmpty,f=v.getValue,c=null,i=null,r=null,a=null,o=null,m=null,p=null,u=null,l=null,s=null,d=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),u=n(85915),l=n(21218),s=n(71737),d=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 d(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,d,u,m,p;if(l=null,null===e&&null==n&&(e=(u=[{},null])[0],n=u[1]),null==e&&(e={}),e=f(e),A(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(h(t))l=this.element(t.apply());else if(A(t)){for(o in t)if(w.call(t,o))if(p=t[o],h(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)&&g(p))l=this.dummy();else if(A(p)&&g(p))l=this.element(o);else if(this.options.keepNullNodes||null!=p)if(!this.options.separateArrayItems&&Array.isArray(p))for(a=0,d=p.length;a<d;a++)i=p[a],(s={})[o]=i,l=this.element(s);else A(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),A(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 A(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(A(t))for(n in t)w.call(t,n)&&(s=t[n],this.instruction(n,s));else h(e)&&(e=e.apply()),i=new u(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,d,u,m;for(n=this.document(),i=new o(n,t,e),r=a=0,c=(u=n.children).length;a<c;r=++a)if(u[r].type===s.DocType)return n.children[r]=i,i;for(r=l=0,d=(m=n.children).length;l<d;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,d;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),d=[],r=0,o=(c=t.children).length;r<o;r++)n=c[r],d.push(this.writeChildNode(n,e,0));return d},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,d,u,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,d=0,u=(f=t.children).length;d<u;d++)o=f[d],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,d;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!=(d=t.spaceBeforeSlash)?d: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,d,u,m,p,f,g,h,A,v,w;for(f in i||(i=0),g=!1,h="",this.openNode(t,n,i),n.state=s.OpenTag,h+=this.indent(t,n,i)+"<"+t.name,A=t.attribs)r.call(A,f)&&(a=A[f],h+=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?(h+=">",n.state=s.CloseTag,h+="</"+t.name+">"+this.endline(t,n,i)):(n.state=s.CloseTag,h+=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(d=0,m=(v=t.children).length;d<m;d++)if(((o=v[d]).type===e.Text||o.type===e.Raw)&&null!=o.value){n.suppressPrettyCount++,g=!0;break}for(h+=">"+this.endline(t,n,i),n.state=s.InsideTag,u=0,p=(w=t.children).length;u<p;u++)o=w[u],h+=this.writeChildNode(o,n,i+1);n.state=s.CloseTag,h+=this.indent(t,n,i)+"</"+t.name+">",g&&n.suppressPrettyCount--,h+=this.endline(t,n,i),n.state=s.None}else h+=">",n.state=s.InsideTag,n.suppressPrettyCount++,g=!0,h+=this.writeChildNode(c,n,i+1),n.suppressPrettyCount--,g=!1,n.state=s.CloseTag,h+="</"+t.name+">"+this.endline(t,n,i);return this.closeNode(t,n,i),h},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,d,u;u=n(49241),c=u.assign,d=u.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 d(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)},98383:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20viewBox=%270%200%2016%2016%27%20height=%2716%27%20width=%2716%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xml:space=%27preserve%27%20style=%27fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2%27%3e%3cpath%20d=%27M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z%27%20style=%27fill-rule:nonzero%27%20transform=%27matrix%28.85714%200%200%20.85714%20-2.286%20-2.286%29%27/%3e%3c/svg%3e"},39075:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20viewBox=%270%200%2016%2016%27%20height=%2716%27%20width=%2716%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xml:space=%27preserve%27%20style=%27fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2%27%3e%3cpath%20d=%27M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z%27%20style=%27fill:%23fff;fill-rule:nonzero%27%20transform=%27matrix%28.85714%200%200%20.85714%20-2.286%20-2.286%29%27/%3e%3c/svg%3e"},63779:()=>{},99580:()=>{},96995:(t,e,n)=>{"use strict";n.d(e,{U:()=>lt,a:()=>rt,c:()=>G,g:()=>dt,h:()=>mt,l:()=>K,n:()=>Z,o:()=>ut,t:()=>at});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),d=n.n(c),u=n(10540),m=n.n(u),p=n(41113),f=n.n(p),g=n(30521),h={};h.styleTagTransform=f(),h.setAttributes=d(),h.insert=l().bind(null,"head"),h.domAPI=a(),h.insertStyleElement=m(),i()(g.A,h),g.A&&g.A.locals&&g.A.locals;var A=n(53110),v=n(71089),w=n(92320),y=n(63814),b=n(21777),C=n(26287);class _ 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 _(t))}}get isCanceled(){return this.#n===x.canceled}#r(t){this.#n===x.pending&&(this.#n=t)}}Object.setPrototypeOf(T.prototype,Promise.prototype);var k=n(9052);class S 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 k{#o;#l;#c=0;#d;#u;#m=0;#p;#f;#a;#g;#h=0;#A;#v;#w;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.#d=t.intervalCap,this.#u=t.interval,this.#a=new t.queueClass,this.#g=t.queueClass,this.concurrency=t.concurrency,this.timeout=t.timeout,this.#w=!0===t.throwOnTimeout,this.#v=!1===t.autoStart}get#y(){return this.#l||this.#c<this.#d}get#b(){return this.#h<this.#A}#C(){this.#h--,this.#_(),this.emit("next")}#x(){this.#T(),this.#k(),this.#f=void 0}get#S(){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.#h:0}return!1}#_(){if(0===this.#a.size)return this.#p&&clearInterval(this.#p),this.#p=void 0,this.emit("empty"),0===this.#h&&this.emit("idle"),!1;if(!this.#v){const t=!this.#S;if(this.#y&&this.#b){const e=this.#a.dequeue();return!!e&&(this.emit("active"),e(),t&&this.#k(),!0)}}return!1}#k(){this.#l||void 0!==this.#p||(this.#p=setInterval((()=>{this.#T()}),this.#u),this.#m=Date.now()+this.#u)}#T(){0===this.#c&&0===this.#h&&this.#p&&(clearInterval(this.#p),this.#p=void 0),this.#c=this.#o?this.#h:0,this.#E()}#E(){for(;this.#_(););}get concurrency(){return this.#A}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.#A=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.#w,...e},new Promise(((n,s)=>{this.#a.enqueue((async()=>{this.#h++,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 S;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 S&&!e.throwOnTimeout)return void n();s(t),this.emit("error",t)}finally{this.#C()}}),e),this.emit("add"),this.#_()}))}async addAll(t,e){return Promise.all(t.map((async t=>this.add(t,e))))}start(){return this.#v?(this.#v=!1,this.#E(),this):this}pause(){this.#v=!0}clear(){this.#a=new this.#g}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.#h&&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.#h}get isPaused(){return this.#v}}var I=n(53529),B=n(85168),D=n(75270),O=n(85471),U=n(89257),j=n(24764),M=n(54332),R=n(6695),z=n(95101),V=n(82148);n(80002),n(42838),n(70580);class q{constructor(t,e,n){this.gt=new V({debug:n,sourceLocale:"en"});for(const t in e)this.gt.addTranslations(t,"messages",e[t]);this.gt.setLocale(t)}subtitudePlaceholders(t,e){return t.replace(/{([^{}]*)}/g,((t,n)=>{const s=e[n];return"string"==typeof s||"number"==typeof s?s.toString():t}))}gettext(t,e={}){return this.subtitudePlaceholders(this.gt.gettext(t),e)}ngettext(t,e,n,s={}){return this.subtitudePlaceholders(this.gt.ngettext(t,e,n).replace(/%n/g,n.toString()),s)}}const $=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 C.A.request({method:"PUT",url:t,data:a,signal:n,onUploadProgress:s,headers:r})},H=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"}))},W=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 G=(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))(G||{});let Y=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(W()>0?Math.ceil(n/W()):1,1e4);this._source=t,this._isChunked=e&&W()>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 K=null===(Q=(0,b.HW)())?(0,I.YK)().setApp("uploader").build():(0,I.YK)().setApp("uploader").setUid(Q.uid).build();var Q,X=(t=>(t[t.IDLE=0]="IDLE",t[t.UPLOADING=1]="UPLOADING",t[t.PAUSED=2]="PAUSED",t))(X||{});class J{_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,y.dC)(`dav/files/${t}`);if(!t)throw new Error("User is not logged in");e=new w.vd({id:0,owner:t,permissions:w.aX.ALL,root:`/files/${t}`,source:n})}this.destination=e,K.debug("Upload workspace initialized",{destination:this.destination,root:this.root,isPublic:t,maxChunksSize:W()})}get destination(){return this._destinationFolder}set destination(t){if(!t)throw new Error("Invalid destination folder");K.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,v.O0)(s.slice(i.length));K.debug(`Uploading ${e.name} to ${r}`);const a=W(e.size),o=0===a||e.size<a||this._isPublic,l=new Y(s,!o,e.size,e);return this._uploadQueue.push(l),this.updateStats(),new T((async(t,n,s)=>{if(s(l.cancel),o){K.debug("Initializing regular upload",{file:e,upload:l});const s=await H(e,0,l.size),i=async()=>{try{l.response=await $(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(),K.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){if(t instanceof A.k3)return l.status=G.FAILED,void n("Upload has been cancelled");t?.response&&(l.response=t.response),l.status=G.FAILED,K.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{K.debug("Initializing chunked upload",{file:e,upload:l});const s=await async function(t){const e=`${(0,y.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 C.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=()=>H(e,n,a),d=()=>$(`${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?(K.error("Upload failed, not enough space on the server or quota exceeded. Cancelling the remaining chunks",{error:e,upload:l}),l.cancel(),l.status=G.FAILED,e):(e instanceof A.k3||(K.error(`Chunk ${t+1} ${n} - ${o} uploading failed`,{error:e,upload:l}),l.cancel(),l.status=G.FAILED),e)}));i.push(this._jobQueue.add(d))}try{await Promise.all(i),this.updateStats(),l.response=await C.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=G.FINISHED,K.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){t instanceof A.k3?(l.status=G.FAILED,n("Upload has been cancelled")):(l.status=G.FAILED,n("Failed assembling the chunks together")),C.A.request({method:"DELETE",url:`${s}`})}this._notifiers.forEach((t=>{try{t(l)}catch{}}))}return this._jobQueue.onIdle().then((()=>this.reset())),l}))}}function Z(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 d=c.render;c.render=function(t,e){return l.call(e),d(t,e)}}else{var u=c.beforeCreate;c.beforeCreate=u?[].concat(u,l):[l]}return{exports:t,options:c}}const tt=Z({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,et=Z({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,nt=Z({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,st=(new class{constructor(){this.translations={},this.debug=!1}setLanguage(t){return this.locale=t,this}detectLocale(){return this.setLanguage((document.documentElement.lang||"en").replace("-","_"))}addTranslation(t,e){return this.translations[t]=e,this}enableDebugMode(){return this.debug=!0,this}build(){return new q(this.locale||"en",this.translations,this.debug)}}).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=>st.addTranslation(t.locale,t.json)));const it=st.build(),rt=it.ngettext.bind(it),at=it.gettext.bind(it),ot=O.Ay.extend({name:"UploadPicker",components:{Cancel:tt,NcActionButton:U.A,NcActions:j.A,NcButton:M.A,NcIconSvgWrapper:R.A,NcProgressBar:z.A,Plus:et,Upload:nt},props:{accept:{type:Array,default:null},disabled:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},destination:{type:w.vd,default:void 0},content:{type:Array,default:()=>[]},forbiddenCharacters:{type:Array,default:()=>[]}},data:()=>({addLabel:at("New"),cancelLabel:at("Cancel uploads"),uploadLabel:at("Upload files"),progressLabel:at("Upload progress"),progressTimeId:`nc-uploader-progress-${Math.random().toString(36).slice(7)}`,eta:null,timeLeft:"",newFileMenuEntries:[],uploadManager:dt()}),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===G.FAILED)).length},isUploading(){return this.queue?.length>0},isAssembling(){return 0!==this.queue?.filter((t=>t.status===G.ASSEMBLING)).length},isPaused(){return this.uploadManager.info?.status===X.PAUSED},buttonName(){if(!this.isUploading)return this.addLabel}},watch:{destination(t){this.setDestination(t)},totalQueueSize(t){this.eta=D({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),K.debug("UploadPicker initialised")},methods:{onClick(){this.$refs.input.click()},async onPick(){let t=[...this.$refs.input.files];if(mt(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,B.Qg)(at("Upload cancelled"))}}t.forEach((t=>{const e=(this.forbiddenCharacters||[]).find((e=>t.name.includes(e)));e?(0,B.Qg)(at(`"${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=at("paused"));const t=Math.round(this.eta.estimate());if(t!==1/0)if(t<10)this.timeLeft=at("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=at("{time} left",{time:n})}else this.timeLeft=at("{seconds} seconds left",{seconds:t});else this.timeLeft=at("estimating time left")},setDestination(t){this.destination?(this.uploadManager.destination=t,this.newFileMenuEntries=(0,w.m1)(t)):K.debug("Invalid destination")},onUploadCompletion(t){t.status===G.FAILED?this.$emit("failed",t):this.$emit("uploaded",t)}}}),lt=Z(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 ct=null;function dt(){const t=null!==document.querySelector('input[name="isPublic"][value="1"]');return ct instanceof J||(ct=new J(t)),ct}async function ut(t,e,s){const i=(0,O.$V)((()=>Promise.all([n.e(4208),n.e(6075)]).then(n.bind(n,56075))));return new Promise(((n,r)=>{const a=new O.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 mt(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:d,Cancel:u,isAxiosError:m,spread:p,toFormData:f,AxiosHeaders:g,HttpStatusCode:h,formToJSON:A,getAdapter:v,mergeConfig:w}=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(d=0;d<e.length;d++){n=e[d][0],s=e[d][1],i=e[d][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(d--,1);var c=s();void 0!==c&&(t=c)}}return t}i=i||0;for(var d=e.length;d>0&&e[d-1][2]>i;d--)e[d]=e[d-1];e[d]=[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="+{4065:"abd7c824140bd19a80a0",4254:"96661b9f421b07ce7189",6075:"b44c648f2d05e59d9999"}[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"),d=0;d<c.length;d++){var u=c[d];if(u.getAttribute("src")==t||u.getAttribute("data-webpack")==s+i){o=u;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 d=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(d)},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(24878)));o=a.O(o)})();
+//# sourceMappingURL=files-main.js.map?v=42eac02234ca9e536741
\ No newline at end of file
index b09f60dbb91394de250d6e811518800603cab679..84732f3228fb556de2deb0b76c0f31665bcf6033 100644 (file)
@@ -1 +1 @@
-{"version":3,"file":"files-main.js?v=0a2d323818bd74845e50","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/@nextcloud/l10n/node_modules/@nextcloud/router/dist/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/eventemitter3/index.js","webpack:///nextcloud/node_modules/pinia/dist/pinia.mjs","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/filter-obj/index.js","webpack:///nextcloud/node_modules/query-string/base.js","webpack:///nextcloud/node_modules/query-string/index.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/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/logger.js","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=script&lang=js","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue","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?08ea","webpack://nextcloud/./apps/files/src/views/Settings.vue?b81b","webpack:///nextcloud/apps/files/src/composables/useNavigation.ts","webpack:///nextcloud/apps/files/src/store/viewConfig.ts","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?a81e","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/services/WebdavClient.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/./node_modules/@nextcloud/dialogs/dist/style.css?d87c","webpack:///nextcloud/apps/files/src/actions/moveOrCopyActionUtils.ts","webpack:///nextcloud/apps/files/src/utils/hashUtils.ts","webpack:///nextcloud/apps/files/src/services/Files.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?bd8f","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?d357","webpack:///nextcloud/apps/files/src/utils/fileUtils.ts","webpack:///nextcloud/apps/files/src/components/FileEntry.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/node_modules/vue-material-design-icons/Folder.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Folder.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Folder.vue?b60e","webpack:///nextcloud/node_modules/vue-material-design-icons/Folder.vue?vue&type=template&id=07f089a4","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?8e66","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/node_modules/vue-material-design-icons/ArrowLeft.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue","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","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?bc08","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?72c7","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?6d98","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?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?7b8e","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?8cb2","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?6709","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","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?67ee","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?f185","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?4a42","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?c7af","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/dialogs/dist/style.css","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=77111ada&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue?vue&type=style&index=0&id=2b498b48&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue?vue&type=style&index=0&id=b63e55d4&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue?vue&type=style&index=0&id=04e52abc&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=0&id=0bcaefce&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=1&id=0bcaefce&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=68d3de81&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=style&index=0&id=91476734&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=style&index=0&id=097f69d4&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=0&id=1e2b43b6&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=1&id=1e2b43b6&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=139727ec&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=style&index=0&id=d0bcf126&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=style&index=0&id=109572de&prod&lang=scss&scoped=true","webpack:///nextcloud/node_modules/events/events.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/stream-browserify/node_modules/readable-stream/errors-browser.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/_stream_duplex.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/_stream_passthrough.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/_stream_readable.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/_stream_transform.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/_stream_writable.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/async_iterator.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/buffer_list.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/destroy.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/end-of-stream.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/from-browser.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/pipeline.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/state.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/stream-browser.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/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/node_modules/@nextcloud/l10n/dist/gettext.mjs","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\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.generateUrl = exports.generateRemoteUrl = exports.generateOcsUrl = exports.generateFilePath = void 0;\nexports.getAppRootUrl = getAppRootUrl;\nexports.getRootUrl = getRootUrl;\nexports.linkTo = exports.imagePath = void 0;\nrequire(\"core-js/modules/es.string.replace.js\");\n/**\n * Get an url with webroot to a file in an app\n *\n * @param {string} app the id of the app the file belongs to\n * @param {string} file the file path relative to the app folder\n * @return {string} URL with webroot to a file\n */\nconst linkTo = (app, file) => generateFilePath(app, '', file);\n\n/**\n * Creates a relative url for remote use\n *\n * @param {string} service id\n * @return {string} the url\n */\nexports.linkTo = linkTo;\nconst linkToRemoteBase = service => getRootUrl() + '/remote.php/' + service;\n\n/**\n * @brief Creates an absolute url for remote use\n * @param {string} service id\n * @return {string} the url\n */\nconst generateRemoteUrl = service => window.location.protocol + '//' + window.location.host + linkToRemoteBase(service);\n\n/**\n * Get the base path for the given OCS API service\n *\n * @param {string} url OCS API service url\n * @param {object} params parameters to be replaced into the service url\n * @param {UrlOptions} options options for the parameter replacement\n * @param {boolean} options.escape Set to false if parameters should not be URL encoded (default true)\n * @param {Number} options.ocsVersion OCS version to use (defaults to 2)\n * @return {string} Absolute path for the OCS URL\n */\nexports.generateRemoteUrl = generateRemoteUrl;\nconst generateOcsUrl = (url, params, options) => {\n  const allOptions = Object.assign({\n    ocsVersion: 2\n  }, options || {});\n  const version = allOptions.ocsVersion === 1 ? 1 : 2;\n  return window.location.protocol + '//' + window.location.host + getRootUrl() + '/ocs/v' + version + '.php' + _generateUrlPath(url, params, options);\n};\nexports.generateOcsUrl = generateOcsUrl;\n/**\n * Generate a url path, which can contain parameters\n *\n * Parameters will be URL encoded automatically\n *\n * @param {string} url address (can contain placeholders e.g. /call/{token} would replace {token} with the value of params.token\n * @param {object} params parameters to be replaced into the address\n * @param {UrlOptions} options options for the parameter replacement\n * @return {string} Path part for the given URL\n */\nconst _generateUrlPath = (url, params, options) => {\n  const allOptions = Object.assign({\n    escape: true\n  }, options || {});\n  const _build = function (text, vars) {\n    vars = vars || {};\n    return text.replace(/{([^{}]*)}/g, function (a, b) {\n      var r = vars[b];\n      if (allOptions.escape) {\n        return typeof r === 'string' || typeof r === 'number' ? encodeURIComponent(r.toString()) : encodeURIComponent(a);\n      } else {\n        return typeof r === 'string' || typeof r === 'number' ? r.toString() : a;\n      }\n    });\n  };\n  if (url.charAt(0) !== '/') {\n    url = '/' + url;\n  }\n  return _build(url, params || {});\n};\n\n/**\n * Generate the url with webroot for the given relative url, which can contain parameters\n *\n * Parameters will be URL encoded automatically\n *\n * @param {string} url address (can contain placeholders e.g. /call/{token} would replace {token} with the value of params.token\n * @param {object} params parameters to be replaced into the url\n * @param {UrlOptions} options options for the parameter replacement\n * @param {boolean} options.noRewrite True if you want to force index.php being added\n * @param {boolean} options.escape Set to false if parameters should not be URL encoded (default true)\n * @return {string} URL with webroot for the given relative URL\n */\nconst generateUrl = (url, params, options) => {\n  var _window;\n  const allOptions = Object.assign({\n    noRewrite: false\n  }, options || {});\n  if (((_window = window) === null || _window === void 0 || (_window = _window.OC) === null || _window === void 0 || (_window = _window.config) === null || _window === void 0 ? void 0 : _window.modRewriteWorking) === true && !allOptions.noRewrite) {\n    return getRootUrl() + _generateUrlPath(url, params, options);\n  }\n  return getRootUrl() + '/index.php' + _generateUrlPath(url, params, options);\n};\n\n/**\n * Get the path with webroot to an image file\n * if no extension is given for the image, it will automatically decide\n * between .png and .svg based on what the browser supports\n *\n * @param {string} app the app id to which the image belongs\n * @param {string} file the name of the image file\n * @return {string}\n */\nexports.generateUrl = generateUrl;\nconst imagePath = (app, file) => {\n  if (file.indexOf('.') === -1) {\n    //if no extension is given, use svg\n    return generateFilePath(app, 'img', file + '.svg');\n  }\n  return generateFilePath(app, 'img', file);\n};\n\n/**\n * Get the url with webroot for a file in an app\n *\n * @param {string} app the id of the app\n * @param {string} type the type of the file to link to (e.g. css,img,ajax.template)\n * @param {string} file the filename\n * @return {string} URL with webroot for a file in an app\n */\nexports.imagePath = imagePath;\nconst generateFilePath = (app, type, file) => {\n  var _window2;\n  const isCore = ((_window2 = window) === null || _window2 === void 0 || (_window2 = _window2.OC) === null || _window2 === void 0 || (_window2 = _window2.coreApps) === null || _window2 === void 0 ? void 0 : _window2.indexOf(app)) !== -1;\n  let link = getRootUrl();\n  if (file.substring(file.length - 3) === 'php' && !isCore) {\n    link += '/index.php/apps/' + app;\n    if (file !== 'index.php') {\n      link += '/';\n      if (type) {\n        link += encodeURI(type + '/');\n      }\n      link += file;\n    }\n  } else if (file.substring(file.length - 3) !== 'php' && !isCore) {\n    link = getAppRootUrl(app);\n    if (type) {\n      link += '/' + type + '/';\n    }\n    if (link.substring(link.length - 1) !== '/') {\n      link += '/';\n    }\n    link += file;\n  } else {\n    if ((app === 'settings' || app === 'core' || app === 'search') && type === 'ajax') {\n      link += '/index.php/';\n    } else {\n      link += '/';\n    }\n    if (!isCore) {\n      link += 'apps/';\n    }\n    if (app !== '') {\n      app += '/';\n      link += app;\n    }\n    if (type) {\n      link += type + '/';\n    }\n    link += file;\n  }\n  return link;\n};\n\n/**\n * Return the web root path where this Nextcloud instance\n * is accessible, with a leading slash.\n * For example \"/nextcloud\".\n *\n * @return {string} web root path\n */\nexports.generateFilePath = generateFilePath;\nfunction getRootUrl() {\n  let webroot = window._oc_webroot;\n  if (typeof webroot === 'undefined') {\n    webroot = location.pathname;\n    const pos = webroot.indexOf('/index.php/');\n    if (pos !== -1) {\n      webroot = webroot.substr(0, pos);\n    } else {\n      webroot = webroot.substr(0, webroot.lastIndexOf('/'));\n    }\n  }\n  return webroot;\n}\n\n/**\n * Return the web root path for a given app\n * @param {string} app The ID of the app\n */\nfunction getAppRootUrl(app) {\n  var _window$_oc_appswebro, _webroots$app;\n  const webroots = (_window$_oc_appswebro = window._oc_appswebroots) !== null && _window$_oc_appswebro !== void 0 ? _window$_oc_appswebro : {};\n  return (_webroots$app = webroots[app]) !== null && _webroots$app !== void 0 ? _webroots$app : '';\n}\n//# sourceMappingURL=index.js.map","'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 * pinia v2.1.7\n * (c) 2023 Eduardo San Martin Morote\n * @license MIT\n */\nimport { hasInjectionContext, inject, toRaw, watch, unref, markRaw, effectScope, ref, isVue2, isRef, isReactive, set, getCurrentScope, onScopeDispose, getCurrentInstance, reactive, toRef, del, nextTick, computed, toRefs } from 'vue-demi';\nimport { setupDevtoolsPlugin } from '@vue/devtools-api';\n\n/**\n * setActivePinia must be called to handle SSR at the top of functions like\n * `fetch`, `setup`, `serverPrefetch` and others\n */\nlet activePinia;\n/**\n * Sets or unsets the active pinia. Used in SSR and internally when calling\n * actions and getters\n *\n * @param pinia - Pinia instance\n */\n// @ts-expect-error: cannot constrain the type of the return\nconst setActivePinia = (pinia) => (activePinia = pinia);\n/**\n * Get the currently active pinia if there is any.\n */\nconst getActivePinia = () => (hasInjectionContext() && inject(piniaSymbol)) || activePinia;\nconst piniaSymbol = ((process.env.NODE_ENV !== 'production') ? Symbol('pinia') : /* istanbul ignore next */ Symbol());\n\nfunction isPlainObject(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\no) {\n    return (o &&\n        typeof o === 'object' &&\n        Object.prototype.toString.call(o) === '[object Object]' &&\n        typeof o.toJSON !== 'function');\n}\n// type DeepReadonly<T> = { readonly [P in keyof T]: DeepReadonly<T[P]> }\n// TODO: can we change these to numbers?\n/**\n * Possible types for SubscriptionCallback\n */\nvar MutationType;\n(function (MutationType) {\n    /**\n     * Direct mutation of the state:\n     *\n     * - `store.name = 'new name'`\n     * - `store.$state.name = 'new name'`\n     * - `store.list.push('new item')`\n     */\n    MutationType[\"direct\"] = \"direct\";\n    /**\n     * Mutated the state with `$patch` and an object\n     *\n     * - `store.$patch({ name: 'newName' })`\n     */\n    MutationType[\"patchObject\"] = \"patch object\";\n    /**\n     * Mutated the state with `$patch` and a function\n     *\n     * - `store.$patch(state => state.name = 'newName')`\n     */\n    MutationType[\"patchFunction\"] = \"patch function\";\n    // maybe reset? for $state = {} and $reset\n})(MutationType || (MutationType = {}));\n\nconst IS_CLIENT = typeof window !== 'undefined';\n/**\n * Should we add the devtools plugins.\n * - only if dev mode or forced through the prod devtools flag\n * - not in test\n * - only if window exists (could change in the future)\n */\nconst USE_DEVTOOLS = ((process.env.NODE_ENV !== 'production') || (typeof __VUE_PROD_DEVTOOLS__ !== 'undefined' && __VUE_PROD_DEVTOOLS__)) && !(process.env.NODE_ENV === 'test') && IS_CLIENT;\n\n/*\n * FileSaver.js A saveAs() FileSaver implementation.\n *\n * Originally by Eli Grey, adapted as an ESM module by Eduardo San Martin\n * Morote.\n *\n * License : MIT\n */\n// The one and only way of getting global scope in all environments\n// https://stackoverflow.com/q/3277182/1008999\nconst _global = /*#__PURE__*/ (() => typeof window === 'object' && window.window === window\n    ? window\n    : typeof self === 'object' && self.self === self\n        ? self\n        : typeof global === 'object' && global.global === global\n            ? global\n            : typeof globalThis === 'object'\n                ? globalThis\n                : { HTMLElement: null })();\nfunction bom(blob, { autoBom = false } = {}) {\n    // prepend BOM for UTF-8 XML and text/* types (including HTML)\n    // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF\n    if (autoBom &&\n        /^\\s*(?:text\\/\\S*|application\\/xml|\\S*\\/\\S*\\+xml)\\s*;.*charset\\s*=\\s*utf-8/i.test(blob.type)) {\n        return new Blob([String.fromCharCode(0xfeff), blob], { type: blob.type });\n    }\n    return blob;\n}\nfunction download(url, name, opts) {\n    const xhr = new XMLHttpRequest();\n    xhr.open('GET', url);\n    xhr.responseType = 'blob';\n    xhr.onload = function () {\n        saveAs(xhr.response, name, opts);\n    };\n    xhr.onerror = function () {\n        console.error('could not download file');\n    };\n    xhr.send();\n}\nfunction corsEnabled(url) {\n    const xhr = new XMLHttpRequest();\n    // use sync to avoid popup blocker\n    xhr.open('HEAD', url, false);\n    try {\n        xhr.send();\n    }\n    catch (e) { }\n    return xhr.status >= 200 && xhr.status <= 299;\n}\n// `a.click()` doesn't work for all browsers (#465)\nfunction click(node) {\n    try {\n        node.dispatchEvent(new MouseEvent('click'));\n    }\n    catch (e) {\n        const evt = document.createEvent('MouseEvents');\n        evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80, 20, false, false, false, false, 0, null);\n        node.dispatchEvent(evt);\n    }\n}\nconst _navigator = \n typeof navigator === 'object' ? navigator : { userAgent: '' };\n// Detect WebView inside a native macOS app by ruling out all browsers\n// We just need to check for 'Safari' because all other browsers (besides Firefox) include that too\n// https://www.whatismybrowser.com/guides/the-latest-user-agent/macos\nconst isMacOSWebView = /*#__PURE__*/ (() => /Macintosh/.test(_navigator.userAgent) &&\n    /AppleWebKit/.test(_navigator.userAgent) &&\n    !/Safari/.test(_navigator.userAgent))();\nconst saveAs = !IS_CLIENT\n    ? () => { } // noop\n    : // Use download attribute first if possible (#193 Lumia mobile) unless this is a macOS WebView or mini program\n        typeof HTMLAnchorElement !== 'undefined' &&\n            'download' in HTMLAnchorElement.prototype &&\n            !isMacOSWebView\n            ? downloadSaveAs\n            : // Use msSaveOrOpenBlob as a second approach\n                'msSaveOrOpenBlob' in _navigator\n                    ? msSaveAs\n                    : // Fallback to using FileReader and a popup\n                        fileSaverSaveAs;\nfunction downloadSaveAs(blob, name = 'download', opts) {\n    const a = document.createElement('a');\n    a.download = name;\n    a.rel = 'noopener'; // tabnabbing\n    // TODO: detect chrome extensions & packaged apps\n    // a.target = '_blank'\n    if (typeof blob === 'string') {\n        // Support regular links\n        a.href = blob;\n        if (a.origin !== location.origin) {\n            if (corsEnabled(a.href)) {\n                download(blob, name, opts);\n            }\n            else {\n                a.target = '_blank';\n                click(a);\n            }\n        }\n        else {\n            click(a);\n        }\n    }\n    else {\n        // Support blobs\n        a.href = URL.createObjectURL(blob);\n        setTimeout(function () {\n            URL.revokeObjectURL(a.href);\n        }, 4e4); // 40s\n        setTimeout(function () {\n            click(a);\n        }, 0);\n    }\n}\nfunction msSaveAs(blob, name = 'download', opts) {\n    if (typeof blob === 'string') {\n        if (corsEnabled(blob)) {\n            download(blob, name, opts);\n        }\n        else {\n            const a = document.createElement('a');\n            a.href = blob;\n            a.target = '_blank';\n            setTimeout(function () {\n                click(a);\n            });\n        }\n    }\n    else {\n        // @ts-ignore: works on windows\n        navigator.msSaveOrOpenBlob(bom(blob, opts), name);\n    }\n}\nfunction fileSaverSaveAs(blob, name, opts, popup) {\n    // Open a popup immediately do go around popup blocker\n    // Mostly only available on user interaction and the fileReader is async so...\n    popup = popup || open('', '_blank');\n    if (popup) {\n        popup.document.title = popup.document.body.innerText = 'downloading...';\n    }\n    if (typeof blob === 'string')\n        return download(blob, name, opts);\n    const force = blob.type === 'application/octet-stream';\n    const isSafari = /constructor/i.test(String(_global.HTMLElement)) || 'safari' in _global;\n    const isChromeIOS = /CriOS\\/[\\d]+/.test(navigator.userAgent);\n    if ((isChromeIOS || (force && isSafari) || isMacOSWebView) &&\n        typeof FileReader !== 'undefined') {\n        // Safari doesn't allow downloading of blob URLs\n        const reader = new FileReader();\n        reader.onloadend = function () {\n            let url = reader.result;\n            if (typeof url !== 'string') {\n                popup = null;\n                throw new Error('Wrong reader.result type');\n            }\n            url = isChromeIOS\n                ? url\n                : url.replace(/^data:[^;]*;/, 'data:attachment/file;');\n            if (popup) {\n                popup.location.href = url;\n            }\n            else {\n                location.assign(url);\n            }\n            popup = null; // reverse-tabnabbing #460\n        };\n        reader.readAsDataURL(blob);\n    }\n    else {\n        const url = URL.createObjectURL(blob);\n        if (popup)\n            popup.location.assign(url);\n        else\n            location.href = url;\n        popup = null; // reverse-tabnabbing #460\n        setTimeout(function () {\n            URL.revokeObjectURL(url);\n        }, 4e4); // 40s\n    }\n}\n\n/**\n * Shows a toast or console.log\n *\n * @param message - message to log\n * @param type - different color of the tooltip\n */\nfunction toastMessage(message, type) {\n    const piniaMessage = '🍍 ' + message;\n    if (typeof __VUE_DEVTOOLS_TOAST__ === 'function') {\n        // No longer available :(\n        __VUE_DEVTOOLS_TOAST__(piniaMessage, type);\n    }\n    else if (type === 'error') {\n        console.error(piniaMessage);\n    }\n    else if (type === 'warn') {\n        console.warn(piniaMessage);\n    }\n    else {\n        console.log(piniaMessage);\n    }\n}\nfunction isPinia(o) {\n    return '_a' in o && 'install' in o;\n}\n\n/**\n * This file contain devtools actions, they are not Pinia actions.\n */\n// ---\nfunction checkClipboardAccess() {\n    if (!('clipboard' in navigator)) {\n        toastMessage(`Your browser doesn't support the Clipboard API`, 'error');\n        return true;\n    }\n}\nfunction checkNotFocusedError(error) {\n    if (error instanceof Error &&\n        error.message.toLowerCase().includes('document is not focused')) {\n        toastMessage('You need to activate the \"Emulate a focused page\" setting in the \"Rendering\" panel of devtools.', 'warn');\n        return true;\n    }\n    return false;\n}\nasync function actionGlobalCopyState(pinia) {\n    if (checkClipboardAccess())\n        return;\n    try {\n        await navigator.clipboard.writeText(JSON.stringify(pinia.state.value));\n        toastMessage('Global state copied to clipboard.');\n    }\n    catch (error) {\n        if (checkNotFocusedError(error))\n            return;\n        toastMessage(`Failed to serialize the state. Check the console for more details.`, 'error');\n        console.error(error);\n    }\n}\nasync function actionGlobalPasteState(pinia) {\n    if (checkClipboardAccess())\n        return;\n    try {\n        loadStoresState(pinia, JSON.parse(await navigator.clipboard.readText()));\n        toastMessage('Global state pasted from clipboard.');\n    }\n    catch (error) {\n        if (checkNotFocusedError(error))\n            return;\n        toastMessage(`Failed to deserialize the state from clipboard. Check the console for more details.`, 'error');\n        console.error(error);\n    }\n}\nasync function actionGlobalSaveState(pinia) {\n    try {\n        saveAs(new Blob([JSON.stringify(pinia.state.value)], {\n            type: 'text/plain;charset=utf-8',\n        }), 'pinia-state.json');\n    }\n    catch (error) {\n        toastMessage(`Failed to export the state as JSON. Check the console for more details.`, 'error');\n        console.error(error);\n    }\n}\nlet fileInput;\nfunction getFileOpener() {\n    if (!fileInput) {\n        fileInput = document.createElement('input');\n        fileInput.type = 'file';\n        fileInput.accept = '.json';\n    }\n    function openFile() {\n        return new Promise((resolve, reject) => {\n            fileInput.onchange = async () => {\n                const files = fileInput.files;\n                if (!files)\n                    return resolve(null);\n                const file = files.item(0);\n                if (!file)\n                    return resolve(null);\n                return resolve({ text: await file.text(), file });\n            };\n            // @ts-ignore: TODO: changed from 4.3 to 4.4\n            fileInput.oncancel = () => resolve(null);\n            fileInput.onerror = reject;\n            fileInput.click();\n        });\n    }\n    return openFile;\n}\nasync function actionGlobalOpenStateFile(pinia) {\n    try {\n        const open = getFileOpener();\n        const result = await open();\n        if (!result)\n            return;\n        const { text, file } = result;\n        loadStoresState(pinia, JSON.parse(text));\n        toastMessage(`Global state imported from \"${file.name}\".`);\n    }\n    catch (error) {\n        toastMessage(`Failed to import the state from JSON. Check the console for more details.`, 'error');\n        console.error(error);\n    }\n}\nfunction loadStoresState(pinia, state) {\n    for (const key in state) {\n        const storeState = pinia.state.value[key];\n        // store is already instantiated, patch it\n        if (storeState) {\n            Object.assign(storeState, state[key]);\n        }\n        else {\n            // store is not instantiated, set the initial state\n            pinia.state.value[key] = state[key];\n        }\n    }\n}\n\nfunction formatDisplay(display) {\n    return {\n        _custom: {\n            display,\n        },\n    };\n}\nconst PINIA_ROOT_LABEL = '🍍 Pinia (root)';\nconst PINIA_ROOT_ID = '_root';\nfunction formatStoreForInspectorTree(store) {\n    return isPinia(store)\n        ? {\n            id: PINIA_ROOT_ID,\n            label: PINIA_ROOT_LABEL,\n        }\n        : {\n            id: store.$id,\n            label: store.$id,\n        };\n}\nfunction formatStoreForInspectorState(store) {\n    if (isPinia(store)) {\n        const storeNames = Array.from(store._s.keys());\n        const storeMap = store._s;\n        const state = {\n            state: storeNames.map((storeId) => ({\n                editable: true,\n                key: storeId,\n                value: store.state.value[storeId],\n            })),\n            getters: storeNames\n                .filter((id) => storeMap.get(id)._getters)\n                .map((id) => {\n                const store = storeMap.get(id);\n                return {\n                    editable: false,\n                    key: id,\n                    value: store._getters.reduce((getters, key) => {\n                        getters[key] = store[key];\n                        return getters;\n                    }, {}),\n                };\n            }),\n        };\n        return state;\n    }\n    const state = {\n        state: Object.keys(store.$state).map((key) => ({\n            editable: true,\n            key,\n            value: store.$state[key],\n        })),\n    };\n    // avoid adding empty getters\n    if (store._getters && store._getters.length) {\n        state.getters = store._getters.map((getterName) => ({\n            editable: false,\n            key: getterName,\n            value: store[getterName],\n        }));\n    }\n    if (store._customProperties.size) {\n        state.customProperties = Array.from(store._customProperties).map((key) => ({\n            editable: true,\n            key,\n            value: store[key],\n        }));\n    }\n    return state;\n}\nfunction formatEventData(events) {\n    if (!events)\n        return {};\n    if (Array.isArray(events)) {\n        // TODO: handle add and delete for arrays and objects\n        return events.reduce((data, event) => {\n            data.keys.push(event.key);\n            data.operations.push(event.type);\n            data.oldValue[event.key] = event.oldValue;\n            data.newValue[event.key] = event.newValue;\n            return data;\n        }, {\n            oldValue: {},\n            keys: [],\n            operations: [],\n            newValue: {},\n        });\n    }\n    else {\n        return {\n            operation: formatDisplay(events.type),\n            key: formatDisplay(events.key),\n            oldValue: events.oldValue,\n            newValue: events.newValue,\n        };\n    }\n}\nfunction formatMutationType(type) {\n    switch (type) {\n        case MutationType.direct:\n            return 'mutation';\n        case MutationType.patchFunction:\n            return '$patch';\n        case MutationType.patchObject:\n            return '$patch';\n        default:\n            return 'unknown';\n    }\n}\n\n// timeline can be paused when directly changing the state\nlet isTimelineActive = true;\nconst componentStateTypes = [];\nconst MUTATIONS_LAYER_ID = 'pinia:mutations';\nconst INSPECTOR_ID = 'pinia';\nconst { assign: assign$1 } = Object;\n/**\n * Gets the displayed name of a store in devtools\n *\n * @param id - id of the store\n * @returns a formatted string\n */\nconst getStoreType = (id) => '🍍 ' + id;\n/**\n * Add the pinia plugin without any store. Allows displaying a Pinia plugin tab\n * as soon as it is added to the application.\n *\n * @param app - Vue application\n * @param pinia - pinia instance\n */\nfunction registerPiniaDevtools(app, pinia) {\n    setupDevtoolsPlugin({\n        id: 'dev.esm.pinia',\n        label: 'Pinia 🍍',\n        logo: 'https://pinia.vuejs.org/logo.svg',\n        packageName: 'pinia',\n        homepage: 'https://pinia.vuejs.org',\n        componentStateTypes,\n        app,\n    }, (api) => {\n        if (typeof api.now !== 'function') {\n            toastMessage('You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html.');\n        }\n        api.addTimelineLayer({\n            id: MUTATIONS_LAYER_ID,\n            label: `Pinia 🍍`,\n            color: 0xe5df88,\n        });\n        api.addInspector({\n            id: INSPECTOR_ID,\n            label: 'Pinia 🍍',\n            icon: 'storage',\n            treeFilterPlaceholder: 'Search stores',\n            actions: [\n                {\n                    icon: 'content_copy',\n                    action: () => {\n                        actionGlobalCopyState(pinia);\n                    },\n                    tooltip: 'Serialize and copy the state',\n                },\n                {\n                    icon: 'content_paste',\n                    action: async () => {\n                        await actionGlobalPasteState(pinia);\n                        api.sendInspectorTree(INSPECTOR_ID);\n                        api.sendInspectorState(INSPECTOR_ID);\n                    },\n                    tooltip: 'Replace the state with the content of your clipboard',\n                },\n                {\n                    icon: 'save',\n                    action: () => {\n                        actionGlobalSaveState(pinia);\n                    },\n                    tooltip: 'Save the state as a JSON file',\n                },\n                {\n                    icon: 'folder_open',\n                    action: async () => {\n                        await actionGlobalOpenStateFile(pinia);\n                        api.sendInspectorTree(INSPECTOR_ID);\n                        api.sendInspectorState(INSPECTOR_ID);\n                    },\n                    tooltip: 'Import the state from a JSON file',\n                },\n            ],\n            nodeActions: [\n                {\n                    icon: 'restore',\n                    tooltip: 'Reset the state (with \"$reset\")',\n                    action: (nodeId) => {\n                        const store = pinia._s.get(nodeId);\n                        if (!store) {\n                            toastMessage(`Cannot reset \"${nodeId}\" store because it wasn't found.`, 'warn');\n                        }\n                        else if (typeof store.$reset !== 'function') {\n                            toastMessage(`Cannot reset \"${nodeId}\" store because it doesn't have a \"$reset\" method implemented.`, 'warn');\n                        }\n                        else {\n                            store.$reset();\n                            toastMessage(`Store \"${nodeId}\" reset.`);\n                        }\n                    },\n                },\n            ],\n        });\n        api.on.inspectComponent((payload, ctx) => {\n            const proxy = (payload.componentInstance &&\n                payload.componentInstance.proxy);\n            if (proxy && proxy._pStores) {\n                const piniaStores = payload.componentInstance.proxy._pStores;\n                Object.values(piniaStores).forEach((store) => {\n                    payload.instanceData.state.push({\n                        type: getStoreType(store.$id),\n                        key: 'state',\n                        editable: true,\n                        value: store._isOptionsAPI\n                            ? {\n                                _custom: {\n                                    value: toRaw(store.$state),\n                                    actions: [\n                                        {\n                                            icon: 'restore',\n                                            tooltip: 'Reset the state of this store',\n                                            action: () => store.$reset(),\n                                        },\n                                    ],\n                                },\n                            }\n                            : // NOTE: workaround to unwrap transferred refs\n                                Object.keys(store.$state).reduce((state, key) => {\n                                    state[key] = store.$state[key];\n                                    return state;\n                                }, {}),\n                    });\n                    if (store._getters && store._getters.length) {\n                        payload.instanceData.state.push({\n                            type: getStoreType(store.$id),\n                            key: 'getters',\n                            editable: false,\n                            value: store._getters.reduce((getters, key) => {\n                                try {\n                                    getters[key] = store[key];\n                                }\n                                catch (error) {\n                                    // @ts-expect-error: we just want to show it in devtools\n                                    getters[key] = error;\n                                }\n                                return getters;\n                            }, {}),\n                        });\n                    }\n                });\n            }\n        });\n        api.on.getInspectorTree((payload) => {\n            if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n                let stores = [pinia];\n                stores = stores.concat(Array.from(pinia._s.values()));\n                payload.rootNodes = (payload.filter\n                    ? stores.filter((store) => '$id' in store\n                        ? store.$id\n                            .toLowerCase()\n                            .includes(payload.filter.toLowerCase())\n                        : PINIA_ROOT_LABEL.toLowerCase().includes(payload.filter.toLowerCase()))\n                    : stores).map(formatStoreForInspectorTree);\n            }\n        });\n        api.on.getInspectorState((payload) => {\n            if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n                const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n                    ? pinia\n                    : pinia._s.get(payload.nodeId);\n                if (!inspectedStore) {\n                    // this could be the selected store restored for a different project\n                    // so it's better not to say anything here\n                    return;\n                }\n                if (inspectedStore) {\n                    payload.state = formatStoreForInspectorState(inspectedStore);\n                }\n            }\n        });\n        api.on.editInspectorState((payload, ctx) => {\n            if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n                const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n                    ? pinia\n                    : pinia._s.get(payload.nodeId);\n                if (!inspectedStore) {\n                    return toastMessage(`store \"${payload.nodeId}\" not found`, 'error');\n                }\n                const { path } = payload;\n                if (!isPinia(inspectedStore)) {\n                    // access only the state\n                    if (path.length !== 1 ||\n                        !inspectedStore._customProperties.has(path[0]) ||\n                        path[0] in inspectedStore.$state) {\n                        path.unshift('$state');\n                    }\n                }\n                else {\n                    // Root access, we can omit the `.value` because the devtools API does it for us\n                    path.unshift('state');\n                }\n                isTimelineActive = false;\n                payload.set(inspectedStore, path, payload.state.value);\n                isTimelineActive = true;\n            }\n        });\n        api.on.editComponentState((payload) => {\n            if (payload.type.startsWith('🍍')) {\n                const storeId = payload.type.replace(/^🍍\\s*/, '');\n                const store = pinia._s.get(storeId);\n                if (!store) {\n                    return toastMessage(`store \"${storeId}\" not found`, 'error');\n                }\n                const { path } = payload;\n                if (path[0] !== 'state') {\n                    return toastMessage(`Invalid path for store \"${storeId}\":\\n${path}\\nOnly state can be modified.`);\n                }\n                // rewrite the first entry to be able to directly set the state as\n                // well as any other path\n                path[0] = '$state';\n                isTimelineActive = false;\n                payload.set(store, path, payload.state.value);\n                isTimelineActive = true;\n            }\n        });\n    });\n}\nfunction addStoreToDevtools(app, store) {\n    if (!componentStateTypes.includes(getStoreType(store.$id))) {\n        componentStateTypes.push(getStoreType(store.$id));\n    }\n    setupDevtoolsPlugin({\n        id: 'dev.esm.pinia',\n        label: 'Pinia 🍍',\n        logo: 'https://pinia.vuejs.org/logo.svg',\n        packageName: 'pinia',\n        homepage: 'https://pinia.vuejs.org',\n        componentStateTypes,\n        app,\n        settings: {\n            logStoreChanges: {\n                label: 'Notify about new/deleted stores',\n                type: 'boolean',\n                defaultValue: true,\n            },\n            // useEmojis: {\n            //   label: 'Use emojis in messages ⚡️',\n            //   type: 'boolean',\n            //   defaultValue: true,\n            // },\n        },\n    }, (api) => {\n        // gracefully handle errors\n        const now = typeof api.now === 'function' ? api.now.bind(api) : Date.now;\n        store.$onAction(({ after, onError, name, args }) => {\n            const groupId = runningActionId++;\n            api.addTimelineEvent({\n                layerId: MUTATIONS_LAYER_ID,\n                event: {\n                    time: now(),\n                    title: '🛫 ' + name,\n                    subtitle: 'start',\n                    data: {\n                        store: formatDisplay(store.$id),\n                        action: formatDisplay(name),\n                        args,\n                    },\n                    groupId,\n                },\n            });\n            after((result) => {\n                activeAction = undefined;\n                api.addTimelineEvent({\n                    layerId: MUTATIONS_LAYER_ID,\n                    event: {\n                        time: now(),\n                        title: '🛬 ' + name,\n                        subtitle: 'end',\n                        data: {\n                            store: formatDisplay(store.$id),\n                            action: formatDisplay(name),\n                            args,\n                            result,\n                        },\n                        groupId,\n                    },\n                });\n            });\n            onError((error) => {\n                activeAction = undefined;\n                api.addTimelineEvent({\n                    layerId: MUTATIONS_LAYER_ID,\n                    event: {\n                        time: now(),\n                        logType: 'error',\n                        title: '💥 ' + name,\n                        subtitle: 'end',\n                        data: {\n                            store: formatDisplay(store.$id),\n                            action: formatDisplay(name),\n                            args,\n                            error,\n                        },\n                        groupId,\n                    },\n                });\n            });\n        }, true);\n        store._customProperties.forEach((name) => {\n            watch(() => unref(store[name]), (newValue, oldValue) => {\n                api.notifyComponentUpdate();\n                api.sendInspectorState(INSPECTOR_ID);\n                if (isTimelineActive) {\n                    api.addTimelineEvent({\n                        layerId: MUTATIONS_LAYER_ID,\n                        event: {\n                            time: now(),\n                            title: 'Change',\n                            subtitle: name,\n                            data: {\n                                newValue,\n                                oldValue,\n                            },\n                            groupId: activeAction,\n                        },\n                    });\n                }\n            }, { deep: true });\n        });\n        store.$subscribe(({ events, type }, state) => {\n            api.notifyComponentUpdate();\n            api.sendInspectorState(INSPECTOR_ID);\n            if (!isTimelineActive)\n                return;\n            // rootStore.state[store.id] = state\n            const eventData = {\n                time: now(),\n                title: formatMutationType(type),\n                data: assign$1({ store: formatDisplay(store.$id) }, formatEventData(events)),\n                groupId: activeAction,\n            };\n            if (type === MutationType.patchFunction) {\n                eventData.subtitle = '⤵️';\n            }\n            else if (type === MutationType.patchObject) {\n                eventData.subtitle = '🧩';\n            }\n            else if (events && !Array.isArray(events)) {\n                eventData.subtitle = events.type;\n            }\n            if (events) {\n                eventData.data['rawEvent(s)'] = {\n                    _custom: {\n                        display: 'DebuggerEvent',\n                        type: 'object',\n                        tooltip: 'raw DebuggerEvent[]',\n                        value: events,\n                    },\n                };\n            }\n            api.addTimelineEvent({\n                layerId: MUTATIONS_LAYER_ID,\n                event: eventData,\n            });\n        }, { detached: true, flush: 'sync' });\n        const hotUpdate = store._hotUpdate;\n        store._hotUpdate = markRaw((newStore) => {\n            hotUpdate(newStore);\n            api.addTimelineEvent({\n                layerId: MUTATIONS_LAYER_ID,\n                event: {\n                    time: now(),\n                    title: '🔥 ' + store.$id,\n                    subtitle: 'HMR update',\n                    data: {\n                        store: formatDisplay(store.$id),\n                        info: formatDisplay(`HMR update`),\n                    },\n                },\n            });\n            // update the devtools too\n            api.notifyComponentUpdate();\n            api.sendInspectorTree(INSPECTOR_ID);\n            api.sendInspectorState(INSPECTOR_ID);\n        });\n        const { $dispose } = store;\n        store.$dispose = () => {\n            $dispose();\n            api.notifyComponentUpdate();\n            api.sendInspectorTree(INSPECTOR_ID);\n            api.sendInspectorState(INSPECTOR_ID);\n            api.getSettings().logStoreChanges &&\n                toastMessage(`Disposed \"${store.$id}\" store 🗑`);\n        };\n        // trigger an update so it can display new registered stores\n        api.notifyComponentUpdate();\n        api.sendInspectorTree(INSPECTOR_ID);\n        api.sendInspectorState(INSPECTOR_ID);\n        api.getSettings().logStoreChanges &&\n            toastMessage(`\"${store.$id}\" store installed 🆕`);\n    });\n}\nlet runningActionId = 0;\nlet activeAction;\n/**\n * Patches a store to enable action grouping in devtools by wrapping the store with a Proxy that is passed as the\n * context of all actions, allowing us to set `runningAction` on each access and effectively associating any state\n * mutation to the action.\n *\n * @param store - store to patch\n * @param actionNames - list of actionst to patch\n */\nfunction patchActionForGrouping(store, actionNames, wrapWithProxy) {\n    // original actions of the store as they are given by pinia. We are going to override them\n    const actions = actionNames.reduce((storeActions, actionName) => {\n        // use toRaw to avoid tracking #541\n        storeActions[actionName] = toRaw(store)[actionName];\n        return storeActions;\n    }, {});\n    for (const actionName in actions) {\n        store[actionName] = function () {\n            // the running action id is incremented in a before action hook\n            const _actionId = runningActionId;\n            const trackedStore = wrapWithProxy\n                ? new Proxy(store, {\n                    get(...args) {\n                        activeAction = _actionId;\n                        return Reflect.get(...args);\n                    },\n                    set(...args) {\n                        activeAction = _actionId;\n                        return Reflect.set(...args);\n                    },\n                })\n                : store;\n            // For Setup Stores we need https://github.com/tc39/proposal-async-context\n            activeAction = _actionId;\n            const retValue = actions[actionName].apply(trackedStore, arguments);\n            // this is safer as async actions in Setup Stores would associate mutations done outside of the action\n            activeAction = undefined;\n            return retValue;\n        };\n    }\n}\n/**\n * pinia.use(devtoolsPlugin)\n */\nfunction devtoolsPlugin({ app, store, options }) {\n    // HMR module\n    if (store.$id.startsWith('__hot:')) {\n        return;\n    }\n    // detect option api vs setup api\n    store._isOptionsAPI = !!options.state;\n    patchActionForGrouping(store, Object.keys(options.actions), store._isOptionsAPI);\n    // Upgrade the HMR to also update the new actions\n    const originalHotUpdate = store._hotUpdate;\n    toRaw(store)._hotUpdate = function (newStore) {\n        originalHotUpdate.apply(this, arguments);\n        patchActionForGrouping(store, Object.keys(newStore._hmrPayload.actions), !!store._isOptionsAPI);\n    };\n    addStoreToDevtools(app, \n    // FIXME: is there a way to allow the assignment from Store<Id, S, G, A> to StoreGeneric?\n    store);\n}\n\n/**\n * Creates a Pinia instance to be used by the application\n */\nfunction createPinia() {\n    const scope = effectScope(true);\n    // NOTE: here we could check the window object for a state and directly set it\n    // if there is anything like it with Vue 3 SSR\n    const state = scope.run(() => ref({}));\n    let _p = [];\n    // plugins added before calling app.use(pinia)\n    let toBeInstalled = [];\n    const pinia = markRaw({\n        install(app) {\n            // this allows calling useStore() outside of a component setup after\n            // installing pinia's plugin\n            setActivePinia(pinia);\n            if (!isVue2) {\n                pinia._a = app;\n                app.provide(piniaSymbol, pinia);\n                app.config.globalProperties.$pinia = pinia;\n                /* istanbul ignore else */\n                if (USE_DEVTOOLS) {\n                    registerPiniaDevtools(app, pinia);\n                }\n                toBeInstalled.forEach((plugin) => _p.push(plugin));\n                toBeInstalled = [];\n            }\n        },\n        use(plugin) {\n            if (!this._a && !isVue2) {\n                toBeInstalled.push(plugin);\n            }\n            else {\n                _p.push(plugin);\n            }\n            return this;\n        },\n        _p,\n        // it's actually undefined here\n        // @ts-expect-error\n        _a: null,\n        _e: scope,\n        _s: new Map(),\n        state,\n    });\n    // pinia devtools rely on dev only features so they cannot be forced unless\n    // the dev build of Vue is used. Avoid old browsers like IE11.\n    if (USE_DEVTOOLS && typeof Proxy !== 'undefined') {\n        pinia.use(devtoolsPlugin);\n    }\n    return pinia;\n}\n\n/**\n * Checks if a function is a `StoreDefinition`.\n *\n * @param fn - object to test\n * @returns true if `fn` is a StoreDefinition\n */\nconst isUseStore = (fn) => {\n    return typeof fn === 'function' && typeof fn.$id === 'string';\n};\n/**\n * Mutates in place `newState` with `oldState` to _hot update_ it. It will\n * remove any key not existing in `newState` and recursively merge plain\n * objects.\n *\n * @param newState - new state object to be patched\n * @param oldState - old state that should be used to patch newState\n * @returns - newState\n */\nfunction patchObject(newState, oldState) {\n    // no need to go through symbols because they cannot be serialized anyway\n    for (const key in oldState) {\n        const subPatch = oldState[key];\n        // skip the whole sub tree\n        if (!(key in newState)) {\n            continue;\n        }\n        const targetValue = newState[key];\n        if (isPlainObject(targetValue) &&\n            isPlainObject(subPatch) &&\n            !isRef(subPatch) &&\n            !isReactive(subPatch)) {\n            newState[key] = patchObject(targetValue, subPatch);\n        }\n        else {\n            // objects are either a bit more complex (e.g. refs) or primitives, so we\n            // just set the whole thing\n            if (isVue2) {\n                set(newState, key, subPatch);\n            }\n            else {\n                newState[key] = subPatch;\n            }\n        }\n    }\n    return newState;\n}\n/**\n * Creates an _accept_ function to pass to `import.meta.hot` in Vite applications.\n *\n * @example\n * ```js\n * const useUser = defineStore(...)\n * if (import.meta.hot) {\n *   import.meta.hot.accept(acceptHMRUpdate(useUser, import.meta.hot))\n * }\n * ```\n *\n * @param initialUseStore - return of the defineStore to hot update\n * @param hot - `import.meta.hot`\n */\nfunction acceptHMRUpdate(initialUseStore, hot) {\n    // strip as much as possible from iife.prod\n    if (!(process.env.NODE_ENV !== 'production')) {\n        return () => { };\n    }\n    return (newModule) => {\n        const pinia = hot.data.pinia || initialUseStore._pinia;\n        if (!pinia) {\n            // this store is still not used\n            return;\n        }\n        // preserve the pinia instance across loads\n        hot.data.pinia = pinia;\n        // console.log('got data', newStore)\n        for (const exportName in newModule) {\n            const useStore = newModule[exportName];\n            // console.log('checking for', exportName)\n            if (isUseStore(useStore) && pinia._s.has(useStore.$id)) {\n                // console.log('Accepting update for', useStore.$id)\n                const id = useStore.$id;\n                if (id !== initialUseStore.$id) {\n                    console.warn(`The id of the store changed from \"${initialUseStore.$id}\" to \"${id}\". Reloading.`);\n                    // return import.meta.hot.invalidate()\n                    return hot.invalidate();\n                }\n                const existingStore = pinia._s.get(id);\n                if (!existingStore) {\n                    console.log(`[Pinia]: skipping hmr because store doesn't exist yet`);\n                    return;\n                }\n                useStore(pinia, existingStore);\n            }\n        }\n    };\n}\n\nconst noop = () => { };\nfunction addSubscription(subscriptions, callback, detached, onCleanup = noop) {\n    subscriptions.push(callback);\n    const removeSubscription = () => {\n        const idx = subscriptions.indexOf(callback);\n        if (idx > -1) {\n            subscriptions.splice(idx, 1);\n            onCleanup();\n        }\n    };\n    if (!detached && getCurrentScope()) {\n        onScopeDispose(removeSubscription);\n    }\n    return removeSubscription;\n}\nfunction triggerSubscriptions(subscriptions, ...args) {\n    subscriptions.slice().forEach((callback) => {\n        callback(...args);\n    });\n}\n\nconst fallbackRunWithContext = (fn) => fn();\nfunction mergeReactiveObjects(target, patchToApply) {\n    // Handle Map instances\n    if (target instanceof Map && patchToApply instanceof Map) {\n        patchToApply.forEach((value, key) => target.set(key, value));\n    }\n    // Handle Set instances\n    if (target instanceof Set && patchToApply instanceof Set) {\n        patchToApply.forEach(target.add, target);\n    }\n    // no need to go through symbols because they cannot be serialized anyway\n    for (const key in patchToApply) {\n        if (!patchToApply.hasOwnProperty(key))\n            continue;\n        const subPatch = patchToApply[key];\n        const targetValue = target[key];\n        if (isPlainObject(targetValue) &&\n            isPlainObject(subPatch) &&\n            target.hasOwnProperty(key) &&\n            !isRef(subPatch) &&\n            !isReactive(subPatch)) {\n            // NOTE: here I wanted to warn about inconsistent types but it's not possible because in setup stores one might\n            // start the value of a property as a certain type e.g. a Map, and then for some reason, during SSR, change that\n            // to `undefined`. When trying to hydrate, we want to override the Map with `undefined`.\n            target[key] = mergeReactiveObjects(targetValue, subPatch);\n        }\n        else {\n            // @ts-expect-error: subPatch is a valid value\n            target[key] = subPatch;\n        }\n    }\n    return target;\n}\nconst skipHydrateSymbol = (process.env.NODE_ENV !== 'production')\n    ? Symbol('pinia:skipHydration')\n    : /* istanbul ignore next */ Symbol();\nconst skipHydrateMap = /*#__PURE__*/ new WeakMap();\n/**\n * Tells Pinia to skip the hydration process of a given object. This is useful in setup stores (only) when you return a\n * stateful object in the store but it isn't really state. e.g. returning a router instance in a setup store.\n *\n * @param obj - target object\n * @returns obj\n */\nfunction skipHydrate(obj) {\n    return isVue2\n        ? // in @vue/composition-api, the refs are sealed so defineProperty doesn't work...\n            /* istanbul ignore next */ skipHydrateMap.set(obj, 1) && obj\n        : Object.defineProperty(obj, skipHydrateSymbol, {});\n}\n/**\n * Returns whether a value should be hydrated\n *\n * @param obj - target variable\n * @returns true if `obj` should be hydrated\n */\nfunction shouldHydrate(obj) {\n    return isVue2\n        ? /* istanbul ignore next */ !skipHydrateMap.has(obj)\n        : !isPlainObject(obj) || !obj.hasOwnProperty(skipHydrateSymbol);\n}\nconst { assign } = Object;\nfunction isComputed(o) {\n    return !!(isRef(o) && o.effect);\n}\nfunction createOptionsStore(id, options, pinia, hot) {\n    const { state, actions, getters } = options;\n    const initialState = pinia.state.value[id];\n    let store;\n    function setup() {\n        if (!initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n            /* istanbul ignore if */\n            if (isVue2) {\n                set(pinia.state.value, id, state ? state() : {});\n            }\n            else {\n                pinia.state.value[id] = state ? state() : {};\n            }\n        }\n        // avoid creating a state in pinia.state.value\n        const localState = (process.env.NODE_ENV !== 'production') && hot\n            ? // use ref() to unwrap refs inside state TODO: check if this is still necessary\n                toRefs(ref(state ? state() : {}).value)\n            : toRefs(pinia.state.value[id]);\n        return assign(localState, actions, Object.keys(getters || {}).reduce((computedGetters, name) => {\n            if ((process.env.NODE_ENV !== 'production') && name in localState) {\n                console.warn(`[🍍]: A getter cannot have the same name as another state property. Rename one of them. Found with \"${name}\" in store \"${id}\".`);\n            }\n            computedGetters[name] = markRaw(computed(() => {\n                setActivePinia(pinia);\n                // it was created just before\n                const store = pinia._s.get(id);\n                // allow cross using stores\n                /* istanbul ignore next */\n                if (isVue2 && !store._r)\n                    return;\n                // @ts-expect-error\n                // return getters![name].call(context, context)\n                // TODO: avoid reading the getter while assigning with a global variable\n                return getters[name].call(store, store);\n            }));\n            return computedGetters;\n        }, {}));\n    }\n    store = createSetupStore(id, setup, options, pinia, hot, true);\n    return store;\n}\nfunction createSetupStore($id, setup, options = {}, pinia, hot, isOptionsStore) {\n    let scope;\n    const optionsForPlugin = assign({ actions: {} }, options);\n    /* istanbul ignore if */\n    if ((process.env.NODE_ENV !== 'production') && !pinia._e.active) {\n        throw new Error('Pinia destroyed');\n    }\n    // watcher options for $subscribe\n    const $subscribeOptions = {\n        deep: true,\n        // flush: 'post',\n    };\n    /* istanbul ignore else */\n    if ((process.env.NODE_ENV !== 'production') && !isVue2) {\n        $subscribeOptions.onTrigger = (event) => {\n            /* istanbul ignore else */\n            if (isListening) {\n                debuggerEvents = event;\n                // avoid triggering this while the store is being built and the state is being set in pinia\n            }\n            else if (isListening == false && !store._hotUpdating) {\n                // let patch send all the events together later\n                /* istanbul ignore else */\n                if (Array.isArray(debuggerEvents)) {\n                    debuggerEvents.push(event);\n                }\n                else {\n                    console.error('🍍 debuggerEvents should be an array. This is most likely an internal Pinia bug.');\n                }\n            }\n        };\n    }\n    // internal state\n    let isListening; // set to true at the end\n    let isSyncListening; // set to true at the end\n    let subscriptions = [];\n    let actionSubscriptions = [];\n    let debuggerEvents;\n    const initialState = pinia.state.value[$id];\n    // avoid setting the state for option stores if it is set\n    // by the setup\n    if (!isOptionsStore && !initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n        /* istanbul ignore if */\n        if (isVue2) {\n            set(pinia.state.value, $id, {});\n        }\n        else {\n            pinia.state.value[$id] = {};\n        }\n    }\n    const hotState = ref({});\n    // avoid triggering too many listeners\n    // https://github.com/vuejs/pinia/issues/1129\n    let activeListener;\n    function $patch(partialStateOrMutator) {\n        let subscriptionMutation;\n        isListening = isSyncListening = false;\n        // reset the debugger events since patches are sync\n        /* istanbul ignore else */\n        if ((process.env.NODE_ENV !== 'production')) {\n            debuggerEvents = [];\n        }\n        if (typeof partialStateOrMutator === 'function') {\n            partialStateOrMutator(pinia.state.value[$id]);\n            subscriptionMutation = {\n                type: MutationType.patchFunction,\n                storeId: $id,\n                events: debuggerEvents,\n            };\n        }\n        else {\n            mergeReactiveObjects(pinia.state.value[$id], partialStateOrMutator);\n            subscriptionMutation = {\n                type: MutationType.patchObject,\n                payload: partialStateOrMutator,\n                storeId: $id,\n                events: debuggerEvents,\n            };\n        }\n        const myListenerId = (activeListener = Symbol());\n        nextTick().then(() => {\n            if (activeListener === myListenerId) {\n                isListening = true;\n            }\n        });\n        isSyncListening = true;\n        // because we paused the watcher, we need to manually call the subscriptions\n        triggerSubscriptions(subscriptions, subscriptionMutation, pinia.state.value[$id]);\n    }\n    const $reset = isOptionsStore\n        ? function $reset() {\n            const { state } = options;\n            const newState = state ? state() : {};\n            // we use a patch to group all changes into one single subscription\n            this.$patch(($state) => {\n                assign($state, newState);\n            });\n        }\n        : /* istanbul ignore next */\n            (process.env.NODE_ENV !== 'production')\n                ? () => {\n                    throw new Error(`🍍: Store \"${$id}\" is built using the setup syntax and does not implement $reset().`);\n                }\n                : noop;\n    function $dispose() {\n        scope.stop();\n        subscriptions = [];\n        actionSubscriptions = [];\n        pinia._s.delete($id);\n    }\n    /**\n     * Wraps an action to handle subscriptions.\n     *\n     * @param name - name of the action\n     * @param action - action to wrap\n     * @returns a wrapped action to handle subscriptions\n     */\n    function wrapAction(name, action) {\n        return function () {\n            setActivePinia(pinia);\n            const args = Array.from(arguments);\n            const afterCallbackList = [];\n            const onErrorCallbackList = [];\n            function after(callback) {\n                afterCallbackList.push(callback);\n            }\n            function onError(callback) {\n                onErrorCallbackList.push(callback);\n            }\n            // @ts-expect-error\n            triggerSubscriptions(actionSubscriptions, {\n                args,\n                name,\n                store,\n                after,\n                onError,\n            });\n            let ret;\n            try {\n                ret = action.apply(this && this.$id === $id ? this : store, args);\n                // handle sync errors\n            }\n            catch (error) {\n                triggerSubscriptions(onErrorCallbackList, error);\n                throw error;\n            }\n            if (ret instanceof Promise) {\n                return ret\n                    .then((value) => {\n                    triggerSubscriptions(afterCallbackList, value);\n                    return value;\n                })\n                    .catch((error) => {\n                    triggerSubscriptions(onErrorCallbackList, error);\n                    return Promise.reject(error);\n                });\n            }\n            // trigger after callbacks\n            triggerSubscriptions(afterCallbackList, ret);\n            return ret;\n        };\n    }\n    const _hmrPayload = /*#__PURE__*/ markRaw({\n        actions: {},\n        getters: {},\n        state: [],\n        hotState,\n    });\n    const partialStore = {\n        _p: pinia,\n        // _s: scope,\n        $id,\n        $onAction: addSubscription.bind(null, actionSubscriptions),\n        $patch,\n        $reset,\n        $subscribe(callback, options = {}) {\n            const removeSubscription = addSubscription(subscriptions, callback, options.detached, () => stopWatcher());\n            const stopWatcher = scope.run(() => watch(() => pinia.state.value[$id], (state) => {\n                if (options.flush === 'sync' ? isSyncListening : isListening) {\n                    callback({\n                        storeId: $id,\n                        type: MutationType.direct,\n                        events: debuggerEvents,\n                    }, state);\n                }\n            }, assign({}, $subscribeOptions, options)));\n            return removeSubscription;\n        },\n        $dispose,\n    };\n    /* istanbul ignore if */\n    if (isVue2) {\n        // start as non ready\n        partialStore._r = false;\n    }\n    const store = reactive((process.env.NODE_ENV !== 'production') || USE_DEVTOOLS\n        ? assign({\n            _hmrPayload,\n            _customProperties: markRaw(new Set()), // devtools custom properties\n        }, partialStore\n        // must be added later\n        // setupStore\n        )\n        : partialStore);\n    // store the partial store now so the setup of stores can instantiate each other before they are finished without\n    // creating infinite loops.\n    pinia._s.set($id, store);\n    const runWithContext = (pinia._a && pinia._a.runWithContext) || fallbackRunWithContext;\n    // TODO: idea create skipSerialize that marks properties as non serializable and they are skipped\n    const setupStore = runWithContext(() => pinia._e.run(() => (scope = effectScope()).run(setup)));\n    // overwrite existing actions to support $onAction\n    for (const key in setupStore) {\n        const prop = setupStore[key];\n        if ((isRef(prop) && !isComputed(prop)) || isReactive(prop)) {\n            // mark it as a piece of state to be serialized\n            if ((process.env.NODE_ENV !== 'production') && hot) {\n                set(hotState.value, key, toRef(setupStore, key));\n                // createOptionStore directly sets the state in pinia.state.value so we\n                // can just skip that\n            }\n            else if (!isOptionsStore) {\n                // in setup stores we must hydrate the state and sync pinia state tree with the refs the user just created\n                if (initialState && shouldHydrate(prop)) {\n                    if (isRef(prop)) {\n                        prop.value = initialState[key];\n                    }\n                    else {\n                        // probably a reactive object, lets recursively assign\n                        // @ts-expect-error: prop is unknown\n                        mergeReactiveObjects(prop, initialState[key]);\n                    }\n                }\n                // transfer the ref to the pinia state to keep everything in sync\n                /* istanbul ignore if */\n                if (isVue2) {\n                    set(pinia.state.value[$id], key, prop);\n                }\n                else {\n                    pinia.state.value[$id][key] = prop;\n                }\n            }\n            /* istanbul ignore else */\n            if ((process.env.NODE_ENV !== 'production')) {\n                _hmrPayload.state.push(key);\n            }\n            // action\n        }\n        else if (typeof prop === 'function') {\n            // @ts-expect-error: we are overriding the function we avoid wrapping if\n            const actionValue = (process.env.NODE_ENV !== 'production') && hot ? prop : wrapAction(key, prop);\n            // this a hot module replacement store because the hotUpdate method needs\n            // to do it with the right context\n            /* istanbul ignore if */\n            if (isVue2) {\n                set(setupStore, key, actionValue);\n            }\n            else {\n                // @ts-expect-error\n                setupStore[key] = actionValue;\n            }\n            /* istanbul ignore else */\n            if ((process.env.NODE_ENV !== 'production')) {\n                _hmrPayload.actions[key] = prop;\n            }\n            // list actions so they can be used in plugins\n            // @ts-expect-error\n            optionsForPlugin.actions[key] = prop;\n        }\n        else if ((process.env.NODE_ENV !== 'production')) {\n            // add getters for devtools\n            if (isComputed(prop)) {\n                _hmrPayload.getters[key] = isOptionsStore\n                    ? // @ts-expect-error\n                        options.getters[key]\n                    : prop;\n                if (IS_CLIENT) {\n                    const getters = setupStore._getters ||\n                        // @ts-expect-error: same\n                        (setupStore._getters = markRaw([]));\n                    getters.push(key);\n                }\n            }\n        }\n    }\n    // add the state, getters, and action properties\n    /* istanbul ignore if */\n    if (isVue2) {\n        Object.keys(setupStore).forEach((key) => {\n            set(store, key, setupStore[key]);\n        });\n    }\n    else {\n        assign(store, setupStore);\n        // allows retrieving reactive objects with `storeToRefs()`. Must be called after assigning to the reactive object.\n        // Make `storeToRefs()` work with `reactive()` #799\n        assign(toRaw(store), setupStore);\n    }\n    // use this instead of a computed with setter to be able to create it anywhere\n    // without linking the computed lifespan to wherever the store is first\n    // created.\n    Object.defineProperty(store, '$state', {\n        get: () => ((process.env.NODE_ENV !== 'production') && hot ? hotState.value : pinia.state.value[$id]),\n        set: (state) => {\n            /* istanbul ignore if */\n            if ((process.env.NODE_ENV !== 'production') && hot) {\n                throw new Error('cannot set hotState');\n            }\n            $patch(($state) => {\n                assign($state, state);\n            });\n        },\n    });\n    // add the hotUpdate before plugins to allow them to override it\n    /* istanbul ignore else */\n    if ((process.env.NODE_ENV !== 'production')) {\n        store._hotUpdate = markRaw((newStore) => {\n            store._hotUpdating = true;\n            newStore._hmrPayload.state.forEach((stateKey) => {\n                if (stateKey in store.$state) {\n                    const newStateTarget = newStore.$state[stateKey];\n                    const oldStateSource = store.$state[stateKey];\n                    if (typeof newStateTarget === 'object' &&\n                        isPlainObject(newStateTarget) &&\n                        isPlainObject(oldStateSource)) {\n                        patchObject(newStateTarget, oldStateSource);\n                    }\n                    else {\n                        // transfer the ref\n                        newStore.$state[stateKey] = oldStateSource;\n                    }\n                }\n                // patch direct access properties to allow store.stateProperty to work as\n                // store.$state.stateProperty\n                set(store, stateKey, toRef(newStore.$state, stateKey));\n            });\n            // remove deleted state properties\n            Object.keys(store.$state).forEach((stateKey) => {\n                if (!(stateKey in newStore.$state)) {\n                    del(store, stateKey);\n                }\n            });\n            // avoid devtools logging this as a mutation\n            isListening = false;\n            isSyncListening = false;\n            pinia.state.value[$id] = toRef(newStore._hmrPayload, 'hotState');\n            isSyncListening = true;\n            nextTick().then(() => {\n                isListening = true;\n            });\n            for (const actionName in newStore._hmrPayload.actions) {\n                const action = newStore[actionName];\n                set(store, actionName, wrapAction(actionName, action));\n            }\n            // TODO: does this work in both setup and option store?\n            for (const getterName in newStore._hmrPayload.getters) {\n                const getter = newStore._hmrPayload.getters[getterName];\n                const getterValue = isOptionsStore\n                    ? // special handling of options api\n                        computed(() => {\n                            setActivePinia(pinia);\n                            return getter.call(store, store);\n                        })\n                    : getter;\n                set(store, getterName, getterValue);\n            }\n            // remove deleted getters\n            Object.keys(store._hmrPayload.getters).forEach((key) => {\n                if (!(key in newStore._hmrPayload.getters)) {\n                    del(store, key);\n                }\n            });\n            // remove old actions\n            Object.keys(store._hmrPayload.actions).forEach((key) => {\n                if (!(key in newStore._hmrPayload.actions)) {\n                    del(store, key);\n                }\n            });\n            // update the values used in devtools and to allow deleting new properties later on\n            store._hmrPayload = newStore._hmrPayload;\n            store._getters = newStore._getters;\n            store._hotUpdating = false;\n        });\n    }\n    if (USE_DEVTOOLS) {\n        const nonEnumerable = {\n            writable: true,\n            configurable: true,\n            // avoid warning on devtools trying to display this property\n            enumerable: false,\n        };\n        ['_p', '_hmrPayload', '_getters', '_customProperties'].forEach((p) => {\n            Object.defineProperty(store, p, assign({ value: store[p] }, nonEnumerable));\n        });\n    }\n    /* istanbul ignore if */\n    if (isVue2) {\n        // mark the store as ready before plugins\n        store._r = true;\n    }\n    // apply all plugins\n    pinia._p.forEach((extender) => {\n        /* istanbul ignore else */\n        if (USE_DEVTOOLS) {\n            const extensions = scope.run(() => extender({\n                store,\n                app: pinia._a,\n                pinia,\n                options: optionsForPlugin,\n            }));\n            Object.keys(extensions || {}).forEach((key) => store._customProperties.add(key));\n            assign(store, extensions);\n        }\n        else {\n            assign(store, scope.run(() => extender({\n                store,\n                app: pinia._a,\n                pinia,\n                options: optionsForPlugin,\n            })));\n        }\n    });\n    if ((process.env.NODE_ENV !== 'production') &&\n        store.$state &&\n        typeof store.$state === 'object' &&\n        typeof store.$state.constructor === 'function' &&\n        !store.$state.constructor.toString().includes('[native code]')) {\n        console.warn(`[🍍]: The \"state\" must be a plain object. It cannot be\\n` +\n            `\\tstate: () => new MyClass()\\n` +\n            `Found in store \"${store.$id}\".`);\n    }\n    // only apply hydrate to option stores with an initial state in pinia\n    if (initialState &&\n        isOptionsStore &&\n        options.hydrate) {\n        options.hydrate(store.$state, initialState);\n    }\n    isListening = true;\n    isSyncListening = true;\n    return store;\n}\nfunction defineStore(\n// TODO: add proper types from above\nidOrOptions, setup, setupOptions) {\n    let id;\n    let options;\n    const isSetupStore = typeof setup === 'function';\n    if (typeof idOrOptions === 'string') {\n        id = idOrOptions;\n        // the option store setup will contain the actual options in this case\n        options = isSetupStore ? setupOptions : setup;\n    }\n    else {\n        options = idOrOptions;\n        id = idOrOptions.id;\n        if ((process.env.NODE_ENV !== 'production') && typeof id !== 'string') {\n            throw new Error(`[🍍]: \"defineStore()\" must be passed a store id as its first argument.`);\n        }\n    }\n    function useStore(pinia, hot) {\n        const hasContext = hasInjectionContext();\n        pinia =\n            // in test mode, ignore the argument provided as we can always retrieve a\n            // pinia instance with getActivePinia()\n            ((process.env.NODE_ENV === 'test') && activePinia && activePinia._testing ? null : pinia) ||\n                (hasContext ? inject(piniaSymbol, null) : null);\n        if (pinia)\n            setActivePinia(pinia);\n        if ((process.env.NODE_ENV !== 'production') && !activePinia) {\n            throw new Error(`[🍍]: \"getActivePinia()\" was called but there was no active Pinia. Are you trying to use a store before calling \"app.use(pinia)\"?\\n` +\n                `See https://pinia.vuejs.org/core-concepts/outside-component-usage.html for help.\\n` +\n                `This will fail in production.`);\n        }\n        pinia = activePinia;\n        if (!pinia._s.has(id)) {\n            // creating the store registers it in `pinia._s`\n            if (isSetupStore) {\n                createSetupStore(id, setup, options, pinia);\n            }\n            else {\n                createOptionsStore(id, options, pinia);\n            }\n            /* istanbul ignore else */\n            if ((process.env.NODE_ENV !== 'production')) {\n                // @ts-expect-error: not the right inferred type\n                useStore._pinia = pinia;\n            }\n        }\n        const store = pinia._s.get(id);\n        if ((process.env.NODE_ENV !== 'production') && hot) {\n            const hotId = '__hot:' + id;\n            const newStore = isSetupStore\n                ? createSetupStore(hotId, setup, options, pinia, true)\n                : createOptionsStore(hotId, assign({}, options), pinia, true);\n            hot._hotUpdate(newStore);\n            // cleanup the state properties and the store from the cache\n            delete pinia.state.value[hotId];\n            pinia._s.delete(hotId);\n        }\n        if ((process.env.NODE_ENV !== 'production') && IS_CLIENT) {\n            const currentInstance = getCurrentInstance();\n            // save stores in instances to access them devtools\n            if (currentInstance &&\n                currentInstance.proxy &&\n                // avoid adding stores that are just built for hot module replacement\n                !hot) {\n                const vm = currentInstance.proxy;\n                const cache = '_pStores' in vm ? vm._pStores : (vm._pStores = {});\n                cache[id] = store;\n            }\n        }\n        // StoreGeneric cannot be casted towards Store\n        return store;\n    }\n    useStore.$id = id;\n    return useStore;\n}\n\nlet mapStoreSuffix = 'Store';\n/**\n * Changes the suffix added by `mapStores()`. Can be set to an empty string.\n * Defaults to `\"Store\"`. Make sure to extend the MapStoresCustomization\n * interface if you are using TypeScript.\n *\n * @param suffix - new suffix\n */\nfunction setMapStoreSuffix(suffix // could be 'Store' but that would be annoying for JS\n) {\n    mapStoreSuffix = suffix;\n}\n/**\n * Allows using stores without the composition API (`setup()`) by generating an\n * object to be spread in the `computed` field of a component. It accepts a list\n * of store definitions.\n *\n * @example\n * ```js\n * export default {\n *   computed: {\n *     // other computed properties\n *     ...mapStores(useUserStore, useCartStore)\n *   },\n *\n *   created() {\n *     this.userStore // store with id \"user\"\n *     this.cartStore // store with id \"cart\"\n *   }\n * }\n * ```\n *\n * @param stores - list of stores to map to an object\n */\nfunction mapStores(...stores) {\n    if ((process.env.NODE_ENV !== 'production') && Array.isArray(stores[0])) {\n        console.warn(`[🍍]: Directly pass all stores to \"mapStores()\" without putting them in an array:\\n` +\n            `Replace\\n` +\n            `\\tmapStores([useAuthStore, useCartStore])\\n` +\n            `with\\n` +\n            `\\tmapStores(useAuthStore, useCartStore)\\n` +\n            `This will fail in production if not fixed.`);\n        stores = stores[0];\n    }\n    return stores.reduce((reduced, useStore) => {\n        // @ts-expect-error: $id is added by defineStore\n        reduced[useStore.$id + mapStoreSuffix] = function () {\n            return useStore(this.$pinia);\n        };\n        return reduced;\n    }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapState(useStore, keysOrMapper) {\n    return Array.isArray(keysOrMapper)\n        ? keysOrMapper.reduce((reduced, key) => {\n            reduced[key] = function () {\n                return useStore(this.$pinia)[key];\n            };\n            return reduced;\n        }, {})\n        : Object.keys(keysOrMapper).reduce((reduced, key) => {\n            // @ts-expect-error\n            reduced[key] = function () {\n                const store = useStore(this.$pinia);\n                const storeKey = keysOrMapper[key];\n                // for some reason TS is unable to infer the type of storeKey to be a\n                // function\n                return typeof storeKey === 'function'\n                    ? storeKey.call(this, store)\n                    : store[storeKey];\n            };\n            return reduced;\n        }, {});\n}\n/**\n * Alias for `mapState()`. You should use `mapState()` instead.\n * @deprecated use `mapState()` instead.\n */\nconst mapGetters = mapState;\n/**\n * Allows directly using actions from your store without using the composition\n * API (`setup()`) by generating an object to be spread in the `methods` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapActions(useStore, keysOrMapper) {\n    return Array.isArray(keysOrMapper)\n        ? keysOrMapper.reduce((reduced, key) => {\n            // @ts-expect-error\n            reduced[key] = function (...args) {\n                return useStore(this.$pinia)[key](...args);\n            };\n            return reduced;\n        }, {})\n        : Object.keys(keysOrMapper).reduce((reduced, key) => {\n            // @ts-expect-error\n            reduced[key] = function (...args) {\n                return useStore(this.$pinia)[keysOrMapper[key]](...args);\n            };\n            return reduced;\n        }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapWritableState(useStore, keysOrMapper) {\n    return Array.isArray(keysOrMapper)\n        ? keysOrMapper.reduce((reduced, key) => {\n            // @ts-ignore\n            reduced[key] = {\n                get() {\n                    return useStore(this.$pinia)[key];\n                },\n                set(value) {\n                    // it's easier to type it here as any\n                    return (useStore(this.$pinia)[key] = value);\n                },\n            };\n            return reduced;\n        }, {})\n        : Object.keys(keysOrMapper).reduce((reduced, key) => {\n            // @ts-ignore\n            reduced[key] = {\n                get() {\n                    return useStore(this.$pinia)[keysOrMapper[key]];\n                },\n                set(value) {\n                    // it's easier to type it here as any\n                    return (useStore(this.$pinia)[keysOrMapper[key]] = value);\n                },\n            };\n            return reduced;\n        }, {});\n}\n\n/**\n * Creates an object of references with all the state, getters, and plugin-added\n * state properties of the store. Similar to `toRefs()` but specifically\n * designed for Pinia stores so methods and non reactive properties are\n * completely ignored.\n *\n * @param store - store to extract the refs from\n */\nfunction storeToRefs(store) {\n    // See https://github.com/vuejs/pinia/issues/852\n    // It's easier to just use toRefs() even if it includes more stuff\n    if (isVue2) {\n        // @ts-expect-error: toRefs include methods and others\n        return toRefs(store);\n    }\n    else {\n        store = toRaw(store);\n        const refs = {};\n        for (const key in store) {\n            const value = store[key];\n            if (isRef(value) || isReactive(value)) {\n                // @ts-expect-error: the key is state or getter\n                refs[key] =\n                    // ---\n                    toRef(store, key);\n            }\n        }\n        return refs;\n    }\n}\n\n/**\n * Vue 2 Plugin that must be installed for pinia to work. Note **you don't need\n * this plugin if you are using Nuxt.js**. Use the `buildModule` instead:\n * https://pinia.vuejs.org/ssr/nuxt.html.\n *\n * @example\n * ```js\n * import Vue from 'vue'\n * import { PiniaVuePlugin, createPinia } from 'pinia'\n *\n * Vue.use(PiniaVuePlugin)\n * const pinia = createPinia()\n *\n * new Vue({\n *   el: '#app',\n *   // ...\n *   pinia,\n * })\n * ```\n *\n * @param _Vue - `Vue` imported from 'vue'.\n */\nconst PiniaVuePlugin = function (_Vue) {\n    // Equivalent of\n    // app.config.globalProperties.$pinia = pinia\n    _Vue.mixin({\n        beforeCreate() {\n            const options = this.$options;\n            if (options.pinia) {\n                const pinia = options.pinia;\n                // HACK: taken from provide(): https://github.com/vuejs/composition-api/blob/main/src/apis/inject.ts#L31\n                /* istanbul ignore else */\n                if (!this._provided) {\n                    const provideCache = {};\n                    Object.defineProperty(this, '_provided', {\n                        get: () => provideCache,\n                        set: (v) => Object.assign(provideCache, v),\n                    });\n                }\n                this._provided[piniaSymbol] = pinia;\n                // propagate the pinia instance in an SSR friendly way\n                // avoid adding it to nuxt twice\n                /* istanbul ignore else */\n                if (!this.$pinia) {\n                    this.$pinia = pinia;\n                }\n                pinia._a = this;\n                if (IS_CLIENT) {\n                    // this allows calling useStore() outside of a component setup after\n                    // installing pinia's plugin\n                    setActivePinia(pinia);\n                }\n                if (USE_DEVTOOLS) {\n                    registerPiniaDevtools(pinia._a, pinia);\n                }\n            }\n            else if (!this.$pinia && options.parent && options.parent.$pinia) {\n                this.$pinia = options.parent.$pinia;\n            }\n        },\n        destroyed() {\n            delete this._pStores;\n        },\n    });\n};\n\nexport { MutationType, PiniaVuePlugin, acceptHMRUpdate, createPinia, defineStore, getActivePinia, mapActions, mapGetters, mapState, mapStores, mapWritableState, setActivePinia, setMapStoreSuffix, skipHydrate, storeToRefs };\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).replace(/[!'()*]/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 keyValueSep = 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), keyValueSep, 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.replace(/\\+/g, ' ') : 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 = {encode: true,\n\t\tstrict: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',', ...options};\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\tif (queryString) {\n\t\tqueryString = `?${queryString}`;\n\t}\n\n\tlet hash = getHash(object.url);\n\tif (object.fragmentIdentifier) {\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","import { generateUrl } from '@nextcloud/router';\nimport queryString from 'query-string';\nimport Router from 'vue-router';\nimport Vue from 'vue';\nimport { ErrorHandler } from 'vue-router/types/router';\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 }","/* 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 }","/**\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","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\"","<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","\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:{\"data-cy-files-navigation-settings\":\"\",\"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 data-cy-files-navigation-settings\n\t\t: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=109572de&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=109572de&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=109572de&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=109572de&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  \"109572de\",\n  null\n  \n)\n\nexport default component.exports","import { getNavigation } from '@nextcloud/files';\nimport { onMounted, onUnmounted, shallowRef } from 'vue';\n/**\n * Composable to get the currently active files view from the files navigation\n */\nexport function useNavigation() {\n    const navigation = getNavigation();\n    const views = shallowRef(navigation.views);\n    const currentView = shallowRef(navigation.active);\n    /**\n     * Event listener to update the `currentView`\n     * @param event The update event\n     */\n    function onUpdateActive(event) {\n        currentView.value = event.detail;\n    }\n    /**\n     * Event listener to update all registered views\n     */\n    function onUpdateViews() {\n        views.value = navigation.views;\n    }\n    onMounted(() => {\n        navigation.addEventListener('update', onUpdateViews);\n        navigation.addEventListener('updateActive', onUpdateActive);\n    });\n    onUnmounted(() => {\n        navigation.removeEventListener('update', onUpdateViews);\n        navigation.removeEventListener('updateActive', onUpdateActive);\n    });\n    return {\n        currentView,\n        views,\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 { 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","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,_setup=_vm._self._setupProxy;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('IconCog',{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=d0bcf126&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=d0bcf126&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=d0bcf126&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=d0bcf126&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  \"d0bcf126\",\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.ShareType.Link)?_c('LinkIcon'):_c('AccountPlusIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,4106306959)}):_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 }, { ...window.OCP.Files.Router.query, 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","/**\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 */\nimport { davGetDefaultPropfind, davResultToNode, davRootPath } from '@nextcloud/files';\nimport { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nimport logger from '../logger';\nimport Vue from 'vue';\nimport { getClient } from '../services/WebdavClient.ts';\nconst client = getClient();\nconst fetchNode = async (node) => {\n    const propfindPayload = davGetDefaultPropfind();\n    const result = await client.stat(`${davRootPath}${node.path}`, {\n        details: true,\n        data: propfindPayload,\n    });\n    return davResultToNode(result.data);\n};\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 its source\n             */\n            getNode: (state) => (source) => state.files[source],\n            /**\n             * Get a list of files or folders by their IDs\n             * Note: does not return undefined values\n             */\n            getNodes: (state) => (sources) => sources\n                .map(source => state.files[source])\n                .filter(Boolean),\n            /**\n             * Get files or folders by their file ID\n             * Multiple nodes can have the same file ID but different sources\n             * (e.g. in a shared context)\n             */\n            getNodesById: (state) => (fileId) => Object.values(state.files).filter(node => node.fileid === fileId),\n            /**\n             * Get the root folder of a service\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.source] = node;\n                    return acc;\n                }, {});\n                Vue.set(this, 'files', { ...this.files, ...files });\n            },\n            deleteNodes(nodes) {\n                nodes.forEach(node => {\n                    if (node.source) {\n                        Vue.delete(this.files, node.source);\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            async onUpdatedNode(node) {\n                if (!node.fileid) {\n                    logger.error('Trying to update/set a node without fileid', { node });\n                    return;\n                }\n                // If we have multiple nodes with the same file ID, we need to update all of them\n                const nodes = this.getNodesById(node.fileid);\n                if (nodes.length > 1) {\n                    await Promise.all(nodes.map(fetchNode)).then(this.updateNodes);\n                    logger.debug(nodes.length + ' nodes updated in store', { fileid: node.fileid });\n                    return;\n                }\n                // If we have only one node with the file ID, we can update it directly\n                if (node.source === nodes[0].source) {\n                    this.updateNodes([node]);\n                    return;\n                }\n                // Otherwise, it means we receive an event for a node that is not in the store\n                fetchNode(node).then(n => this.updateNodes([n]));\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(...args);\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.source);\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                        source: node.source,\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.source);\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 parentSource = this.paths[service][node.dirname];\n                    const parentFolder = files.getNode(parentSource);\n                    logger.debug('Path already exists, updating children', { parentFolder, node });\n                    if (!parentFolder) {\n                        logger.error('Parent folder not found', { parentSource });\n                        return;\n                    }\n                    if (!parentFolder._children) {\n                        Vue.set(parentFolder, '_children', []);\n                    }\n                    parentFolder._children.push(node.source);\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","/**\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';\nimport { FileSource, SelectionStore } from '../types';\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      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!./style.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!./style.css\";\n       export default content && content.locals ? content.locals : undefined;\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// Maximum number of concurrent operations\nconst MAX_CONCURRENCY = 5;\n/**\n * Get the processing queue\n */\nexport const getQueue = () => {\n    if (!queue) {\n        queue = new PQueue({ concurrency: MAX_CONCURRENCY });\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    // a shared file cannot be copied if the download is disabled\n    // it can be copied if the user has at least read permissions\n    return canDownload(nodes)\n        && !nodes.some(node => node.permissions === Permission.NONE);\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    let hash = 0;\n    for (let i = 0; i < str.length; i++) {\n        hash = ((hash << 5) - hash + str.charCodeAt(i)) | 0;\n    }\n    return (hash >>> 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.ts';\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 = String(props['owner-id'] || userId);\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            'owner-id': owner,\n            'owner-display-name': String(props['owner-display-name']),\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) 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 { FileAction, FileType, NodeStatus, davGetClient, davRootPath, davResultToNode, davGetDefaultPropfind, getUniqueName } 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';\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                        // two empty arrays: either only old files or conflict skipped -> no action required\n                        if (!selected.length && !renamed.length) {\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 is 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 don't want to show the current nodes in the file picker\n        return !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=77111ada&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=77111ada&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=77111ada&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=77111ada&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  \"77111ada\",\n  null\n  \n)\n\nexport default component.exports","/**\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 { FileType } from '@nextcloud/files';\nimport { translate as t, translatePlural as n } from '@nextcloud/l10n';\nexport const encodeFilePath = function (path) {\n    const pathSections = (path.startsWith('/') ? path : `/${path}`).split('/');\n    let relativePath = '';\n    pathSections.forEach((section) => {\n        if (section !== '') {\n            relativePath += '/' + encodeURIComponent(section);\n        }\n    });\n    return relativePath;\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","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:{\"auxclick\":function($event){return _vm.execDefaultAction.apply(null, arguments)},\"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},nativeOn:{\"auxclick\":function($event){return _vm.execDefaultAction.apply(null, arguments)},\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}})],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}},[(_vm.source.mtime)?_c('NcDateTime',{attrs:{\"timestamp\":_vm.source.mtime,\"ignore-seconds\":true}}):_vm._e()],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 }","/**\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 }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Folder.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Folder.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-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,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"FolderIcon\",\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 \"./Folder.vue?vue&type=template&id=07f089a4\"\nimport script from \"./Folder.vue?vue&type=script&lang=js\"\nexport * from \"./Folder.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-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,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z\"}},[(_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=b63e55d4&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=b63e55d4&prod&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./DragAndDropPreview.vue?vue&type=template&id=b63e55d4\"\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=b63e55d4&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 { showError } from '@nextcloud/dialogs';\nimport { FileType, Permission, Folder, File as NcFile, NodeStatus, Node, View } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport { generateUrl } from '@nextcloud/router';\nimport { vOnClickOutside } from '@vueuse/components';\nimport { extname } from 'path';\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 FileEntryActions from '../components/FileEntry/FileEntryActions.vue';\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        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 = String(this.source.attributes.displayname || 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.selectedFiles.includes(this.source.source);\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 String(this.fileid) === String(this.currentFileId);\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(source => this.filesStore.getNode(source));\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.draggingFiles.includes(this.source.source)) {\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                this.actionsMenuStore.opened = opened ? this.uniqueId.toString() : null;\n            },\n        },\n        isRenaming() {\n            return this.renamingStore.renamingNode === this.source;\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            else {\n                // Reset any right menu position potentially set\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            // 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            // Ignore click if we are renaming\n            if (this.isRenaming) {\n                return;\n            }\n            // Ignore right click.\n            if (event.button > 1) {\n                return;\n            }\n            // if ctrl+click or middle mouse button, open in new tab\n            if (event.ctrlKey || event.metaKey || event.button === 1) {\n                event.preventDefault();\n                window.open(generateUrl('/f/{fileId}', { fileId: this.fileid }));\n                return false;\n            }\n            const actions = this.$refs.actions;\n            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.source.source)) {\n                this.draggingStore.set(this.selectedFiles);\n            }\n            else {\n                this.draggingStore.set([this.source.source]);\n            }\n            const nodes = this.draggingStore.dragging\n                .map(source => this.filesStore.getNode(source));\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(source => this.filesStore.getNode(source));\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(source => this.selectedFiles.includes(source))) {\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","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\"","<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 { 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 }","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\":false /* never close submenu, just go back */,\"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 }","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=0bcaefce&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=0bcaefce&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=0bcaefce&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=0bcaefce&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=0bcaefce&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=0bcaefce&prod&lang=scss\"\nimport style1 from \"./FileEntryActions.vue?vue&type=style&index=1&id=0bcaefce&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  \"0bcaefce\",\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=9cf669b4\"\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\":\"\"}},'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=18c01b54\"\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=04e52abc&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=04e52abc&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=04e52abc&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=04e52abc&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  \"04e52abc\",\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=525376b0\"\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\"","import { render, staticRenderFns } from \"./FileEntry.vue?vue&type=template&id=97c5f55c\"\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:{\"auxclick\":function($event){return _vm.execDefaultAction.apply(null, arguments)},\"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},nativeOn:{\"auxclick\":function($event){return _vm.execDefaultAction.apply(null, arguments)},\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}})],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=b1769a56\"\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=097f69d4&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=097f69d4&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=097f69d4&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=097f69d4&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  \"097f69d4\",\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=68d3de81&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=68d3de81&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=68d3de81&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=68d3de81&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  \"68d3de81\",\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=4a3570a2\"\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=91476734&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=91476734&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=91476734&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=91476734&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  \"91476734\",\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\"","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      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=1e2b43b6&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=1e2b43b6&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=1e2b43b6&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=1e2b43b6&prod&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListVirtual.vue?vue&type=template&id=1e2b43b6&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=1e2b43b6&prod&scoped=true&lang=scss\"\nimport style1 from \"./FilesListVirtual.vue?vue&type=style&index=1&id=1e2b43b6&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  \"1e2b43b6\",\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=2b498b48&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=2b498b48&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=2b498b48&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=2b498b48&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  \"2b498b48\",\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=139727ec&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=139727ec&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=139727ec&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=139727ec&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  \"139727ec\",\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\";\nimport ___CSS_LOADER_GET_URL_IMPORT___ from \"../../../css-loader/dist/runtime/getUrl.js\";\nvar ___CSS_LOADER_URL_IMPORT_0___ = new URL(\"data:image/svg+xml,%3csvg%20viewBox=%270%200%2016%2016%27%20height=%2716%27%20width=%2716%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xml:space=%27preserve%27%20style=%27fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2%27%3e%3cpath%20d=%27M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z%27%20style=%27fill-rule:nonzero%27%20transform=%27matrix%28.85714%200%200%20.85714%20-2.286%20-2.286%29%27/%3e%3c/svg%3e\", import.meta.url);\nvar ___CSS_LOADER_URL_IMPORT_1___ = new URL(\"data:image/svg+xml,%3csvg%20viewBox=%270%200%2016%2016%27%20height=%2716%27%20width=%2716%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xml:space=%27preserve%27%20style=%27fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2%27%3e%3cpath%20d=%27M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z%27%20style=%27fill:%23fff;fill-rule:nonzero%27%20transform=%27matrix%28.85714%200%200%20.85714%20-2.286%20-2.286%29%27/%3e%3c/svg%3e\", import.meta.url);\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\nvar ___CSS_LOADER_URL_REPLACEMENT_0___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_0___);\nvar ___CSS_LOADER_URL_REPLACEMENT_1___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_1___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n.toastify.dialogs {\n  min-width: 200px;\n  background: none;\n  background-color: var(--color-main-background);\n  color: var(--color-main-text);\n  box-shadow: 0 0 6px 0 var(--color-box-shadow);\n  padding: 0 12px;\n  margin-top: 45px;\n  position: fixed;\n  z-index: 10100;\n  border-radius: var(--border-radius);\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n  position: static;\n  overflow: hidden;\n  box-sizing: border-box;\n  min-width: 44px;\n  height: 100%;\n  padding: 12px;\n  white-space: nowrap;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-color: transparent;\n  min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n  text-indent: 0;\n  opacity: 0.4;\n  border: none;\n  min-height: 44px;\n  margin-left: 10px;\n  font-size: 0;\n  /* dark theme overrides for Nextcloud 25 and later */\n}\n.toastify.dialogs .toast-undo-button.toast-close::before,\n.toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(${___CSS_LOADER_URL_REPLACEMENT_0___});\n  content: \" \";\n  filter: var(--background-invert-if-dark);\n  display: inline-block;\n  width: 16px;\n  height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n  margin: 3px;\n  height: calc(100% - 2 * 3px);\n  margin-left: 12px;\n}\n.toastify.dialogs .toast-undo-button:hover, .toastify.dialogs .toast-undo-button:focus, .toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n  cursor: pointer;\n  opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n  right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n  cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n  border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n  border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n  border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success {\n  border-left: 3px solid var(--color-success);\n}\n.toastify.dialogs.toast-undo {\n  border-left: 3px solid var(--color-success);\n}\n\n/* dark theme overrides for Nextcloud 24 and earlier */\n.theme--dark .toastify.dialogs .toast-close {\n  /* close icon style */\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(${___CSS_LOADER_URL_REPLACEMENT_1___});\n}\n.nc-generic-dialog .dialog__actions {\n\tjustify-content: space-between;\n\tmin-width: calc(100% - 12px);\n}\n/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * Icon styling of the file list row preview or fallback icon\n * (leading icon on the name row and header)\n */\n._file-picker__file-icon_19mjt_9 {\n  width: 32px;\n  height: 32px;\n  min-width: 32px;\n  min-height: 32px;\n  background-repeat: no-repeat;\n  background-size: contain;\n  display: flex;\n  justify-content: center;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-15187afc] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-15187afc] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-15187afc] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-15187afc]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-15187afc] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-15187afc] {\n  padding-inline: 2px 0;\n}\n@keyframes gradient-15187afc {\n0% {\n    background-position: 0% 50%;\n}\n50% {\n    background-position: 100% 50%;\n}\n100% {\n    background-position: 0% 50%;\n}\n}\n.loading-row .row-checkbox[data-v-15187afc] {\n  text-align: center !important;\n}\n.loading-row span[data-v-15187afc] {\n  display: inline-block;\n  height: 24px;\n  background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n  background-size: 600px 100%;\n  border-radius: var(--border-radius);\n  animation: gradient-15187afc 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-15187afc] {\n  display: inline-flex;\n  align-items: center;\n}\n.loading-row .row-checkbox span[data-v-15187afc] {\n  width: 24px;\n}\n.loading-row .row-name span[data-v-15187afc]:last-of-type {\n  margin-inline-start: 6px;\n  width: 130px;\n}\n.loading-row .row-size span[data-v-15187afc] {\n  width: 80px;\n}\n.loading-row .row-modified span[data-v-15187afc] {\n  width: 90px;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-cb12dccb] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-cb12dccb] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-cb12dccb] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-cb12dccb]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-cb12dccb] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-cb12dccb] {\n  padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-cb12dccb] {\n  background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-cb12dccb]:hover {\n  background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-cb12dccb] {\n  display: flex;\n  justify-content: start;\n  align-items: center;\n  height: 100%;\n}\n.file-picker__file-name[data-v-cb12dccb] {\n  padding-inline-start: 6px;\n  min-width: 0;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-cb12dccb] {\n  color: var(--color-text-maxcontrast);\n  min-width: fit-content;\n}.file-picker__header-preview[data-v-006fdbd0] {\n  width: 22px;\n  height: 32px;\n  flex: 0 0 auto;\n}\n.file-picker__files[data-v-006fdbd0] {\n  margin: 2px;\n  margin-inline-start: 12px;\n  overflow: scroll auto;\n}\n.file-picker__files table[data-v-006fdbd0] {\n  width: 100%;\n  max-height: 100%;\n  table-layout: fixed;\n}\n.file-picker__files th[data-v-006fdbd0] {\n  position: sticky;\n  z-index: 1;\n  top: 0;\n  background-color: var(--color-main-background);\n  padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-006fdbd0] {\n  display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-006fdbd0] {\n  width: 44px;\n}\n.file-picker__files th.row-name[data-v-006fdbd0] {\n  width: 230px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] {\n  width: 100px;\n}\n.file-picker__files th.row-modified[data-v-006fdbd0] {\n  width: 120px;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue__wrapper {\n  justify-content: start;\n  flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue {\n  padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] .button-vue__wrapper {\n  justify-content: end;\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper {\n  color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper .button-vue__text {\n  font-weight: normal;\n}.file-picker__breadcrumbs[data-v-b357227a] {\n  flex-grow: 0 !important;\n}.file-picker__side[data-v-b42054b8] {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  gap: 0.5rem;\n  min-width: 200px;\n  padding: 2px;\n  margin-block-start: 7px;\n  overflow: auto;\n}\n.file-picker__side[data-v-b42054b8] .button-vue__wrapper {\n  justify-content: start;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n  margin-block: 7px;\n  max-width: 260px;\n}\n@media (max-width: 736px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n}\n@media (max-width: 512px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n    max-width: unset;\n}\n}/* Ensure focus outline is visible */\n.file-picker__navigation {\n  padding-inline: 8px 2px;\n}\n.file-picker__navigation, .file-picker__navigation * {\n  box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n  min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n.file-picker__navigation {\n    gap: 11px;\n}\n}\n@media (max-width: 512px) {\n.file-picker__navigation {\n    flex-direction: column-reverse !important;\n}\n}.file-picker__view[data-v-20b719ba] {\n  height: 50px;\n  display: flex;\n  justify-content: start;\n  align-items: center;\n}\n.file-picker__view h3[data-v-20b719ba] {\n  font-weight: bold;\n  height: fit-content;\n  margin: 0;\n}\n.file-picker__main[data-v-20b719ba] {\n  box-sizing: border-box;\n  width: 100%;\n  display: flex;\n  flex-direction: column;\n  min-height: 0;\n  flex: 1;\n  padding-inline: 2px;\n}\n.file-picker__main *[data-v-20b719ba] {\n  box-sizing: border-box;\n}\n[data-v-20b719ba] .file-picker {\n  height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n[data-v-20b719ba] .file-picker {\n    height: calc(100% - 16px - var(--default-clickable-area)) !important;\n}\n}\n[data-v-20b719ba] .file-picker__content {\n  display: flex;\n  flex-direction: column;\n  overflow: hidden;\n}`, \"\",{\"version\":3,\"sources\":[\"webpack://./node_modules/@nextcloud/dialogs/dist/style.css\"],\"names\":[],\"mappings\":\"AAAA;;;EAGE;AACF;EACE,gBAAgB;EAChB,gBAAgB;EAChB,8CAA8C;EAC9C,6BAA6B;EAC7B,6CAA6C;EAC7C,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,cAAc;EACd,mCAAmC;EACnC,aAAa;EACb,mBAAmB;AACrB;AACA;EACE,aAAa;EACb,mBAAmB;AACrB;AACA;;EAEE,gBAAgB;EAChB,gBAAgB;EAChB,sBAAsB;EACtB,eAAe;EACf,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,4BAA4B;EAC5B,2BAA2B;EAC3B,6BAA6B;EAC7B,aAAa;AACf;AACA;;EAEE,cAAc;EACd,YAAY;EACZ,YAAY;EACZ,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;EACZ,oDAAoD;AACtD;AACA;;EAEE,yDAAsf;EACtf,YAAY;EACZ,wCAAwC;EACxC,qBAAqB;EACrB,WAAW;EACX,YAAY;AACd;AACA;;EAEE,WAAW;EACX,4BAA4B;EAC5B,iBAAiB;AACnB;AACA;;;;EAIE,eAAe;EACf,UAAU;AACZ;AACA;EACE,WAAW;AACb;AACA;EACE,eAAe;AACjB;AACA;EACE,yCAAyC;AAC3C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;;AAEA,sDAAsD;AACtD;EACE,qBAAqB;AACvB;AACA;EACE,yDAAkgB;AACpgB;AACA;CACC,8BAA8B;CAC9B,4BAA4B;AAC7B;AACA;;;EAGE;AACF;;;EAGE;AACF;EACE,WAAW;EACX,YAAY;EACZ,eAAe;EACf,gBAAgB;EAChB,4BAA4B;EAC5B,wBAAwB;EACxB,aAAa;EACb,uBAAuB;AACzB,CAAC;;;EAGC;AACF;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;AACA;IACI,2BAA2B;AAC/B;AACA;IACI,6BAA6B;AACjC;AACA;IACI,2BAA2B;AAC/B;AACA;AACA;EACE,6BAA6B;AAC/B;AACA;EACE,qBAAqB;EACrB,YAAY;EACZ,oIAAoI;EACpI,2BAA2B;EAC3B,mCAAmC;EACnC,8CAA8C;AAChD;AACA;EACE,oBAAoB;EACpB,mBAAmB;AACrB;AACA;EACE,WAAW;AACb;AACA;EACE,wBAAwB;EACxB,YAAY;AACd;AACA;EACE,WAAW;AACb;AACA;EACE,WAAW;AACb,CAAC;;;EAGC;AACF;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,8CAA8C;AAChD;AACA;EACE,+CAA+C;AACjD;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,yBAAyB;EACzB,YAAY;EACZ,gBAAgB;EAChB,uBAAuB;AACzB;AACA;EACE,oCAAoC;EACpC,sBAAsB;AACxB,CAAC;EACC,WAAW;EACX,YAAY;EACZ,cAAc;AAChB;AACA;EACE,WAAW;EACX,yBAAyB;EACzB,qBAAqB;AACvB;AACA;EACE,WAAW;EACX,gBAAgB;EAChB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,UAAU;EACV,MAAM;EACN,8CAA8C;EAC9C,YAAY;AACd;AACA;EACE,aAAa;AACf;AACA;EACE,WAAW;AACb;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,sBAAsB;EACtB,2BAA2B;AAC7B;AACA;EACE,wBAAwB;AAC1B;AACA;EACE,oBAAoB;AACtB;AACA;EACE,oCAAoC;AACtC;AACA;EACE,mBAAmB;AACrB,CAAC;EACC,uBAAuB;AACzB,CAAC;EACC,aAAa;EACb,sBAAsB;EACtB,oBAAoB;EACpB,WAAW;EACX,gBAAgB;EAChB,YAAY;EACZ,uBAAuB;EACvB,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,iBAAiB;EACjB,gBAAgB;AAClB;AACA;AACA;IACI,mBAAmB;IACnB,gBAAgB;AACpB;AACA;AACA;AACA;IACI,mBAAmB;IACnB,gBAAgB;AACpB;AACA;IACI,gBAAgB;AACpB;AACA,CAAC,oCAAoC;AACrC;EACE,uBAAuB;AACzB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,gBAAgB;AAClB;AACA;AACA;IACI,SAAS;AACb;AACA;AACA;AACA;IACI,yCAAyC;AAC7C;AACA,CAAC;EACC,YAAY;EACZ,aAAa;EACb,sBAAsB;EACtB,mBAAmB;AACrB;AACA;EACE,iBAAiB;EACjB,mBAAmB;EACnB,SAAS;AACX;AACA;EACE,sBAAsB;EACtB,WAAW;EACX,aAAa;EACb,sBAAsB;EACtB,aAAa;EACb,OAAO;EACP,mBAAmB;AACrB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,mCAAmC;AACrC;AACA;AACA;IACI,oEAAoE;AACxE;AACA;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,gBAAgB;AAClB\",\"sourcesContent\":[\"/*!\\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\\n * SPDX-License-Identifier: AGPL-3.0-or-later\\n */\\n.toastify.dialogs {\\n  min-width: 200px;\\n  background: none;\\n  background-color: var(--color-main-background);\\n  color: var(--color-main-text);\\n  box-shadow: 0 0 6px 0 var(--color-box-shadow);\\n  padding: 0 12px;\\n  margin-top: 45px;\\n  position: fixed;\\n  z-index: 10100;\\n  border-radius: var(--border-radius);\\n  display: flex;\\n  align-items: center;\\n}\\n.toastify.dialogs .toast-undo-container {\\n  display: flex;\\n  align-items: center;\\n}\\n.toastify.dialogs .toast-undo-button,\\n.toastify.dialogs .toast-close {\\n  position: static;\\n  overflow: hidden;\\n  box-sizing: border-box;\\n  min-width: 44px;\\n  height: 100%;\\n  padding: 12px;\\n  white-space: nowrap;\\n  background-repeat: no-repeat;\\n  background-position: center;\\n  background-color: transparent;\\n  min-height: 0;\\n}\\n.toastify.dialogs .toast-undo-button.toast-close,\\n.toastify.dialogs .toast-close.toast-close {\\n  text-indent: 0;\\n  opacity: 0.4;\\n  border: none;\\n  min-height: 44px;\\n  margin-left: 10px;\\n  font-size: 0;\\n  /* dark theme overrides for Nextcloud 25 and later */\\n}\\n.toastify.dialogs .toast-undo-button.toast-close::before,\\n.toastify.dialogs .toast-close.toast-close::before {\\n  background-image: url(\\\"data:image/svg+xml,%3csvg%20viewBox='0%200%2016%2016'%20height='16'%20width='16'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3e%3cpath%20d='M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z'%20style='fill-rule:nonzero'%20transform='matrix(.85714%200%200%20.85714%20-2.286%20-2.286)'/%3e%3c/svg%3e\\\");\\n  content: \\\" \\\";\\n  filter: var(--background-invert-if-dark);\\n  display: inline-block;\\n  width: 16px;\\n  height: 16px;\\n}\\n.toastify.dialogs .toast-undo-button.toast-undo-button,\\n.toastify.dialogs .toast-close.toast-undo-button {\\n  margin: 3px;\\n  height: calc(100% - 2 * 3px);\\n  margin-left: 12px;\\n}\\n.toastify.dialogs .toast-undo-button:hover, .toastify.dialogs .toast-undo-button:focus, .toastify.dialogs .toast-undo-button:active,\\n.toastify.dialogs .toast-close:hover,\\n.toastify.dialogs .toast-close:focus,\\n.toastify.dialogs .toast-close:active {\\n  cursor: pointer;\\n  opacity: 1;\\n}\\n.toastify.dialogs.toastify-top {\\n  right: 10px;\\n}\\n.toastify.dialogs.toast-with-click {\\n  cursor: pointer;\\n}\\n.toastify.dialogs.toast-error {\\n  border-left: 3px solid var(--color-error);\\n}\\n.toastify.dialogs.toast-info {\\n  border-left: 3px solid var(--color-primary);\\n}\\n.toastify.dialogs.toast-warning {\\n  border-left: 3px solid var(--color-warning);\\n}\\n.toastify.dialogs.toast-success {\\n  border-left: 3px solid var(--color-success);\\n}\\n.toastify.dialogs.toast-undo {\\n  border-left: 3px solid var(--color-success);\\n}\\n\\n/* dark theme overrides for Nextcloud 24 and earlier */\\n.theme--dark .toastify.dialogs .toast-close {\\n  /* close icon style */\\n}\\n.theme--dark .toastify.dialogs .toast-close.toast-close::before {\\n  background-image: url(\\\"data:image/svg+xml,%3csvg%20viewBox='0%200%2016%2016'%20height='16'%20width='16'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3e%3cpath%20d='M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z'%20style='fill:%23fff;fill-rule:nonzero'%20transform='matrix(.85714%200%200%20.85714%20-2.286%20-2.286)'/%3e%3c/svg%3e\\\");\\n}\\n.nc-generic-dialog .dialog__actions {\\n\\tjustify-content: space-between;\\n\\tmin-width: calc(100% - 12px);\\n}\\n/*!\\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\\n * SPDX-License-Identifier: AGPL-3.0-or-later\\n */\\n/**\\n * Icon styling of the file list row preview or fallback icon\\n * (leading icon on the name row and header)\\n */\\n._file-picker__file-icon_19mjt_9 {\\n  width: 32px;\\n  height: 32px;\\n  min-width: 32px;\\n  min-height: 32px;\\n  background-repeat: no-repeat;\\n  background-size: contain;\\n  display: flex;\\n  justify-content: center;\\n}/*!\\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\\n * SPDX-License-Identifier: AGPL-3.0-or-later\\n */\\ntr.file-picker__row[data-v-15187afc] {\\n  height: var(--row-height, 50px);\\n}\\ntr.file-picker__row td[data-v-15187afc] {\\n  cursor: pointer;\\n  overflow: hidden;\\n  text-overflow: ellipsis;\\n  border-bottom: none;\\n}\\ntr.file-picker__row td.row-checkbox[data-v-15187afc] {\\n  padding: 0 2px;\\n}\\ntr.file-picker__row td[data-v-15187afc]:not(.row-checkbox) {\\n  padding-inline: 14px 0;\\n}\\ntr.file-picker__row td.row-size[data-v-15187afc] {\\n  text-align: end;\\n  padding-inline: 0 14px;\\n}\\ntr.file-picker__row td.row-name[data-v-15187afc] {\\n  padding-inline: 2px 0;\\n}\\n@keyframes gradient-15187afc {\\n0% {\\n    background-position: 0% 50%;\\n}\\n50% {\\n    background-position: 100% 50%;\\n}\\n100% {\\n    background-position: 0% 50%;\\n}\\n}\\n.loading-row .row-checkbox[data-v-15187afc] {\\n  text-align: center !important;\\n}\\n.loading-row span[data-v-15187afc] {\\n  display: inline-block;\\n  height: 24px;\\n  background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\\n  background-size: 600px 100%;\\n  border-radius: var(--border-radius);\\n  animation: gradient-15187afc 12s ease infinite;\\n}\\n.loading-row .row-wrapper[data-v-15187afc] {\\n  display: inline-flex;\\n  align-items: center;\\n}\\n.loading-row .row-checkbox span[data-v-15187afc] {\\n  width: 24px;\\n}\\n.loading-row .row-name span[data-v-15187afc]:last-of-type {\\n  margin-inline-start: 6px;\\n  width: 130px;\\n}\\n.loading-row .row-size span[data-v-15187afc] {\\n  width: 80px;\\n}\\n.loading-row .row-modified span[data-v-15187afc] {\\n  width: 90px;\\n}/*!\\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\\n * SPDX-License-Identifier: AGPL-3.0-or-later\\n */\\ntr.file-picker__row[data-v-cb12dccb] {\\n  height: var(--row-height, 50px);\\n}\\ntr.file-picker__row td[data-v-cb12dccb] {\\n  cursor: pointer;\\n  overflow: hidden;\\n  text-overflow: ellipsis;\\n  border-bottom: none;\\n}\\ntr.file-picker__row td.row-checkbox[data-v-cb12dccb] {\\n  padding: 0 2px;\\n}\\ntr.file-picker__row td[data-v-cb12dccb]:not(.row-checkbox) {\\n  padding-inline: 14px 0;\\n}\\ntr.file-picker__row td.row-size[data-v-cb12dccb] {\\n  text-align: end;\\n  padding-inline: 0 14px;\\n}\\ntr.file-picker__row td.row-name[data-v-cb12dccb] {\\n  padding-inline: 2px 0;\\n}\\n.file-picker__row--selected[data-v-cb12dccb] {\\n  background-color: var(--color-background-dark);\\n}\\n.file-picker__row[data-v-cb12dccb]:hover {\\n  background-color: var(--color-background-hover);\\n}\\n.file-picker__name-container[data-v-cb12dccb] {\\n  display: flex;\\n  justify-content: start;\\n  align-items: center;\\n  height: 100%;\\n}\\n.file-picker__file-name[data-v-cb12dccb] {\\n  padding-inline-start: 6px;\\n  min-width: 0;\\n  overflow: hidden;\\n  text-overflow: ellipsis;\\n}\\n.file-picker__file-extension[data-v-cb12dccb] {\\n  color: var(--color-text-maxcontrast);\\n  min-width: fit-content;\\n}.file-picker__header-preview[data-v-006fdbd0] {\\n  width: 22px;\\n  height: 32px;\\n  flex: 0 0 auto;\\n}\\n.file-picker__files[data-v-006fdbd0] {\\n  margin: 2px;\\n  margin-inline-start: 12px;\\n  overflow: scroll auto;\\n}\\n.file-picker__files table[data-v-006fdbd0] {\\n  width: 100%;\\n  max-height: 100%;\\n  table-layout: fixed;\\n}\\n.file-picker__files th[data-v-006fdbd0] {\\n  position: sticky;\\n  z-index: 1;\\n  top: 0;\\n  background-color: var(--color-main-background);\\n  padding: 2px;\\n}\\n.file-picker__files th .header-wrapper[data-v-006fdbd0] {\\n  display: flex;\\n}\\n.file-picker__files th.row-checkbox[data-v-006fdbd0] {\\n  width: 44px;\\n}\\n.file-picker__files th.row-name[data-v-006fdbd0] {\\n  width: 230px;\\n}\\n.file-picker__files th.row-size[data-v-006fdbd0] {\\n  width: 100px;\\n}\\n.file-picker__files th.row-modified[data-v-006fdbd0] {\\n  width: 120px;\\n}\\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue__wrapper {\\n  justify-content: start;\\n  flex-direction: row-reverse;\\n}\\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue {\\n  padding-inline: 16px 4px;\\n}\\n.file-picker__files th.row-size[data-v-006fdbd0] .button-vue__wrapper {\\n  justify-content: end;\\n}\\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper {\\n  color: var(--color-text-maxcontrast);\\n}\\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper .button-vue__text {\\n  font-weight: normal;\\n}.file-picker__breadcrumbs[data-v-b357227a] {\\n  flex-grow: 0 !important;\\n}.file-picker__side[data-v-b42054b8] {\\n  display: flex;\\n  flex-direction: column;\\n  align-items: stretch;\\n  gap: 0.5rem;\\n  min-width: 200px;\\n  padding: 2px;\\n  margin-block-start: 7px;\\n  overflow: auto;\\n}\\n.file-picker__side[data-v-b42054b8] .button-vue__wrapper {\\n  justify-content: start;\\n}\\n.file-picker__filter-input[data-v-b42054b8] {\\n  margin-block: 7px;\\n  max-width: 260px;\\n}\\n@media (max-width: 736px) {\\n.file-picker__side[data-v-b42054b8] {\\n    flex-direction: row;\\n    min-width: unset;\\n}\\n}\\n@media (max-width: 512px) {\\n.file-picker__side[data-v-b42054b8] {\\n    flex-direction: row;\\n    min-width: unset;\\n}\\n.file-picker__filter-input[data-v-b42054b8] {\\n    max-width: unset;\\n}\\n}/* Ensure focus outline is visible */\\n.file-picker__navigation {\\n  padding-inline: 8px 2px;\\n}\\n.file-picker__navigation, .file-picker__navigation * {\\n  box-sizing: border-box;\\n}\\n.file-picker__navigation .v-select.select {\\n  min-width: 220px;\\n}\\n@media (min-width: 513px) and (max-width: 736px) {\\n.file-picker__navigation {\\n    gap: 11px;\\n}\\n}\\n@media (max-width: 512px) {\\n.file-picker__navigation {\\n    flex-direction: column-reverse !important;\\n}\\n}.file-picker__view[data-v-20b719ba] {\\n  height: 50px;\\n  display: flex;\\n  justify-content: start;\\n  align-items: center;\\n}\\n.file-picker__view h3[data-v-20b719ba] {\\n  font-weight: bold;\\n  height: fit-content;\\n  margin: 0;\\n}\\n.file-picker__main[data-v-20b719ba] {\\n  box-sizing: border-box;\\n  width: 100%;\\n  display: flex;\\n  flex-direction: column;\\n  min-height: 0;\\n  flex: 1;\\n  padding-inline: 2px;\\n}\\n.file-picker__main *[data-v-20b719ba] {\\n  box-sizing: border-box;\\n}\\n[data-v-20b719ba] .file-picker {\\n  height: min(80vh, 800px) !important;\\n}\\n@media (max-width: 512px) {\\n[data-v-20b719ba] .file-picker {\\n    height: calc(100% - 16px - var(--default-clickable-area)) !important;\\n}\\n}\\n[data-v-20b719ba] .file-picker__content {\\n  display: flex;\\n  flex-direction: column;\\n  overflow: hidden;\\n}\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\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-77111ada]{flex:1 1 100% !important;width:100%;height:100%;margin-block:0;margin-inline:10px}.files-list__breadcrumbs[data-v-77111ada]  a{cursor:pointer !important}.files-list__breadcrumbs--with-progress[data-v-77111ada]{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-2b498b48]{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-2b498b48]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-2b498b48]{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-04e52abc]{color:#a08b00;min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-04e52abc]  svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-04e52abc]  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,aAAA,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: #a08b00;\\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-0bcaefce] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-0bcaefce] .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-68d3de81]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-68d3de81]{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-91476734]{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-097f69d4]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-097f69d4]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-097f69d4]{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-097f69d4]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-097f69d4]{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-1e2b43b6]{--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-1e2b43b6]  tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-1e2b43b6]  tbody tr{contain:strict}.files-list[data-v-1e2b43b6]  tbody tr:hover,.files-list[data-v-1e2b43b6]  tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-1e2b43b6]  .files-list__before{display:flex;flex-direction:column}.files-list[data-v-1e2b43b6]  .files-list__selected{padding-right:12px;white-space:nowrap}.files-list[data-v-1e2b43b6]  .files-list__table{display:block}.files-list[data-v-1e2b43b6]  .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__thead,.files-list[data-v-1e2b43b6]  .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-1e2b43b6]  .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-1e2b43b6]  .files-list__tfoot{min-height:300px}.files-list[data-v-1e2b43b6]  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-1e2b43b6]  td,.files-list[data-v-1e2b43b6]  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-1e2b43b6]  td span,.files-list[data-v-1e2b43b6]  th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-checkbox{justify-content:center}.files-list[data-v-1e2b43b6]  .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-1e2b43b6]  .files-list__row:hover,.files-list[data-v-1e2b43b6]  .files-list__row:focus,.files-list[data-v-1e2b43b6]  .files-list__row:active,.files-list[data-v-1e2b43b6]  .files-list__row--active,.files-list[data-v-1e2b43b6]  .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-1e2b43b6]  .files-list__row:hover>*,.files-list[data-v-1e2b43b6]  .files-list__row:focus>*,.files-list[data-v-1e2b43b6]  .files-list__row:active>*,.files-list[data-v-1e2b43b6]  .files-list__row--active>*,.files-list[data-v-1e2b43b6]  .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-1e2b43b6]  .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-1e2b43b6]  .files-list__row--dragover *{pointer-events:none}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon *{cursor:pointer}.files-list[data-v-1e2b43b6]  .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon>span.folder-icon,.files-list[data-v-1e2b43b6]  .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-1e2b43b6]  .files-list__row-icon>span.folder-icon svg,.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-1e2b43b6]  .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-1e2b43b6]  .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-1e2b43b6]  .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-1e2b43b6]  .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-1e2b43b6]  .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-1e2b43b6]  .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-1e2b43b6]  .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-1e2b43b6]  .files-list__row-actions{width:auto}.files-list[data-v-1e2b43b6]  .files-list__row-actions~td,.files-list[data-v-1e2b43b6]  .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-1e2b43b6]  .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-1e2b43b6]  .files-list__row-action--inline{margin-right:7px}.files-list[data-v-1e2b43b6]  .files-list__row-mtime,.files-list[data-v-1e2b43b6]  .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-1e2b43b6]  .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-1e2b43b6]  .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-1e2b43b6]  .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-139727ec]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-139727ec]{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-139727ec]{flex:0 0}.files-list__header-share-button[data-v-139727ec]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-139727ec]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-139727ec]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-139727ec]{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-d0bcf126] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-d0bcf126] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-d0bcf126]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-d0bcf126]{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-109572de]: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","/*! 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","'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","// 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","\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 GetText from 'node-gettext';\nimport '@nextcloud/router';\nimport 'dompurify';\nimport 'escape-html';\n\n/**\n * Returns the user's locale\n */\n/**\n * Returns the user's language\n */\nfunction getLanguage() {\n    return document.documentElement.lang || 'en';\n}\n\n/**\n * This module provides functionality to translate applications independent from Nextcloud\n *\n * @packageDocumentation\n * @module @nextcloud/l10n/gettext\n * @example\n * ```js\nimport { getGettextBuilder } from '@nextcloud/l10n/gettext'\nconst gt = getGettextBuilder()\n            .detectLocale() // or use setLanguage()\n            .addTranslation(/* ... *\\/)\n            .build()\ngt.gettext('some string to translate')\n```\n */\n/**\n * @notExported\n */\nclass GettextBuilder {\n    constructor() {\n        this.translations = {};\n        this.debug = false;\n    }\n    setLanguage(language) {\n        this.locale = language;\n        return this;\n    }\n    /** Try to detect locale from context with `en` as fallback value */\n    detectLocale() {\n        return this.setLanguage(getLanguage().replace('-', '_'));\n    }\n    addTranslation(language, data) {\n        this.translations[language] = data;\n        return this;\n    }\n    enableDebugMode() {\n        this.debug = true;\n        return this;\n    }\n    build() {\n        return new GettextWrapper(this.locale || 'en', this.translations, this.debug);\n    }\n}\n/**\n * @notExported\n */\nclass GettextWrapper {\n    constructor(locale, data, debug) {\n        this.gt = new GetText({\n            debug,\n            sourceLocale: 'en',\n        });\n        for (const key in data) {\n            this.gt.addTranslations(key, 'messages', data[key]);\n        }\n        this.gt.setLocale(locale);\n    }\n    subtitudePlaceholders(translated, vars) {\n        return translated.replace(/{([^{}]*)}/g, (a, b) => {\n            const r = vars[b];\n            if (typeof r === 'string' || typeof r === 'number') {\n                return r.toString();\n            }\n            else {\n                return a;\n            }\n        });\n    }\n    /**\n     * Get translated string (singular form), optionally with placeholders\n     *\n     * @param original original string to translate\n     * @param placeholders map of placeholder key to value\n     */\n    gettext(original, placeholders = {}) {\n        return this.subtitudePlaceholders(this.gt.gettext(original), placeholders);\n    }\n    /**\n     * Get translated string with plural forms\n     *\n     * @param singular Singular text form\n     * @param plural Plural text form to be used if `count` requires it\n     * @param count The number to insert into the text\n     * @param placeholders optional map of placeholder key to value\n     */\n    ngettext(singular, plural, count, placeholders = {}) {\n        return this.subtitudePlaceholders(this.gt.ngettext(singular, plural, count).replace(/%n/g, count.toString()), placeholders);\n    }\n}\n/**\n * Create a new GettextBuilder instance\n */\nfunction getGettextBuilder() {\n    return new GettextBuilder();\n}\n\nexport { getGettextBuilder };\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=\" + {\"4065\":\"abd7c824140bd19a80a0\",\"4254\":\"96661b9f421b07ce7189\",\"6075\":\"b44c648f2d05e59d9999\"}[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__(27048)))\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","activePinia","setActivePinia","pinia","piniaSymbol","Symbol","isPlainObject","o","toString","toJSON","MutationType","IS_CLIENT","window","USE_DEVTOOLS","__VUE_PROD_DEVTOOLS__","_global","self","global","globalThis","HTMLElement","download","url","opts","xhr","XMLHttpRequest","open","responseType","onload","saveAs","response","onerror","console","error","send","corsEnabled","e","status","click","node","dispatchEvent","MouseEvent","document","createEvent","initMouseEvent","_navigator","navigator","userAgent","isMacOSWebView","test","HTMLAnchorElement","blob","a","createElement","rel","href","origin","location","target","URL","createObjectURL","setTimeout","revokeObjectURL","msSaveOrOpenBlob","autoBom","type","Blob","String","fromCharCode","bom","popup","title","body","innerText","force","isSafari","isChromeIOS","FileReader","reader","onloadend","result","Error","replace","assign","readAsDataURL","toastMessage","message","piniaMessage","__VUE_DEVTOOLS_TOAST__","warn","log","isPinia","checkClipboardAccess","checkNotFocusedError","toLowerCase","includes","fileInput","loadStoresState","state","key","storeState","value","formatDisplay","display","_custom","PINIA_ROOT_LABEL","PINIA_ROOT_ID","formatStoreForInspectorTree","store","id","label","$id","formatEventData","isArray","reduce","data","keys","operations","oldValue","newValue","operation","formatMutationType","direct","patchFunction","patchObject","isTimelineActive","componentStateTypes","MUTATIONS_LAYER_ID","INSPECTOR_ID","assign$1","getStoreType","registerPiniaDevtools","app","logo","packageName","homepage","api","now","addTimelineLayer","color","addInspector","icon","treeFilterPlaceholder","actions","action","async","clipboard","writeText","JSON","stringify","actionGlobalCopyState","tooltip","parse","readText","actionGlobalPasteState","sendInspectorTree","sendInspectorState","actionGlobalSaveState","accept","Promise","resolve","reject","onchange","files","file","item","text","oncancel","actionGlobalOpenStateFile","nodeActions","nodeId","_s","get","$reset","inspectComponent","payload","ctx","proxy","componentInstance","_pStores","piniaStores","values","forEach","instanceData","editable","_isOptionsAPI","$state","_getters","getters","getInspectorTree","inspectorId","stores","from","rootNodes","filter","map","getInspectorState","inspectedStore","storeNames","storeMap","storeId","getterName","_customProperties","size","customProperties","formatStoreForInspectorState","editInspectorState","path","unshift","set","editComponentState","startsWith","activeAction","runningActionId","patchActionForGrouping","actionNames","wrapWithProxy","storeActions","actionName","_actionId","trackedStore","Proxy","Reflect","retValue","devtoolsPlugin","options","originalHotUpdate","_hotUpdate","newStore","_hmrPayload","settings","logStoreChanges","defaultValue","bind","Date","$onAction","after","onError","groupId","addTimelineEvent","layerId","time","subtitle","logType","notifyComponentUpdate","deep","$subscribe","eventData","detached","flush","hotUpdate","info","$dispose","getSettings","addStoreToDevtools","noop","addSubscription","subscriptions","callback","onCleanup","removeSubscription","idx","indexOf","splice","triggerSubscriptions","fallbackRunWithContext","mergeReactiveObjects","patchToApply","Map","Set","add","subPatch","targetValue","skipHydrateSymbol","skipHydrateMap","WeakMap","createSetupStore","setup","hot","isOptionsStore","scope","optionsForPlugin","$subscribeOptions","isListening","isSyncListening","debuggerEvents","actionSubscriptions","initialState","hotState","activeListener","$patch","partialStateOrMutator","subscriptionMutation","myListenerId","then","newState","wrapAction","afterCallbackList","onErrorCallbackList","ret","catch","partialStore","_p","stopWatcher","run","stop","delete","_r","setupStore","_a","runWithContext","_e","prop","effect","obj","actionValue","defineProperty","nonEnumerable","writable","configurable","enumerable","p","extender","extensions","hydrate","defineStore","idOrOptions","setupOptions","isSetupStore","useStore","hasContext","localState","computedGetters","createOptionsStore","toBeInstalled","install","provide","config","globalProperties","$pinia","plugin","use","createPinia","token","singleMatcher","RegExp","multiMatcher","decodeComponents","components","split","decodeURIComponent","join","left","right","decode","input","tokens","match","splitOnFirst","string","separator","separatorIndex","includeKeys","object","predicate","descriptor","getOwnPropertyDescriptor","ownKeys","isNullOrUndefined","strictUriEncode","encodeURIComponent","x","charCodeAt","toUpperCase","encodeFragmentIdentifier","validateArrayFormatSeparator","encode","strict","encodedURI","replaceMap","exec","entries","customDecodeURIComponent","keysSorter","sort","b","Number","removeHash","hashStart","parseValue","parseNumbers","isNaN","trim","parseBooleans","extract","queryStart","query","arrayFormat","arrayFormatSeparator","formatter","accumulator","isEncodedArray","arrayValue","flat","parserForArrayFormat","returnValue","parameter","parameter_","key2","value2","Boolean","shouldFilter","skipNull","skipEmptyString","index","keyValueSep","encoderForArrayFormat","objectCopy","parseUrl","url_","hash","parseFragmentIdentifier","fragmentIdentifier","stringifyUrl","queryString","getHash","urlObjectForFragmentEncode","pick","exclude","Vue","Router","originalPush","to","onComplete","onAbort","err","mode","base","generateUrl","linkActiveClass","routes","redirect","params","view","props","stringifyQuery","emits","fillColor","default","_vm","_c","_self","_b","staticClass","attrs","$event","$emit","$attrs","_v","throttle","delay","timeoutID","_ref","_ref$noTrailing","noTrailing","_ref$noLeading","noLeading","_ref$debounceMode","debounceMode","cancelled","lastExec","clearExistingTimeout","clearTimeout","wrapper","_len","arguments_","_key","elapsed","clear","cancel","_ref2$upcomingOnly","upcomingOnly","getLoggerBuilder","setApp","detectUser","build","ChartPie","NcAppNavigationItem","NcProgressBar","loadingStorageStats","storageStats","loadState","computed","storageStatsTitle","_this$storageStats","_this$storageStats2","_this$storageStats3","usedQuotaByte","formatFileSize","used","quotaByte","quota","t","storageStatsTooltip","relative","beforeMount","setInterval","throttleUpdateStorageStats","subscribe","mounted","_this$storageStats4","_this$storageStats5","free","showStorageFullWarning","methods","debounceUpdateStorageStats","_ref$atBegin","atBegin","updateStorageStats","_response$data","_this$storageStats6","_response$data$data","_response$data$data2","axios","logger","showError","translate","styleTagTransform","setAttributes","insert","domAPI","insertStyleElement","locals","class","stopPropagation","preventDefault","slot","Math","min","el","Function","required","$el","appendChild","userConfig","show_hidden","crop_image_previews","sort_favorites_first","sort_folders_first","grid_view","useUserConfigStore","userConfigStore","onUpdate","update","put","_initialized","Clipboard","NcAppSettingsDialog","NcAppSettingsSection","NcCheckboxRadioSwitch","NcInputField","Setting","_window$OCA","_getCurrentUser","_loadState$enable_non","OCA","Files","Settings","webdavUrl","generateRemoteUrl","getCurrentUser","uid","webdavDocs","appPasswordUrl","webdavUrlCopied","enableGridView","setting","beforeDestroy","close","onClose","setConfig","copyCloudId","querySelector","select","showSuccess","_l","scopedSlots","_u","useNavigation","navigation","getNavigation","views","shallowRef","currentView","active","onUpdateActive","detail","onUpdateViews","onMounted","addEventListener","onUnmounted","removeEventListener","viewConfig","useViewConfigStore","getConfig","setSortingBy","toggleSortingDirection","newDirection","sorting_direction","viewConfigStore","defineComponent","IconCog","NavigationQuota","NcAppNavigation","NcIconSvgWrapper","SettingsModal","settingsOpened","currentViewId","_this$$route","$route","parentViews","parent","order","childViews","list","watch","newView","oldView","_this$currentView","find","showView","debug","_ref2","useExactRouteMatching","_this$childViews$view","_window$OCA$close","Sidebar","$navigation","setActive","onToggleExpand","isExpanded","expanded","_this$viewConfigStore","generateToNavigation","dir","openSettings","onSettingsClose","_setupProxy","iconClass","sticky","child","FileAction","displayName","iconSvgInline","InformationSvg","enabled","nodes","_window","_nodes$0$root","root","permissions","Permission","NONE","OCP","goToRoute","fileid","rootPath","defaultRootUrl","getClient","rootUrl","client","createClient","setHeaders","requesttoken","onRequestTokenUpdate","getRequestToken","getPatcher","patch","headers","method","fetch","fetchNode","propfindPayload","davGetDefaultPropfind","stat","davRootPath","details","davResultToNode","useFilesStore","fileStore","roots","getNode","source","getNodes","sources","getNodesById","fileId","getRoot","service","updateNodes","acc","deleteNodes","setRoot","onDeletedNode","onCreatedNode","onUpdatedNode","all","n","usePathsStore","pathsStore","paths","getPath","addPath","_getNavigation","FileType","Folder","dirname","_children","parentSource","parentFolder","useSelectionStore","selected","lastSelection","lastSelectedIndex","selection","setLastIndex","reset","uploader","useUploaderStore","getUploader","queue","toISOString","Directory","File","constructor","contents","super","_contents","_computeDirectorySize","lastModified","_computeDirectoryMtime","directory","entry","traverseTree","isFile","readDirectory","dirReader","createReader","getEntries","readEntries","results","createDirectoryIfNotExists","davClient","davGetClient","exists","absolutePath","createDirectory","recursive","resolveConflict","destination","conflicts","basename","uploads","renamed","openConflictPicker","showInfo","getQueue","PQueue","concurrency","MoveCopyAction","canMove","ALL","UPDATE","canCopy","every","_node$attributes$shar","_node$attributes","attributes","some","attribute","canDownload","hashCode","str","resultToNode","userId","davParsePermissions","owner","filename","nodeData","mtime","lastmod","mime","hasPreview","failed","getActionForNodes","MOVE_OR_COPY","MOVE","COPY","handleCopyMoveNodeTo","overwrite","NodeStatus","LOADING","copySuffix","currentPath","destinationPath","otherNodes","getDirectoryContents","getUniqueName","suffix","ignoreFileExtension","copyFile","controller","AbortController","CancelablePromise","onCancel","abort","contentsResponse","includeSelf","signal","folder","getContents","hasConflict","moveFile","AxiosError","_error$response","_error$response2","_error$response3","openFilePickerForAction","fileIDs","filePicker","getFilePickerBuilder","allowDirectories","setFilter","setMimeTypeFilter","setMultiSelect","startAt","setButtonFactory","buttons","dirnames","escape","sanitize","CopyIconSvg","FolderMoveSvg","FilePickerClosed","_node$root","execBatch","promises","dataTransferToFileTree","items","kind","_item$getAsEntry","_item$getAsEntry2","_item$webkitGetAsEntr","getAsEntry","webkitGetAsEntry","warned","fileTree","DataTransferItem","getAsFile","showWarning","onDropExternalFiles","uploadDirectoryContents","relativePath","joinPaths","upload","pause","start","errors","allSettled","onDropInternalFiles","isCopy","useDragAndDropStore","dragging","extend","filesListWidth","_fileListEl$clientWid","fileListEl","clientWidth","$resizeObserver","ResizeObserver","contentRect","width","observe","disconnect","NcBreadcrumbs","NcBreadcrumb","mixins","filesListWidthMixin","draggingStore","filesStore","selectionStore","uploaderStore","dirs","sections","getFileSourceFromPath","getNodeFromSource","exact","getDirDisplayName","disableDrop","isUploadInProgress","wrapUploadProgressBar","viewIcon","_this$currentView$ico","selectedFiles","draggingFiles","_this$$navigation","displayname","onClick","_to$query","onDragOver","dataTransfer","ctrlKey","dropEffect","onDrop","_event$dataTransfer","_event$dataTransfer2","_this$currentView2","canDrop","CREATE","button","titleForSection","section","_section$to","ariaForSection","_section$to2","_t","nativeOn","getSummaryFor","fileCount","folderCount","useActionsMenuStore","opened","useRenamingStore","renamingStore","renamingNode","newName","FileMultipleIcon","FolderIcon","isSingleNode","isSingleFolder","summary","totalSize","total","parseInt","$refs","previewImg","replaceChildren","preview","parentNode","cloneNode","$nextTick","ref","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","extname","ext","isSelected","isRenaming","isRenamingSmallScreen","isActive","canDrag","openedMenu","actionsMenuStore","resetState","_this$$refs","_this$$refs$reset","onRightClick","_this$$el2","closest","style","removeProperty","_this$$el","getBoundingClientRect","setProperty","max","clientX","clientY","top","isMoreThanOneSelected","execDefaultAction","metaKey","openDetailsIfAvailable","_sidebarAction$enable","sidebarAction","onDragLeave","currentTarget","contains","relatedTarget","onDragStart","_event$dataTransfer$c","clearData","image","$mount","$on","$off","getDragAndDropPreview","setDragImage","onDragEnd","_event$dataTransfer3","_event$dataTransfer4","render","updateRootElement","element","getFileActions","ArrowLeftIcon","CustomElementRender","NcActionButton","NcActions","NcActionSeparator","NcLoadingIcon","openedSubmenu","enabledActions","enabledInlineActions","_action$inline","inline","enabledRenderActions","renderInline","enabledDefaultActions","enabledMenuActions","DefaultType","HIDDEN","findIndex","topActionsIds","enabledSubmenuActions","arr","getBoundariesElement","mountType","actionDisplayName","onActionClick","isSubmenu","$set","success","isMenu","_this$enabledSubmenuA","onBackToMenuClick","menuAction","_menuAction$$el$query","focus","_vm$openedSubmenu","_vm$openedSubmenu2","_action$title","refInFor","_action$title2","keyboardStore","altKey","shiftKey","onEvent","useKeyboardStore","ariaLabel","onSelectionChange","_this$keyboardStore","newSelectedIndex","isAlreadySelected","end","filesToSelect","resetSelection","_k","keyCode","forbiddenCharacters","NcTextField","renameLabel","linkTo","_this$$parent","is","$parent","role","tabindex","READ","immediate","handler","renaming","startRenaming","checkInputValidity","_this$newName$trim","_this$newName","isFileNameValid","setCustomValidity","reportValidity","trimmedName","char","OC","blacklist_files_regex","checkIfNodeExists","_this$$refs$renameInp","extLength","renameInput","inputField","setSelectionRange","Event","stopRenaming","onRename","_this$newName$trim2","_this$newName2","oldName","oldEncodedSource","encodedSource","rename","Destination","Overwrite","directives","rawName","expression","tag","domProps","StarSvg","_el$setAttribute","setAttribute","AccountGroupIcon","AccountPlusIcon","CollectivesIcon","FavoriteIcon","FileIcon","FolderOpenIcon","KeyIcon","LinkIcon","NetworkIcon","TagIcon","backgroundFailed","_this$source$toString","isFavorite","favorite","cropPreviews","previewUrl","searchParams","fileOverlay","PlayCircleIcon","folderOverlay","_this$source2","_this$source3","_this$source4","_this$source5","shareTypes","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","mtimeOpacity","_this$source$mtime","_this$source$mtime$ge","maxOpacityTime","getTime","mtimeTitle","moment","format","_g","column","_vm$currentView","inheritAttrs","header","currentFolder","updated","mount","_this$currentFolder","classForColumn","_column$summary","keysOrMapper","reduced","storeKey","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","pop","random","substr","totalRowCount","tbodyStyle","isOverScrolled","lastIndex","hiddenAfterItems","paddingTop","paddingBottom","minHeight","scrollTo","oldColumnCount","_this$$refs2","before","thead","debounce","_before$clientHeight","_thead$clientHeight","_root$clientHeight","clientHeight","onScroll","passive","targetRow","scrollTop","_this$_onScrollHandle","_onScrollHandle","requestAnimationFrame","topScroll","$scopedSlots","areSomeNodesLoading","inlineActions","selectionSources","failedSources","FilesListHeader","FilesListTableFooter","FilesListTableHeader","VirtualList","FilesListTableHeaderActions","View","FileEntry","FileEntryGrid","getFileListHeaders","openFileId","openFile","openfile","sortedHeaders","defaultCaption","viewCaption","sortableCaption","virtualListNote","scrollToFile","handleOpenFile","openSidebarForFile","documentElement","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","$router","isSharingEnabled","_getCapabilities","getCapabilities","files_sharing","BreadCrumbs","DragAndDropNotice","FilesListVirtual","ListViewIcon","NcAppContent","NcEmptyContent","PlusIcon","UploadPicker","ViewGridIcon","filterText","promise","unsubscribeStoreCallback","pageHeading","_this$currentView$nam","_this$$route$params$f","_this$$route2","number","sortingParameters","v","_v$attributes","_v$attributes2","dirContentsSorted","_this$currentView3","filteredDirContent","dirContents","customColumn","reverse","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","Link","User","gridViewButtonLabel","_this$currentFolder4","canShare","SHARE","onSearch","searchEvent","resetSearch","fetchContent","newDir","oldDir","filesListVirtual","onNodeDeleted","unmounted","unsubscribe","_this$currentFolder5","_this$currentFolder$d","_this$currentFolder6","onUpload","_this$currentFolder7","onUploadFail","_upload$response2","parser","Parser","explicitRoot","parseStringPromise","_this$currentFolder8","openSharingSidebar","setActiveTab","toggleGridView","_vm$currentView2","emptyTitle","emptyCaption","NcContent","FilesList","Navigation","__webpack_nonce__","btoa","_window$OCA$Files","_window$OCP$Files","router","_router","currentRoute","goTo","_Vue","mixin","beforeCreate","$options","_provided","provideCache","destroyed","observable","_settings","register","_defineProperty","_name","_el","_open","_close","FilesApp","___CSS_LOADER_URL_IMPORT_0___","___CSS_LOADER_URL_IMPORT_1___","___CSS_LOADER_EXPORT___","___CSS_LOADER_URL_REPLACEMENT_0___","___CSS_LOADER_URL_REPLACEMENT_1___","ReflectOwnKeys","R","ReflectApply","receiver","getOwnPropertyNames","NumberIsNaN","init","errorListener","resolver","eventTargetAgnosticAddListener","flags","addErrorHandlerIfEventEmitter","_maxListeners","defaultMaxListeners","checkListener","_getMaxListeners","that","_addListener","prepend","m","existing","warning","newListener","w","onceWrapper","fired","wrapFn","_onceWrap","wrapped","_listeners","unwrap","evlistener","unwrapListeners","arrayClone","copy","wrapListener","arg","RangeError","getPrototypeOf","setMaxListeners","getMaxListeners","doError","er","prependListener","prependOnceListener","position","originalListener","shift","spliceOne","rawListeners","buffer","Buffer","copyProps","dst","SafeBuffer","encodingOrOffset","alloc","allocUnsafe","allocUnsafeSlow","fill","encoding","buf","SlowBuffer","sax","opt","SAXParser","SAXStream","createStream","MAX_BUFFER_LENGTH","Stream","buffers","clearBuffers","q","c","bufferCheckPosition","lowercase","lowercasetags","looseCase","tags","closed","closedRoot","sawRoot","noscript","S","BEGIN","strictEntities","ENTITIES","XML_ENTITIES","attribList","xmlns","ns","rootNS","trackPosition","line","EVENTS","F","write","chunk","charAt","BEGIN_WHITESPACE","beginWhiteSpace","TEXT","starti","textNode","substring","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","resume","ex","streamWraps","ev","_parser","readable","me","onend","_decoder","h","isBuffer","SD","XML_NAMESPACE","XMLNS_NAMESPACE","xml","regex","stringFromCharCode","fromCodePoint","s","STATE","COMMENT_STARTING","nodeType","normalize","qname","qualName","local","qn","selfClosing","uri","nv","isSelfClosing","closeTo","num","entityLC","numStr","highSurrogate","lowSurrogate","codeUnits","codePoint","isFinite","setImmediate","registerImmediate","html","channel","messagePrefix","onGlobalMessage","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","process","handle","nextTick","runIfPresent","postMessage","importScripts","postMessageIsAsynchronous","oldOnMessage","onmessage","canUsePostMessage","attachEvent","MessageChannel","port1","port2","onreadystatechange","removeChild","task","clearImmediate","g","def","d","RC","autostart","ignoreSameProgress","rate","lastTimestamp","lastProgress","historyTimeConstant","previousOutput","dt","report","progress","timestamp","deltaTimestamp","currentRate","estimate","Infinity","estimatedTime","inherits","Readable","Writable","Duplex","Transform","PassThrough","finished","pipeline","pipe","dest","ondata","ondrain","_isStdio","onclose","didOnEnd","destroy","cleanup","codes","createErrorType","code","Base","NodeError","_Base","subClass","superClass","arg1","arg2","arg3","getMessage","oneOf","expected","thing","actual","determiner","search","msg","this_len","endsWith","objectKeys","allowHalfOpen","_writableState","ended","onEndNT","highWaterMark","getBuffer","_readableState","_transform","cb","ReadableState","EElistenerCount","OurUint8Array","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","pipes","pipesCount","flowing","endEmitted","reading","sync","needReadable","emittedReadable","readableListening","resumeScheduled","paused","emitClose","autoDestroy","defaultEncoding","awaitDrain","readingMore","decoder","read","_read","_destroy","readableAddChunk","addToFront","skipChunkCheck","emitReadable","emitReadable_","onEofChunk","chunkInvalid","_uint8ArrayToBuffer","addChunk","maybeReadMore","_undestroy","undestroy","isPaused","setEncoding","enc","head","content","next","MAX_HWM","howMuchToRead","computeNewHighWaterMark","flow","maybeReadMore_","updateReadableListening","nReadingNextTick","resume_","fromList","first","consume","endReadable","endReadableNT","wState","xs","nOrig","doRead","pipeOpts","endFn","stdout","stderr","unpipe","onunpipe","unpipeInfo","hasUnpiped","onfinish","cleanedUp","needDrain","pipeOnDrain","dests","res","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","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","current","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","iterator","enumerableOnly","symbols","sym","_objectSpread","getOwnPropertyDescriptors","defineProperties","_defineProperties","inspect","custom","instance","Constructor","_classCallCheck","tail","protoProps","offset","hasStrings","_getString","_getBuffer","nb","depth","customInspect","emitErrorAndCloseNT","emitErrorNT","emitCloseNT","readableDestroyed","writableDestroyed","ERR_STREAM_PREMATURE_CLOSE","eos","called","onlegacyfinish","writableEnded","readableEnded","onrequest","req","setHeader","isRequest","ERR_MISSING_ARGS","streams","popCallback","destroys","destroyer","ERR_INVALID_OPT_VALUE","duplexKey","hwm","highWaterMarkFrom","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","val","trace","stripBOM","builder","defaults","escapeCDATA","requiresCDATA","wrapCDATA","hasProp","Builder","buildObject","rootObj","attrkey","charkey","rootElement","rootName","attr","raw","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","isEmpty","processItem","processors","parseString","assignOrPush","processAsync","xmlnskey","ctor","__super__","remaining","saxParser","error1","errThrown","ontext","stack","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","isObject","proto","valueOf","None","OpenTag","InsideTag","CloseTag","NodeType","XMLAttribute","debugInfo","attValue","isId","schemaTypeInfo","clone","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","version","createDocumentType","qualifiedName","publicId","systemId","createDocument","createHTMLDocument","getFeature","XMLDTDAttList","elementName","attributeName","attributeType","defaultValueType","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","children","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","getElementById","elementId","adoptNode","normalizeDocument","renameNode","getElementsByClassName","classNames","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","getAttribute","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","prev","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","pretty","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","CancelError","reason","isCanceled","promiseState","freeze","pending","canceled","resolved","rejected","PCancelable","userFunction","executor","description","shouldReject","boolean","onFulfilled","onRejected","onFinally","finally","TimeoutError","AbortError","getDOMException","errorMessage","DOMException","getAbortedReason","PriorityQueue","enqueue","priority","array","comparator","step","trunc","it","lowerBound","dequeue","carryoverConcurrencyCount","intervalCap","POSITIVE_INFINITY","interval","autoStart","queueClass","throwOnTimeout","canInitializeInterval","job","newConcurrency","_resolve","function_","throwIfAborted","milliseconds","fallback","customTimers","timer","cancelablePromise","sign","aborted","timeoutError","pTimeout","race","addAll","functions","onEmpty","onSizeLessThan","limit","onIdle","sizeBy","GettextWrapper","locale","gt","sourceLocale","addTranslations","setLocale","subtitudePlaceholders","translated","vars","gettext","original","placeholders","ngettext","singular","plural","A","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","setUid","I","IDLE","PAUSED","N","_destinationFolder","_isPublic","_uploadQueue","_jobQueue","_queueSize","_queueProgress","_queueStatus","_notifiers","isPublic","maxChunksSize","updateStats","addNotifier","f","T","U","L","bytes","D","W","O","y","staticRenderFns","_compiled","functional","_scopeId","$vnode","ssrContext","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","$root","shadowRoot","_injectStyles","ms","viewBox","fs","translations","setLanguage","language","detectLocale","lang","addTranslation","enableDebugMode","json","charset","Language","msgid","comments","translator","msgstr","Add","msgid_plural","extracted","Cancel","Continue","New","C","Gs","Ls","Plus","Upload","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","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","__esModule","definition","chunkId","needAttach","scripts","nc","onScriptComplete","doneFns","toStringTag","nmd","scriptUrl","currentScript","installedChunks","installedChunkData","errorType","realSrc","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""}
\ No newline at end of file
+{"version":3,"file":"files-main.js?v=42eac02234ca9e536741","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/@nextcloud/l10n/node_modules/@nextcloud/router/dist/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/eventemitter3/index.js","webpack:///nextcloud/node_modules/pinia/dist/pinia.mjs","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/filter-obj/index.js","webpack:///nextcloud/node_modules/query-string/base.js","webpack:///nextcloud/node_modules/query-string/index.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/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/logger.js","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=script&lang=js","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue","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?08ea","webpack://nextcloud/./apps/files/src/views/Settings.vue?b81b","webpack:///nextcloud/apps/files/src/composables/useNavigation.ts","webpack:///nextcloud/apps/files/src/store/viewConfig.ts","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?a81e","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/services/WebdavClient.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/./node_modules/@nextcloud/dialogs/dist/style.css?d87c","webpack:///nextcloud/apps/files/src/actions/moveOrCopyActionUtils.ts","webpack:///nextcloud/apps/files/src/utils/hashUtils.ts","webpack:///nextcloud/apps/files/src/services/Files.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?bd8f","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?d357","webpack:///nextcloud/apps/files/src/utils/fileUtils.ts","webpack:///nextcloud/apps/files/src/components/FileEntry.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/node_modules/vue-material-design-icons/Folder.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Folder.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Folder.vue?b60e","webpack:///nextcloud/node_modules/vue-material-design-icons/Folder.vue?vue&type=template&id=07f089a4","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?8e66","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/node_modules/vue-material-design-icons/ArrowLeft.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue","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","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?bc08","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?72c7","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?6d98","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?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?7b8e","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?8cb2","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?6709","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","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?67ee","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?f185","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?4a42","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?c7af","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/dialogs/dist/style.css","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=77111ada&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue?vue&type=style&index=0&id=2b498b48&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue?vue&type=style&index=0&id=b63e55d4&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue?vue&type=style&index=0&id=04e52abc&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=0&id=0bcaefce&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=1&id=0bcaefce&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=68d3de81&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=style&index=0&id=91476734&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=style&index=0&id=097f69d4&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=0&id=1e2b43b6&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=1&id=1e2b43b6&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=139727ec&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=style&index=0&id=d0bcf126&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=style&index=0&id=109572de&prod&lang=scss&scoped=true","webpack:///nextcloud/node_modules/events/events.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/stream-browserify/node_modules/readable-stream/errors-browser.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/_stream_duplex.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/_stream_passthrough.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/_stream_readable.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/_stream_transform.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/_stream_writable.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/async_iterator.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/buffer_list.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/destroy.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/end-of-stream.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/from-browser.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/pipeline.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/state.js","webpack:///nextcloud/node_modules/stream-browserify/node_modules/readable-stream/lib/internal/streams/stream-browser.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/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/node_modules/@nextcloud/l10n/dist/gettext.mjs","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\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.generateUrl = exports.generateRemoteUrl = exports.generateOcsUrl = exports.generateFilePath = void 0;\nexports.getAppRootUrl = getAppRootUrl;\nexports.getRootUrl = getRootUrl;\nexports.linkTo = exports.imagePath = void 0;\nrequire(\"core-js/modules/es.string.replace.js\");\n/**\n * Get an url with webroot to a file in an app\n *\n * @param {string} app the id of the app the file belongs to\n * @param {string} file the file path relative to the app folder\n * @return {string} URL with webroot to a file\n */\nconst linkTo = (app, file) => generateFilePath(app, '', file);\n\n/**\n * Creates a relative url for remote use\n *\n * @param {string} service id\n * @return {string} the url\n */\nexports.linkTo = linkTo;\nconst linkToRemoteBase = service => getRootUrl() + '/remote.php/' + service;\n\n/**\n * @brief Creates an absolute url for remote use\n * @param {string} service id\n * @return {string} the url\n */\nconst generateRemoteUrl = service => window.location.protocol + '//' + window.location.host + linkToRemoteBase(service);\n\n/**\n * Get the base path for the given OCS API service\n *\n * @param {string} url OCS API service url\n * @param {object} params parameters to be replaced into the service url\n * @param {UrlOptions} options options for the parameter replacement\n * @param {boolean} options.escape Set to false if parameters should not be URL encoded (default true)\n * @param {Number} options.ocsVersion OCS version to use (defaults to 2)\n * @return {string} Absolute path for the OCS URL\n */\nexports.generateRemoteUrl = generateRemoteUrl;\nconst generateOcsUrl = (url, params, options) => {\n  const allOptions = Object.assign({\n    ocsVersion: 2\n  }, options || {});\n  const version = allOptions.ocsVersion === 1 ? 1 : 2;\n  return window.location.protocol + '//' + window.location.host + getRootUrl() + '/ocs/v' + version + '.php' + _generateUrlPath(url, params, options);\n};\nexports.generateOcsUrl = generateOcsUrl;\n/**\n * Generate a url path, which can contain parameters\n *\n * Parameters will be URL encoded automatically\n *\n * @param {string} url address (can contain placeholders e.g. /call/{token} would replace {token} with the value of params.token\n * @param {object} params parameters to be replaced into the address\n * @param {UrlOptions} options options for the parameter replacement\n * @return {string} Path part for the given URL\n */\nconst _generateUrlPath = (url, params, options) => {\n  const allOptions = Object.assign({\n    escape: true\n  }, options || {});\n  const _build = function (text, vars) {\n    vars = vars || {};\n    return text.replace(/{([^{}]*)}/g, function (a, b) {\n      var r = vars[b];\n      if (allOptions.escape) {\n        return typeof r === 'string' || typeof r === 'number' ? encodeURIComponent(r.toString()) : encodeURIComponent(a);\n      } else {\n        return typeof r === 'string' || typeof r === 'number' ? r.toString() : a;\n      }\n    });\n  };\n  if (url.charAt(0) !== '/') {\n    url = '/' + url;\n  }\n  return _build(url, params || {});\n};\n\n/**\n * Generate the url with webroot for the given relative url, which can contain parameters\n *\n * Parameters will be URL encoded automatically\n *\n * @param {string} url address (can contain placeholders e.g. /call/{token} would replace {token} with the value of params.token\n * @param {object} params parameters to be replaced into the url\n * @param {UrlOptions} options options for the parameter replacement\n * @param {boolean} options.noRewrite True if you want to force index.php being added\n * @param {boolean} options.escape Set to false if parameters should not be URL encoded (default true)\n * @return {string} URL with webroot for the given relative URL\n */\nconst generateUrl = (url, params, options) => {\n  var _window;\n  const allOptions = Object.assign({\n    noRewrite: false\n  }, options || {});\n  if (((_window = window) === null || _window === void 0 || (_window = _window.OC) === null || _window === void 0 || (_window = _window.config) === null || _window === void 0 ? void 0 : _window.modRewriteWorking) === true && !allOptions.noRewrite) {\n    return getRootUrl() + _generateUrlPath(url, params, options);\n  }\n  return getRootUrl() + '/index.php' + _generateUrlPath(url, params, options);\n};\n\n/**\n * Get the path with webroot to an image file\n * if no extension is given for the image, it will automatically decide\n * between .png and .svg based on what the browser supports\n *\n * @param {string} app the app id to which the image belongs\n * @param {string} file the name of the image file\n * @return {string}\n */\nexports.generateUrl = generateUrl;\nconst imagePath = (app, file) => {\n  if (file.indexOf('.') === -1) {\n    //if no extension is given, use svg\n    return generateFilePath(app, 'img', file + '.svg');\n  }\n  return generateFilePath(app, 'img', file);\n};\n\n/**\n * Get the url with webroot for a file in an app\n *\n * @param {string} app the id of the app\n * @param {string} type the type of the file to link to (e.g. css,img,ajax.template)\n * @param {string} file the filename\n * @return {string} URL with webroot for a file in an app\n */\nexports.imagePath = imagePath;\nconst generateFilePath = (app, type, file) => {\n  var _window2;\n  const isCore = ((_window2 = window) === null || _window2 === void 0 || (_window2 = _window2.OC) === null || _window2 === void 0 || (_window2 = _window2.coreApps) === null || _window2 === void 0 ? void 0 : _window2.indexOf(app)) !== -1;\n  let link = getRootUrl();\n  if (file.substring(file.length - 3) === 'php' && !isCore) {\n    link += '/index.php/apps/' + app;\n    if (file !== 'index.php') {\n      link += '/';\n      if (type) {\n        link += encodeURI(type + '/');\n      }\n      link += file;\n    }\n  } else if (file.substring(file.length - 3) !== 'php' && !isCore) {\n    link = getAppRootUrl(app);\n    if (type) {\n      link += '/' + type + '/';\n    }\n    if (link.substring(link.length - 1) !== '/') {\n      link += '/';\n    }\n    link += file;\n  } else {\n    if ((app === 'settings' || app === 'core' || app === 'search') && type === 'ajax') {\n      link += '/index.php/';\n    } else {\n      link += '/';\n    }\n    if (!isCore) {\n      link += 'apps/';\n    }\n    if (app !== '') {\n      app += '/';\n      link += app;\n    }\n    if (type) {\n      link += type + '/';\n    }\n    link += file;\n  }\n  return link;\n};\n\n/**\n * Return the web root path where this Nextcloud instance\n * is accessible, with a leading slash.\n * For example \"/nextcloud\".\n *\n * @return {string} web root path\n */\nexports.generateFilePath = generateFilePath;\nfunction getRootUrl() {\n  let webroot = window._oc_webroot;\n  if (typeof webroot === 'undefined') {\n    webroot = location.pathname;\n    const pos = webroot.indexOf('/index.php/');\n    if (pos !== -1) {\n      webroot = webroot.substr(0, pos);\n    } else {\n      webroot = webroot.substr(0, webroot.lastIndexOf('/'));\n    }\n  }\n  return webroot;\n}\n\n/**\n * Return the web root path for a given app\n * @param {string} app The ID of the app\n */\nfunction getAppRootUrl(app) {\n  var _window$_oc_appswebro, _webroots$app;\n  const webroots = (_window$_oc_appswebro = window._oc_appswebroots) !== null && _window$_oc_appswebro !== void 0 ? _window$_oc_appswebro : {};\n  return (_webroots$app = webroots[app]) !== null && _webroots$app !== void 0 ? _webroots$app : '';\n}\n//# sourceMappingURL=index.js.map","'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 * pinia v2.1.7\n * (c) 2023 Eduardo San Martin Morote\n * @license MIT\n */\nimport { hasInjectionContext, inject, toRaw, watch, unref, markRaw, effectScope, ref, isVue2, isRef, isReactive, set, getCurrentScope, onScopeDispose, getCurrentInstance, reactive, toRef, del, nextTick, computed, toRefs } from 'vue-demi';\nimport { setupDevtoolsPlugin } from '@vue/devtools-api';\n\n/**\n * setActivePinia must be called to handle SSR at the top of functions like\n * `fetch`, `setup`, `serverPrefetch` and others\n */\nlet activePinia;\n/**\n * Sets or unsets the active pinia. Used in SSR and internally when calling\n * actions and getters\n *\n * @param pinia - Pinia instance\n */\n// @ts-expect-error: cannot constrain the type of the return\nconst setActivePinia = (pinia) => (activePinia = pinia);\n/**\n * Get the currently active pinia if there is any.\n */\nconst getActivePinia = () => (hasInjectionContext() && inject(piniaSymbol)) || activePinia;\nconst piniaSymbol = ((process.env.NODE_ENV !== 'production') ? Symbol('pinia') : /* istanbul ignore next */ Symbol());\n\nfunction isPlainObject(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\no) {\n    return (o &&\n        typeof o === 'object' &&\n        Object.prototype.toString.call(o) === '[object Object]' &&\n        typeof o.toJSON !== 'function');\n}\n// type DeepReadonly<T> = { readonly [P in keyof T]: DeepReadonly<T[P]> }\n// TODO: can we change these to numbers?\n/**\n * Possible types for SubscriptionCallback\n */\nvar MutationType;\n(function (MutationType) {\n    /**\n     * Direct mutation of the state:\n     *\n     * - `store.name = 'new name'`\n     * - `store.$state.name = 'new name'`\n     * - `store.list.push('new item')`\n     */\n    MutationType[\"direct\"] = \"direct\";\n    /**\n     * Mutated the state with `$patch` and an object\n     *\n     * - `store.$patch({ name: 'newName' })`\n     */\n    MutationType[\"patchObject\"] = \"patch object\";\n    /**\n     * Mutated the state with `$patch` and a function\n     *\n     * - `store.$patch(state => state.name = 'newName')`\n     */\n    MutationType[\"patchFunction\"] = \"patch function\";\n    // maybe reset? for $state = {} and $reset\n})(MutationType || (MutationType = {}));\n\nconst IS_CLIENT = typeof window !== 'undefined';\n/**\n * Should we add the devtools plugins.\n * - only if dev mode or forced through the prod devtools flag\n * - not in test\n * - only if window exists (could change in the future)\n */\nconst USE_DEVTOOLS = ((process.env.NODE_ENV !== 'production') || (typeof __VUE_PROD_DEVTOOLS__ !== 'undefined' && __VUE_PROD_DEVTOOLS__)) && !(process.env.NODE_ENV === 'test') && IS_CLIENT;\n\n/*\n * FileSaver.js A saveAs() FileSaver implementation.\n *\n * Originally by Eli Grey, adapted as an ESM module by Eduardo San Martin\n * Morote.\n *\n * License : MIT\n */\n// The one and only way of getting global scope in all environments\n// https://stackoverflow.com/q/3277182/1008999\nconst _global = /*#__PURE__*/ (() => typeof window === 'object' && window.window === window\n    ? window\n    : typeof self === 'object' && self.self === self\n        ? self\n        : typeof global === 'object' && global.global === global\n            ? global\n            : typeof globalThis === 'object'\n                ? globalThis\n                : { HTMLElement: null })();\nfunction bom(blob, { autoBom = false } = {}) {\n    // prepend BOM for UTF-8 XML and text/* types (including HTML)\n    // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF\n    if (autoBom &&\n        /^\\s*(?:text\\/\\S*|application\\/xml|\\S*\\/\\S*\\+xml)\\s*;.*charset\\s*=\\s*utf-8/i.test(blob.type)) {\n        return new Blob([String.fromCharCode(0xfeff), blob], { type: blob.type });\n    }\n    return blob;\n}\nfunction download(url, name, opts) {\n    const xhr = new XMLHttpRequest();\n    xhr.open('GET', url);\n    xhr.responseType = 'blob';\n    xhr.onload = function () {\n        saveAs(xhr.response, name, opts);\n    };\n    xhr.onerror = function () {\n        console.error('could not download file');\n    };\n    xhr.send();\n}\nfunction corsEnabled(url) {\n    const xhr = new XMLHttpRequest();\n    // use sync to avoid popup blocker\n    xhr.open('HEAD', url, false);\n    try {\n        xhr.send();\n    }\n    catch (e) { }\n    return xhr.status >= 200 && xhr.status <= 299;\n}\n// `a.click()` doesn't work for all browsers (#465)\nfunction click(node) {\n    try {\n        node.dispatchEvent(new MouseEvent('click'));\n    }\n    catch (e) {\n        const evt = document.createEvent('MouseEvents');\n        evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80, 20, false, false, false, false, 0, null);\n        node.dispatchEvent(evt);\n    }\n}\nconst _navigator = \n typeof navigator === 'object' ? navigator : { userAgent: '' };\n// Detect WebView inside a native macOS app by ruling out all browsers\n// We just need to check for 'Safari' because all other browsers (besides Firefox) include that too\n// https://www.whatismybrowser.com/guides/the-latest-user-agent/macos\nconst isMacOSWebView = /*#__PURE__*/ (() => /Macintosh/.test(_navigator.userAgent) &&\n    /AppleWebKit/.test(_navigator.userAgent) &&\n    !/Safari/.test(_navigator.userAgent))();\nconst saveAs = !IS_CLIENT\n    ? () => { } // noop\n    : // Use download attribute first if possible (#193 Lumia mobile) unless this is a macOS WebView or mini program\n        typeof HTMLAnchorElement !== 'undefined' &&\n            'download' in HTMLAnchorElement.prototype &&\n            !isMacOSWebView\n            ? downloadSaveAs\n            : // Use msSaveOrOpenBlob as a second approach\n                'msSaveOrOpenBlob' in _navigator\n                    ? msSaveAs\n                    : // Fallback to using FileReader and a popup\n                        fileSaverSaveAs;\nfunction downloadSaveAs(blob, name = 'download', opts) {\n    const a = document.createElement('a');\n    a.download = name;\n    a.rel = 'noopener'; // tabnabbing\n    // TODO: detect chrome extensions & packaged apps\n    // a.target = '_blank'\n    if (typeof blob === 'string') {\n        // Support regular links\n        a.href = blob;\n        if (a.origin !== location.origin) {\n            if (corsEnabled(a.href)) {\n                download(blob, name, opts);\n            }\n            else {\n                a.target = '_blank';\n                click(a);\n            }\n        }\n        else {\n            click(a);\n        }\n    }\n    else {\n        // Support blobs\n        a.href = URL.createObjectURL(blob);\n        setTimeout(function () {\n            URL.revokeObjectURL(a.href);\n        }, 4e4); // 40s\n        setTimeout(function () {\n            click(a);\n        }, 0);\n    }\n}\nfunction msSaveAs(blob, name = 'download', opts) {\n    if (typeof blob === 'string') {\n        if (corsEnabled(blob)) {\n            download(blob, name, opts);\n        }\n        else {\n            const a = document.createElement('a');\n            a.href = blob;\n            a.target = '_blank';\n            setTimeout(function () {\n                click(a);\n            });\n        }\n    }\n    else {\n        // @ts-ignore: works on windows\n        navigator.msSaveOrOpenBlob(bom(blob, opts), name);\n    }\n}\nfunction fileSaverSaveAs(blob, name, opts, popup) {\n    // Open a popup immediately do go around popup blocker\n    // Mostly only available on user interaction and the fileReader is async so...\n    popup = popup || open('', '_blank');\n    if (popup) {\n        popup.document.title = popup.document.body.innerText = 'downloading...';\n    }\n    if (typeof blob === 'string')\n        return download(blob, name, opts);\n    const force = blob.type === 'application/octet-stream';\n    const isSafari = /constructor/i.test(String(_global.HTMLElement)) || 'safari' in _global;\n    const isChromeIOS = /CriOS\\/[\\d]+/.test(navigator.userAgent);\n    if ((isChromeIOS || (force && isSafari) || isMacOSWebView) &&\n        typeof FileReader !== 'undefined') {\n        // Safari doesn't allow downloading of blob URLs\n        const reader = new FileReader();\n        reader.onloadend = function () {\n            let url = reader.result;\n            if (typeof url !== 'string') {\n                popup = null;\n                throw new Error('Wrong reader.result type');\n            }\n            url = isChromeIOS\n                ? url\n                : url.replace(/^data:[^;]*;/, 'data:attachment/file;');\n            if (popup) {\n                popup.location.href = url;\n            }\n            else {\n                location.assign(url);\n            }\n            popup = null; // reverse-tabnabbing #460\n        };\n        reader.readAsDataURL(blob);\n    }\n    else {\n        const url = URL.createObjectURL(blob);\n        if (popup)\n            popup.location.assign(url);\n        else\n            location.href = url;\n        popup = null; // reverse-tabnabbing #460\n        setTimeout(function () {\n            URL.revokeObjectURL(url);\n        }, 4e4); // 40s\n    }\n}\n\n/**\n * Shows a toast or console.log\n *\n * @param message - message to log\n * @param type - different color of the tooltip\n */\nfunction toastMessage(message, type) {\n    const piniaMessage = '🍍 ' + message;\n    if (typeof __VUE_DEVTOOLS_TOAST__ === 'function') {\n        // No longer available :(\n        __VUE_DEVTOOLS_TOAST__(piniaMessage, type);\n    }\n    else if (type === 'error') {\n        console.error(piniaMessage);\n    }\n    else if (type === 'warn') {\n        console.warn(piniaMessage);\n    }\n    else {\n        console.log(piniaMessage);\n    }\n}\nfunction isPinia(o) {\n    return '_a' in o && 'install' in o;\n}\n\n/**\n * This file contain devtools actions, they are not Pinia actions.\n */\n// ---\nfunction checkClipboardAccess() {\n    if (!('clipboard' in navigator)) {\n        toastMessage(`Your browser doesn't support the Clipboard API`, 'error');\n        return true;\n    }\n}\nfunction checkNotFocusedError(error) {\n    if (error instanceof Error &&\n        error.message.toLowerCase().includes('document is not focused')) {\n        toastMessage('You need to activate the \"Emulate a focused page\" setting in the \"Rendering\" panel of devtools.', 'warn');\n        return true;\n    }\n    return false;\n}\nasync function actionGlobalCopyState(pinia) {\n    if (checkClipboardAccess())\n        return;\n    try {\n        await navigator.clipboard.writeText(JSON.stringify(pinia.state.value));\n        toastMessage('Global state copied to clipboard.');\n    }\n    catch (error) {\n        if (checkNotFocusedError(error))\n            return;\n        toastMessage(`Failed to serialize the state. Check the console for more details.`, 'error');\n        console.error(error);\n    }\n}\nasync function actionGlobalPasteState(pinia) {\n    if (checkClipboardAccess())\n        return;\n    try {\n        loadStoresState(pinia, JSON.parse(await navigator.clipboard.readText()));\n        toastMessage('Global state pasted from clipboard.');\n    }\n    catch (error) {\n        if (checkNotFocusedError(error))\n            return;\n        toastMessage(`Failed to deserialize the state from clipboard. Check the console for more details.`, 'error');\n        console.error(error);\n    }\n}\nasync function actionGlobalSaveState(pinia) {\n    try {\n        saveAs(new Blob([JSON.stringify(pinia.state.value)], {\n            type: 'text/plain;charset=utf-8',\n        }), 'pinia-state.json');\n    }\n    catch (error) {\n        toastMessage(`Failed to export the state as JSON. Check the console for more details.`, 'error');\n        console.error(error);\n    }\n}\nlet fileInput;\nfunction getFileOpener() {\n    if (!fileInput) {\n        fileInput = document.createElement('input');\n        fileInput.type = 'file';\n        fileInput.accept = '.json';\n    }\n    function openFile() {\n        return new Promise((resolve, reject) => {\n            fileInput.onchange = async () => {\n                const files = fileInput.files;\n                if (!files)\n                    return resolve(null);\n                const file = files.item(0);\n                if (!file)\n                    return resolve(null);\n                return resolve({ text: await file.text(), file });\n            };\n            // @ts-ignore: TODO: changed from 4.3 to 4.4\n            fileInput.oncancel = () => resolve(null);\n            fileInput.onerror = reject;\n            fileInput.click();\n        });\n    }\n    return openFile;\n}\nasync function actionGlobalOpenStateFile(pinia) {\n    try {\n        const open = getFileOpener();\n        const result = await open();\n        if (!result)\n            return;\n        const { text, file } = result;\n        loadStoresState(pinia, JSON.parse(text));\n        toastMessage(`Global state imported from \"${file.name}\".`);\n    }\n    catch (error) {\n        toastMessage(`Failed to import the state from JSON. Check the console for more details.`, 'error');\n        console.error(error);\n    }\n}\nfunction loadStoresState(pinia, state) {\n    for (const key in state) {\n        const storeState = pinia.state.value[key];\n        // store is already instantiated, patch it\n        if (storeState) {\n            Object.assign(storeState, state[key]);\n        }\n        else {\n            // store is not instantiated, set the initial state\n            pinia.state.value[key] = state[key];\n        }\n    }\n}\n\nfunction formatDisplay(display) {\n    return {\n        _custom: {\n            display,\n        },\n    };\n}\nconst PINIA_ROOT_LABEL = '🍍 Pinia (root)';\nconst PINIA_ROOT_ID = '_root';\nfunction formatStoreForInspectorTree(store) {\n    return isPinia(store)\n        ? {\n            id: PINIA_ROOT_ID,\n            label: PINIA_ROOT_LABEL,\n        }\n        : {\n            id: store.$id,\n            label: store.$id,\n        };\n}\nfunction formatStoreForInspectorState(store) {\n    if (isPinia(store)) {\n        const storeNames = Array.from(store._s.keys());\n        const storeMap = store._s;\n        const state = {\n            state: storeNames.map((storeId) => ({\n                editable: true,\n                key: storeId,\n                value: store.state.value[storeId],\n            })),\n            getters: storeNames\n                .filter((id) => storeMap.get(id)._getters)\n                .map((id) => {\n                const store = storeMap.get(id);\n                return {\n                    editable: false,\n                    key: id,\n                    value: store._getters.reduce((getters, key) => {\n                        getters[key] = store[key];\n                        return getters;\n                    }, {}),\n                };\n            }),\n        };\n        return state;\n    }\n    const state = {\n        state: Object.keys(store.$state).map((key) => ({\n            editable: true,\n            key,\n            value: store.$state[key],\n        })),\n    };\n    // avoid adding empty getters\n    if (store._getters && store._getters.length) {\n        state.getters = store._getters.map((getterName) => ({\n            editable: false,\n            key: getterName,\n            value: store[getterName],\n        }));\n    }\n    if (store._customProperties.size) {\n        state.customProperties = Array.from(store._customProperties).map((key) => ({\n            editable: true,\n            key,\n            value: store[key],\n        }));\n    }\n    return state;\n}\nfunction formatEventData(events) {\n    if (!events)\n        return {};\n    if (Array.isArray(events)) {\n        // TODO: handle add and delete for arrays and objects\n        return events.reduce((data, event) => {\n            data.keys.push(event.key);\n            data.operations.push(event.type);\n            data.oldValue[event.key] = event.oldValue;\n            data.newValue[event.key] = event.newValue;\n            return data;\n        }, {\n            oldValue: {},\n            keys: [],\n            operations: [],\n            newValue: {},\n        });\n    }\n    else {\n        return {\n            operation: formatDisplay(events.type),\n            key: formatDisplay(events.key),\n            oldValue: events.oldValue,\n            newValue: events.newValue,\n        };\n    }\n}\nfunction formatMutationType(type) {\n    switch (type) {\n        case MutationType.direct:\n            return 'mutation';\n        case MutationType.patchFunction:\n            return '$patch';\n        case MutationType.patchObject:\n            return '$patch';\n        default:\n            return 'unknown';\n    }\n}\n\n// timeline can be paused when directly changing the state\nlet isTimelineActive = true;\nconst componentStateTypes = [];\nconst MUTATIONS_LAYER_ID = 'pinia:mutations';\nconst INSPECTOR_ID = 'pinia';\nconst { assign: assign$1 } = Object;\n/**\n * Gets the displayed name of a store in devtools\n *\n * @param id - id of the store\n * @returns a formatted string\n */\nconst getStoreType = (id) => '🍍 ' + id;\n/**\n * Add the pinia plugin without any store. Allows displaying a Pinia plugin tab\n * as soon as it is added to the application.\n *\n * @param app - Vue application\n * @param pinia - pinia instance\n */\nfunction registerPiniaDevtools(app, pinia) {\n    setupDevtoolsPlugin({\n        id: 'dev.esm.pinia',\n        label: 'Pinia 🍍',\n        logo: 'https://pinia.vuejs.org/logo.svg',\n        packageName: 'pinia',\n        homepage: 'https://pinia.vuejs.org',\n        componentStateTypes,\n        app,\n    }, (api) => {\n        if (typeof api.now !== 'function') {\n            toastMessage('You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html.');\n        }\n        api.addTimelineLayer({\n            id: MUTATIONS_LAYER_ID,\n            label: `Pinia 🍍`,\n            color: 0xe5df88,\n        });\n        api.addInspector({\n            id: INSPECTOR_ID,\n            label: 'Pinia 🍍',\n            icon: 'storage',\n            treeFilterPlaceholder: 'Search stores',\n            actions: [\n                {\n                    icon: 'content_copy',\n                    action: () => {\n                        actionGlobalCopyState(pinia);\n                    },\n                    tooltip: 'Serialize and copy the state',\n                },\n                {\n                    icon: 'content_paste',\n                    action: async () => {\n                        await actionGlobalPasteState(pinia);\n                        api.sendInspectorTree(INSPECTOR_ID);\n                        api.sendInspectorState(INSPECTOR_ID);\n                    },\n                    tooltip: 'Replace the state with the content of your clipboard',\n                },\n                {\n                    icon: 'save',\n                    action: () => {\n                        actionGlobalSaveState(pinia);\n                    },\n                    tooltip: 'Save the state as a JSON file',\n                },\n                {\n                    icon: 'folder_open',\n                    action: async () => {\n                        await actionGlobalOpenStateFile(pinia);\n                        api.sendInspectorTree(INSPECTOR_ID);\n                        api.sendInspectorState(INSPECTOR_ID);\n                    },\n                    tooltip: 'Import the state from a JSON file',\n                },\n            ],\n            nodeActions: [\n                {\n                    icon: 'restore',\n                    tooltip: 'Reset the state (with \"$reset\")',\n                    action: (nodeId) => {\n                        const store = pinia._s.get(nodeId);\n                        if (!store) {\n                            toastMessage(`Cannot reset \"${nodeId}\" store because it wasn't found.`, 'warn');\n                        }\n                        else if (typeof store.$reset !== 'function') {\n                            toastMessage(`Cannot reset \"${nodeId}\" store because it doesn't have a \"$reset\" method implemented.`, 'warn');\n                        }\n                        else {\n                            store.$reset();\n                            toastMessage(`Store \"${nodeId}\" reset.`);\n                        }\n                    },\n                },\n            ],\n        });\n        api.on.inspectComponent((payload, ctx) => {\n            const proxy = (payload.componentInstance &&\n                payload.componentInstance.proxy);\n            if (proxy && proxy._pStores) {\n                const piniaStores = payload.componentInstance.proxy._pStores;\n                Object.values(piniaStores).forEach((store) => {\n                    payload.instanceData.state.push({\n                        type: getStoreType(store.$id),\n                        key: 'state',\n                        editable: true,\n                        value: store._isOptionsAPI\n                            ? {\n                                _custom: {\n                                    value: toRaw(store.$state),\n                                    actions: [\n                                        {\n                                            icon: 'restore',\n                                            tooltip: 'Reset the state of this store',\n                                            action: () => store.$reset(),\n                                        },\n                                    ],\n                                },\n                            }\n                            : // NOTE: workaround to unwrap transferred refs\n                                Object.keys(store.$state).reduce((state, key) => {\n                                    state[key] = store.$state[key];\n                                    return state;\n                                }, {}),\n                    });\n                    if (store._getters && store._getters.length) {\n                        payload.instanceData.state.push({\n                            type: getStoreType(store.$id),\n                            key: 'getters',\n                            editable: false,\n                            value: store._getters.reduce((getters, key) => {\n                                try {\n                                    getters[key] = store[key];\n                                }\n                                catch (error) {\n                                    // @ts-expect-error: we just want to show it in devtools\n                                    getters[key] = error;\n                                }\n                                return getters;\n                            }, {}),\n                        });\n                    }\n                });\n            }\n        });\n        api.on.getInspectorTree((payload) => {\n            if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n                let stores = [pinia];\n                stores = stores.concat(Array.from(pinia._s.values()));\n                payload.rootNodes = (payload.filter\n                    ? stores.filter((store) => '$id' in store\n                        ? store.$id\n                            .toLowerCase()\n                            .includes(payload.filter.toLowerCase())\n                        : PINIA_ROOT_LABEL.toLowerCase().includes(payload.filter.toLowerCase()))\n                    : stores).map(formatStoreForInspectorTree);\n            }\n        });\n        api.on.getInspectorState((payload) => {\n            if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n                const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n                    ? pinia\n                    : pinia._s.get(payload.nodeId);\n                if (!inspectedStore) {\n                    // this could be the selected store restored for a different project\n                    // so it's better not to say anything here\n                    return;\n                }\n                if (inspectedStore) {\n                    payload.state = formatStoreForInspectorState(inspectedStore);\n                }\n            }\n        });\n        api.on.editInspectorState((payload, ctx) => {\n            if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n                const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n                    ? pinia\n                    : pinia._s.get(payload.nodeId);\n                if (!inspectedStore) {\n                    return toastMessage(`store \"${payload.nodeId}\" not found`, 'error');\n                }\n                const { path } = payload;\n                if (!isPinia(inspectedStore)) {\n                    // access only the state\n                    if (path.length !== 1 ||\n                        !inspectedStore._customProperties.has(path[0]) ||\n                        path[0] in inspectedStore.$state) {\n                        path.unshift('$state');\n                    }\n                }\n                else {\n                    // Root access, we can omit the `.value` because the devtools API does it for us\n                    path.unshift('state');\n                }\n                isTimelineActive = false;\n                payload.set(inspectedStore, path, payload.state.value);\n                isTimelineActive = true;\n            }\n        });\n        api.on.editComponentState((payload) => {\n            if (payload.type.startsWith('🍍')) {\n                const storeId = payload.type.replace(/^🍍\\s*/, '');\n                const store = pinia._s.get(storeId);\n                if (!store) {\n                    return toastMessage(`store \"${storeId}\" not found`, 'error');\n                }\n                const { path } = payload;\n                if (path[0] !== 'state') {\n                    return toastMessage(`Invalid path for store \"${storeId}\":\\n${path}\\nOnly state can be modified.`);\n                }\n                // rewrite the first entry to be able to directly set the state as\n                // well as any other path\n                path[0] = '$state';\n                isTimelineActive = false;\n                payload.set(store, path, payload.state.value);\n                isTimelineActive = true;\n            }\n        });\n    });\n}\nfunction addStoreToDevtools(app, store) {\n    if (!componentStateTypes.includes(getStoreType(store.$id))) {\n        componentStateTypes.push(getStoreType(store.$id));\n    }\n    setupDevtoolsPlugin({\n        id: 'dev.esm.pinia',\n        label: 'Pinia 🍍',\n        logo: 'https://pinia.vuejs.org/logo.svg',\n        packageName: 'pinia',\n        homepage: 'https://pinia.vuejs.org',\n        componentStateTypes,\n        app,\n        settings: {\n            logStoreChanges: {\n                label: 'Notify about new/deleted stores',\n                type: 'boolean',\n                defaultValue: true,\n            },\n            // useEmojis: {\n            //   label: 'Use emojis in messages ⚡️',\n            //   type: 'boolean',\n            //   defaultValue: true,\n            // },\n        },\n    }, (api) => {\n        // gracefully handle errors\n        const now = typeof api.now === 'function' ? api.now.bind(api) : Date.now;\n        store.$onAction(({ after, onError, name, args }) => {\n            const groupId = runningActionId++;\n            api.addTimelineEvent({\n                layerId: MUTATIONS_LAYER_ID,\n                event: {\n                    time: now(),\n                    title: '🛫 ' + name,\n                    subtitle: 'start',\n                    data: {\n                        store: formatDisplay(store.$id),\n                        action: formatDisplay(name),\n                        args,\n                    },\n                    groupId,\n                },\n            });\n            after((result) => {\n                activeAction = undefined;\n                api.addTimelineEvent({\n                    layerId: MUTATIONS_LAYER_ID,\n                    event: {\n                        time: now(),\n                        title: '🛬 ' + name,\n                        subtitle: 'end',\n                        data: {\n                            store: formatDisplay(store.$id),\n                            action: formatDisplay(name),\n                            args,\n                            result,\n                        },\n                        groupId,\n                    },\n                });\n            });\n            onError((error) => {\n                activeAction = undefined;\n                api.addTimelineEvent({\n                    layerId: MUTATIONS_LAYER_ID,\n                    event: {\n                        time: now(),\n                        logType: 'error',\n                        title: '💥 ' + name,\n                        subtitle: 'end',\n                        data: {\n                            store: formatDisplay(store.$id),\n                            action: formatDisplay(name),\n                            args,\n                            error,\n                        },\n                        groupId,\n                    },\n                });\n            });\n        }, true);\n        store._customProperties.forEach((name) => {\n            watch(() => unref(store[name]), (newValue, oldValue) => {\n                api.notifyComponentUpdate();\n                api.sendInspectorState(INSPECTOR_ID);\n                if (isTimelineActive) {\n                    api.addTimelineEvent({\n                        layerId: MUTATIONS_LAYER_ID,\n                        event: {\n                            time: now(),\n                            title: 'Change',\n                            subtitle: name,\n                            data: {\n                                newValue,\n                                oldValue,\n                            },\n                            groupId: activeAction,\n                        },\n                    });\n                }\n            }, { deep: true });\n        });\n        store.$subscribe(({ events, type }, state) => {\n            api.notifyComponentUpdate();\n            api.sendInspectorState(INSPECTOR_ID);\n            if (!isTimelineActive)\n                return;\n            // rootStore.state[store.id] = state\n            const eventData = {\n                time: now(),\n                title: formatMutationType(type),\n                data: assign$1({ store: formatDisplay(store.$id) }, formatEventData(events)),\n                groupId: activeAction,\n            };\n            if (type === MutationType.patchFunction) {\n                eventData.subtitle = '⤵️';\n            }\n            else if (type === MutationType.patchObject) {\n                eventData.subtitle = '🧩';\n            }\n            else if (events && !Array.isArray(events)) {\n                eventData.subtitle = events.type;\n            }\n            if (events) {\n                eventData.data['rawEvent(s)'] = {\n                    _custom: {\n                        display: 'DebuggerEvent',\n                        type: 'object',\n                        tooltip: 'raw DebuggerEvent[]',\n                        value: events,\n                    },\n                };\n            }\n            api.addTimelineEvent({\n                layerId: MUTATIONS_LAYER_ID,\n                event: eventData,\n            });\n        }, { detached: true, flush: 'sync' });\n        const hotUpdate = store._hotUpdate;\n        store._hotUpdate = markRaw((newStore) => {\n            hotUpdate(newStore);\n            api.addTimelineEvent({\n                layerId: MUTATIONS_LAYER_ID,\n                event: {\n                    time: now(),\n                    title: '🔥 ' + store.$id,\n                    subtitle: 'HMR update',\n                    data: {\n                        store: formatDisplay(store.$id),\n                        info: formatDisplay(`HMR update`),\n                    },\n                },\n            });\n            // update the devtools too\n            api.notifyComponentUpdate();\n            api.sendInspectorTree(INSPECTOR_ID);\n            api.sendInspectorState(INSPECTOR_ID);\n        });\n        const { $dispose } = store;\n        store.$dispose = () => {\n            $dispose();\n            api.notifyComponentUpdate();\n            api.sendInspectorTree(INSPECTOR_ID);\n            api.sendInspectorState(INSPECTOR_ID);\n            api.getSettings().logStoreChanges &&\n                toastMessage(`Disposed \"${store.$id}\" store 🗑`);\n        };\n        // trigger an update so it can display new registered stores\n        api.notifyComponentUpdate();\n        api.sendInspectorTree(INSPECTOR_ID);\n        api.sendInspectorState(INSPECTOR_ID);\n        api.getSettings().logStoreChanges &&\n            toastMessage(`\"${store.$id}\" store installed 🆕`);\n    });\n}\nlet runningActionId = 0;\nlet activeAction;\n/**\n * Patches a store to enable action grouping in devtools by wrapping the store with a Proxy that is passed as the\n * context of all actions, allowing us to set `runningAction` on each access and effectively associating any state\n * mutation to the action.\n *\n * @param store - store to patch\n * @param actionNames - list of actionst to patch\n */\nfunction patchActionForGrouping(store, actionNames, wrapWithProxy) {\n    // original actions of the store as they are given by pinia. We are going to override them\n    const actions = actionNames.reduce((storeActions, actionName) => {\n        // use toRaw to avoid tracking #541\n        storeActions[actionName] = toRaw(store)[actionName];\n        return storeActions;\n    }, {});\n    for (const actionName in actions) {\n        store[actionName] = function () {\n            // the running action id is incremented in a before action hook\n            const _actionId = runningActionId;\n            const trackedStore = wrapWithProxy\n                ? new Proxy(store, {\n                    get(...args) {\n                        activeAction = _actionId;\n                        return Reflect.get(...args);\n                    },\n                    set(...args) {\n                        activeAction = _actionId;\n                        return Reflect.set(...args);\n                    },\n                })\n                : store;\n            // For Setup Stores we need https://github.com/tc39/proposal-async-context\n            activeAction = _actionId;\n            const retValue = actions[actionName].apply(trackedStore, arguments);\n            // this is safer as async actions in Setup Stores would associate mutations done outside of the action\n            activeAction = undefined;\n            return retValue;\n        };\n    }\n}\n/**\n * pinia.use(devtoolsPlugin)\n */\nfunction devtoolsPlugin({ app, store, options }) {\n    // HMR module\n    if (store.$id.startsWith('__hot:')) {\n        return;\n    }\n    // detect option api vs setup api\n    store._isOptionsAPI = !!options.state;\n    patchActionForGrouping(store, Object.keys(options.actions), store._isOptionsAPI);\n    // Upgrade the HMR to also update the new actions\n    const originalHotUpdate = store._hotUpdate;\n    toRaw(store)._hotUpdate = function (newStore) {\n        originalHotUpdate.apply(this, arguments);\n        patchActionForGrouping(store, Object.keys(newStore._hmrPayload.actions), !!store._isOptionsAPI);\n    };\n    addStoreToDevtools(app, \n    // FIXME: is there a way to allow the assignment from Store<Id, S, G, A> to StoreGeneric?\n    store);\n}\n\n/**\n * Creates a Pinia instance to be used by the application\n */\nfunction createPinia() {\n    const scope = effectScope(true);\n    // NOTE: here we could check the window object for a state and directly set it\n    // if there is anything like it with Vue 3 SSR\n    const state = scope.run(() => ref({}));\n    let _p = [];\n    // plugins added before calling app.use(pinia)\n    let toBeInstalled = [];\n    const pinia = markRaw({\n        install(app) {\n            // this allows calling useStore() outside of a component setup after\n            // installing pinia's plugin\n            setActivePinia(pinia);\n            if (!isVue2) {\n                pinia._a = app;\n                app.provide(piniaSymbol, pinia);\n                app.config.globalProperties.$pinia = pinia;\n                /* istanbul ignore else */\n                if (USE_DEVTOOLS) {\n                    registerPiniaDevtools(app, pinia);\n                }\n                toBeInstalled.forEach((plugin) => _p.push(plugin));\n                toBeInstalled = [];\n            }\n        },\n        use(plugin) {\n            if (!this._a && !isVue2) {\n                toBeInstalled.push(plugin);\n            }\n            else {\n                _p.push(plugin);\n            }\n            return this;\n        },\n        _p,\n        // it's actually undefined here\n        // @ts-expect-error\n        _a: null,\n        _e: scope,\n        _s: new Map(),\n        state,\n    });\n    // pinia devtools rely on dev only features so they cannot be forced unless\n    // the dev build of Vue is used. Avoid old browsers like IE11.\n    if (USE_DEVTOOLS && typeof Proxy !== 'undefined') {\n        pinia.use(devtoolsPlugin);\n    }\n    return pinia;\n}\n\n/**\n * Checks if a function is a `StoreDefinition`.\n *\n * @param fn - object to test\n * @returns true if `fn` is a StoreDefinition\n */\nconst isUseStore = (fn) => {\n    return typeof fn === 'function' && typeof fn.$id === 'string';\n};\n/**\n * Mutates in place `newState` with `oldState` to _hot update_ it. It will\n * remove any key not existing in `newState` and recursively merge plain\n * objects.\n *\n * @param newState - new state object to be patched\n * @param oldState - old state that should be used to patch newState\n * @returns - newState\n */\nfunction patchObject(newState, oldState) {\n    // no need to go through symbols because they cannot be serialized anyway\n    for (const key in oldState) {\n        const subPatch = oldState[key];\n        // skip the whole sub tree\n        if (!(key in newState)) {\n            continue;\n        }\n        const targetValue = newState[key];\n        if (isPlainObject(targetValue) &&\n            isPlainObject(subPatch) &&\n            !isRef(subPatch) &&\n            !isReactive(subPatch)) {\n            newState[key] = patchObject(targetValue, subPatch);\n        }\n        else {\n            // objects are either a bit more complex (e.g. refs) or primitives, so we\n            // just set the whole thing\n            if (isVue2) {\n                set(newState, key, subPatch);\n            }\n            else {\n                newState[key] = subPatch;\n            }\n        }\n    }\n    return newState;\n}\n/**\n * Creates an _accept_ function to pass to `import.meta.hot` in Vite applications.\n *\n * @example\n * ```js\n * const useUser = defineStore(...)\n * if (import.meta.hot) {\n *   import.meta.hot.accept(acceptHMRUpdate(useUser, import.meta.hot))\n * }\n * ```\n *\n * @param initialUseStore - return of the defineStore to hot update\n * @param hot - `import.meta.hot`\n */\nfunction acceptHMRUpdate(initialUseStore, hot) {\n    // strip as much as possible from iife.prod\n    if (!(process.env.NODE_ENV !== 'production')) {\n        return () => { };\n    }\n    return (newModule) => {\n        const pinia = hot.data.pinia || initialUseStore._pinia;\n        if (!pinia) {\n            // this store is still not used\n            return;\n        }\n        // preserve the pinia instance across loads\n        hot.data.pinia = pinia;\n        // console.log('got data', newStore)\n        for (const exportName in newModule) {\n            const useStore = newModule[exportName];\n            // console.log('checking for', exportName)\n            if (isUseStore(useStore) && pinia._s.has(useStore.$id)) {\n                // console.log('Accepting update for', useStore.$id)\n                const id = useStore.$id;\n                if (id !== initialUseStore.$id) {\n                    console.warn(`The id of the store changed from \"${initialUseStore.$id}\" to \"${id}\". Reloading.`);\n                    // return import.meta.hot.invalidate()\n                    return hot.invalidate();\n                }\n                const existingStore = pinia._s.get(id);\n                if (!existingStore) {\n                    console.log(`[Pinia]: skipping hmr because store doesn't exist yet`);\n                    return;\n                }\n                useStore(pinia, existingStore);\n            }\n        }\n    };\n}\n\nconst noop = () => { };\nfunction addSubscription(subscriptions, callback, detached, onCleanup = noop) {\n    subscriptions.push(callback);\n    const removeSubscription = () => {\n        const idx = subscriptions.indexOf(callback);\n        if (idx > -1) {\n            subscriptions.splice(idx, 1);\n            onCleanup();\n        }\n    };\n    if (!detached && getCurrentScope()) {\n        onScopeDispose(removeSubscription);\n    }\n    return removeSubscription;\n}\nfunction triggerSubscriptions(subscriptions, ...args) {\n    subscriptions.slice().forEach((callback) => {\n        callback(...args);\n    });\n}\n\nconst fallbackRunWithContext = (fn) => fn();\nfunction mergeReactiveObjects(target, patchToApply) {\n    // Handle Map instances\n    if (target instanceof Map && patchToApply instanceof Map) {\n        patchToApply.forEach((value, key) => target.set(key, value));\n    }\n    // Handle Set instances\n    if (target instanceof Set && patchToApply instanceof Set) {\n        patchToApply.forEach(target.add, target);\n    }\n    // no need to go through symbols because they cannot be serialized anyway\n    for (const key in patchToApply) {\n        if (!patchToApply.hasOwnProperty(key))\n            continue;\n        const subPatch = patchToApply[key];\n        const targetValue = target[key];\n        if (isPlainObject(targetValue) &&\n            isPlainObject(subPatch) &&\n            target.hasOwnProperty(key) &&\n            !isRef(subPatch) &&\n            !isReactive(subPatch)) {\n            // NOTE: here I wanted to warn about inconsistent types but it's not possible because in setup stores one might\n            // start the value of a property as a certain type e.g. a Map, and then for some reason, during SSR, change that\n            // to `undefined`. When trying to hydrate, we want to override the Map with `undefined`.\n            target[key] = mergeReactiveObjects(targetValue, subPatch);\n        }\n        else {\n            // @ts-expect-error: subPatch is a valid value\n            target[key] = subPatch;\n        }\n    }\n    return target;\n}\nconst skipHydrateSymbol = (process.env.NODE_ENV !== 'production')\n    ? Symbol('pinia:skipHydration')\n    : /* istanbul ignore next */ Symbol();\nconst skipHydrateMap = /*#__PURE__*/ new WeakMap();\n/**\n * Tells Pinia to skip the hydration process of a given object. This is useful in setup stores (only) when you return a\n * stateful object in the store but it isn't really state. e.g. returning a router instance in a setup store.\n *\n * @param obj - target object\n * @returns obj\n */\nfunction skipHydrate(obj) {\n    return isVue2\n        ? // in @vue/composition-api, the refs are sealed so defineProperty doesn't work...\n            /* istanbul ignore next */ skipHydrateMap.set(obj, 1) && obj\n        : Object.defineProperty(obj, skipHydrateSymbol, {});\n}\n/**\n * Returns whether a value should be hydrated\n *\n * @param obj - target variable\n * @returns true if `obj` should be hydrated\n */\nfunction shouldHydrate(obj) {\n    return isVue2\n        ? /* istanbul ignore next */ !skipHydrateMap.has(obj)\n        : !isPlainObject(obj) || !obj.hasOwnProperty(skipHydrateSymbol);\n}\nconst { assign } = Object;\nfunction isComputed(o) {\n    return !!(isRef(o) && o.effect);\n}\nfunction createOptionsStore(id, options, pinia, hot) {\n    const { state, actions, getters } = options;\n    const initialState = pinia.state.value[id];\n    let store;\n    function setup() {\n        if (!initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n            /* istanbul ignore if */\n            if (isVue2) {\n                set(pinia.state.value, id, state ? state() : {});\n            }\n            else {\n                pinia.state.value[id] = state ? state() : {};\n            }\n        }\n        // avoid creating a state in pinia.state.value\n        const localState = (process.env.NODE_ENV !== 'production') && hot\n            ? // use ref() to unwrap refs inside state TODO: check if this is still necessary\n                toRefs(ref(state ? state() : {}).value)\n            : toRefs(pinia.state.value[id]);\n        return assign(localState, actions, Object.keys(getters || {}).reduce((computedGetters, name) => {\n            if ((process.env.NODE_ENV !== 'production') && name in localState) {\n                console.warn(`[🍍]: A getter cannot have the same name as another state property. Rename one of them. Found with \"${name}\" in store \"${id}\".`);\n            }\n            computedGetters[name] = markRaw(computed(() => {\n                setActivePinia(pinia);\n                // it was created just before\n                const store = pinia._s.get(id);\n                // allow cross using stores\n                /* istanbul ignore next */\n                if (isVue2 && !store._r)\n                    return;\n                // @ts-expect-error\n                // return getters![name].call(context, context)\n                // TODO: avoid reading the getter while assigning with a global variable\n                return getters[name].call(store, store);\n            }));\n            return computedGetters;\n        }, {}));\n    }\n    store = createSetupStore(id, setup, options, pinia, hot, true);\n    return store;\n}\nfunction createSetupStore($id, setup, options = {}, pinia, hot, isOptionsStore) {\n    let scope;\n    const optionsForPlugin = assign({ actions: {} }, options);\n    /* istanbul ignore if */\n    if ((process.env.NODE_ENV !== 'production') && !pinia._e.active) {\n        throw new Error('Pinia destroyed');\n    }\n    // watcher options for $subscribe\n    const $subscribeOptions = {\n        deep: true,\n        // flush: 'post',\n    };\n    /* istanbul ignore else */\n    if ((process.env.NODE_ENV !== 'production') && !isVue2) {\n        $subscribeOptions.onTrigger = (event) => {\n            /* istanbul ignore else */\n            if (isListening) {\n                debuggerEvents = event;\n                // avoid triggering this while the store is being built and the state is being set in pinia\n            }\n            else if (isListening == false && !store._hotUpdating) {\n                // let patch send all the events together later\n                /* istanbul ignore else */\n                if (Array.isArray(debuggerEvents)) {\n                    debuggerEvents.push(event);\n                }\n                else {\n                    console.error('🍍 debuggerEvents should be an array. This is most likely an internal Pinia bug.');\n                }\n            }\n        };\n    }\n    // internal state\n    let isListening; // set to true at the end\n    let isSyncListening; // set to true at the end\n    let subscriptions = [];\n    let actionSubscriptions = [];\n    let debuggerEvents;\n    const initialState = pinia.state.value[$id];\n    // avoid setting the state for option stores if it is set\n    // by the setup\n    if (!isOptionsStore && !initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n        /* istanbul ignore if */\n        if (isVue2) {\n            set(pinia.state.value, $id, {});\n        }\n        else {\n            pinia.state.value[$id] = {};\n        }\n    }\n    const hotState = ref({});\n    // avoid triggering too many listeners\n    // https://github.com/vuejs/pinia/issues/1129\n    let activeListener;\n    function $patch(partialStateOrMutator) {\n        let subscriptionMutation;\n        isListening = isSyncListening = false;\n        // reset the debugger events since patches are sync\n        /* istanbul ignore else */\n        if ((process.env.NODE_ENV !== 'production')) {\n            debuggerEvents = [];\n        }\n        if (typeof partialStateOrMutator === 'function') {\n            partialStateOrMutator(pinia.state.value[$id]);\n            subscriptionMutation = {\n                type: MutationType.patchFunction,\n                storeId: $id,\n                events: debuggerEvents,\n            };\n        }\n        else {\n            mergeReactiveObjects(pinia.state.value[$id], partialStateOrMutator);\n            subscriptionMutation = {\n                type: MutationType.patchObject,\n                payload: partialStateOrMutator,\n                storeId: $id,\n                events: debuggerEvents,\n            };\n        }\n        const myListenerId = (activeListener = Symbol());\n        nextTick().then(() => {\n            if (activeListener === myListenerId) {\n                isListening = true;\n            }\n        });\n        isSyncListening = true;\n        // because we paused the watcher, we need to manually call the subscriptions\n        triggerSubscriptions(subscriptions, subscriptionMutation, pinia.state.value[$id]);\n    }\n    const $reset = isOptionsStore\n        ? function $reset() {\n            const { state } = options;\n            const newState = state ? state() : {};\n            // we use a patch to group all changes into one single subscription\n            this.$patch(($state) => {\n                assign($state, newState);\n            });\n        }\n        : /* istanbul ignore next */\n            (process.env.NODE_ENV !== 'production')\n                ? () => {\n                    throw new Error(`🍍: Store \"${$id}\" is built using the setup syntax and does not implement $reset().`);\n                }\n                : noop;\n    function $dispose() {\n        scope.stop();\n        subscriptions = [];\n        actionSubscriptions = [];\n        pinia._s.delete($id);\n    }\n    /**\n     * Wraps an action to handle subscriptions.\n     *\n     * @param name - name of the action\n     * @param action - action to wrap\n     * @returns a wrapped action to handle subscriptions\n     */\n    function wrapAction(name, action) {\n        return function () {\n            setActivePinia(pinia);\n            const args = Array.from(arguments);\n            const afterCallbackList = [];\n            const onErrorCallbackList = [];\n            function after(callback) {\n                afterCallbackList.push(callback);\n            }\n            function onError(callback) {\n                onErrorCallbackList.push(callback);\n            }\n            // @ts-expect-error\n            triggerSubscriptions(actionSubscriptions, {\n                args,\n                name,\n                store,\n                after,\n                onError,\n            });\n            let ret;\n            try {\n                ret = action.apply(this && this.$id === $id ? this : store, args);\n                // handle sync errors\n            }\n            catch (error) {\n                triggerSubscriptions(onErrorCallbackList, error);\n                throw error;\n            }\n            if (ret instanceof Promise) {\n                return ret\n                    .then((value) => {\n                    triggerSubscriptions(afterCallbackList, value);\n                    return value;\n                })\n                    .catch((error) => {\n                    triggerSubscriptions(onErrorCallbackList, error);\n                    return Promise.reject(error);\n                });\n            }\n            // trigger after callbacks\n            triggerSubscriptions(afterCallbackList, ret);\n            return ret;\n        };\n    }\n    const _hmrPayload = /*#__PURE__*/ markRaw({\n        actions: {},\n        getters: {},\n        state: [],\n        hotState,\n    });\n    const partialStore = {\n        _p: pinia,\n        // _s: scope,\n        $id,\n        $onAction: addSubscription.bind(null, actionSubscriptions),\n        $patch,\n        $reset,\n        $subscribe(callback, options = {}) {\n            const removeSubscription = addSubscription(subscriptions, callback, options.detached, () => stopWatcher());\n            const stopWatcher = scope.run(() => watch(() => pinia.state.value[$id], (state) => {\n                if (options.flush === 'sync' ? isSyncListening : isListening) {\n                    callback({\n                        storeId: $id,\n                        type: MutationType.direct,\n                        events: debuggerEvents,\n                    }, state);\n                }\n            }, assign({}, $subscribeOptions, options)));\n            return removeSubscription;\n        },\n        $dispose,\n    };\n    /* istanbul ignore if */\n    if (isVue2) {\n        // start as non ready\n        partialStore._r = false;\n    }\n    const store = reactive((process.env.NODE_ENV !== 'production') || USE_DEVTOOLS\n        ? assign({\n            _hmrPayload,\n            _customProperties: markRaw(new Set()), // devtools custom properties\n        }, partialStore\n        // must be added later\n        // setupStore\n        )\n        : partialStore);\n    // store the partial store now so the setup of stores can instantiate each other before they are finished without\n    // creating infinite loops.\n    pinia._s.set($id, store);\n    const runWithContext = (pinia._a && pinia._a.runWithContext) || fallbackRunWithContext;\n    // TODO: idea create skipSerialize that marks properties as non serializable and they are skipped\n    const setupStore = runWithContext(() => pinia._e.run(() => (scope = effectScope()).run(setup)));\n    // overwrite existing actions to support $onAction\n    for (const key in setupStore) {\n        const prop = setupStore[key];\n        if ((isRef(prop) && !isComputed(prop)) || isReactive(prop)) {\n            // mark it as a piece of state to be serialized\n            if ((process.env.NODE_ENV !== 'production') && hot) {\n                set(hotState.value, key, toRef(setupStore, key));\n                // createOptionStore directly sets the state in pinia.state.value so we\n                // can just skip that\n            }\n            else if (!isOptionsStore) {\n                // in setup stores we must hydrate the state and sync pinia state tree with the refs the user just created\n                if (initialState && shouldHydrate(prop)) {\n                    if (isRef(prop)) {\n                        prop.value = initialState[key];\n                    }\n                    else {\n                        // probably a reactive object, lets recursively assign\n                        // @ts-expect-error: prop is unknown\n                        mergeReactiveObjects(prop, initialState[key]);\n                    }\n                }\n                // transfer the ref to the pinia state to keep everything in sync\n                /* istanbul ignore if */\n                if (isVue2) {\n                    set(pinia.state.value[$id], key, prop);\n                }\n                else {\n                    pinia.state.value[$id][key] = prop;\n                }\n            }\n            /* istanbul ignore else */\n            if ((process.env.NODE_ENV !== 'production')) {\n                _hmrPayload.state.push(key);\n            }\n            // action\n        }\n        else if (typeof prop === 'function') {\n            // @ts-expect-error: we are overriding the function we avoid wrapping if\n            const actionValue = (process.env.NODE_ENV !== 'production') && hot ? prop : wrapAction(key, prop);\n            // this a hot module replacement store because the hotUpdate method needs\n            // to do it with the right context\n            /* istanbul ignore if */\n            if (isVue2) {\n                set(setupStore, key, actionValue);\n            }\n            else {\n                // @ts-expect-error\n                setupStore[key] = actionValue;\n            }\n            /* istanbul ignore else */\n            if ((process.env.NODE_ENV !== 'production')) {\n                _hmrPayload.actions[key] = prop;\n            }\n            // list actions so they can be used in plugins\n            // @ts-expect-error\n            optionsForPlugin.actions[key] = prop;\n        }\n        else if ((process.env.NODE_ENV !== 'production')) {\n            // add getters for devtools\n            if (isComputed(prop)) {\n                _hmrPayload.getters[key] = isOptionsStore\n                    ? // @ts-expect-error\n                        options.getters[key]\n                    : prop;\n                if (IS_CLIENT) {\n                    const getters = setupStore._getters ||\n                        // @ts-expect-error: same\n                        (setupStore._getters = markRaw([]));\n                    getters.push(key);\n                }\n            }\n        }\n    }\n    // add the state, getters, and action properties\n    /* istanbul ignore if */\n    if (isVue2) {\n        Object.keys(setupStore).forEach((key) => {\n            set(store, key, setupStore[key]);\n        });\n    }\n    else {\n        assign(store, setupStore);\n        // allows retrieving reactive objects with `storeToRefs()`. Must be called after assigning to the reactive object.\n        // Make `storeToRefs()` work with `reactive()` #799\n        assign(toRaw(store), setupStore);\n    }\n    // use this instead of a computed with setter to be able to create it anywhere\n    // without linking the computed lifespan to wherever the store is first\n    // created.\n    Object.defineProperty(store, '$state', {\n        get: () => ((process.env.NODE_ENV !== 'production') && hot ? hotState.value : pinia.state.value[$id]),\n        set: (state) => {\n            /* istanbul ignore if */\n            if ((process.env.NODE_ENV !== 'production') && hot) {\n                throw new Error('cannot set hotState');\n            }\n            $patch(($state) => {\n                assign($state, state);\n            });\n        },\n    });\n    // add the hotUpdate before plugins to allow them to override it\n    /* istanbul ignore else */\n    if ((process.env.NODE_ENV !== 'production')) {\n        store._hotUpdate = markRaw((newStore) => {\n            store._hotUpdating = true;\n            newStore._hmrPayload.state.forEach((stateKey) => {\n                if (stateKey in store.$state) {\n                    const newStateTarget = newStore.$state[stateKey];\n                    const oldStateSource = store.$state[stateKey];\n                    if (typeof newStateTarget === 'object' &&\n                        isPlainObject(newStateTarget) &&\n                        isPlainObject(oldStateSource)) {\n                        patchObject(newStateTarget, oldStateSource);\n                    }\n                    else {\n                        // transfer the ref\n                        newStore.$state[stateKey] = oldStateSource;\n                    }\n                }\n                // patch direct access properties to allow store.stateProperty to work as\n                // store.$state.stateProperty\n                set(store, stateKey, toRef(newStore.$state, stateKey));\n            });\n            // remove deleted state properties\n            Object.keys(store.$state).forEach((stateKey) => {\n                if (!(stateKey in newStore.$state)) {\n                    del(store, stateKey);\n                }\n            });\n            // avoid devtools logging this as a mutation\n            isListening = false;\n            isSyncListening = false;\n            pinia.state.value[$id] = toRef(newStore._hmrPayload, 'hotState');\n            isSyncListening = true;\n            nextTick().then(() => {\n                isListening = true;\n            });\n            for (const actionName in newStore._hmrPayload.actions) {\n                const action = newStore[actionName];\n                set(store, actionName, wrapAction(actionName, action));\n            }\n            // TODO: does this work in both setup and option store?\n            for (const getterName in newStore._hmrPayload.getters) {\n                const getter = newStore._hmrPayload.getters[getterName];\n                const getterValue = isOptionsStore\n                    ? // special handling of options api\n                        computed(() => {\n                            setActivePinia(pinia);\n                            return getter.call(store, store);\n                        })\n                    : getter;\n                set(store, getterName, getterValue);\n            }\n            // remove deleted getters\n            Object.keys(store._hmrPayload.getters).forEach((key) => {\n                if (!(key in newStore._hmrPayload.getters)) {\n                    del(store, key);\n                }\n            });\n            // remove old actions\n            Object.keys(store._hmrPayload.actions).forEach((key) => {\n                if (!(key in newStore._hmrPayload.actions)) {\n                    del(store, key);\n                }\n            });\n            // update the values used in devtools and to allow deleting new properties later on\n            store._hmrPayload = newStore._hmrPayload;\n            store._getters = newStore._getters;\n            store._hotUpdating = false;\n        });\n    }\n    if (USE_DEVTOOLS) {\n        const nonEnumerable = {\n            writable: true,\n            configurable: true,\n            // avoid warning on devtools trying to display this property\n            enumerable: false,\n        };\n        ['_p', '_hmrPayload', '_getters', '_customProperties'].forEach((p) => {\n            Object.defineProperty(store, p, assign({ value: store[p] }, nonEnumerable));\n        });\n    }\n    /* istanbul ignore if */\n    if (isVue2) {\n        // mark the store as ready before plugins\n        store._r = true;\n    }\n    // apply all plugins\n    pinia._p.forEach((extender) => {\n        /* istanbul ignore else */\n        if (USE_DEVTOOLS) {\n            const extensions = scope.run(() => extender({\n                store,\n                app: pinia._a,\n                pinia,\n                options: optionsForPlugin,\n            }));\n            Object.keys(extensions || {}).forEach((key) => store._customProperties.add(key));\n            assign(store, extensions);\n        }\n        else {\n            assign(store, scope.run(() => extender({\n                store,\n                app: pinia._a,\n                pinia,\n                options: optionsForPlugin,\n            })));\n        }\n    });\n    if ((process.env.NODE_ENV !== 'production') &&\n        store.$state &&\n        typeof store.$state === 'object' &&\n        typeof store.$state.constructor === 'function' &&\n        !store.$state.constructor.toString().includes('[native code]')) {\n        console.warn(`[🍍]: The \"state\" must be a plain object. It cannot be\\n` +\n            `\\tstate: () => new MyClass()\\n` +\n            `Found in store \"${store.$id}\".`);\n    }\n    // only apply hydrate to option stores with an initial state in pinia\n    if (initialState &&\n        isOptionsStore &&\n        options.hydrate) {\n        options.hydrate(store.$state, initialState);\n    }\n    isListening = true;\n    isSyncListening = true;\n    return store;\n}\nfunction defineStore(\n// TODO: add proper types from above\nidOrOptions, setup, setupOptions) {\n    let id;\n    let options;\n    const isSetupStore = typeof setup === 'function';\n    if (typeof idOrOptions === 'string') {\n        id = idOrOptions;\n        // the option store setup will contain the actual options in this case\n        options = isSetupStore ? setupOptions : setup;\n    }\n    else {\n        options = idOrOptions;\n        id = idOrOptions.id;\n        if ((process.env.NODE_ENV !== 'production') && typeof id !== 'string') {\n            throw new Error(`[🍍]: \"defineStore()\" must be passed a store id as its first argument.`);\n        }\n    }\n    function useStore(pinia, hot) {\n        const hasContext = hasInjectionContext();\n        pinia =\n            // in test mode, ignore the argument provided as we can always retrieve a\n            // pinia instance with getActivePinia()\n            ((process.env.NODE_ENV === 'test') && activePinia && activePinia._testing ? null : pinia) ||\n                (hasContext ? inject(piniaSymbol, null) : null);\n        if (pinia)\n            setActivePinia(pinia);\n        if ((process.env.NODE_ENV !== 'production') && !activePinia) {\n            throw new Error(`[🍍]: \"getActivePinia()\" was called but there was no active Pinia. Are you trying to use a store before calling \"app.use(pinia)\"?\\n` +\n                `See https://pinia.vuejs.org/core-concepts/outside-component-usage.html for help.\\n` +\n                `This will fail in production.`);\n        }\n        pinia = activePinia;\n        if (!pinia._s.has(id)) {\n            // creating the store registers it in `pinia._s`\n            if (isSetupStore) {\n                createSetupStore(id, setup, options, pinia);\n            }\n            else {\n                createOptionsStore(id, options, pinia);\n            }\n            /* istanbul ignore else */\n            if ((process.env.NODE_ENV !== 'production')) {\n                // @ts-expect-error: not the right inferred type\n                useStore._pinia = pinia;\n            }\n        }\n        const store = pinia._s.get(id);\n        if ((process.env.NODE_ENV !== 'production') && hot) {\n            const hotId = '__hot:' + id;\n            const newStore = isSetupStore\n                ? createSetupStore(hotId, setup, options, pinia, true)\n                : createOptionsStore(hotId, assign({}, options), pinia, true);\n            hot._hotUpdate(newStore);\n            // cleanup the state properties and the store from the cache\n            delete pinia.state.value[hotId];\n            pinia._s.delete(hotId);\n        }\n        if ((process.env.NODE_ENV !== 'production') && IS_CLIENT) {\n            const currentInstance = getCurrentInstance();\n            // save stores in instances to access them devtools\n            if (currentInstance &&\n                currentInstance.proxy &&\n                // avoid adding stores that are just built for hot module replacement\n                !hot) {\n                const vm = currentInstance.proxy;\n                const cache = '_pStores' in vm ? vm._pStores : (vm._pStores = {});\n                cache[id] = store;\n            }\n        }\n        // StoreGeneric cannot be casted towards Store\n        return store;\n    }\n    useStore.$id = id;\n    return useStore;\n}\n\nlet mapStoreSuffix = 'Store';\n/**\n * Changes the suffix added by `mapStores()`. Can be set to an empty string.\n * Defaults to `\"Store\"`. Make sure to extend the MapStoresCustomization\n * interface if you are using TypeScript.\n *\n * @param suffix - new suffix\n */\nfunction setMapStoreSuffix(suffix // could be 'Store' but that would be annoying for JS\n) {\n    mapStoreSuffix = suffix;\n}\n/**\n * Allows using stores without the composition API (`setup()`) by generating an\n * object to be spread in the `computed` field of a component. It accepts a list\n * of store definitions.\n *\n * @example\n * ```js\n * export default {\n *   computed: {\n *     // other computed properties\n *     ...mapStores(useUserStore, useCartStore)\n *   },\n *\n *   created() {\n *     this.userStore // store with id \"user\"\n *     this.cartStore // store with id \"cart\"\n *   }\n * }\n * ```\n *\n * @param stores - list of stores to map to an object\n */\nfunction mapStores(...stores) {\n    if ((process.env.NODE_ENV !== 'production') && Array.isArray(stores[0])) {\n        console.warn(`[🍍]: Directly pass all stores to \"mapStores()\" without putting them in an array:\\n` +\n            `Replace\\n` +\n            `\\tmapStores([useAuthStore, useCartStore])\\n` +\n            `with\\n` +\n            `\\tmapStores(useAuthStore, useCartStore)\\n` +\n            `This will fail in production if not fixed.`);\n        stores = stores[0];\n    }\n    return stores.reduce((reduced, useStore) => {\n        // @ts-expect-error: $id is added by defineStore\n        reduced[useStore.$id + mapStoreSuffix] = function () {\n            return useStore(this.$pinia);\n        };\n        return reduced;\n    }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapState(useStore, keysOrMapper) {\n    return Array.isArray(keysOrMapper)\n        ? keysOrMapper.reduce((reduced, key) => {\n            reduced[key] = function () {\n                return useStore(this.$pinia)[key];\n            };\n            return reduced;\n        }, {})\n        : Object.keys(keysOrMapper).reduce((reduced, key) => {\n            // @ts-expect-error\n            reduced[key] = function () {\n                const store = useStore(this.$pinia);\n                const storeKey = keysOrMapper[key];\n                // for some reason TS is unable to infer the type of storeKey to be a\n                // function\n                return typeof storeKey === 'function'\n                    ? storeKey.call(this, store)\n                    : store[storeKey];\n            };\n            return reduced;\n        }, {});\n}\n/**\n * Alias for `mapState()`. You should use `mapState()` instead.\n * @deprecated use `mapState()` instead.\n */\nconst mapGetters = mapState;\n/**\n * Allows directly using actions from your store without using the composition\n * API (`setup()`) by generating an object to be spread in the `methods` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapActions(useStore, keysOrMapper) {\n    return Array.isArray(keysOrMapper)\n        ? keysOrMapper.reduce((reduced, key) => {\n            // @ts-expect-error\n            reduced[key] = function (...args) {\n                return useStore(this.$pinia)[key](...args);\n            };\n            return reduced;\n        }, {})\n        : Object.keys(keysOrMapper).reduce((reduced, key) => {\n            // @ts-expect-error\n            reduced[key] = function (...args) {\n                return useStore(this.$pinia)[keysOrMapper[key]](...args);\n            };\n            return reduced;\n        }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapWritableState(useStore, keysOrMapper) {\n    return Array.isArray(keysOrMapper)\n        ? keysOrMapper.reduce((reduced, key) => {\n            // @ts-ignore\n            reduced[key] = {\n                get() {\n                    return useStore(this.$pinia)[key];\n                },\n                set(value) {\n                    // it's easier to type it here as any\n                    return (useStore(this.$pinia)[key] = value);\n                },\n            };\n            return reduced;\n        }, {})\n        : Object.keys(keysOrMapper).reduce((reduced, key) => {\n            // @ts-ignore\n            reduced[key] = {\n                get() {\n                    return useStore(this.$pinia)[keysOrMapper[key]];\n                },\n                set(value) {\n                    // it's easier to type it here as any\n                    return (useStore(this.$pinia)[keysOrMapper[key]] = value);\n                },\n            };\n            return reduced;\n        }, {});\n}\n\n/**\n * Creates an object of references with all the state, getters, and plugin-added\n * state properties of the store. Similar to `toRefs()` but specifically\n * designed for Pinia stores so methods and non reactive properties are\n * completely ignored.\n *\n * @param store - store to extract the refs from\n */\nfunction storeToRefs(store) {\n    // See https://github.com/vuejs/pinia/issues/852\n    // It's easier to just use toRefs() even if it includes more stuff\n    if (isVue2) {\n        // @ts-expect-error: toRefs include methods and others\n        return toRefs(store);\n    }\n    else {\n        store = toRaw(store);\n        const refs = {};\n        for (const key in store) {\n            const value = store[key];\n            if (isRef(value) || isReactive(value)) {\n                // @ts-expect-error: the key is state or getter\n                refs[key] =\n                    // ---\n                    toRef(store, key);\n            }\n        }\n        return refs;\n    }\n}\n\n/**\n * Vue 2 Plugin that must be installed for pinia to work. Note **you don't need\n * this plugin if you are using Nuxt.js**. Use the `buildModule` instead:\n * https://pinia.vuejs.org/ssr/nuxt.html.\n *\n * @example\n * ```js\n * import Vue from 'vue'\n * import { PiniaVuePlugin, createPinia } from 'pinia'\n *\n * Vue.use(PiniaVuePlugin)\n * const pinia = createPinia()\n *\n * new Vue({\n *   el: '#app',\n *   // ...\n *   pinia,\n * })\n * ```\n *\n * @param _Vue - `Vue` imported from 'vue'.\n */\nconst PiniaVuePlugin = function (_Vue) {\n    // Equivalent of\n    // app.config.globalProperties.$pinia = pinia\n    _Vue.mixin({\n        beforeCreate() {\n            const options = this.$options;\n            if (options.pinia) {\n                const pinia = options.pinia;\n                // HACK: taken from provide(): https://github.com/vuejs/composition-api/blob/main/src/apis/inject.ts#L31\n                /* istanbul ignore else */\n                if (!this._provided) {\n                    const provideCache = {};\n                    Object.defineProperty(this, '_provided', {\n                        get: () => provideCache,\n                        set: (v) => Object.assign(provideCache, v),\n                    });\n                }\n                this._provided[piniaSymbol] = pinia;\n                // propagate the pinia instance in an SSR friendly way\n                // avoid adding it to nuxt twice\n                /* istanbul ignore else */\n                if (!this.$pinia) {\n                    this.$pinia = pinia;\n                }\n                pinia._a = this;\n                if (IS_CLIENT) {\n                    // this allows calling useStore() outside of a component setup after\n                    // installing pinia's plugin\n                    setActivePinia(pinia);\n                }\n                if (USE_DEVTOOLS) {\n                    registerPiniaDevtools(pinia._a, pinia);\n                }\n            }\n            else if (!this.$pinia && options.parent && options.parent.$pinia) {\n                this.$pinia = options.parent.$pinia;\n            }\n        },\n        destroyed() {\n            delete this._pStores;\n        },\n    });\n};\n\nexport { MutationType, PiniaVuePlugin, acceptHMRUpdate, createPinia, defineStore, getActivePinia, mapActions, mapGetters, mapState, mapStores, mapWritableState, setActivePinia, setMapStoreSuffix, skipHydrate, storeToRefs };\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).replace(/[!'()*]/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 keyValueSep = 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), keyValueSep, 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.replace(/\\+/g, ' ') : 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 = {encode: true,\n\t\tstrict: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',', ...options};\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\tif (queryString) {\n\t\tqueryString = `?${queryString}`;\n\t}\n\n\tlet hash = getHash(object.url);\n\tif (object.fragmentIdentifier) {\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","import { generateUrl } from '@nextcloud/router';\nimport queryString from 'query-string';\nimport Router from 'vue-router';\nimport Vue from 'vue';\nimport { ErrorHandler } from 'vue-router/types/router';\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 }","/* 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 }","/**\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","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\"","<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","\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:{\"data-cy-files-navigation-settings\":\"\",\"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 data-cy-files-navigation-settings\n\t\t: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=109572de&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=109572de&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=109572de&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=109572de&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  \"109572de\",\n  null\n  \n)\n\nexport default component.exports","import { getNavigation } from '@nextcloud/files';\nimport { onMounted, onUnmounted, shallowRef } from 'vue';\n/**\n * Composable to get the currently active files view from the files navigation\n */\nexport function useNavigation() {\n    const navigation = getNavigation();\n    const views = shallowRef(navigation.views);\n    const currentView = shallowRef(navigation.active);\n    /**\n     * Event listener to update the `currentView`\n     * @param event The update event\n     */\n    function onUpdateActive(event) {\n        currentView.value = event.detail;\n    }\n    /**\n     * Event listener to update all registered views\n     */\n    function onUpdateViews() {\n        views.value = navigation.views;\n    }\n    onMounted(() => {\n        navigation.addEventListener('update', onUpdateViews);\n        navigation.addEventListener('updateActive', onUpdateActive);\n    });\n    onUnmounted(() => {\n        navigation.removeEventListener('update', onUpdateViews);\n        navigation.removeEventListener('updateActive', onUpdateActive);\n    });\n    return {\n        currentView,\n        views,\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 { 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","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,_setup=_vm._self._setupProxy;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('IconCog',{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=d0bcf126&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=d0bcf126&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=d0bcf126&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=d0bcf126&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  \"d0bcf126\",\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.ShareType.Link)?_c('LinkIcon'):_c('AccountPlusIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,4106306959)}):_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 }, { ...window.OCP.Files.Router.query, 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","/**\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 */\nimport { davGetDefaultPropfind, davResultToNode, davRootPath } from '@nextcloud/files';\nimport { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nimport logger from '../logger';\nimport Vue from 'vue';\nimport { getClient } from '../services/WebdavClient.ts';\nconst client = getClient();\nconst fetchNode = async (node) => {\n    const propfindPayload = davGetDefaultPropfind();\n    const result = await client.stat(`${davRootPath}${node.path}`, {\n        details: true,\n        data: propfindPayload,\n    });\n    return davResultToNode(result.data);\n};\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 its source\n             */\n            getNode: (state) => (source) => state.files[source],\n            /**\n             * Get a list of files or folders by their IDs\n             * Note: does not return undefined values\n             */\n            getNodes: (state) => (sources) => sources\n                .map(source => state.files[source])\n                .filter(Boolean),\n            /**\n             * Get files or folders by their file ID\n             * Multiple nodes can have the same file ID but different sources\n             * (e.g. in a shared context)\n             */\n            getNodesById: (state) => (fileId) => Object.values(state.files).filter(node => node.fileid === fileId),\n            /**\n             * Get the root folder of a service\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.source] = node;\n                    return acc;\n                }, {});\n                Vue.set(this, 'files', { ...this.files, ...files });\n            },\n            deleteNodes(nodes) {\n                nodes.forEach(node => {\n                    if (node.source) {\n                        Vue.delete(this.files, node.source);\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            async onUpdatedNode(node) {\n                if (!node.fileid) {\n                    logger.error('Trying to update/set a node without fileid', { node });\n                    return;\n                }\n                // If we have multiple nodes with the same file ID, we need to update all of them\n                const nodes = this.getNodesById(node.fileid);\n                if (nodes.length > 1) {\n                    await Promise.all(nodes.map(fetchNode)).then(this.updateNodes);\n                    logger.debug(nodes.length + ' nodes updated in store', { fileid: node.fileid });\n                    return;\n                }\n                // If we have only one node with the file ID, we can update it directly\n                if (node.source === nodes[0].source) {\n                    this.updateNodes([node]);\n                    return;\n                }\n                // Otherwise, it means we receive an event for a node that is not in the store\n                fetchNode(node).then(n => this.updateNodes([n]));\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(...args);\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.source);\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                        source: node.source,\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.source);\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 parentSource = this.paths[service][node.dirname];\n                    const parentFolder = files.getNode(parentSource);\n                    logger.debug('Path already exists, updating children', { parentFolder, node });\n                    if (!parentFolder) {\n                        logger.error('Parent folder not found', { parentSource });\n                        return;\n                    }\n                    if (!parentFolder._children) {\n                        Vue.set(parentFolder, '_children', []);\n                    }\n                    parentFolder._children.push(node.source);\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","/**\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';\nimport { FileSource, SelectionStore } from '../types';\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      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!./style.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!./style.css\";\n       export default content && content.locals ? content.locals : undefined;\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// Maximum number of concurrent operations\nconst MAX_CONCURRENCY = 5;\n/**\n * Get the processing queue\n */\nexport const getQueue = () => {\n    if (!queue) {\n        queue = new PQueue({ concurrency: MAX_CONCURRENCY });\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    // a shared file cannot be copied if the download is disabled\n    // it can be copied if the user has at least read permissions\n    return canDownload(nodes)\n        && !nodes.some(node => node.permissions === Permission.NONE);\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    let hash = 0;\n    for (let i = 0; i < str.length; i++) {\n        hash = ((hash << 5) - hash + str.charCodeAt(i)) | 0;\n    }\n    return (hash >>> 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.ts';\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 = String(props['owner-id'] || userId);\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            'owner-id': owner,\n            'owner-display-name': String(props['owner-display-name']),\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) 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 { FileAction, FileType, NodeStatus, davGetClient, davRootPath, davResultToNode, davGetDefaultPropfind, getUniqueName } 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';\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                        // two empty arrays: either only old files or conflict skipped -> no action required\n                        if (!selected.length && !renamed.length) {\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 is 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 don't want to show the current nodes in the file picker\n        return !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=77111ada&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=77111ada&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=77111ada&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=77111ada&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  \"77111ada\",\n  null\n  \n)\n\nexport default component.exports","/**\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 { FileType } from '@nextcloud/files';\nimport { translate as t, translatePlural as n } from '@nextcloud/l10n';\nexport const encodeFilePath = function (path) {\n    const pathSections = (path.startsWith('/') ? path : `/${path}`).split('/');\n    let relativePath = '';\n    pathSections.forEach((section) => {\n        if (section !== '') {\n            relativePath += '/' + encodeURIComponent(section);\n        }\n    });\n    return relativePath;\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","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:{\"auxclick\":function($event){return _vm.execDefaultAction.apply(null, arguments)},\"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},nativeOn:{\"auxclick\":function($event){return _vm.execDefaultAction.apply(null, arguments)},\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}})],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}},[(_vm.source.mtime)?_c('NcDateTime',{attrs:{\"timestamp\":_vm.source.mtime,\"ignore-seconds\":true}}):_vm._e()],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 }","/**\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 }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Folder.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Folder.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-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,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z\">\n        <title v-if=\"title\">{{ title }}</title>\n      </path>\n    </svg>\n  </span>\n</template>\n\n<script>\nexport default {\n  name: \"FolderIcon\",\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 \"./Folder.vue?vue&type=template&id=07f089a4\"\nimport script from \"./Folder.vue?vue&type=script&lang=js\"\nexport * from \"./Folder.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-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,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z\"}},[(_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=b63e55d4&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=b63e55d4&prod&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./DragAndDropPreview.vue?vue&type=template&id=b63e55d4\"\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=b63e55d4&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 { showError } from '@nextcloud/dialogs';\nimport { FileType, Permission, Folder, File as NcFile, NodeStatus, Node, View } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport { generateUrl } from '@nextcloud/router';\nimport { vOnClickOutside } from '@vueuse/components';\nimport { extname } from 'path';\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 FileEntryActions from '../components/FileEntry/FileEntryActions.vue';\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        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 = String(this.source.attributes.displayname || 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.selectedFiles.includes(this.source.source);\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 String(this.fileid) === String(this.currentFileId);\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(source => this.filesStore.getNode(source));\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.draggingFiles.includes(this.source.source)) {\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                this.actionsMenuStore.opened = opened ? this.uniqueId.toString() : null;\n            },\n        },\n        isRenaming() {\n            return this.renamingStore.renamingNode === this.source;\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            else {\n                // Reset any right menu position potentially set\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            // 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            // Ignore click if we are renaming\n            if (this.isRenaming) {\n                return;\n            }\n            // Ignore right click.\n            if (event.button > 1) {\n                return;\n            }\n            // if ctrl+click or middle mouse button, open in new tab\n            if (event.ctrlKey || event.metaKey || event.button === 1) {\n                event.preventDefault();\n                window.open(generateUrl('/f/{fileId}', { fileId: this.fileid }));\n                return false;\n            }\n            const actions = this.$refs.actions;\n            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.source.source)) {\n                this.draggingStore.set(this.selectedFiles);\n            }\n            else {\n                this.draggingStore.set([this.source.source]);\n            }\n            const nodes = this.draggingStore.dragging\n                .map(source => this.filesStore.getNode(source));\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(source => this.filesStore.getNode(source));\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(source => this.selectedFiles.includes(source))) {\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","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\"","<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 { 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 }","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\":false /* never close submenu, just go back */,\"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 }","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=0bcaefce&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=0bcaefce&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=0bcaefce&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=0bcaefce&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=0bcaefce&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=0bcaefce&prod&lang=scss\"\nimport style1 from \"./FileEntryActions.vue?vue&type=style&index=1&id=0bcaefce&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  \"0bcaefce\",\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=9cf669b4\"\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\":\"\"}},'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=18c01b54\"\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=04e52abc&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=04e52abc&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=04e52abc&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=04e52abc&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  \"04e52abc\",\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=525376b0\"\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\"","import { render, staticRenderFns } from \"./FileEntry.vue?vue&type=template&id=1aa7bb6d\"\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:{\"auxclick\":function($event){return _vm.execDefaultAction.apply(null, arguments)},\"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},nativeOn:{\"auxclick\":function($event){return _vm.execDefaultAction.apply(null, arguments)},\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}})],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=b1769a56\"\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=097f69d4&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=097f69d4&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=097f69d4&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=097f69d4&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  \"097f69d4\",\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=68d3de81&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=68d3de81&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=68d3de81&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=68d3de81&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  \"68d3de81\",\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=4a3570a2\"\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=91476734&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=91476734&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=91476734&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=91476734&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  \"91476734\",\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\"","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      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=1e2b43b6&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=1e2b43b6&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=1e2b43b6&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=1e2b43b6&prod&lang=scss\";\n       export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListVirtual.vue?vue&type=template&id=1e2b43b6&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=1e2b43b6&prod&scoped=true&lang=scss\"\nimport style1 from \"./FilesListVirtual.vue?vue&type=style&index=1&id=1e2b43b6&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  \"1e2b43b6\",\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=2b498b48&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=2b498b48&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=2b498b48&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=2b498b48&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  \"2b498b48\",\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=139727ec&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=139727ec&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=139727ec&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=139727ec&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  \"139727ec\",\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\";\nimport ___CSS_LOADER_GET_URL_IMPORT___ from \"../../../css-loader/dist/runtime/getUrl.js\";\nvar ___CSS_LOADER_URL_IMPORT_0___ = new URL(\"data:image/svg+xml,%3csvg%20viewBox=%270%200%2016%2016%27%20height=%2716%27%20width=%2716%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xml:space=%27preserve%27%20style=%27fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2%27%3e%3cpath%20d=%27M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z%27%20style=%27fill-rule:nonzero%27%20transform=%27matrix%28.85714%200%200%20.85714%20-2.286%20-2.286%29%27/%3e%3c/svg%3e\", import.meta.url);\nvar ___CSS_LOADER_URL_IMPORT_1___ = new URL(\"data:image/svg+xml,%3csvg%20viewBox=%270%200%2016%2016%27%20height=%2716%27%20width=%2716%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xml:space=%27preserve%27%20style=%27fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2%27%3e%3cpath%20d=%27M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z%27%20style=%27fill:%23fff;fill-rule:nonzero%27%20transform=%27matrix%28.85714%200%200%20.85714%20-2.286%20-2.286%29%27/%3e%3c/svg%3e\", import.meta.url);\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\nvar ___CSS_LOADER_URL_REPLACEMENT_0___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_0___);\nvar ___CSS_LOADER_URL_REPLACEMENT_1___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_1___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n.toastify.dialogs {\n  min-width: 200px;\n  background: none;\n  background-color: var(--color-main-background);\n  color: var(--color-main-text);\n  box-shadow: 0 0 6px 0 var(--color-box-shadow);\n  padding: 0 12px;\n  margin-top: 45px;\n  position: fixed;\n  z-index: 10100;\n  border-radius: var(--border-radius);\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n  display: flex;\n  align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n  position: static;\n  overflow: hidden;\n  box-sizing: border-box;\n  min-width: 44px;\n  height: 100%;\n  padding: 12px;\n  white-space: nowrap;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-color: transparent;\n  min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n  text-indent: 0;\n  opacity: 0.4;\n  border: none;\n  min-height: 44px;\n  margin-left: 10px;\n  font-size: 0;\n  /* dark theme overrides for Nextcloud 25 and later */\n}\n.toastify.dialogs .toast-undo-button.toast-close::before,\n.toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(${___CSS_LOADER_URL_REPLACEMENT_0___});\n  content: \" \";\n  filter: var(--background-invert-if-dark);\n  display: inline-block;\n  width: 16px;\n  height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n  margin: 3px;\n  height: calc(100% - 2 * 3px);\n  margin-left: 12px;\n}\n.toastify.dialogs .toast-undo-button:hover, .toastify.dialogs .toast-undo-button:focus, .toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n  cursor: pointer;\n  opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n  right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n  cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n  border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n  border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n  border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success {\n  border-left: 3px solid var(--color-success);\n}\n.toastify.dialogs.toast-undo {\n  border-left: 3px solid var(--color-success);\n}\n\n/* dark theme overrides for Nextcloud 24 and earlier */\n.theme--dark .toastify.dialogs .toast-close {\n  /* close icon style */\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close::before {\n  background-image: url(${___CSS_LOADER_URL_REPLACEMENT_1___});\n}\n.nc-generic-dialog .dialog__actions {\n\tjustify-content: space-between;\n\tmin-width: calc(100% - 12px);\n}\n/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n/**\n * Icon styling of the file list row preview or fallback icon\n * (leading icon on the name row and header)\n */\n._file-picker__file-icon_19mjt_9 {\n  width: 32px;\n  height: 32px;\n  min-width: 32px;\n  min-height: 32px;\n  background-repeat: no-repeat;\n  background-size: contain;\n  display: flex;\n  justify-content: center;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-15187afc] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-15187afc] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-15187afc] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-15187afc]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-15187afc] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-15187afc] {\n  padding-inline: 2px 0;\n}\n@keyframes gradient-15187afc {\n0% {\n    background-position: 0% 50%;\n}\n50% {\n    background-position: 100% 50%;\n}\n100% {\n    background-position: 0% 50%;\n}\n}\n.loading-row .row-checkbox[data-v-15187afc] {\n  text-align: center !important;\n}\n.loading-row span[data-v-15187afc] {\n  display: inline-block;\n  height: 24px;\n  background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n  background-size: 600px 100%;\n  border-radius: var(--border-radius);\n  animation: gradient-15187afc 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-15187afc] {\n  display: inline-flex;\n  align-items: center;\n}\n.loading-row .row-checkbox span[data-v-15187afc] {\n  width: 24px;\n}\n.loading-row .row-name span[data-v-15187afc]:last-of-type {\n  margin-inline-start: 6px;\n  width: 130px;\n}\n.loading-row .row-size span[data-v-15187afc] {\n  width: 80px;\n}\n.loading-row .row-modified span[data-v-15187afc] {\n  width: 90px;\n}/*!\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\ntr.file-picker__row[data-v-cb12dccb] {\n  height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-cb12dccb] {\n  cursor: pointer;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-cb12dccb] {\n  padding: 0 2px;\n}\ntr.file-picker__row td[data-v-cb12dccb]:not(.row-checkbox) {\n  padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-cb12dccb] {\n  text-align: end;\n  padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-cb12dccb] {\n  padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-cb12dccb] {\n  background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-cb12dccb]:hover {\n  background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-cb12dccb] {\n  display: flex;\n  justify-content: start;\n  align-items: center;\n  height: 100%;\n}\n.file-picker__file-name[data-v-cb12dccb] {\n  padding-inline-start: 6px;\n  min-width: 0;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-cb12dccb] {\n  color: var(--color-text-maxcontrast);\n  min-width: fit-content;\n}.file-picker__header-preview[data-v-006fdbd0] {\n  width: 22px;\n  height: 32px;\n  flex: 0 0 auto;\n}\n.file-picker__files[data-v-006fdbd0] {\n  margin: 2px;\n  margin-inline-start: 12px;\n  overflow: scroll auto;\n}\n.file-picker__files table[data-v-006fdbd0] {\n  width: 100%;\n  max-height: 100%;\n  table-layout: fixed;\n}\n.file-picker__files th[data-v-006fdbd0] {\n  position: sticky;\n  z-index: 1;\n  top: 0;\n  background-color: var(--color-main-background);\n  padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-006fdbd0] {\n  display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-006fdbd0] {\n  width: 44px;\n}\n.file-picker__files th.row-name[data-v-006fdbd0] {\n  width: 230px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] {\n  width: 100px;\n}\n.file-picker__files th.row-modified[data-v-006fdbd0] {\n  width: 120px;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue__wrapper {\n  justify-content: start;\n  flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue {\n  padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-006fdbd0] .button-vue__wrapper {\n  justify-content: end;\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper {\n  color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper .button-vue__text {\n  font-weight: normal;\n}.file-picker__breadcrumbs[data-v-b357227a] {\n  flex-grow: 0 !important;\n}.file-picker__side[data-v-b42054b8] {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  gap: 0.5rem;\n  min-width: 200px;\n  padding: 2px;\n  margin-block-start: 7px;\n  overflow: auto;\n}\n.file-picker__side[data-v-b42054b8] .button-vue__wrapper {\n  justify-content: start;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n  margin-block: 7px;\n  max-width: 260px;\n}\n@media (max-width: 736px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n}\n@media (max-width: 512px) {\n.file-picker__side[data-v-b42054b8] {\n    flex-direction: row;\n    min-width: unset;\n}\n.file-picker__filter-input[data-v-b42054b8] {\n    max-width: unset;\n}\n}/* Ensure focus outline is visible */\n.file-picker__navigation {\n  padding-inline: 8px 2px;\n}\n.file-picker__navigation, .file-picker__navigation * {\n  box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n  min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n.file-picker__navigation {\n    gap: 11px;\n}\n}\n@media (max-width: 512px) {\n.file-picker__navigation {\n    flex-direction: column-reverse !important;\n}\n}.file-picker__view[data-v-20b719ba] {\n  height: 50px;\n  display: flex;\n  justify-content: start;\n  align-items: center;\n}\n.file-picker__view h3[data-v-20b719ba] {\n  font-weight: bold;\n  height: fit-content;\n  margin: 0;\n}\n.file-picker__main[data-v-20b719ba] {\n  box-sizing: border-box;\n  width: 100%;\n  display: flex;\n  flex-direction: column;\n  min-height: 0;\n  flex: 1;\n  padding-inline: 2px;\n}\n.file-picker__main *[data-v-20b719ba] {\n  box-sizing: border-box;\n}\n[data-v-20b719ba] .file-picker {\n  height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n[data-v-20b719ba] .file-picker {\n    height: calc(100% - 16px - var(--default-clickable-area)) !important;\n}\n}\n[data-v-20b719ba] .file-picker__content {\n  display: flex;\n  flex-direction: column;\n  overflow: hidden;\n}`, \"\",{\"version\":3,\"sources\":[\"webpack://./node_modules/@nextcloud/dialogs/dist/style.css\"],\"names\":[],\"mappings\":\"AAAA;;;EAGE;AACF;EACE,gBAAgB;EAChB,gBAAgB;EAChB,8CAA8C;EAC9C,6BAA6B;EAC7B,6CAA6C;EAC7C,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,cAAc;EACd,mCAAmC;EACnC,aAAa;EACb,mBAAmB;AACrB;AACA;EACE,aAAa;EACb,mBAAmB;AACrB;AACA;;EAEE,gBAAgB;EAChB,gBAAgB;EAChB,sBAAsB;EACtB,eAAe;EACf,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,4BAA4B;EAC5B,2BAA2B;EAC3B,6BAA6B;EAC7B,aAAa;AACf;AACA;;EAEE,cAAc;EACd,YAAY;EACZ,YAAY;EACZ,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;EACZ,oDAAoD;AACtD;AACA;;EAEE,yDAAsf;EACtf,YAAY;EACZ,wCAAwC;EACxC,qBAAqB;EACrB,WAAW;EACX,YAAY;AACd;AACA;;EAEE,WAAW;EACX,4BAA4B;EAC5B,iBAAiB;AACnB;AACA;;;;EAIE,eAAe;EACf,UAAU;AACZ;AACA;EACE,WAAW;AACb;AACA;EACE,eAAe;AACjB;AACA;EACE,yCAAyC;AAC3C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;;AAEA,sDAAsD;AACtD;EACE,qBAAqB;AACvB;AACA;EACE,yDAAkgB;AACpgB;AACA;CACC,8BAA8B;CAC9B,4BAA4B;AAC7B;AACA;;;EAGE;AACF;;;EAGE;AACF;EACE,WAAW;EACX,YAAY;EACZ,eAAe;EACf,gBAAgB;EAChB,4BAA4B;EAC5B,wBAAwB;EACxB,aAAa;EACb,uBAAuB;AACzB,CAAC;;;EAGC;AACF;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;AACA;IACI,2BAA2B;AAC/B;AACA;IACI,6BAA6B;AACjC;AACA;IACI,2BAA2B;AAC/B;AACA;AACA;EACE,6BAA6B;AAC/B;AACA;EACE,qBAAqB;EACrB,YAAY;EACZ,oIAAoI;EACpI,2BAA2B;EAC3B,mCAAmC;EACnC,8CAA8C;AAChD;AACA;EACE,oBAAoB;EACpB,mBAAmB;AACrB;AACA;EACE,WAAW;AACb;AACA;EACE,wBAAwB;EACxB,YAAY;AACd;AACA;EACE,WAAW;AACb;AACA;EACE,WAAW;AACb,CAAC;;;EAGC;AACF;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,8CAA8C;AAChD;AACA;EACE,+CAA+C;AACjD;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,yBAAyB;EACzB,YAAY;EACZ,gBAAgB;EAChB,uBAAuB;AACzB;AACA;EACE,oCAAoC;EACpC,sBAAsB;AACxB,CAAC;EACC,WAAW;EACX,YAAY;EACZ,cAAc;AAChB;AACA;EACE,WAAW;EACX,yBAAyB;EACzB,qBAAqB;AACvB;AACA;EACE,WAAW;EACX,gBAAgB;EAChB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,UAAU;EACV,MAAM;EACN,8CAA8C;EAC9C,YAAY;AACd;AACA;EACE,aAAa;AACf;AACA;EACE,WAAW;AACb;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,sBAAsB;EACtB,2BAA2B;AAC7B;AACA;EACE,wBAAwB;AAC1B;AACA;EACE,oBAAoB;AACtB;AACA;EACE,oCAAoC;AACtC;AACA;EACE,mBAAmB;AACrB,CAAC;EACC,uBAAuB;AACzB,CAAC;EACC,aAAa;EACb,sBAAsB;EACtB,oBAAoB;EACpB,WAAW;EACX,gBAAgB;EAChB,YAAY;EACZ,uBAAuB;EACvB,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,iBAAiB;EACjB,gBAAgB;AAClB;AACA;AACA;IACI,mBAAmB;IACnB,gBAAgB;AACpB;AACA;AACA;AACA;IACI,mBAAmB;IACnB,gBAAgB;AACpB;AACA;IACI,gBAAgB;AACpB;AACA,CAAC,oCAAoC;AACrC;EACE,uBAAuB;AACzB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,gBAAgB;AAClB;AACA;AACA;IACI,SAAS;AACb;AACA;AACA;AACA;IACI,yCAAyC;AAC7C;AACA,CAAC;EACC,YAAY;EACZ,aAAa;EACb,sBAAsB;EACtB,mBAAmB;AACrB;AACA;EACE,iBAAiB;EACjB,mBAAmB;EACnB,SAAS;AACX;AACA;EACE,sBAAsB;EACtB,WAAW;EACX,aAAa;EACb,sBAAsB;EACtB,aAAa;EACb,OAAO;EACP,mBAAmB;AACrB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,mCAAmC;AACrC;AACA;AACA;IACI,oEAAoE;AACxE;AACA;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,gBAAgB;AAClB\",\"sourcesContent\":[\"/*!\\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\\n * SPDX-License-Identifier: AGPL-3.0-or-later\\n */\\n.toastify.dialogs {\\n  min-width: 200px;\\n  background: none;\\n  background-color: var(--color-main-background);\\n  color: var(--color-main-text);\\n  box-shadow: 0 0 6px 0 var(--color-box-shadow);\\n  padding: 0 12px;\\n  margin-top: 45px;\\n  position: fixed;\\n  z-index: 10100;\\n  border-radius: var(--border-radius);\\n  display: flex;\\n  align-items: center;\\n}\\n.toastify.dialogs .toast-undo-container {\\n  display: flex;\\n  align-items: center;\\n}\\n.toastify.dialogs .toast-undo-button,\\n.toastify.dialogs .toast-close {\\n  position: static;\\n  overflow: hidden;\\n  box-sizing: border-box;\\n  min-width: 44px;\\n  height: 100%;\\n  padding: 12px;\\n  white-space: nowrap;\\n  background-repeat: no-repeat;\\n  background-position: center;\\n  background-color: transparent;\\n  min-height: 0;\\n}\\n.toastify.dialogs .toast-undo-button.toast-close,\\n.toastify.dialogs .toast-close.toast-close {\\n  text-indent: 0;\\n  opacity: 0.4;\\n  border: none;\\n  min-height: 44px;\\n  margin-left: 10px;\\n  font-size: 0;\\n  /* dark theme overrides for Nextcloud 25 and later */\\n}\\n.toastify.dialogs .toast-undo-button.toast-close::before,\\n.toastify.dialogs .toast-close.toast-close::before {\\n  background-image: url(\\\"data:image/svg+xml,%3csvg%20viewBox='0%200%2016%2016'%20height='16'%20width='16'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3e%3cpath%20d='M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z'%20style='fill-rule:nonzero'%20transform='matrix(.85714%200%200%20.85714%20-2.286%20-2.286)'/%3e%3c/svg%3e\\\");\\n  content: \\\" \\\";\\n  filter: var(--background-invert-if-dark);\\n  display: inline-block;\\n  width: 16px;\\n  height: 16px;\\n}\\n.toastify.dialogs .toast-undo-button.toast-undo-button,\\n.toastify.dialogs .toast-close.toast-undo-button {\\n  margin: 3px;\\n  height: calc(100% - 2 * 3px);\\n  margin-left: 12px;\\n}\\n.toastify.dialogs .toast-undo-button:hover, .toastify.dialogs .toast-undo-button:focus, .toastify.dialogs .toast-undo-button:active,\\n.toastify.dialogs .toast-close:hover,\\n.toastify.dialogs .toast-close:focus,\\n.toastify.dialogs .toast-close:active {\\n  cursor: pointer;\\n  opacity: 1;\\n}\\n.toastify.dialogs.toastify-top {\\n  right: 10px;\\n}\\n.toastify.dialogs.toast-with-click {\\n  cursor: pointer;\\n}\\n.toastify.dialogs.toast-error {\\n  border-left: 3px solid var(--color-error);\\n}\\n.toastify.dialogs.toast-info {\\n  border-left: 3px solid var(--color-primary);\\n}\\n.toastify.dialogs.toast-warning {\\n  border-left: 3px solid var(--color-warning);\\n}\\n.toastify.dialogs.toast-success {\\n  border-left: 3px solid var(--color-success);\\n}\\n.toastify.dialogs.toast-undo {\\n  border-left: 3px solid var(--color-success);\\n}\\n\\n/* dark theme overrides for Nextcloud 24 and earlier */\\n.theme--dark .toastify.dialogs .toast-close {\\n  /* close icon style */\\n}\\n.theme--dark .toastify.dialogs .toast-close.toast-close::before {\\n  background-image: url(\\\"data:image/svg+xml,%3csvg%20viewBox='0%200%2016%2016'%20height='16'%20width='16'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3e%3cpath%20d='M6.4%2019%205%2017.6l5.6-5.6L5%206.4%206.4%205l5.6%205.6L17.6%205%2019%206.4%2013.4%2012l5.6%205.6-1.4%201.4-5.6-5.6L6.4%2019Z'%20style='fill:%23fff;fill-rule:nonzero'%20transform='matrix(.85714%200%200%20.85714%20-2.286%20-2.286)'/%3e%3c/svg%3e\\\");\\n}\\n.nc-generic-dialog .dialog__actions {\\n\\tjustify-content: space-between;\\n\\tmin-width: calc(100% - 12px);\\n}\\n/*!\\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\\n * SPDX-License-Identifier: AGPL-3.0-or-later\\n */\\n/**\\n * Icon styling of the file list row preview or fallback icon\\n * (leading icon on the name row and header)\\n */\\n._file-picker__file-icon_19mjt_9 {\\n  width: 32px;\\n  height: 32px;\\n  min-width: 32px;\\n  min-height: 32px;\\n  background-repeat: no-repeat;\\n  background-size: contain;\\n  display: flex;\\n  justify-content: center;\\n}/*!\\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\\n * SPDX-License-Identifier: AGPL-3.0-or-later\\n */\\ntr.file-picker__row[data-v-15187afc] {\\n  height: var(--row-height, 50px);\\n}\\ntr.file-picker__row td[data-v-15187afc] {\\n  cursor: pointer;\\n  overflow: hidden;\\n  text-overflow: ellipsis;\\n  border-bottom: none;\\n}\\ntr.file-picker__row td.row-checkbox[data-v-15187afc] {\\n  padding: 0 2px;\\n}\\ntr.file-picker__row td[data-v-15187afc]:not(.row-checkbox) {\\n  padding-inline: 14px 0;\\n}\\ntr.file-picker__row td.row-size[data-v-15187afc] {\\n  text-align: end;\\n  padding-inline: 0 14px;\\n}\\ntr.file-picker__row td.row-name[data-v-15187afc] {\\n  padding-inline: 2px 0;\\n}\\n@keyframes gradient-15187afc {\\n0% {\\n    background-position: 0% 50%;\\n}\\n50% {\\n    background-position: 100% 50%;\\n}\\n100% {\\n    background-position: 0% 50%;\\n}\\n}\\n.loading-row .row-checkbox[data-v-15187afc] {\\n  text-align: center !important;\\n}\\n.loading-row span[data-v-15187afc] {\\n  display: inline-block;\\n  height: 24px;\\n  background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\\n  background-size: 600px 100%;\\n  border-radius: var(--border-radius);\\n  animation: gradient-15187afc 12s ease infinite;\\n}\\n.loading-row .row-wrapper[data-v-15187afc] {\\n  display: inline-flex;\\n  align-items: center;\\n}\\n.loading-row .row-checkbox span[data-v-15187afc] {\\n  width: 24px;\\n}\\n.loading-row .row-name span[data-v-15187afc]:last-of-type {\\n  margin-inline-start: 6px;\\n  width: 130px;\\n}\\n.loading-row .row-size span[data-v-15187afc] {\\n  width: 80px;\\n}\\n.loading-row .row-modified span[data-v-15187afc] {\\n  width: 90px;\\n}/*!\\n * SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors\\n * SPDX-License-Identifier: AGPL-3.0-or-later\\n */\\ntr.file-picker__row[data-v-cb12dccb] {\\n  height: var(--row-height, 50px);\\n}\\ntr.file-picker__row td[data-v-cb12dccb] {\\n  cursor: pointer;\\n  overflow: hidden;\\n  text-overflow: ellipsis;\\n  border-bottom: none;\\n}\\ntr.file-picker__row td.row-checkbox[data-v-cb12dccb] {\\n  padding: 0 2px;\\n}\\ntr.file-picker__row td[data-v-cb12dccb]:not(.row-checkbox) {\\n  padding-inline: 14px 0;\\n}\\ntr.file-picker__row td.row-size[data-v-cb12dccb] {\\n  text-align: end;\\n  padding-inline: 0 14px;\\n}\\ntr.file-picker__row td.row-name[data-v-cb12dccb] {\\n  padding-inline: 2px 0;\\n}\\n.file-picker__row--selected[data-v-cb12dccb] {\\n  background-color: var(--color-background-dark);\\n}\\n.file-picker__row[data-v-cb12dccb]:hover {\\n  background-color: var(--color-background-hover);\\n}\\n.file-picker__name-container[data-v-cb12dccb] {\\n  display: flex;\\n  justify-content: start;\\n  align-items: center;\\n  height: 100%;\\n}\\n.file-picker__file-name[data-v-cb12dccb] {\\n  padding-inline-start: 6px;\\n  min-width: 0;\\n  overflow: hidden;\\n  text-overflow: ellipsis;\\n}\\n.file-picker__file-extension[data-v-cb12dccb] {\\n  color: var(--color-text-maxcontrast);\\n  min-width: fit-content;\\n}.file-picker__header-preview[data-v-006fdbd0] {\\n  width: 22px;\\n  height: 32px;\\n  flex: 0 0 auto;\\n}\\n.file-picker__files[data-v-006fdbd0] {\\n  margin: 2px;\\n  margin-inline-start: 12px;\\n  overflow: scroll auto;\\n}\\n.file-picker__files table[data-v-006fdbd0] {\\n  width: 100%;\\n  max-height: 100%;\\n  table-layout: fixed;\\n}\\n.file-picker__files th[data-v-006fdbd0] {\\n  position: sticky;\\n  z-index: 1;\\n  top: 0;\\n  background-color: var(--color-main-background);\\n  padding: 2px;\\n}\\n.file-picker__files th .header-wrapper[data-v-006fdbd0] {\\n  display: flex;\\n}\\n.file-picker__files th.row-checkbox[data-v-006fdbd0] {\\n  width: 44px;\\n}\\n.file-picker__files th.row-name[data-v-006fdbd0] {\\n  width: 230px;\\n}\\n.file-picker__files th.row-size[data-v-006fdbd0] {\\n  width: 100px;\\n}\\n.file-picker__files th.row-modified[data-v-006fdbd0] {\\n  width: 120px;\\n}\\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue__wrapper {\\n  justify-content: start;\\n  flex-direction: row-reverse;\\n}\\n.file-picker__files th[data-v-006fdbd0]:not(.row-size) .button-vue {\\n  padding-inline: 16px 4px;\\n}\\n.file-picker__files th.row-size[data-v-006fdbd0] .button-vue__wrapper {\\n  justify-content: end;\\n}\\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper {\\n  color: var(--color-text-maxcontrast);\\n}\\n.file-picker__files th[data-v-006fdbd0] .button-vue__wrapper .button-vue__text {\\n  font-weight: normal;\\n}.file-picker__breadcrumbs[data-v-b357227a] {\\n  flex-grow: 0 !important;\\n}.file-picker__side[data-v-b42054b8] {\\n  display: flex;\\n  flex-direction: column;\\n  align-items: stretch;\\n  gap: 0.5rem;\\n  min-width: 200px;\\n  padding: 2px;\\n  margin-block-start: 7px;\\n  overflow: auto;\\n}\\n.file-picker__side[data-v-b42054b8] .button-vue__wrapper {\\n  justify-content: start;\\n}\\n.file-picker__filter-input[data-v-b42054b8] {\\n  margin-block: 7px;\\n  max-width: 260px;\\n}\\n@media (max-width: 736px) {\\n.file-picker__side[data-v-b42054b8] {\\n    flex-direction: row;\\n    min-width: unset;\\n}\\n}\\n@media (max-width: 512px) {\\n.file-picker__side[data-v-b42054b8] {\\n    flex-direction: row;\\n    min-width: unset;\\n}\\n.file-picker__filter-input[data-v-b42054b8] {\\n    max-width: unset;\\n}\\n}/* Ensure focus outline is visible */\\n.file-picker__navigation {\\n  padding-inline: 8px 2px;\\n}\\n.file-picker__navigation, .file-picker__navigation * {\\n  box-sizing: border-box;\\n}\\n.file-picker__navigation .v-select.select {\\n  min-width: 220px;\\n}\\n@media (min-width: 513px) and (max-width: 736px) {\\n.file-picker__navigation {\\n    gap: 11px;\\n}\\n}\\n@media (max-width: 512px) {\\n.file-picker__navigation {\\n    flex-direction: column-reverse !important;\\n}\\n}.file-picker__view[data-v-20b719ba] {\\n  height: 50px;\\n  display: flex;\\n  justify-content: start;\\n  align-items: center;\\n}\\n.file-picker__view h3[data-v-20b719ba] {\\n  font-weight: bold;\\n  height: fit-content;\\n  margin: 0;\\n}\\n.file-picker__main[data-v-20b719ba] {\\n  box-sizing: border-box;\\n  width: 100%;\\n  display: flex;\\n  flex-direction: column;\\n  min-height: 0;\\n  flex: 1;\\n  padding-inline: 2px;\\n}\\n.file-picker__main *[data-v-20b719ba] {\\n  box-sizing: border-box;\\n}\\n[data-v-20b719ba] .file-picker {\\n  height: min(80vh, 800px) !important;\\n}\\n@media (max-width: 512px) {\\n[data-v-20b719ba] .file-picker {\\n    height: calc(100% - 16px - var(--default-clickable-area)) !important;\\n}\\n}\\n[data-v-20b719ba] .file-picker__content {\\n  display: flex;\\n  flex-direction: column;\\n  overflow: hidden;\\n}\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\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-77111ada]{flex:1 1 100% !important;width:100%;height:100%;margin-block:0;margin-inline:10px}.files-list__breadcrumbs[data-v-77111ada]  a{cursor:pointer !important}.files-list__breadcrumbs--with-progress[data-v-77111ada]{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-2b498b48]{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-2b498b48]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-2b498b48]{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-04e52abc]{color:#a08b00;min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-04e52abc]  svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-04e52abc]  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,aAAA,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: #a08b00;\\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-0bcaefce] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-0bcaefce] .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-68d3de81]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-68d3de81]{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-91476734]{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-097f69d4]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-097f69d4]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-097f69d4]{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-097f69d4]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-097f69d4]{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-1e2b43b6]{--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-1e2b43b6]  tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-1e2b43b6]  tbody tr{contain:strict}.files-list[data-v-1e2b43b6]  tbody tr:hover,.files-list[data-v-1e2b43b6]  tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-1e2b43b6]  .files-list__before{display:flex;flex-direction:column}.files-list[data-v-1e2b43b6]  .files-list__selected{padding-right:12px;white-space:nowrap}.files-list[data-v-1e2b43b6]  .files-list__table{display:block}.files-list[data-v-1e2b43b6]  .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__thead,.files-list[data-v-1e2b43b6]  .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-1e2b43b6]  .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-1e2b43b6]  .files-list__tfoot{min-height:300px}.files-list[data-v-1e2b43b6]  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-1e2b43b6]  td,.files-list[data-v-1e2b43b6]  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-1e2b43b6]  td span,.files-list[data-v-1e2b43b6]  th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-checkbox{justify-content:center}.files-list[data-v-1e2b43b6]  .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-1e2b43b6]  .files-list__row:hover,.files-list[data-v-1e2b43b6]  .files-list__row:focus,.files-list[data-v-1e2b43b6]  .files-list__row:active,.files-list[data-v-1e2b43b6]  .files-list__row--active,.files-list[data-v-1e2b43b6]  .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-1e2b43b6]  .files-list__row:hover>*,.files-list[data-v-1e2b43b6]  .files-list__row:focus>*,.files-list[data-v-1e2b43b6]  .files-list__row:active>*,.files-list[data-v-1e2b43b6]  .files-list__row--active>*,.files-list[data-v-1e2b43b6]  .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-1e2b43b6]  .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-1e2b43b6]  .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-1e2b43b6]  .files-list__row--dragover *{pointer-events:none}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon *{cursor:pointer}.files-list[data-v-1e2b43b6]  .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon>span.folder-icon,.files-list[data-v-1e2b43b6]  .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-1e2b43b6]  .files-list__row-icon>span.folder-icon svg,.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-1e2b43b6]  .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-1e2b43b6]  .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-1e2b43b6]  .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-1e2b43b6]  .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-1e2b43b6]  .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-1e2b43b6]  .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-1e2b43b6]  .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-1e2b43b6]  .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-1e2b43b6]  .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-1e2b43b6]  .files-list__row-actions{width:auto}.files-list[data-v-1e2b43b6]  .files-list__row-actions~td,.files-list[data-v-1e2b43b6]  .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-1e2b43b6]  .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-1e2b43b6]  .files-list__row-action--inline{margin-right:7px}.files-list[data-v-1e2b43b6]  .files-list__row-mtime,.files-list[data-v-1e2b43b6]  .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-1e2b43b6]  .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-1e2b43b6]  .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-1e2b43b6]  .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-139727ec]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-139727ec]{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-139727ec]{flex:0 0}.files-list__header-share-button[data-v-139727ec]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-139727ec]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-139727ec]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-139727ec]{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-d0bcf126] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-d0bcf126] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-d0bcf126]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-d0bcf126]{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-109572de]: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","/*! 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","'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","// 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","\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 GetText from 'node-gettext';\nimport '@nextcloud/router';\nimport 'dompurify';\nimport 'escape-html';\n\n/**\n * Returns the user's locale\n */\n/**\n * Returns the user's language\n */\nfunction getLanguage() {\n    return document.documentElement.lang || 'en';\n}\n\n/**\n * This module provides functionality to translate applications independent from Nextcloud\n *\n * @packageDocumentation\n * @module @nextcloud/l10n/gettext\n * @example\n * ```js\nimport { getGettextBuilder } from '@nextcloud/l10n/gettext'\nconst gt = getGettextBuilder()\n            .detectLocale() // or use setLanguage()\n            .addTranslation(/* ... *\\/)\n            .build()\ngt.gettext('some string to translate')\n```\n */\n/**\n * @notExported\n */\nclass GettextBuilder {\n    constructor() {\n        this.translations = {};\n        this.debug = false;\n    }\n    setLanguage(language) {\n        this.locale = language;\n        return this;\n    }\n    /** Try to detect locale from context with `en` as fallback value */\n    detectLocale() {\n        return this.setLanguage(getLanguage().replace('-', '_'));\n    }\n    addTranslation(language, data) {\n        this.translations[language] = data;\n        return this;\n    }\n    enableDebugMode() {\n        this.debug = true;\n        return this;\n    }\n    build() {\n        return new GettextWrapper(this.locale || 'en', this.translations, this.debug);\n    }\n}\n/**\n * @notExported\n */\nclass GettextWrapper {\n    constructor(locale, data, debug) {\n        this.gt = new GetText({\n            debug,\n            sourceLocale: 'en',\n        });\n        for (const key in data) {\n            this.gt.addTranslations(key, 'messages', data[key]);\n        }\n        this.gt.setLocale(locale);\n    }\n    subtitudePlaceholders(translated, vars) {\n        return translated.replace(/{([^{}]*)}/g, (a, b) => {\n            const r = vars[b];\n            if (typeof r === 'string' || typeof r === 'number') {\n                return r.toString();\n            }\n            else {\n                return a;\n            }\n        });\n    }\n    /**\n     * Get translated string (singular form), optionally with placeholders\n     *\n     * @param original original string to translate\n     * @param placeholders map of placeholder key to value\n     */\n    gettext(original, placeholders = {}) {\n        return this.subtitudePlaceholders(this.gt.gettext(original), placeholders);\n    }\n    /**\n     * Get translated string with plural forms\n     *\n     * @param singular Singular text form\n     * @param plural Plural text form to be used if `count` requires it\n     * @param count The number to insert into the text\n     * @param placeholders optional map of placeholder key to value\n     */\n    ngettext(singular, plural, count, placeholders = {}) {\n        return this.subtitudePlaceholders(this.gt.ngettext(singular, plural, count).replace(/%n/g, count.toString()), placeholders);\n    }\n}\n/**\n * Create a new GettextBuilder instance\n */\nfunction getGettextBuilder() {\n    return new GettextBuilder();\n}\n\nexport { getGettextBuilder };\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=\" + {\"4065\":\"abd7c824140bd19a80a0\",\"4254\":\"96661b9f421b07ce7189\",\"6075\":\"b44c648f2d05e59d9999\"}[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__(24878)))\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","activePinia","setActivePinia","pinia","piniaSymbol","Symbol","isPlainObject","o","toString","toJSON","MutationType","IS_CLIENT","window","USE_DEVTOOLS","__VUE_PROD_DEVTOOLS__","_global","self","global","globalThis","HTMLElement","download","url","opts","xhr","XMLHttpRequest","open","responseType","onload","saveAs","response","onerror","console","error","send","corsEnabled","e","status","click","node","dispatchEvent","MouseEvent","document","createEvent","initMouseEvent","_navigator","navigator","userAgent","isMacOSWebView","test","HTMLAnchorElement","blob","a","createElement","rel","href","origin","location","target","URL","createObjectURL","setTimeout","revokeObjectURL","msSaveOrOpenBlob","autoBom","type","Blob","String","fromCharCode","bom","popup","title","body","innerText","force","isSafari","isChromeIOS","FileReader","reader","onloadend","result","Error","replace","assign","readAsDataURL","toastMessage","message","piniaMessage","__VUE_DEVTOOLS_TOAST__","warn","log","isPinia","checkClipboardAccess","checkNotFocusedError","toLowerCase","includes","fileInput","loadStoresState","state","key","storeState","value","formatDisplay","display","_custom","PINIA_ROOT_LABEL","PINIA_ROOT_ID","formatStoreForInspectorTree","store","id","label","$id","formatEventData","isArray","reduce","data","keys","operations","oldValue","newValue","operation","formatMutationType","direct","patchFunction","patchObject","isTimelineActive","componentStateTypes","MUTATIONS_LAYER_ID","INSPECTOR_ID","assign$1","getStoreType","registerPiniaDevtools","app","logo","packageName","homepage","api","now","addTimelineLayer","color","addInspector","icon","treeFilterPlaceholder","actions","action","async","clipboard","writeText","JSON","stringify","actionGlobalCopyState","tooltip","parse","readText","actionGlobalPasteState","sendInspectorTree","sendInspectorState","actionGlobalSaveState","accept","Promise","resolve","reject","onchange","files","file","item","text","oncancel","actionGlobalOpenStateFile","nodeActions","nodeId","_s","get","$reset","inspectComponent","payload","ctx","proxy","componentInstance","_pStores","piniaStores","values","forEach","instanceData","editable","_isOptionsAPI","$state","_getters","getters","getInspectorTree","inspectorId","stores","from","rootNodes","filter","map","getInspectorState","inspectedStore","storeNames","storeMap","storeId","getterName","_customProperties","size","customProperties","formatStoreForInspectorState","editInspectorState","path","unshift","set","editComponentState","startsWith","activeAction","runningActionId","patchActionForGrouping","actionNames","wrapWithProxy","storeActions","actionName","_actionId","trackedStore","Proxy","Reflect","retValue","devtoolsPlugin","options","originalHotUpdate","_hotUpdate","newStore","_hmrPayload","settings","logStoreChanges","defaultValue","bind","Date","$onAction","after","onError","groupId","addTimelineEvent","layerId","time","subtitle","logType","notifyComponentUpdate","deep","$subscribe","eventData","detached","flush","hotUpdate","info","$dispose","getSettings","addStoreToDevtools","noop","addSubscription","subscriptions","callback","onCleanup","removeSubscription","idx","indexOf","splice","triggerSubscriptions","fallbackRunWithContext","mergeReactiveObjects","patchToApply","Map","Set","add","subPatch","targetValue","skipHydrateSymbol","skipHydrateMap","WeakMap","createSetupStore","setup","hot","isOptionsStore","scope","optionsForPlugin","$subscribeOptions","isListening","isSyncListening","debuggerEvents","actionSubscriptions","initialState","hotState","activeListener","$patch","partialStateOrMutator","subscriptionMutation","myListenerId","then","newState","wrapAction","afterCallbackList","onErrorCallbackList","ret","catch","partialStore","_p","stopWatcher","run","stop","delete","_r","setupStore","_a","runWithContext","_e","prop","effect","obj","actionValue","defineProperty","nonEnumerable","writable","configurable","enumerable","p","extender","extensions","hydrate","defineStore","idOrOptions","setupOptions","isSetupStore","useStore","hasContext","localState","computedGetters","createOptionsStore","toBeInstalled","install","provide","config","globalProperties","$pinia","plugin","use","createPinia","token","singleMatcher","RegExp","multiMatcher","decodeComponents","components","split","decodeURIComponent","join","left","right","decode","input","tokens","match","splitOnFirst","string","separator","separatorIndex","includeKeys","object","predicate","descriptor","getOwnPropertyDescriptor","ownKeys","isNullOrUndefined","strictUriEncode","encodeURIComponent","x","charCodeAt","toUpperCase","encodeFragmentIdentifier","validateArrayFormatSeparator","encode","strict","encodedURI","replaceMap","exec","entries","customDecodeURIComponent","keysSorter","sort","b","Number","removeHash","hashStart","parseValue","parseNumbers","isNaN","trim","parseBooleans","extract","queryStart","query","arrayFormat","arrayFormatSeparator","formatter","accumulator","isEncodedArray","arrayValue","flat","parserForArrayFormat","returnValue","parameter","parameter_","key2","value2","Boolean","shouldFilter","skipNull","skipEmptyString","index","keyValueSep","encoderForArrayFormat","objectCopy","parseUrl","url_","hash","parseFragmentIdentifier","fragmentIdentifier","stringifyUrl","queryString","getHash","urlObjectForFragmentEncode","pick","exclude","Vue","Router","originalPush","to","onComplete","onAbort","err","mode","base","generateUrl","linkActiveClass","routes","redirect","params","view","props","stringifyQuery","emits","fillColor","default","_vm","_c","_self","_b","staticClass","attrs","$event","$emit","$attrs","_v","throttle","delay","timeoutID","_ref","_ref$noTrailing","noTrailing","_ref$noLeading","noLeading","_ref$debounceMode","debounceMode","cancelled","lastExec","clearExistingTimeout","clearTimeout","wrapper","_len","arguments_","_key","elapsed","clear","cancel","_ref2$upcomingOnly","upcomingOnly","getLoggerBuilder","setApp","detectUser","build","ChartPie","NcAppNavigationItem","NcProgressBar","loadingStorageStats","storageStats","loadState","computed","storageStatsTitle","_this$storageStats","_this$storageStats2","_this$storageStats3","usedQuotaByte","formatFileSize","used","quotaByte","quota","t","storageStatsTooltip","relative","beforeMount","setInterval","throttleUpdateStorageStats","subscribe","mounted","_this$storageStats4","_this$storageStats5","free","showStorageFullWarning","methods","debounceUpdateStorageStats","_ref$atBegin","atBegin","updateStorageStats","_response$data","_this$storageStats6","_response$data$data","_response$data$data2","axios","logger","showError","translate","styleTagTransform","setAttributes","insert","domAPI","insertStyleElement","locals","class","stopPropagation","preventDefault","slot","Math","min","el","Function","required","$el","appendChild","userConfig","show_hidden","crop_image_previews","sort_favorites_first","sort_folders_first","grid_view","useUserConfigStore","userConfigStore","onUpdate","update","put","_initialized","Clipboard","NcAppSettingsDialog","NcAppSettingsSection","NcCheckboxRadioSwitch","NcInputField","Setting","_window$OCA","_getCurrentUser","_loadState$enable_non","OCA","Files","Settings","webdavUrl","generateRemoteUrl","getCurrentUser","uid","webdavDocs","appPasswordUrl","webdavUrlCopied","enableGridView","setting","beforeDestroy","close","onClose","setConfig","copyCloudId","querySelector","select","showSuccess","_l","scopedSlots","_u","useNavigation","navigation","getNavigation","views","shallowRef","currentView","active","onUpdateActive","detail","onUpdateViews","onMounted","addEventListener","onUnmounted","removeEventListener","viewConfig","useViewConfigStore","getConfig","setSortingBy","toggleSortingDirection","newDirection","sorting_direction","viewConfigStore","defineComponent","IconCog","NavigationQuota","NcAppNavigation","NcIconSvgWrapper","SettingsModal","settingsOpened","currentViewId","_this$$route","$route","parentViews","parent","order","childViews","list","watch","newView","oldView","_this$currentView","find","showView","debug","_ref2","useExactRouteMatching","_this$childViews$view","_window$OCA$close","Sidebar","$navigation","setActive","onToggleExpand","isExpanded","expanded","_this$viewConfigStore","generateToNavigation","dir","openSettings","onSettingsClose","_setupProxy","iconClass","sticky","child","FileAction","displayName","iconSvgInline","InformationSvg","enabled","nodes","_window","_nodes$0$root","root","permissions","Permission","NONE","OCP","goToRoute","fileid","rootPath","defaultRootUrl","getClient","rootUrl","client","createClient","setHeaders","requesttoken","onRequestTokenUpdate","getRequestToken","getPatcher","patch","headers","method","fetch","fetchNode","propfindPayload","davGetDefaultPropfind","stat","davRootPath","details","davResultToNode","useFilesStore","fileStore","roots","getNode","source","getNodes","sources","getNodesById","fileId","getRoot","service","updateNodes","acc","deleteNodes","setRoot","onDeletedNode","onCreatedNode","onUpdatedNode","all","n","usePathsStore","pathsStore","paths","getPath","addPath","_getNavigation","FileType","Folder","dirname","_children","parentSource","parentFolder","useSelectionStore","selected","lastSelection","lastSelectedIndex","selection","setLastIndex","reset","uploader","useUploaderStore","getUploader","queue","toISOString","Directory","File","constructor","contents","super","_contents","_computeDirectorySize","lastModified","_computeDirectoryMtime","directory","entry","traverseTree","isFile","readDirectory","dirReader","createReader","getEntries","readEntries","results","createDirectoryIfNotExists","davClient","davGetClient","exists","absolutePath","createDirectory","recursive","resolveConflict","destination","conflicts","basename","uploads","renamed","openConflictPicker","showInfo","getQueue","PQueue","concurrency","MoveCopyAction","canMove","ALL","UPDATE","canCopy","every","_node$attributes$shar","_node$attributes","attributes","some","attribute","canDownload","hashCode","str","resultToNode","userId","davParsePermissions","owner","filename","nodeData","mtime","lastmod","mime","hasPreview","failed","getActionForNodes","MOVE_OR_COPY","MOVE","COPY","handleCopyMoveNodeTo","overwrite","NodeStatus","LOADING","copySuffix","currentPath","destinationPath","otherNodes","getDirectoryContents","getUniqueName","suffix","ignoreFileExtension","copyFile","controller","AbortController","CancelablePromise","onCancel","abort","contentsResponse","includeSelf","signal","folder","getContents","hasConflict","moveFile","AxiosError","_error$response","_error$response2","_error$response3","openFilePickerForAction","fileIDs","filePicker","getFilePickerBuilder","allowDirectories","setFilter","setMimeTypeFilter","setMultiSelect","startAt","setButtonFactory","buttons","dirnames","escape","sanitize","CopyIconSvg","FolderMoveSvg","FilePickerClosed","_node$root","execBatch","promises","dataTransferToFileTree","items","kind","_item$getAsEntry","_item$getAsEntry2","_item$webkitGetAsEntr","getAsEntry","webkitGetAsEntry","warned","fileTree","DataTransferItem","getAsFile","showWarning","onDropExternalFiles","uploadDirectoryContents","relativePath","joinPaths","upload","pause","start","errors","allSettled","onDropInternalFiles","isCopy","useDragAndDropStore","dragging","extend","filesListWidth","_fileListEl$clientWid","fileListEl","clientWidth","$resizeObserver","ResizeObserver","contentRect","width","observe","disconnect","NcBreadcrumbs","NcBreadcrumb","mixins","filesListWidthMixin","draggingStore","filesStore","selectionStore","uploaderStore","dirs","sections","getFileSourceFromPath","getNodeFromSource","exact","getDirDisplayName","disableDrop","isUploadInProgress","wrapUploadProgressBar","viewIcon","_this$currentView$ico","selectedFiles","draggingFiles","_this$$navigation","displayname","onClick","_to$query","onDragOver","dataTransfer","ctrlKey","dropEffect","onDrop","_event$dataTransfer","_event$dataTransfer2","_this$currentView2","canDrop","CREATE","button","titleForSection","section","_section$to","ariaForSection","_section$to2","_t","nativeOn","getSummaryFor","fileCount","folderCount","useActionsMenuStore","opened","useRenamingStore","renamingStore","renamingNode","newName","FileMultipleIcon","FolderIcon","isSingleNode","isSingleFolder","summary","totalSize","total","parseInt","$refs","previewImg","replaceChildren","preview","parentNode","cloneNode","$nextTick","ref","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","extname","ext","isSelected","isRenaming","isRenamingSmallScreen","isActive","canDrag","openedMenu","actionsMenuStore","resetState","_this$$refs","_this$$refs$reset","onRightClick","_this$$el2","closest","style","removeProperty","_this$$el","getBoundingClientRect","setProperty","max","clientX","clientY","top","isMoreThanOneSelected","execDefaultAction","metaKey","openDetailsIfAvailable","_sidebarAction$enable","sidebarAction","onDragLeave","currentTarget","contains","relatedTarget","onDragStart","_event$dataTransfer$c","clearData","image","$mount","$on","$off","getDragAndDropPreview","setDragImage","onDragEnd","_event$dataTransfer3","_event$dataTransfer4","render","updateRootElement","element","getFileActions","ArrowLeftIcon","CustomElementRender","NcActionButton","NcActions","NcActionSeparator","NcLoadingIcon","openedSubmenu","enabledActions","enabledInlineActions","_action$inline","inline","enabledRenderActions","renderInline","enabledDefaultActions","enabledMenuActions","DefaultType","HIDDEN","findIndex","topActionsIds","enabledSubmenuActions","arr","getBoundariesElement","mountType","actionDisplayName","onActionClick","isSubmenu","$set","success","isMenu","_this$enabledSubmenuA","onBackToMenuClick","menuAction","_menuAction$$el$query","focus","_vm$openedSubmenu","_vm$openedSubmenu2","_action$title","refInFor","_action$title2","keyboardStore","altKey","shiftKey","onEvent","useKeyboardStore","ariaLabel","onSelectionChange","_this$keyboardStore","newSelectedIndex","isAlreadySelected","end","filesToSelect","resetSelection","_k","keyCode","forbiddenCharacters","NcTextField","renameLabel","linkTo","_this$$parent","is","$parent","role","tabindex","READ","immediate","handler","renaming","startRenaming","checkInputValidity","_this$newName$trim","_this$newName","isFileNameValid","setCustomValidity","reportValidity","trimmedName","char","OC","blacklist_files_regex","checkIfNodeExists","_this$$refs$renameInp","extLength","renameInput","inputField","setSelectionRange","Event","stopRenaming","onRename","_this$newName$trim2","_this$newName2","oldName","oldEncodedSource","encodedSource","rename","Destination","Overwrite","directives","rawName","expression","tag","domProps","StarSvg","_el$setAttribute","setAttribute","AccountGroupIcon","AccountPlusIcon","CollectivesIcon","FavoriteIcon","FileIcon","FolderOpenIcon","KeyIcon","LinkIcon","NetworkIcon","TagIcon","backgroundFailed","_this$source$toString","isFavorite","favorite","cropPreviews","previewUrl","searchParams","fileOverlay","PlayCircleIcon","folderOverlay","_this$source2","_this$source3","_this$source4","_this$source5","shareTypes","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","mtimeOpacity","_this$source$mtime","_this$source$mtime$ge","maxOpacityTime","getTime","mtimeTitle","moment","format","_g","column","_vm$currentView","inheritAttrs","header","currentFolder","updated","mount","_this$currentFolder","classForColumn","_column$summary","keysOrMapper","reduced","storeKey","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","pop","random","substr","totalRowCount","tbodyStyle","isOverScrolled","lastIndex","hiddenAfterItems","paddingTop","paddingBottom","minHeight","scrollTo","oldColumnCount","_this$$refs2","before","thead","debounce","_before$clientHeight","_thead$clientHeight","_root$clientHeight","clientHeight","onScroll","passive","targetRow","scrollTop","_this$_onScrollHandle","_onScrollHandle","requestAnimationFrame","topScroll","$scopedSlots","areSomeNodesLoading","inlineActions","selectionSources","failedSources","FilesListHeader","FilesListTableFooter","FilesListTableHeader","VirtualList","FilesListTableHeaderActions","View","FileEntry","FileEntryGrid","getFileListHeaders","openFileId","openFile","openfile","sortedHeaders","defaultCaption","viewCaption","sortableCaption","virtualListNote","scrollToFile","handleOpenFile","openSidebarForFile","documentElement","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","$router","isSharingEnabled","_getCapabilities","getCapabilities","files_sharing","BreadCrumbs","DragAndDropNotice","FilesListVirtual","ListViewIcon","NcAppContent","NcEmptyContent","PlusIcon","UploadPicker","ViewGridIcon","filterText","promise","unsubscribeStoreCallback","pageHeading","_this$currentView$nam","_this$$route$params$f","_this$$route2","number","sortingParameters","v","_v$attributes","_v$attributes2","dirContentsSorted","_this$currentView3","filteredDirContent","dirContents","customColumn","reverse","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","Link","User","gridViewButtonLabel","_this$currentFolder4","canShare","SHARE","onSearch","searchEvent","resetSearch","fetchContent","newDir","oldDir","filesListVirtual","onNodeDeleted","unmounted","unsubscribe","_this$currentFolder5","_this$currentFolder$d","_this$currentFolder6","onUpload","_this$currentFolder7","onUploadFail","_upload$response2","parser","Parser","explicitRoot","parseStringPromise","_this$currentFolder8","openSharingSidebar","setActiveTab","toggleGridView","_vm$currentView2","emptyTitle","emptyCaption","NcContent","FilesList","Navigation","__webpack_nonce__","btoa","_window$OCA$Files","_window$OCP$Files","router","_router","currentRoute","goTo","_Vue","mixin","beforeCreate","$options","_provided","provideCache","destroyed","observable","_settings","register","_defineProperty","_name","_el","_open","_close","FilesApp","___CSS_LOADER_URL_IMPORT_0___","___CSS_LOADER_URL_IMPORT_1___","___CSS_LOADER_EXPORT___","___CSS_LOADER_URL_REPLACEMENT_0___","___CSS_LOADER_URL_REPLACEMENT_1___","ReflectOwnKeys","R","ReflectApply","receiver","getOwnPropertyNames","NumberIsNaN","init","errorListener","resolver","eventTargetAgnosticAddListener","flags","addErrorHandlerIfEventEmitter","_maxListeners","defaultMaxListeners","checkListener","_getMaxListeners","that","_addListener","prepend","m","existing","warning","newListener","w","onceWrapper","fired","wrapFn","_onceWrap","wrapped","_listeners","unwrap","evlistener","unwrapListeners","arrayClone","copy","wrapListener","arg","RangeError","getPrototypeOf","setMaxListeners","getMaxListeners","doError","er","prependListener","prependOnceListener","position","originalListener","shift","spliceOne","rawListeners","buffer","Buffer","copyProps","dst","SafeBuffer","encodingOrOffset","alloc","allocUnsafe","allocUnsafeSlow","fill","encoding","buf","SlowBuffer","sax","opt","SAXParser","SAXStream","createStream","MAX_BUFFER_LENGTH","Stream","buffers","clearBuffers","q","c","bufferCheckPosition","lowercase","lowercasetags","looseCase","tags","closed","closedRoot","sawRoot","noscript","S","BEGIN","strictEntities","ENTITIES","XML_ENTITIES","attribList","xmlns","ns","rootNS","trackPosition","line","EVENTS","F","write","chunk","charAt","BEGIN_WHITESPACE","beginWhiteSpace","TEXT","starti","textNode","substring","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","resume","ex","streamWraps","ev","_parser","readable","me","onend","_decoder","h","isBuffer","SD","XML_NAMESPACE","XMLNS_NAMESPACE","xml","regex","stringFromCharCode","fromCodePoint","s","STATE","COMMENT_STARTING","nodeType","normalize","qname","qualName","local","qn","selfClosing","uri","nv","isSelfClosing","closeTo","num","entityLC","numStr","highSurrogate","lowSurrogate","codeUnits","codePoint","isFinite","setImmediate","registerImmediate","html","channel","messagePrefix","onGlobalMessage","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","process","handle","nextTick","runIfPresent","postMessage","importScripts","postMessageIsAsynchronous","oldOnMessage","onmessage","canUsePostMessage","attachEvent","MessageChannel","port1","port2","onreadystatechange","removeChild","task","clearImmediate","g","def","d","RC","autostart","ignoreSameProgress","rate","lastTimestamp","lastProgress","historyTimeConstant","previousOutput","dt","report","progress","timestamp","deltaTimestamp","currentRate","estimate","Infinity","estimatedTime","inherits","Readable","Writable","Duplex","Transform","PassThrough","finished","pipeline","pipe","dest","ondata","ondrain","_isStdio","onclose","didOnEnd","destroy","cleanup","codes","createErrorType","code","Base","NodeError","_Base","subClass","superClass","arg1","arg2","arg3","getMessage","oneOf","expected","thing","actual","determiner","search","msg","this_len","endsWith","objectKeys","allowHalfOpen","_writableState","ended","onEndNT","highWaterMark","getBuffer","_readableState","_transform","cb","ReadableState","EElistenerCount","OurUint8Array","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","pipes","pipesCount","flowing","endEmitted","reading","sync","needReadable","emittedReadable","readableListening","resumeScheduled","paused","emitClose","autoDestroy","defaultEncoding","awaitDrain","readingMore","decoder","read","_read","_destroy","readableAddChunk","addToFront","skipChunkCheck","emitReadable","emitReadable_","onEofChunk","chunkInvalid","_uint8ArrayToBuffer","addChunk","maybeReadMore","_undestroy","undestroy","isPaused","setEncoding","enc","head","content","next","MAX_HWM","howMuchToRead","computeNewHighWaterMark","flow","maybeReadMore_","updateReadableListening","nReadingNextTick","resume_","fromList","first","consume","endReadable","endReadableNT","wState","xs","nOrig","doRead","pipeOpts","endFn","stdout","stderr","unpipe","onunpipe","unpipeInfo","hasUnpiped","onfinish","cleanedUp","needDrain","pipeOnDrain","dests","res","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","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","current","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","iterator","enumerableOnly","symbols","sym","_objectSpread","getOwnPropertyDescriptors","defineProperties","_defineProperties","inspect","custom","instance","Constructor","_classCallCheck","tail","protoProps","offset","hasStrings","_getString","_getBuffer","nb","depth","customInspect","emitErrorAndCloseNT","emitErrorNT","emitCloseNT","readableDestroyed","writableDestroyed","ERR_STREAM_PREMATURE_CLOSE","eos","called","onlegacyfinish","writableEnded","readableEnded","onrequest","req","setHeader","isRequest","ERR_MISSING_ARGS","streams","popCallback","destroys","destroyer","ERR_INVALID_OPT_VALUE","duplexKey","hwm","highWaterMarkFrom","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","val","trace","stripBOM","builder","defaults","escapeCDATA","requiresCDATA","wrapCDATA","hasProp","Builder","buildObject","rootObj","attrkey","charkey","rootElement","rootName","attr","raw","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","isEmpty","processItem","processors","parseString","assignOrPush","processAsync","xmlnskey","ctor","__super__","remaining","saxParser","error1","errThrown","ontext","stack","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","isObject","proto","valueOf","None","OpenTag","InsideTag","CloseTag","NodeType","XMLAttribute","debugInfo","attValue","isId","schemaTypeInfo","clone","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","version","createDocumentType","qualifiedName","publicId","systemId","createDocument","createHTMLDocument","getFeature","XMLDTDAttList","elementName","attributeName","attributeType","defaultValueType","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","children","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","getElementById","elementId","adoptNode","normalizeDocument","renameNode","getElementsByClassName","classNames","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","getAttribute","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","prev","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","pretty","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","CancelError","reason","isCanceled","promiseState","freeze","pending","canceled","resolved","rejected","PCancelable","userFunction","executor","description","shouldReject","boolean","onFulfilled","onRejected","onFinally","finally","TimeoutError","AbortError","getDOMException","errorMessage","DOMException","getAbortedReason","PriorityQueue","enqueue","priority","array","comparator","step","trunc","it","lowerBound","dequeue","carryoverConcurrencyCount","intervalCap","POSITIVE_INFINITY","interval","autoStart","queueClass","throwOnTimeout","canInitializeInterval","job","newConcurrency","_resolve","function_","throwIfAborted","milliseconds","fallback","customTimers","timer","cancelablePromise","sign","aborted","timeoutError","pTimeout","race","addAll","functions","onEmpty","onSizeLessThan","limit","onIdle","sizeBy","GettextWrapper","locale","gt","sourceLocale","addTranslations","setLocale","subtitudePlaceholders","translated","vars","gettext","original","placeholders","ngettext","singular","plural","A","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","setUid","I","IDLE","PAUSED","N","_destinationFolder","_isPublic","_uploadQueue","_jobQueue","_queueSize","_queueProgress","_queueStatus","_notifiers","isPublic","maxChunksSize","updateStats","addNotifier","f","T","U","L","bytes","D","W","O","y","staticRenderFns","_compiled","functional","_scopeId","$vnode","ssrContext","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","$root","shadowRoot","_injectStyles","ms","viewBox","fs","translations","setLanguage","language","detectLocale","lang","addTranslation","enableDebugMode","json","charset","Language","msgid","comments","translator","msgstr","Add","msgid_plural","extracted","Cancel","Continue","New","C","Gs","Ls","Plus","Upload","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","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","__esModule","definition","chunkId","needAttach","scripts","nc","onScriptComplete","doneFns","toStringTag","nmd","scriptUrl","currentScript","installedChunks","installedChunkData","errorType","realSrc","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""}
\ No newline at end of file