pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/php-nextcloud



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Thu Jan 12 15:07:38 UTC 2017

Added Files:
        pkgsrc/www/php-nextcloud: DESCR INSTALL MESSAGE Makefile PLIST distinfo
            options.mk

Log Message:
Import php56-nextcloud-11.0.0 as www/php-nextcloud.

A safe home for all your data

Access, share and protect your files, calendars, contacts,
communication & more at home and in your enterprise.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/www/php-nextcloud/DESCR \
    pkgsrc/www/php-nextcloud/INSTALL pkgsrc/www/php-nextcloud/MESSAGE \
    pkgsrc/www/php-nextcloud/Makefile pkgsrc/www/php-nextcloud/PLIST \
    pkgsrc/www/php-nextcloud/distinfo pkgsrc/www/php-nextcloud/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Added files:

Index: pkgsrc/www/php-nextcloud/DESCR
diff -u /dev/null pkgsrc/www/php-nextcloud/DESCR:1.1
--- /dev/null   Thu Jan 12 15:07:38 2017
+++ pkgsrc/www/php-nextcloud/DESCR      Thu Jan 12 15:07:38 2017
@@ -0,0 +1,4 @@
+A safe home for all your data
+
+Access, share and protect your files, calendars, contacts,
+communication & more at home and in your enterprise.
Index: pkgsrc/www/php-nextcloud/INSTALL
diff -u /dev/null pkgsrc/www/php-nextcloud/INSTALL:1.1
--- /dev/null   Thu Jan 12 15:07:38 2017
+++ pkgsrc/www/php-nextcloud/INSTALL    Thu Jan 12 15:07:38 2017
@@ -0,0 +1,15 @@
+#!@SH@
+#
+# $NetBSD: INSTALL,v 1.1 2017/01/12 15:07:38 ryoon Exp $
+
+WWWGRP="@WWWGRP@"
+WWWOWN="@WWWOWN@"
+NC_DIR="@PREFIX@/@NC_DIR@"
+
+case "${STAGE}" in
+POST-INSTALL)
+       cd ${NC_DIR} &&
+               ${CHOWN} -R ${WWWOWN} ${NC_DIR} &&
+               ${CHGRP} -R ${WWWGRP} ${NC_DIR}
+       ;;
+esac
Index: pkgsrc/www/php-nextcloud/MESSAGE
diff -u /dev/null pkgsrc/www/php-nextcloud/MESSAGE:1.1
--- /dev/null   Thu Jan 12 15:07:38 2017
+++ pkgsrc/www/php-nextcloud/MESSAGE    Thu Jan 12 15:07:38 2017
@@ -0,0 +1,113 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1 2017/01/12 15:07:38 ryoon Exp $
+
+To use Nextcloud, you will need to perform the following steps.
+
+1. If you want to use with MySQL server, install databases/mysql55-*
+   and enable it, then create database.
+
+2. Install nginx httpd server, for example www/nginx.
+
+3. Install PHP-FPM, PHP FastCGI Process Magager from www/php-fpm.
+
+4. Be sure to have the following lines in ${PREFIX}/etc/nginx/nginx.conf
+   to enable PHP script in http://YOUR_SERVER_NAME/ .
+   From http://doc.owncloud.org/server/6.0/admin_manual/installation/installation_source.html .
+
+http {
+       include ${PREFIX}/etc/nginx/mime.types;
+
+       upstream php-handler {
+               server 127.0.0.1:9000;
+       }
+
+server {
+       listen 80;
+       server_name YOUR_SERVER_NAME;
+
+       root ${PREFIX}/share/nextcloud;
+
+       client_max_body_size 10G; # set max upload size
+       fastcgi_buffers 64 4K;
+
+       rewrite ^/caldav(.*)$ /remote.php/caldav$1 redirect;
+       rewrite ^/carddav(.*)$ /remote.php/carddav$1 redirect;
+       rewrite ^/webdav(.*)$ /remote.php/webdav$1 redirect;
+
+       index index.php;
+       error_page 403 /core/templates/403.php;
+       error_page 404 /core/templates/404.php;
+
+       location = /robots.txt {
+               allow all;
+               log_not_found off;
+               access_log off;
+       }
+
+       location ~ ^/(data|config|\.ht|db_structure\.xml|README) {
+               deny all;
+       }
+
+       location / {
+               # The following 2 rules are only needed with webfinger
+               rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
+               rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;
+
+               rewrite ^/.well-known/carddav /remote.php/carddav/ redirect;
+               rewrite ^/.well-known/caldav /remote.php/caldav/ redirect;
+
+               rewrite ^(/core/doc/[^\/]+/)$ $1/index.html;
+
+               try_files $uri $uri/ index.php;
+       }
+
+       location ~ ^(.+?\.php)(/.*)?$ {
+               try_files $1 =404;
+
+               include fastcgi_params;
+               fastcgi_param SCRIPT_FILENAME $document_root$1;
+               fastcgi_param PATH_INFO $2;
+               fastcgi_pass php-handler;
+       }
+
+       # Optional: set long EXPIRES header on static assets
+       location ~* ^.+\.(jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ {
+               expires 30d;
+               # Optional: Don't log access to assets
+               access_log off;
+       }
+
+}
+}
+
+5. Be sure to have the following lines in ${PREFIX}/etc/php-fam.conf
+   to restrict access from localhost only.
+
+       listen.allowed_clients = 127.0.0.1
+
+6. Be sure to have the following lines in ${PREFIX}/etc/php.ini.
+
+       extension=curl.so
+       extension=dom.so
+       extension=gd.so
+       extension=iconv.so
+       extension=json.so
+       extension=mbstring.so
+       extension=zip.so
+       extension=zlib.so
+
+       extension=pdo.so ;if you select sqlite backend.
+       extension=pdo_sqlite.so ;if you select sqlite backend.
+       extension=pdo_mysql.so ;if you select MySQL backend.
+       extension=pdo_pgsql.so ;if you select PostgreSQL backend.
+
+7. Start PHP-FPM daemon.
+
+       ${RCD_SCRIPTS_DIR}/php_fpm start
+
+8. Start nginx httpd server.
+
+       ${RCD_SCRIPTS_DIR}/nginx start
+
+6. Access http://YOUR_SERVER_NAME/ and setup.
+===========================================================================
Index: pkgsrc/www/php-nextcloud/Makefile
diff -u /dev/null pkgsrc/www/php-nextcloud/Makefile:1.1
--- /dev/null   Thu Jan 12 15:07:38 2017
+++ pkgsrc/www/php-nextcloud/Makefile   Thu Jan 12 15:07:38 2017
@@ -0,0 +1,66 @@
+# $NetBSD: Makefile,v 1.1 2017/01/12 15:07:38 ryoon Exp $
+#
+
+DISTNAME=      nextcloud-11.0.0
+PKGNAME=       ${PHP_PKG_PREFIX}-${DISTNAME}
+CATEGORIES=    www
+MASTER_SITES=  https://download.nextcloud.com/server/releases/
+EXTRACT_SUFX=  .tar.bz2
+
+MAINTAINER=    ryoon%NetBSD.org@localhost
+HOMEPAGE=      https://nextcloud.com/
+COMMENT=       File sharing web service server
+LICENSE=       gnu-agpl-v3
+
+DEPENDS+=      ${PHP_PKG_PREFIX}-dom>=5.4.0:../../textproc/php-dom
+DEPENDS+=      ${PHP_PKG_PREFIX}-gd>=5.4.0:../../graphics/php-gd
+DEPENDS+=      ${PHP_PKG_PREFIX}-iconv>=5.4.0:../../converters/php-iconv
+DEPENDS+=      ${PHP_PKG_PREFIX}-json>=5.4.0:../../textproc/php-json
+DEPENDS+=      ${PHP_PKG_PREFIX}-mbstring>=5.4.0:../../converters/php-mbstring
+DEPENDS+=      ${PHP_PKG_PREFIX}-zip>=5.4.0:../../archivers/php-zip
+DEPENDS+=      ${PHP_PKG_PREFIX}-zlib>=5.4.0:../../archivers/php-zlib
+DEPENDS+=      ${PHP_PKG_PREFIX}-pdo>=5.4.0:../../databases/php-pdo
+DEPENDS+=      ${PHP_PKG_PREFIX}-posix>=5.4.0:../../devel/php-posix
+DEPENDS+=      ${PHP_PKG_PREFIX}-curl>=5.4.0:../../www/php-curl
+
+.include "options.mk"
+
+WRKSRC=                ${WRKDIR}/nextcloud
+USE_LANGUAGES= # none
+
+NO_BUILD=      yes
+
+USE_TOOLS+=    bash:run pax perl:run
+
+NC_DIR=                share/nextcloud
+INSTALLATION_DIRS=     ${NC_DIR}
+
+# for php interpreter
+CHECK_INTERPRETER_SKIP+=       ${NC_DIR}/3rdparty/doctrine/dbal/bin/doctrine-dbal
+CHECK_INTERPRETER_SKIP+=       ${NC_DIR}/3rdparty/dompdf/load_font.php
+CHECK_INTERPRETER_SKIP+=       ${NC_DIR}/3rdparty/phpdocx/pdf/load_font.php
+CHECK_INTERPRETER_SKIP+=       ${NC_DIR}/3rdparty/sabre/vobject/bin/*
+CHECK_INTERPRETER_SKIP+=       ${NC_DIR}/apps/contacts/vendor/blueimp-tmpl/js/compile.js
+CHECK_INTERPRETER_SKIP+=       ${NC_DIR}/occ
+
+.include "../../mk/bsd.prefs.mk"
+
+APACHE_USER?=  nginx
+APACHE_GROUP?= nginx
+PKG_GROUPS=    ${APACHE_GROUP}
+PKG_USERS=     ${APACHE_USER}:${APACHE_GROUP}
+
+PKG_USERS_VARS=                APACHE_USER
+PKG_GROUPS_VARS=       APACHE_GROUP
+
+BUILD_DEFS+=   APACHE_GROUP APACHE_USER
+FILES_SUBST+=  WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \
+               NC_DIR=${NC_DIR}
+
+do-install:
+       cd ${WRKDIR} && ${FIND} nextcloud -type f \! -name '*.orig' -print | \
+               pax -rw -pmp ${DESTDIR}${PREFIX}/share
+
+.include "../../lang/php/phpversion.mk"
+.include "../../lang/python/application.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/www/php-nextcloud/PLIST
diff -u /dev/null pkgsrc/www/php-nextcloud/PLIST:1.1
--- /dev/null   Thu Jan 12 15:07:38 2017
+++ pkgsrc/www/php-nextcloud/PLIST      Thu Jan 12 15:07:38 2017
@@ -0,0 +1,10750 @@
+@comment $NetBSD: PLIST,v 1.1 2017/01/12 15:07:38 ryoon Exp $
+share/nextcloud/.htaccess
+share/nextcloud/.user.ini
+share/nextcloud/3rdparty/.drone.yml
+share/nextcloud/3rdparty/.gitignore
+share/nextcloud/3rdparty/LICENSE INFO
+share/nextcloud/3rdparty/README.md
+share/nextcloud/3rdparty/autoload.php
+share/nextcloud/3rdparty/bantu/ini-get-wrapper/.gitignore
+share/nextcloud/3rdparty/bantu/ini-get-wrapper/.scrutinizer.yml
+share/nextcloud/3rdparty/bantu/ini-get-wrapper/LICENSE
+share/nextcloud/3rdparty/bantu/ini-get-wrapper/README.md
+share/nextcloud/3rdparty/bantu/ini-get-wrapper/composer.json
+share/nextcloud/3rdparty/bantu/ini-get-wrapper/phpunit.xml.dist
+share/nextcloud/3rdparty/bantu/ini-get-wrapper/src/IniGetWrapper.php
+share/nextcloud/3rdparty/composer.json
+share/nextcloud/3rdparty/composer.lock
+share/nextcloud/3rdparty/composer/ClassLoader.php
+share/nextcloud/3rdparty/composer/LICENSE
+share/nextcloud/3rdparty/composer/autoload_classmap.php
+share/nextcloud/3rdparty/composer/autoload_files.php
+share/nextcloud/3rdparty/composer/autoload_namespaces.php
+share/nextcloud/3rdparty/composer/autoload_psr4.php
+share/nextcloud/3rdparty/composer/autoload_real.php
+share/nextcloud/3rdparty/composer/autoload_static.php
+share/nextcloud/3rdparty/composer/include_paths.php
+share/nextcloud/3rdparty/composer/installed.json
+share/nextcloud/3rdparty/deepdiver1975/tarstreamer/LICENSE
+share/nextcloud/3rdparty/deepdiver1975/tarstreamer/src/TarStreamer.php
+share/nextcloud/3rdparty/doctrine/annotations/LICENSE
+share/nextcloud/3rdparty/doctrine/annotations/README.md
+share/nextcloud/3rdparty/doctrine/annotations/composer.json
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attribute.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attributes.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Enum.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Required.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Target.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationRegistry.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/CachedReader.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/DocLexer.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/DocParser.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/FileCacheReader.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/IndexedReader.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/PhpParser.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/Reader.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/SimpleAnnotationReader.php
+share/nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/TokenParser.php
+share/nextcloud/3rdparty/doctrine/cache/.coveralls.yml
+share/nextcloud/3rdparty/doctrine/cache/.gitignore
+share/nextcloud/3rdparty/doctrine/cache/LICENSE
+share/nextcloud/3rdparty/doctrine/cache/README.md
+share/nextcloud/3rdparty/doctrine/cache/UPGRADE.md
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/ApcCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/ArrayCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/Cache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/ChainCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/ClearableCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/CouchbaseCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/FileCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/FlushableCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/MemcacheCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/MemcachedCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/MongoDBCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/MultiGetCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/PhpFileCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/PredisCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/RedisCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/RiakCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/Version.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/VoidCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/WinCacheCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/XcacheCache.php
+share/nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/ZendDataCache.php
+share/nextcloud/3rdparty/doctrine/collections/.gitignore
+share/nextcloud/3rdparty/doctrine/collections/LICENSE
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/AbstractLazyCollection.php
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/Collection.php
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/Criteria.php
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ClosureExpressionVisitor.php
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Comparison.php
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/Expr/CompositeExpression.php
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Expression.php
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ExpressionVisitor.php
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Value.php
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/ExpressionBuilder.php
+share/nextcloud/3rdparty/doctrine/collections/lib/Doctrine/Common/Collections/Selectable.php
+share/nextcloud/3rdparty/doctrine/collections/phpunit.xml.dist
+share/nextcloud/3rdparty/doctrine/common/LICENSE
+share/nextcloud/3rdparty/doctrine/common/README.md
+share/nextcloud/3rdparty/doctrine/common/UPGRADE_TO_2_1
+share/nextcloud/3rdparty/doctrine/common/UPGRADE_TO_2_2
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/ClassLoader.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/CommonException.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Comparable.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/EventArgs.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/EventManager.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/EventSubscriber.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Lexer.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/NotifyPropertyChanged.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/AbstractManagerRegistry.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/ConnectionRegistry.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Event/LifecycleEventArgs.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Event/LoadClassMetadataEventArgs.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Event/ManagerEventArgs.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Event/OnClearEventArgs.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Event/PreUpdateEventArgs.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/ManagerRegistry.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/AbstractClassMetadataFactory.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/ClassMetadata.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/ClassMetadataFactory.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/AnnotationDriver.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/DefaultFileLocator.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/FileDriver.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/FileLocator.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/MappingDriver.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/MappingDriverChain.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/PHPDriver.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/StaticPHPDriver.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/SymfonyFileLocator.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/MappingException.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/ReflectionService.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/RuntimeReflectionService.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/StaticReflectionService.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManager.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManagerAware.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManagerDecorator.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/ObjectRepository.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/PersistentObject.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Persistence/Proxy.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/PropertyChangedListener.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Proxy/AbstractProxyFactory.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Proxy/Autoloader.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Proxy/Exception/InvalidArgumentException.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Proxy/Exception/OutOfBoundsException.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Proxy/Exception/ProxyException.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Proxy/Exception/UnexpectedValueException.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Proxy/Proxy.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Proxy/ProxyDefinition.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Proxy/ProxyGenerator.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Reflection/ClassFinderInterface.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Reflection/Psr0FindFile.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Reflection/ReflectionProviderInterface.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Reflection/RuntimePublicReflectionProperty.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Reflection/StaticReflectionClass.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Reflection/StaticReflectionMethod.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Reflection/StaticReflectionParser.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Reflection/StaticReflectionProperty.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Util/ClassUtils.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Util/Debug.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Util/Inflector.php
+share/nextcloud/3rdparty/doctrine/common/lib/Doctrine/Common/Version.php
+share/nextcloud/3rdparty/doctrine/dbal/LICENSE
+share/nextcloud/3rdparty/doctrine/dbal/README.md
+share/nextcloud/3rdparty/doctrine/dbal/SECURITY.md
+share/nextcloud/3rdparty/doctrine/dbal/UPGRADE.md
+share/nextcloud/3rdparty/doctrine/dbal/composer.json
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Cache/ArrayStatement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Cache/CacheException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Cache/QueryCacheProfile.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Cache/ResultCacheStatement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Configuration.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/ConnectionException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Connections/MasterSlaveConnection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractDB2Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractDriverException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractOracleDriver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractPostgreSQLDriver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractSQLAnywhereDriver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractSQLServerDriver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractSQLiteDriver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/Connection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/DriverException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/DrizzlePDOMySql/Connection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/DrizzlePDOMySql/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/ExceptionConverterDriver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Connection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Exception.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Statement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/MysqliException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Exception.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOIbm/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOMySql/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOOracle/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOPgSql/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlite/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Connection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PingableConnection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/ResultStatement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLAnywhere/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereConnection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereStatement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLSrv/Driver.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLSrv/LastInsertId.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvConnection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvStatement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/ServerInfoAwareConnection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/Statement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/DriverManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/ConnectionEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/Listeners/MysqlSessionInit.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/Listeners/OracleSessionInit.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/Listeners/SQLSessionInit.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaAlterTableAddColumnEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaAlterTableChangeColumnEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaAlterTableEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaAlterTableRemoveColumnEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaAlterTableRenameColumnEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaColumnDefinitionEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaCreateTableColumnEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaCreateTableEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaDropTableEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaIndexDefinitionEventArgs.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Events.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/ConnectionException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/ConstraintViolationException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/DatabaseObjectExistsException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/DatabaseObjectNotFoundException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/DriverException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/ForeignKeyConstraintViolationException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/InvalidArgumentException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/InvalidFieldNameException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/NonUniqueFieldNameException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/NotNullConstraintViolationException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/ReadOnlyException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/ServerException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/SyntaxErrorException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/TableExistsException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/TableNotFoundException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Exception/UniqueConstraintViolationException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Id/TableGenerator.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Id/TableGeneratorSchemaVisitor.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/LockMode.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Logging/DebugStack.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Logging/EchoSQLLogger.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Logging/LoggerChain.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Logging/SQLLogger.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/DB2Platform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/DB2Keywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/DrizzleKeywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/KeywordList.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MsSQLKeywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MySQL57Keywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MySQLKeywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/OracleKeywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL91Keywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL92Keywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQLKeywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/ReservedKeywordsValidator.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLAnywhere11Keywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLAnywhere12Keywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLAnywhere16Keywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLAnywhereKeywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLServer2005Keywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLServer2008Keywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLServer2012Keywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLServerKeywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLiteKeywords.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySQL57Platform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/OraclePlatform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL91Platform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL92Platform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAnywhere11Platform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAnywhere12Platform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAnywhere16Platform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAnywherePlatform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAzurePlatform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLServer2005Platform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLServer2008Platform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLServer2012Platform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLServerPlatform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Portability/Connection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Portability/Statement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Query/Expression/CompositeExpression.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Query/Expression/ExpressionBuilder.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Query/QueryBuilder.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Query/QueryException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/README.markdown
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/SQLParserUtils.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/SQLParserUtilsException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractAsset.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Column.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/ColumnDiff.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Comparator.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Constraint.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/DB2SchemaManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/DrizzleSchemaManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/ForeignKeyConstraint.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Identifier.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Index.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/MySqlSchemaManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/SQLAnywhereSchemaManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/SQLServerSchemaManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Schema.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/SchemaConfig.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/SchemaDiff.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/SchemaException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Sequence.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/SqliteSchemaManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Synchronizer/AbstractSchemaSynchronizer.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Synchronizer/SchemaSynchronizer.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Synchronizer/SingleDatabaseSynchronizer.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Table.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/TableDiff.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/View.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/AbstractVisitor.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/Graphviz.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/NamespaceVisitor.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/RemoveNamespacedAssets.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/SchemaDiffVisitor.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/Visitor.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Sharding/PoolingShardConnection.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Sharding/PoolingShardManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureFederationsSynchronizer.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Sharding/SQLAzure/Schema/MultiTenantVisitor.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Sharding/ShardChoser/MultiTenantShardChoser.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Sharding/ShardChoser/ShardChoser.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Sharding/ShardManager.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Sharding/ShardingException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Statement.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Tools/Console/Command/ImportCommand.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Tools/Console/Command/ReservedWordsCommand.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Tools/Console/Command/RunSqlCommand.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Tools/Console/ConsoleRunner.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/ArrayType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/BigIntType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/BinaryType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/BlobType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/BooleanType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/ConversionException.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/DateTimeType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/DateTimeTzType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/DateType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/DecimalType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/FloatType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/GuidType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/IntegerType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/JsonArrayType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/ObjectType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/SimpleArrayType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/SmallIntType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/StringType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/TextType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/TimeType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/Type.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Types/VarDateTimeType.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Version.php
+share/nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/VersionAwarePlatformDriver.php
+share/nextcloud/3rdparty/doctrine/inflector/.gitignore
+share/nextcloud/3rdparty/doctrine/inflector/LICENSE
+share/nextcloud/3rdparty/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php
+share/nextcloud/3rdparty/doctrine/lexer/README.md
+share/nextcloud/3rdparty/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/AbstractHasDispatcher.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/Collection.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/Event.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/Exception/BadMethodCallException.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/Exception/ExceptionCollection.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/Exception/GuzzleException.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/Exception/InvalidArgumentException.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/Exception/RuntimeException.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/Exception/UnexpectedValueException.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/FromConfigInterface.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/HasDispatcherInterface.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/ToArrayInterface.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/Version.php
+share/nextcloud/3rdparty/guzzle/common/Guzzle/Common/composer.json
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/AbstractEntityBodyDecorator.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/CachingEntityBody.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Client.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/ClientInterface.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Curl/CurlHandle.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Curl/CurlMulti.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Curl/CurlMultiInterface.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Curl/CurlMultiProxy.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Curl/CurlVersion.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Curl/RequestMediator.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/EntityBody.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/EntityBodyInterface.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Exception/BadResponseException.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Exception/ClientErrorResponseException.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Exception/CouldNotRewindStreamException.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Exception/CurlException.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Exception/HttpException.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Exception/MultiTransferException.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Exception/RequestException.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Exception/ServerErrorResponseException.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Exception/TooManyRedirectsException.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/IoEmittingEntityBody.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/AbstractMessage.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/EntityEnclosingRequest.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/EntityEnclosingRequestInterface.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/Header.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/Header/CacheControl.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/Header/HeaderCollection.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/Header/HeaderFactory.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/Header/HeaderFactoryInterface.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/Header/HeaderInterface.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/Header/Link.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/MessageInterface.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/PostFile.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/PostFileInterface.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/Request.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/RequestFactory.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/RequestFactoryInterface.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/RequestInterface.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Message/Response.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Mimetypes.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/QueryAggregator/CommaAggregator.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/QueryAggregator/DuplicateAggregator.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/QueryAggregator/PhpAggregator.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/QueryString.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/ReadLimitEntityBody.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/RedirectPlugin.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Resources/cacert.pem
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Resources/cacert.pem.md5
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/StaticClient.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/Url.php
+share/nextcloud/3rdparty/guzzle/http/Guzzle/Http/composer.json
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/Cookie/CookieParser.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/Cookie/CookieParserInterface.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/Message/AbstractMessageParser.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/Message/MessageParser.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/Message/MessageParserInterface.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/Message/PeclHttpMessageParser.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/ParserRegistry.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/UriTemplate/PeclUriTemplate.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/UriTemplate/UriTemplate.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/UriTemplate/UriTemplateInterface.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/Url/UrlParser.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/Url/UrlParserInterface.php
+share/nextcloud/3rdparty/guzzle/parser/Guzzle/Parser/composer.json
+share/nextcloud/3rdparty/guzzle/stream/Guzzle/Stream/PhpStreamRequestFactory.php
+share/nextcloud/3rdparty/guzzle/stream/Guzzle/Stream/Stream.php
+share/nextcloud/3rdparty/guzzle/stream/Guzzle/Stream/StreamInterface.php
+share/nextcloud/3rdparty/guzzle/stream/Guzzle/Stream/StreamRequestFactoryInterface.php
+share/nextcloud/3rdparty/guzzle/stream/Guzzle/Stream/composer.json
+share/nextcloud/3rdparty/guzzlehttp/guzzle/LICENSE
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/BatchResults.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Client.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/ClientInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Collection.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Cookie/CookieJar.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Cookie/SetCookie.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/AbstractEvent.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/AbstractRequestEvent.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/AbstractRetryableEvent.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/AbstractTransferEvent.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/BeforeEvent.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/CompleteEvent.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/Emitter.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/EmitterInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/EndEvent.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/ErrorEvent.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/EventInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/HasEmitterInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/HasEmitterTrait.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/ListenerAttacherTrait.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/ProgressEvent.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/RequestEvents.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Event/SubscriberInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Exception/BadResponseException.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Exception/ClientException.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Exception/ConnectException.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Exception/CouldNotRewindStreamException.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Exception/ParseException.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Exception/RequestException.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Exception/ServerException.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Exception/StateException.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Exception/TransferException.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Exception/XmlParseException.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/HasDataTrait.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Message/AbstractMessage.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Message/AppliesHeadersInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Message/FutureResponse.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Message/MessageFactory.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Message/MessageFactoryInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Message/MessageInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Message/MessageParser.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Message/Request.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Message/RequestInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Message/Response.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Message/ResponseInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Mimetypes.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Pool.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Post/MultipartBody.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Post/PostBody.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Post/PostBodyInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Post/PostFile.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Post/PostFileInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Query.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/QueryParser.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/RequestFsm.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/RingBridge.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Subscriber/Cookie.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Subscriber/History.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Subscriber/HttpError.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Subscriber/Mock.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Subscriber/Prepare.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Subscriber/Redirect.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/ToArrayInterface.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Transaction.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/UriTemplate.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Url.php
+share/nextcloud/3rdparty/guzzlehttp/guzzle/src/Utils.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/LICENSE
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Client/ClientUtils.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Client/CurlFactory.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Client/CurlHandler.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Client/CurlMultiHandler.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Client/Middleware.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Client/MockHandler.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Client/StreamHandler.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Core.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Exception/CancelledException.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Exception/CancelledFutureAccessException.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Exception/ConnectException.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Exception/RingException.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Future/BaseFutureTrait.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Future/CompletedFutureArray.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Future/CompletedFutureValue.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Future/FutureArray.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Future/FutureArrayInterface.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Future/FutureInterface.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Future/FutureValue.php
+share/nextcloud/3rdparty/guzzlehttp/ringphp/src/Future/MagicFutureTrait.php
+share/nextcloud/3rdparty/guzzlehttp/streams/LICENSE
+share/nextcloud/3rdparty/guzzlehttp/streams/src/AppendStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/AsyncReadStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/BufferStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/CachingStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/DroppingStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/Exception/CannotAttachException.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/Exception/SeekException.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/FnStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/GuzzleStreamWrapper.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/InflateStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/LazyOpenStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/LimitStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/MetadataStreamInterface.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/NoSeekStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/NullStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/PumpStream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/Stream.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/StreamDecoratorTrait.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/StreamInterface.php
+share/nextcloud/3rdparty/guzzlehttp/streams/src/Utils.php
+share/nextcloud/3rdparty/icewind/streams/.gitignore
+share/nextcloud/3rdparty/icewind/streams/src/CallbackWrapper.php
+share/nextcloud/3rdparty/icewind/streams/src/Directory.php
+share/nextcloud/3rdparty/icewind/streams/src/DirectoryFilter.php
+share/nextcloud/3rdparty/icewind/streams/src/DirectoryWrapper.php
+share/nextcloud/3rdparty/icewind/streams/src/File.php
+share/nextcloud/3rdparty/icewind/streams/src/IteratorDirectory.php
+share/nextcloud/3rdparty/icewind/streams/src/NullWrapper.php
+share/nextcloud/3rdparty/icewind/streams/src/Path.php
+share/nextcloud/3rdparty/icewind/streams/src/RetryWrapper.php
+share/nextcloud/3rdparty/icewind/streams/src/SeekableWrapper.php
+share/nextcloud/3rdparty/icewind/streams/src/Url.php
+share/nextcloud/3rdparty/icewind/streams/src/UrlCallBack.php
+share/nextcloud/3rdparty/icewind/streams/src/Wrapper.php
+share/nextcloud/3rdparty/interfasys/lognormalizer/AUTHORS.md
+share/nextcloud/3rdparty/interfasys/lognormalizer/COPYING
+share/nextcloud/3rdparty/interfasys/lognormalizer/src/Normalizer.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/LICENSE.md
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/Analyzer/AstAnalyzer.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/Analyzer/ClosureAnalyzer.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/Analyzer/Token.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/Analyzer/TokenAnalyzer.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/Analyzer/Visitor/ClosureLocatorVisitor.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/Analyzer/Visitor/MagicConstantVisitor.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/Analyzer/Visitor/ThisDetectorVisitor.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/Exception/ClosureAnalysisException.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/Exception/ClosureUnserializationException.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/Exception/SuperClosureException.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/SerializableClosure.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/Serializer.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/SerializerInterface.php
+share/nextcloud/3rdparty/jeremeamia/SuperClosure/src/hash_equals.php
+share/nextcloud/3rdparty/league/flysystem/LICENSE
+share/nextcloud/3rdparty/league/flysystem/composer.json
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/AbstractAdapter.php
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/AbstractFtpAdapter.php
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/Ftp.php
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/Ftpd.php
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/Local.php
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/NullAdapter.php
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/Polyfill/NotSupportingVisibilityTrait.php
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/Polyfill/StreamedCopyTrait.php
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/Polyfill/StreamedReadingTrait.php
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/Polyfill/StreamedTrait.php
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/Polyfill/StreamedWritingTrait.php
+share/nextcloud/3rdparty/league/flysystem/src/Adapter/SynologyFtp.php
+share/nextcloud/3rdparty/league/flysystem/src/AdapterInterface.php
+share/nextcloud/3rdparty/league/flysystem/src/Config.php
+share/nextcloud/3rdparty/league/flysystem/src/ConfigAwareTrait.php
+share/nextcloud/3rdparty/league/flysystem/src/Directory.php
+share/nextcloud/3rdparty/league/flysystem/src/Exception.php
+share/nextcloud/3rdparty/league/flysystem/src/File.php
+share/nextcloud/3rdparty/league/flysystem/src/FileExistsException.php
+share/nextcloud/3rdparty/league/flysystem/src/FileNotFoundException.php
+share/nextcloud/3rdparty/league/flysystem/src/Filesystem.php
+share/nextcloud/3rdparty/league/flysystem/src/FilesystemInterface.php
+share/nextcloud/3rdparty/league/flysystem/src/Handler.php
+share/nextcloud/3rdparty/league/flysystem/src/MountManager.php
+share/nextcloud/3rdparty/league/flysystem/src/NotSupportedException.php
+share/nextcloud/3rdparty/league/flysystem/src/Plugin/AbstractPlugin.php
+share/nextcloud/3rdparty/league/flysystem/src/Plugin/EmptyDir.php
+share/nextcloud/3rdparty/league/flysystem/src/Plugin/GetWithMetadata.php
+share/nextcloud/3rdparty/league/flysystem/src/Plugin/ListFiles.php
+share/nextcloud/3rdparty/league/flysystem/src/Plugin/ListPaths.php
+share/nextcloud/3rdparty/league/flysystem/src/Plugin/ListWith.php
+share/nextcloud/3rdparty/league/flysystem/src/Plugin/PluggableTrait.php
+share/nextcloud/3rdparty/league/flysystem/src/Plugin/PluginNotFoundException.php
+share/nextcloud/3rdparty/league/flysystem/src/PluginInterface.php
+share/nextcloud/3rdparty/league/flysystem/src/ReadInterface.php
+share/nextcloud/3rdparty/league/flysystem/src/RootViolationException.php
+share/nextcloud/3rdparty/league/flysystem/src/UnreadableFileException.php
+share/nextcloud/3rdparty/league/flysystem/src/Util.php
+share/nextcloud/3rdparty/league/flysystem/src/Util/ContentListingFormatter.php
+share/nextcloud/3rdparty/league/flysystem/src/Util/MimeType.php
+share/nextcloud/3rdparty/league/flysystem/src/Util/StreamHasher.php
+share/nextcloud/3rdparty/lukasreschke/id3parser/.gitignore
+share/nextcloud/3rdparty/lukasreschke/id3parser/README.md
+share/nextcloud/3rdparty/lukasreschke/id3parser/composer.json
+share/nextcloud/3rdparty/lukasreschke/id3parser/src/ID3Parser.php
+share/nextcloud/3rdparty/lukasreschke/id3parser/src/getID3/Tags/getid3_id3v1.php
+share/nextcloud/3rdparty/lukasreschke/id3parser/src/getID3/Tags/getid3_id3v2.php
+share/nextcloud/3rdparty/lukasreschke/id3parser/src/getID3/getid3.php
+share/nextcloud/3rdparty/lukasreschke/id3parser/src/getID3/getid3_exception.php
+share/nextcloud/3rdparty/lukasreschke/id3parser/src/getID3/getid3_handler.php
+share/nextcloud/3rdparty/lukasreschke/id3parser/src/getID3/getid3_lib.php
+share/nextcloud/3rdparty/mcnetic/zipstreamer/COPYING
+share/nextcloud/3rdparty/mcnetic/zipstreamer/MANUAL.md
+share/nextcloud/3rdparty/mcnetic/zipstreamer/README.md
+share/nextcloud/3rdparty/mcnetic/zipstreamer/composer.json
+share/nextcloud/3rdparty/mcnetic/zipstreamer/src/ZipStreamer.php
+share/nextcloud/3rdparty/mcnetic/zipstreamer/src/lib/Count64.php
+share/nextcloud/3rdparty/natxet/CssMin/README
+share/nextcloud/3rdparty/natxet/CssMin/composer.json
+share/nextcloud/3rdparty/natxet/CssMin/src/CssMin.php
+share/nextcloud/3rdparty/nikic/php-parser/LICENSE
+share/nextcloud/3rdparty/nikic/php-parser/grammar/README.md
+share/nextcloud/3rdparty/nikic/php-parser/grammar/kmyacc.php.parser
+share/nextcloud/3rdparty/nikic/php-parser/grammar/zend_language_parser.phpy
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Autoloader.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder/Class_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder/Declaration.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder/Function_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder/Interface_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder/Method.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder/Param.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder/Property.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder/Trait_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Builder/Use_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/BuilderAbstract.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/BuilderFactory.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Comment.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Comment/Doc.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Error.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Lexer.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Arg.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Const_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Array_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Assign.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BitwiseNot.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/BooleanNot.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/ClassConstFetch.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Clone_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Empty_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/ErrorSuppress.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Eval_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Include_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Instanceof_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Isset_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/PostInc.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/PreDec.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/PreInc.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Print_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/PropertyFetch.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/ShellExec.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Ternary.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryMinus.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryPlus.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Variable.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Expr/Yield_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Name.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Name/FullyQualified.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Name/Relative.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Param.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/Encapsed.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/LNumber.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Scalar/String_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Break_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassConst.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Const_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Continue_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Declare_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Do_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Echo_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/ElseIf_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/For_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Foreach_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Global_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Goto_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/HaltCompiler.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/If_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/InlineHTML.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Interface_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Label.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/PropertyProperty.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Return_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/StaticVar.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Static_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Switch_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUse.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Unset_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/UseUse.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Use_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/While_.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/NodeAbstract.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/NodeDumper.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/NodeTraverser.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/NodeTraverserInterface.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/NodeVisitor.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Parser.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/ParserAbstract.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Serializer.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Serializer/XML.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Unserializer.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/PhpParser/Unserializer/XML.php
+share/nextcloud/3rdparty/nikic/php-parser/lib/bootstrap.php
+share/nextcloud/3rdparty/paragonie/random_compat/LICENSE
+share/nextcloud/3rdparty/paragonie/random_compat/composer.json
+share/nextcloud/3rdparty/paragonie/random_compat/lib/byte_safe_strings.php
+share/nextcloud/3rdparty/paragonie/random_compat/lib/cast_to_int.php
+share/nextcloud/3rdparty/paragonie/random_compat/lib/error_polyfill.php
+share/nextcloud/3rdparty/paragonie/random_compat/lib/random.php
+share/nextcloud/3rdparty/paragonie/random_compat/lib/random_bytes_com_dotnet.php
+share/nextcloud/3rdparty/paragonie/random_compat/lib/random_bytes_dev_urandom.php
+share/nextcloud/3rdparty/paragonie/random_compat/lib/random_bytes_libsodium.php
+share/nextcloud/3rdparty/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php
+share/nextcloud/3rdparty/paragonie/random_compat/lib/random_bytes_mcrypt.php
+share/nextcloud/3rdparty/paragonie/random_compat/lib/random_bytes_openssl.php
+share/nextcloud/3rdparty/paragonie/random_compat/lib/random_int.php
+share/nextcloud/3rdparty/patches.txt
+share/nextcloud/3rdparty/patchwork/jsqueeze/LICENSE.ASL20
+share/nextcloud/3rdparty/patchwork/jsqueeze/LICENSE.GPLv2
+share/nextcloud/3rdparty/patchwork/jsqueeze/README.md
+share/nextcloud/3rdparty/patchwork/jsqueeze/composer.json
+share/nextcloud/3rdparty/patchwork/jsqueeze/src/JSqueeze.php
+share/nextcloud/3rdparty/patchwork/utf8/CHANGELOG.md
+share/nextcloud/3rdparty/patchwork/utf8/LICENSE-APACHE
+share/nextcloud/3rdparty/patchwork/utf8/LICENSE-GPL
+share/nextcloud/3rdparty/patchwork/utf8/README.md
+share/nextcloud/3rdparty/patchwork/utf8/composer.json
+share/nextcloud/3rdparty/patchwork/utf8/phpunit.xml.dist
+share/nextcloud/3rdparty/patchwork/utf8/src/Normalizer.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/Iconv.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/Intl.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/Mbstring.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/Normalizer.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/Xml.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.big5.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp037.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp1006.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp1026.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp424.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp437.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp500.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp737.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp775.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp850.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp852.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp855.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp856.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp857.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp860.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp861.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp862.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp863.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp864.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp865.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp866.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp869.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp874.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp875.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp932.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp936.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp949.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp950.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.gsm0338.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-1.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-10.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-11.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-13.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-14.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-15.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-16.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-2.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-3.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-4.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-5.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-6.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-7.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-8.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-9.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.koi8-r.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.koi8-u.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.mazovia.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.nextstep.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.stdenc.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.symbol.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.turkish.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.us-ascii-quotes.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.us-ascii.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1250.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1251.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1252.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1253.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1254.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1255.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1256.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1257.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1258.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-ce.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-cyrillic.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-greek.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-icelandic.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-roman.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.zdingbat.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.gsm0338.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.mazovia.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.stdenc.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.symbol.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.zdingbat.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/charset/translit.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/canonicalComposition.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/canonicalDecomposition.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/combiningClass.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/compatibilityDecomposition.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/lowerCase.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/upperCase.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/TurkishUtf8.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/BestFit.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/iconv.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/intl.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/mbstring.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/utf8_encode.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/WindowsStreamWrapper.php
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/caseFolding_full.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1250.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1251.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1252.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1253.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1254.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1255.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1256.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1257.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1258.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit874.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit932.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit936.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit949.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit950.ser
+share/nextcloud/3rdparty/patchwork/utf8/src/Patchwork/Utf8/data/translit_extra.ser
+share/nextcloud/3rdparty/pear/archive_tar/.gitignore
+share/nextcloud/3rdparty/pear/archive_tar/Archive/Tar.php
+share/nextcloud/3rdparty/pear/archive_tar/README.md
+share/nextcloud/3rdparty/pear/archive_tar/composer.json
+share/nextcloud/3rdparty/pear/archive_tar/package.xml
+share/nextcloud/3rdparty/pear/console_getopt/.gitignore
+share/nextcloud/3rdparty/pear/console_getopt/Console/Getopt.php
+share/nextcloud/3rdparty/pear/console_getopt/LICENSE
+share/nextcloud/3rdparty/pear/console_getopt/README.rst
+share/nextcloud/3rdparty/pear/console_getopt/composer.json
+share/nextcloud/3rdparty/pear/console_getopt/package.xml
+share/nextcloud/3rdparty/pear/pear-core-minimal/.gitignore
+share/nextcloud/3rdparty/pear/pear-core-minimal/README.rst
+share/nextcloud/3rdparty/pear/pear-core-minimal/composer.json
+share/nextcloud/3rdparty/pear/pear-core-minimal/src/OS/Guess.php
+share/nextcloud/3rdparty/pear/pear-core-minimal/src/PEAR.php
+share/nextcloud/3rdparty/pear/pear-core-minimal/src/PEAR/Error.php
+share/nextcloud/3rdparty/pear/pear-core-minimal/src/PEAR/ErrorStack.php
+share/nextcloud/3rdparty/pear/pear-core-minimal/src/System.php
+share/nextcloud/3rdparty/pear/pear_exception/.gitignore
+share/nextcloud/3rdparty/pear/pear_exception/LICENSE
+share/nextcloud/3rdparty/pear/pear_exception/PEAR/Exception.php
+share/nextcloud/3rdparty/pear/pear_exception/composer.json
+share/nextcloud/3rdparty/pear/pear_exception/package.xml
+share/nextcloud/3rdparty/phpseclib/phpseclib/AUTHORS
+share/nextcloud/3rdparty/phpseclib/phpseclib/LICENSE
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/AES.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/Base.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/DES.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/Hash.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/RC2.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/RC4.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/RSA.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/Random.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/File/ANSI.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/File/ASN1.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/File/ASN1/Element.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/File/X509.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Math/BigInteger.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Net/SCP.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Net/SFTP.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Net/SSH1.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/Net/SSH2.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/System/SSH/Agent/Identity.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/bootstrap.php
+share/nextcloud/3rdparty/phpseclib/phpseclib/phpseclib/openssl.cnf
+share/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php
+share/nextcloud/3rdparty/pimple/pimple/src/Pimple/ServiceProviderInterface.php
+share/nextcloud/3rdparty/psr/log/LICENSE
+share/nextcloud/3rdparty/psr/log/Psr/Log/AbstractLogger.php
+share/nextcloud/3rdparty/psr/log/Psr/Log/InvalidArgumentException.php
+share/nextcloud/3rdparty/psr/log/Psr/Log/LogLevel.php
+share/nextcloud/3rdparty/psr/log/Psr/Log/LoggerAwareInterface.php
+share/nextcloud/3rdparty/psr/log/Psr/Log/LoggerAwareTrait.php
+share/nextcloud/3rdparty/psr/log/Psr/Log/LoggerInterface.php
+share/nextcloud/3rdparty/psr/log/Psr/Log/LoggerTrait.php
+share/nextcloud/3rdparty/psr/log/Psr/Log/NullLogger.php
+share/nextcloud/3rdparty/psr/log/Psr/Log/Test/LoggerInterfaceTest.php
+share/nextcloud/3rdparty/punic/punic/LICENSE.txt
+share/nextcloud/3rdparty/punic/punic/UNICODE-LICENSE.txt
+share/nextcloud/3rdparty/punic/punic/code/Calendar.php
+share/nextcloud/3rdparty/punic/punic/code/Comparer.php
+share/nextcloud/3rdparty/punic/punic/code/Currency.php
+share/nextcloud/3rdparty/punic/punic/code/Data.php
+share/nextcloud/3rdparty/punic/punic/code/Exception.php
+share/nextcloud/3rdparty/punic/punic/code/Exception/BadArgumentType.php
+share/nextcloud/3rdparty/punic/punic/code/Exception/BadDataFileContents.php
+share/nextcloud/3rdparty/punic/punic/code/Exception/DataFileNotFound.php
+share/nextcloud/3rdparty/punic/punic/code/Exception/DataFileNotReadable.php
+share/nextcloud/3rdparty/punic/punic/code/Exception/DataFolderNotFound.php
+share/nextcloud/3rdparty/punic/punic/code/Exception/InvalidDataFile.php
+share/nextcloud/3rdparty/punic/punic/code/Exception/InvalidLocale.php
+share/nextcloud/3rdparty/punic/punic/code/Exception/NotImplemented.php
+share/nextcloud/3rdparty/punic/punic/code/Exception/ValueNotInList.php
+share/nextcloud/3rdparty/punic/punic/code/Language.php
+share/nextcloud/3rdparty/punic/punic/code/Misc.php
+share/nextcloud/3rdparty/punic/punic/code/Number.php
+share/nextcloud/3rdparty/punic/punic/code/Phone.php
+share/nextcloud/3rdparty/punic/punic/code/Plural.php
+share/nextcloud/3rdparty/punic/punic/code/Territory.php
+share/nextcloud/3rdparty/punic/punic/code/Unit.php
+share/nextcloud/3rdparty/punic/punic/code/data/ar/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/ar/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/ar/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/ar/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/ar/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/ar/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/ar/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ar/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ar/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/ar/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/ar/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ar/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ca/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/cs/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/currencyData.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/da/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/de/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/el/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-AU/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-CA/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-GB/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-HK/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en-IN/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/en/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/es/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/fi/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/fr/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/he/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/hi/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/hr/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/hu/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/it/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ja/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ko/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/likelySubtags.json
+share/nextcloud/3rdparty/punic/punic/code/data/measurementData.json
+share/nextcloud/3rdparty/punic/punic/code/data/metaZones.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/nb/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/nl/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/parentLocales.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/pl/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/plurals.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt-PT/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/pt/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ro/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/root/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/ru/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sk/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sl/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sr/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/sv/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/telephoneCodeData.json
+share/nextcloud/3rdparty/punic/punic/code/data/territoryContainment.json
+share/nextcloud/3rdparty/punic/punic/code/data/territoryInfo.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/th/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/tr/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/uk/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/vi/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/weekData.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh-Hant/units.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/calendar.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/currencies.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/dateFields.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/languages.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/layout.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/listPatterns.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/localeDisplayNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/measurementSystemNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/numbers.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/territories.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/timeZoneNames.json
+share/nextcloud/3rdparty/punic/punic/code/data/zh/units.json
+share/nextcloud/3rdparty/rackspace/php-opencloud/.coveralls.yml
+share/nextcloud/3rdparty/rackspace/php-opencloud/.gitignore
+share/nextcloud/3rdparty/rackspace/php-opencloud/CONTRIBUTING.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/LICENSE
+share/nextcloud/3rdparty/rackspace/php-opencloud/README.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/composer.json
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/changelog/1.7.0.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/changelog/1.9.0.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/changelog/Upgrading to 1.7.0.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/generate.sh
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/getting-started-openstack.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/getting-started.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Autoscale/Config.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Autoscale/Groups.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Autoscale/Policies.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Autoscale/Webhooks.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Clients.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/CloudMonitoring/Agents.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/CloudMonitoring/Alarms.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/CloudMonitoring/Changelogs.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/CloudMonitoring/Checks.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/CloudMonitoring/Entities.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/CloudMonitoring/Metrics.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/CloudMonitoring/Notifications.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/CloudMonitoring/Service.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/CloudMonitoring/Views.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/CloudMonitoring/Zones.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Compute/Images.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Compute/Keypair.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Compute/Server.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Compute/Service.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Identity/Roles.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Identity/Service.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Identity/Tenants.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Identity/Tokens.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Identity/Users.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Iterators.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/LoadBalancer/README.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/LoadBalancer/USERGUIDE.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/ObjectStore/Access.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/ObjectStore/Account.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/ObjectStore/CDN/Container.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/ObjectStore/CDN/Object.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/ObjectStore/Storage/Container.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/ObjectStore/Storage/Migrating.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/ObjectStore/Storage/Object.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Queues/Claim.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Queues/Message.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/Queues/Queue.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/accessip.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/caching-credentials.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/dbaas.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/flavors.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/networks.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/servers.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/docs/userguide/volumes.md
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Autoscale/Resource/AbstractResource.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Autoscale/Resource/Group.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Autoscale/Resource/GroupConfiguration.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Autoscale/Resource/LaunchConfiguration.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Autoscale/Resource/ScalingPolicy.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Autoscale/Resource/Webhook.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Autoscale/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Exception/AgentException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Exception/AlarmException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Exception/CheckException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Exception/CloudMonitoringException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Exception/EntityException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Exception/MetricException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Exception/NotificationHistoryException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Exception/NotificationPlanException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Exception/ServiceException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Exception/TestException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Exception/ZoneException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/AbstractResource.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/Agent.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/AgentConnection.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/AgentHost.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/AgentHostInfo.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/AgentTarget.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/AgentToken.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/Alarm.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/Changelog.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/Check.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/CheckType.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/Entity.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/Metric.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/Notification.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/NotificationHistory.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/NotificationPlan.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/NotificationType.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/ReadOnlyResource.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/View.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Resource/Zone.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/CloudMonitoring/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Base.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Collection.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ArrayCollection.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/PaginatedIterator.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ResourceIterator.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Datetime.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Header.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Mime.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Size.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/State.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncHttpError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncTimeoutError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AttributeError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AuthenticationError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BaseException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnHttpError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnNotAvailableError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnTtlError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CollectionException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerCreateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerDeleteError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNameError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotEmptyError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotFoundError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateUpdateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CredentialError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseCreateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseDeleteError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseListError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseNameError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseUpdateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DeleteError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DocumentError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DomainError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EmptyResponseError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EndpointError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/FlavorError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpForbiddenError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpOverLimitError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpRetryError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpTimeoutError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUnauthorizedError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUrlError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IOError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IdRequiredError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ImageError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceCreateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceDeleteError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceFlavorError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceNotFound.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceUpdateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidArgumentError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIdTypeError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIpTypeError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidParameterError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidRequestError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/JsonError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/LoggingException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataCreateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataDeleteError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataJsonError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataKeyError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataPrefixError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataUpdateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MisMatchedChecksumError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MissingValueError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NameError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkCreateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkDeleteError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUpdateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUrlError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoContentTypeError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoNameError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjFetchError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectCopyError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RebuildError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RecordTypeError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceBucketException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RuntimeException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerActionError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerCreateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerDeleteError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerImageScheduleError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerIpsError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerJsonError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUpdateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUrlError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServiceException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/SnapshotError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/TempUrlMethodError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownParameterError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnrecognizedServiceError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedExtensionError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedFeatureExtension.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedVersionError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UpdateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UrlError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserCreateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserDeleteError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserListError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserNameError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserUpdateError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeTypeError.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Client.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/Formatter.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/RequestSubscriber.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Lang.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Log/AbstractLogger.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Log/LogLevel.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Log/Logger.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Log/LoggerInterface.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Metadata.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/PersistentObject.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Service/AbstractService.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Catalog.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogItem.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogService.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Endpoint.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Service/NovaService.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceBuilder.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceInterface.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Constants/ImageState.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Constants/Network.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Constants/ServerState.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Exception/KeyPairException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Resource/Flavor.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Resource/Image.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Resource/KeyPair.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Resource/Network.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Resource/Server.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Resource/ServerMetadata.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Resource/VolumeAttachment.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Compute/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/DNS/Collection/DnsIterator.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/DNS/Resource/AsyncResponse.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/DNS/Resource/Domain.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/DNS/Resource/Object.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/DNS/Resource/PtrRecord.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/DNS/Resource/Record.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/DNS/Resource/Subdomain.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/DNS/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Database/Resource/Database.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Database/Resource/Instance.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Database/Resource/User.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Database/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Identity/Constants/User.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Role.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Tenant.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Token.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/User.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Identity/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/Access.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/Algorithm.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/AllowedDomain.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/BillableLoadBalancer.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/ConnectionLogging.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/ConnectionThrottle.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/ContentCaching.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/ErrorPage.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/HealthMonitor.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/LoadBalancer.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/Metadata.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/Node.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/NodeEvent.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/Protocol.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/Readonly.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/SSLTermination.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/SessionPersistence.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/Stats.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/SubResource.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/Usage.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Resource/VirtualIp.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/LoadBalancer/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/AbstractService.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/CDNService.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/Header.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/UrlType.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/BulkOperationException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ContainerException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ObjectNotFoundException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/StreamException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/UploadException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractContainer.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractResource.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Account.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/CDNContainer.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Container.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/ContainerMetadata.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/DataObject.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/AbstractTransfer.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConcurrentTransfer.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConsecutiveTransfer.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ContainerMigration.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/DirectorySync.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferBuilder.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferPart.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferState.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/OpenStack.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Orchestration/Resource.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Orchestration/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Orchestration/Stack.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Queues/Exception/DeleteMessageException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Queues/Exception/MessageException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Queues/Exception/QueueException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Queues/Exception/QueueMetadataException.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Queues/Resource/Claim.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Queues/Resource/Message.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Queues/Resource/Queue.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Queues/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Rackspace.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Version.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Volume/Resource/Snapshot.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Volume/Resource/Volume.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Volume/Resource/VolumeType.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/OpenCloud/Volume/Service.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/lib/php-opencloud.php
+share/nextcloud/3rdparty/rackspace/php-opencloud/phpunit.xml.dist
+share/nextcloud/3rdparty/react/promise/.gitignore
+share/nextcloud/3rdparty/react/promise/LICENSE
+share/nextcloud/3rdparty/react/promise/src/CancellablePromiseInterface.php
+share/nextcloud/3rdparty/react/promise/src/Deferred.php
+share/nextcloud/3rdparty/react/promise/src/ExtendedPromiseInterface.php
+share/nextcloud/3rdparty/react/promise/src/FulfilledPromise.php
+share/nextcloud/3rdparty/react/promise/src/LazyPromise.php
+share/nextcloud/3rdparty/react/promise/src/Promise.php
+share/nextcloud/3rdparty/react/promise/src/PromiseInterface.php
+share/nextcloud/3rdparty/react/promise/src/PromisorInterface.php
+share/nextcloud/3rdparty/react/promise/src/RejectedPromise.php
+share/nextcloud/3rdparty/react/promise/src/UnhandledRejectionException.php
+share/nextcloud/3rdparty/react/promise/src/functions.php
+share/nextcloud/3rdparty/react/promise/src/functions_include.php
+share/nextcloud/3rdparty/sabre/dav/.gitignore
+share/nextcloud/3rdparty/sabre/dav/CHANGELOG.md
+share/nextcloud/3rdparty/sabre/dav/CONTRIBUTING.md
+share/nextcloud/3rdparty/sabre/dav/LICENSE
+share/nextcloud/3rdparty/sabre/dav/README.md
+share/nextcloud/3rdparty/sabre/dav/composer.json
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Backend/AbstractBackend.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Backend/BackendInterface.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Backend/NotificationSupport.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Backend/PDO.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Backend/SchedulingSupport.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Backend/SharingSupport.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Backend/SimplePDO.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Backend/SubscriptionSupport.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Backend/SyncSupport.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Calendar.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/CalendarHome.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/CalendarObject.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/CalendarQueryValidator.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/CalendarRoot.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Exception/InvalidComponentType.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/ICSExportPlugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/ICalendar.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/ICalendarObject.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/ICalendarObjectContainer.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/ISharedCalendar.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Notifications/Collection.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Notifications/ICollection.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Notifications/INode.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Notifications/Node.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Notifications/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Principal/Collection.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Principal/IProxyRead.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Principal/IProxyWrite.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Principal/ProxyRead.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Principal/ProxyWrite.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Principal/User.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Schedule/IInbox.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Schedule/IMipPlugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Schedule/IOutbox.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Schedule/ISchedulingObject.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Schedule/Inbox.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Schedule/Outbox.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Schedule/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Schedule/SchedulingObject.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/SharedCalendar.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/SharingPlugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Subscriptions/ISubscription.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Subscriptions/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Subscriptions/Subscription.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Filter/CalendarData.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Filter/CompFilter.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Filter/ParamFilter.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Filter/PropFilter.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Notification/Invite.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Notification/InviteReply.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Notification/NotificationInterface.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Notification/SystemStatus.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Property/AllowedSharingModes.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Property/EmailAddressSet.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Property/Invite.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Property/ScheduleCalendarTransp.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Property/SupportedCalendarComponentSet.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Property/SupportedCalendarData.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Property/SupportedCollationSet.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Request/CalendarMultiGetReport.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Request/CalendarQueryReport.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Request/FreeBusyQueryReport.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Request/InviteReply.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Request/MkCalendar.php
+share/nextcloud/3rdparty/sabre/dav/lib/CalDAV/Xml/Request/Share.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/AddressBook.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/AddressBookHome.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/AddressBookRoot.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Backend/AbstractBackend.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Backend/BackendInterface.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Backend/PDO.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Backend/SyncSupport.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Card.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/IAddressBook.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/ICard.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/IDirectory.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/VCFExportPlugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Xml/Filter/AddressData.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Xml/Filter/ParamFilter.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Xml/Filter/PropFilter.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Xml/Property/SupportedAddressData.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Xml/Property/SupportedCollationSet.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Xml/Request/AddressBookMultiGetReport.php
+share/nextcloud/3rdparty/sabre/dav/lib/CardDAV/Xml/Request/AddressBookQueryReport.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Auth/Backend/AbstractBasic.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Auth/Backend/AbstractBearer.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Auth/Backend/AbstractDigest.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Auth/Backend/Apache.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Auth/Backend/BackendInterface.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Auth/Backend/BasicCallBack.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Auth/Backend/File.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Auth/Backend/PDO.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Auth/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/GuessContentType.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/HtmlOutput.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/HtmlOutputHelper.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/MapGetToPropFind.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/PropFindAll.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/assets/favicon.ico
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/assets/openiconic/ICON-LICENSE
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/assets/openiconic/open-iconic.css
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/assets/openiconic/open-iconic.eot
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/assets/openiconic/open-iconic.otf
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/assets/openiconic/open-iconic.svg
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/assets/openiconic/open-iconic.ttf
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/assets/openiconic/open-iconic.woff
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/assets/sabredav.css
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Browser/assets/sabredav.png
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Client.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Collection.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/CorePlugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/BadRequest.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/Conflict.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/ConflictingLock.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/Forbidden.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/InsufficientStorage.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/InvalidResourceType.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/InvalidSyncToken.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/LengthRequired.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/LockTokenMatchesRequestUri.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/Locked.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/MethodNotAllowed.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/NotAuthenticated.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/NotFound.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/NotImplemented.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/PaymentRequired.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/PreconditionFailed.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/ReportNotSupported.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/RequestedRangeNotSatisfiable.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/ServiceUnavailable.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/TooManyMatches.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Exception/UnsupportedMediaType.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/FS/Directory.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/FS/File.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/FS/Node.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/FSExt/Directory.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/FSExt/File.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/File.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/ICollection.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/IExtendedCollection.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/IFile.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/IMoveTarget.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/IMultiGet.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/INode.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/IProperties.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/IQuota.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Locks/Backend/AbstractBackend.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Locks/Backend/BackendInterface.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Locks/Backend/File.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Locks/Backend/PDO.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Locks/LockInfo.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Locks/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/MkCol.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Mount/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Node.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/PartialUpdate/IPatchSupport.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/PartialUpdate/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/PropFind.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/PropPatch.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/PropertyStorage/Backend/BackendInterface.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/PropertyStorage/Backend/PDO.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/PropertyStorage/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Server.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/ServerPlugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Sharing/ISharedNode.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Sharing/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/SimpleCollection.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/SimpleFile.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/StringUtil.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Sync/ISyncCollection.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Sync/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/TemporaryFileFilterPlugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Tree.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/UUIDUtil.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Version.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Element/Prop.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Element/Response.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Element/Sharee.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Property/Complex.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Property/GetLastModified.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Property/Href.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Property/Invite.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Property/LocalHref.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Property/LockDiscovery.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Property/ResourceType.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Property/ShareAccess.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Property/SupportedLock.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Property/SupportedMethodSet.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Property/SupportedReportSet.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Request/Lock.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Request/MkCol.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Request/PropFind.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Request/PropPatch.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Request/ShareResource.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Request/SyncCollectionReport.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Response/MultiStatus.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAV/Xml/Service.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/ACLTrait.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/AbstractPrincipalCollection.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Exception/AceConflict.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Exception/NeedPrivileges.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Exception/NoAbstract.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Exception/NotRecognizedPrincipal.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Exception/NotSupportedPrivilege.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/FS/Collection.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/FS/File.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/FS/HomeCollection.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/IACL.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/IPrincipal.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/IPrincipalCollection.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Plugin.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Principal.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/PrincipalBackend/AbstractBackend.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/PrincipalBackend/BackendInterface.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/PrincipalBackend/CreatePrincipalSupport.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/PrincipalBackend/PDO.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/PrincipalCollection.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Xml/Property/Acl.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Xml/Property/AclRestrictions.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Xml/Property/CurrentUserPrivilegeSet.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Xml/Property/Principal.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Xml/Property/SupportedPrivilegeSet.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Xml/Request/AclPrincipalPropSetReport.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Xml/Request/ExpandPropertyReport.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Xml/Request/PrincipalMatchReport.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Xml/Request/PrincipalPropertySearchReport.php
+share/nextcloud/3rdparty/sabre/dav/lib/DAVACL/Xml/Request/PrincipalSearchPropertySetReport.php
+share/nextcloud/3rdparty/sabre/event/.gitignore
+share/nextcloud/3rdparty/sabre/event/CHANGELOG.md
+share/nextcloud/3rdparty/sabre/event/LICENSE
+share/nextcloud/3rdparty/sabre/event/README.md
+share/nextcloud/3rdparty/sabre/event/composer.json
+share/nextcloud/3rdparty/sabre/event/lib/EventEmitter.php
+share/nextcloud/3rdparty/sabre/event/lib/EventEmitterInterface.php
+share/nextcloud/3rdparty/sabre/event/lib/EventEmitterTrait.php
+share/nextcloud/3rdparty/sabre/event/lib/Loop/Loop.php
+share/nextcloud/3rdparty/sabre/event/lib/Loop/functions.php
+share/nextcloud/3rdparty/sabre/event/lib/Promise.php
+share/nextcloud/3rdparty/sabre/event/lib/Promise/functions.php
+share/nextcloud/3rdparty/sabre/event/lib/PromiseAlreadyResolvedException.php
+share/nextcloud/3rdparty/sabre/event/lib/Version.php
+share/nextcloud/3rdparty/sabre/event/lib/coroutine.php
+share/nextcloud/3rdparty/sabre/event/phpunit.xml.dist
+share/nextcloud/3rdparty/sabre/http/.gitignore
+share/nextcloud/3rdparty/sabre/http/CHANGELOG.md
+share/nextcloud/3rdparty/sabre/http/LICENSE
+share/nextcloud/3rdparty/sabre/http/README.md
+share/nextcloud/3rdparty/sabre/http/composer.json
+share/nextcloud/3rdparty/sabre/http/lib/Auth/AWS.php
+share/nextcloud/3rdparty/sabre/http/lib/Auth/AbstractAuth.php
+share/nextcloud/3rdparty/sabre/http/lib/Auth/Basic.php
+share/nextcloud/3rdparty/sabre/http/lib/Auth/Bearer.php
+share/nextcloud/3rdparty/sabre/http/lib/Auth/Digest.php
+share/nextcloud/3rdparty/sabre/http/lib/Client.php
+share/nextcloud/3rdparty/sabre/http/lib/ClientException.php
+share/nextcloud/3rdparty/sabre/http/lib/ClientHttpException.php
+share/nextcloud/3rdparty/sabre/http/lib/HttpException.php
+share/nextcloud/3rdparty/sabre/http/lib/Message.php
+share/nextcloud/3rdparty/sabre/http/lib/MessageDecoratorTrait.php
+share/nextcloud/3rdparty/sabre/http/lib/MessageInterface.php
+share/nextcloud/3rdparty/sabre/http/lib/Request.php
+share/nextcloud/3rdparty/sabre/http/lib/RequestDecorator.php
+share/nextcloud/3rdparty/sabre/http/lib/RequestInterface.php
+share/nextcloud/3rdparty/sabre/http/lib/Response.php
+share/nextcloud/3rdparty/sabre/http/lib/ResponseDecorator.php
+share/nextcloud/3rdparty/sabre/http/lib/ResponseInterface.php
+share/nextcloud/3rdparty/sabre/http/lib/Sapi.php
+share/nextcloud/3rdparty/sabre/http/lib/URLUtil.php
+share/nextcloud/3rdparty/sabre/http/lib/Util.php
+share/nextcloud/3rdparty/sabre/http/lib/Version.php
+share/nextcloud/3rdparty/sabre/http/lib/functions.php
+share/nextcloud/3rdparty/sabre/uri/.gitignore
+share/nextcloud/3rdparty/sabre/uri/CHANGELOG.md
+share/nextcloud/3rdparty/sabre/uri/LICENSE
+share/nextcloud/3rdparty/sabre/uri/README.md
+share/nextcloud/3rdparty/sabre/uri/composer.json
+share/nextcloud/3rdparty/sabre/uri/lib/Version.php
+share/nextcloud/3rdparty/sabre/uri/lib/functions.php
+share/nextcloud/3rdparty/sabre/vobject/.gitignore
+share/nextcloud/3rdparty/sabre/vobject/LICENSE
+share/nextcloud/3rdparty/sabre/vobject/README.md
+share/nextcloud/3rdparty/sabre/vobject/composer.json
+share/nextcloud/3rdparty/sabre/vobject/lib/BirthdayCalendarGenerator.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Cli.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Component.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Component/Available.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Component/VAlarm.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Component/VAvailability.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Component/VCalendar.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Component/VCard.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Component/VEvent.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Component/VFreeBusy.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Component/VJournal.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Component/VTimeZone.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Component/VTodo.php
+share/nextcloud/3rdparty/sabre/vobject/lib/DateTimeParser.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Document.php
+share/nextcloud/3rdparty/sabre/vobject/lib/ElementList.php
+share/nextcloud/3rdparty/sabre/vobject/lib/EofException.php
+share/nextcloud/3rdparty/sabre/vobject/lib/FreeBusyData.php
+share/nextcloud/3rdparty/sabre/vobject/lib/FreeBusyGenerator.php
+share/nextcloud/3rdparty/sabre/vobject/lib/ITip/Broker.php
+share/nextcloud/3rdparty/sabre/vobject/lib/ITip/ITipException.php
+share/nextcloud/3rdparty/sabre/vobject/lib/ITip/Message.php
+share/nextcloud/3rdparty/sabre/vobject/lib/ITip/SameOrganizerForAllComponentsException.php
+share/nextcloud/3rdparty/sabre/vobject/lib/InvalidDataException.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Node.php
+share/nextcloud/3rdparty/sabre/vobject/lib/PHPUnitAssertions.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Parameter.php
+share/nextcloud/3rdparty/sabre/vobject/lib/ParseException.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Parser/Json.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Parser/MimeDir.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Parser/Parser.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Parser/XML.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Parser/XML/Element/KeyValue.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/Binary.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/Boolean.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/FlatText.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/FloatValue.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/ICalendar/CalAddress.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/ICalendar/Date.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/ICalendar/DateTime.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/ICalendar/Duration.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/ICalendar/Period.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/ICalendar/Recur.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/IntegerValue.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/Text.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/Time.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/Unknown.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/Uri.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/UtcOffset.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/VCard/Date.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/VCard/DateAndOrTime.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/VCard/DateTime.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/VCard/LanguageTag.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Property/VCard/TimeStamp.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Reader.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Recur/EventIterator.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Recur/MaxInstancesExceededException.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Recur/NoInstancesException.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Recur/RDateIterator.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Recur/RRuleIterator.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Settings.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Splitter/ICalendar.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Splitter/SplitterInterface.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Splitter/VCard.php
+share/nextcloud/3rdparty/sabre/vobject/lib/StringUtil.php
+share/nextcloud/3rdparty/sabre/vobject/lib/TimeZoneUtil.php
+share/nextcloud/3rdparty/sabre/vobject/lib/UUIDUtil.php
+share/nextcloud/3rdparty/sabre/vobject/lib/VCardConverter.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Version.php
+share/nextcloud/3rdparty/sabre/vobject/lib/Writer.php
+share/nextcloud/3rdparty/sabre/vobject/lib/timezonedata/exchangezones.php
+share/nextcloud/3rdparty/sabre/vobject/lib/timezonedata/lotuszones.php
+share/nextcloud/3rdparty/sabre/vobject/lib/timezonedata/php-bc.php
+share/nextcloud/3rdparty/sabre/vobject/lib/timezonedata/php-workaround.php
+share/nextcloud/3rdparty/sabre/vobject/lib/timezonedata/windowszones.php
+share/nextcloud/3rdparty/sabre/vobject/resources/schema/xcal.rng
+share/nextcloud/3rdparty/sabre/vobject/resources/schema/xcard.rng
+share/nextcloud/3rdparty/sabre/xml/.gitignore
+share/nextcloud/3rdparty/sabre/xml/CHANGELOG.md
+share/nextcloud/3rdparty/sabre/xml/LICENSE
+share/nextcloud/3rdparty/sabre/xml/README.md
+share/nextcloud/3rdparty/sabre/xml/composer.json
+share/nextcloud/3rdparty/sabre/xml/lib/ContextStackTrait.php
+share/nextcloud/3rdparty/sabre/xml/lib/Deserializer/functions.php
+share/nextcloud/3rdparty/sabre/xml/lib/Element.php
+share/nextcloud/3rdparty/sabre/xml/lib/Element/Base.php
+share/nextcloud/3rdparty/sabre/xml/lib/Element/Cdata.php
+share/nextcloud/3rdparty/sabre/xml/lib/Element/Elements.php
+share/nextcloud/3rdparty/sabre/xml/lib/Element/KeyValue.php
+share/nextcloud/3rdparty/sabre/xml/lib/Element/Uri.php
+share/nextcloud/3rdparty/sabre/xml/lib/Element/XmlFragment.php
+share/nextcloud/3rdparty/sabre/xml/lib/LibXMLException.php
+share/nextcloud/3rdparty/sabre/xml/lib/ParseException.php
+share/nextcloud/3rdparty/sabre/xml/lib/Reader.php
+share/nextcloud/3rdparty/sabre/xml/lib/Serializer/functions.php
+share/nextcloud/3rdparty/sabre/xml/lib/Service.php
+share/nextcloud/3rdparty/sabre/xml/lib/Version.php
+share/nextcloud/3rdparty/sabre/xml/lib/Writer.php
+share/nextcloud/3rdparty/sabre/xml/lib/XmlDeserializable.php
+share/nextcloud/3rdparty/sabre/xml/lib/XmlSerializable.php
+share/nextcloud/3rdparty/stecman/symfony-console-completion/LICENCE
+share/nextcloud/3rdparty/stecman/symfony-console-completion/src/Completion.php
+share/nextcloud/3rdparty/stecman/symfony-console-completion/src/Completion/CompletionAwareInterface.php
+share/nextcloud/3rdparty/stecman/symfony-console-completion/src/Completion/CompletionInterface.php
+share/nextcloud/3rdparty/stecman/symfony-console-completion/src/Completion/ShellPathCompletion.php
+share/nextcloud/3rdparty/stecman/symfony-console-completion/src/CompletionCommand.php
+share/nextcloud/3rdparty/stecman/symfony-console-completion/src/CompletionContext.php
+share/nextcloud/3rdparty/stecman/symfony-console-completion/src/CompletionHandler.php
+share/nextcloud/3rdparty/stecman/symfony-console-completion/src/EnvironmentCompletionContext.php
+share/nextcloud/3rdparty/stecman/symfony-console-completion/src/HookFactory.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Attachment.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/AbstractFilterableInputStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/ArrayByteStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/FileByteStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/TemporaryFileByteStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/GenericFixedWidthReader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/UsAsciiReader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/Utf8Reader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReaderFactory.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReaderFactory/SimpleCharacterReaderFactory.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream/ArrayCharacterStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream/NgCharacterStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/ConfigurableSpool.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/DependencyContainer.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/DependencyException.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/EmbeddedFile.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Encoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/Base64Encoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/QpEncoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/Rfc2231Encoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Encoding.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/CommandEvent.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/CommandListener.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/Event.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventDispatcher.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventListener.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventObject.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/ResponseEvent.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/ResponseListener.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/SendEvent.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/SendListener.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/SimpleEventDispatcher.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportChangeEvent.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportChangeListener.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportExceptionEvent.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportExceptionListener.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/FailoverTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/FileSpool.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/FileStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Filterable.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Image.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/InputByteStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/IoException.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/ArrayKeyCache.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/DiskKeyCache.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/KeyCacheInputStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/NullKeyCache.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/SimpleKeyCacheInputStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/LoadBalancedTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/MailTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mailer.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mailer/ArrayRecipientIterator.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mailer/RecipientIterator.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/MemorySpool.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Message.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Attachment.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/CharsetObserver.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/Base64ContentEncoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/NativeQpContentEncoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/PlainContentEncoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/RawContentEncoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/EmbeddedFile.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/EncodingObserver.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Grammar.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Header.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/Base64HeaderEncoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/QpHeaderEncoder.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderFactory.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderSet.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/AbstractHeader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/DateHeader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/IdentificationHeader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/MailboxHeader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/OpenDKIMHeader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/ParameterizedHeader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/PathHeader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/UnstructuredHeader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Message.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/MimeEntity.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/MimePart.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ParameterizedHeader.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderFactory.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderSet.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleMessage.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleMimeEntity.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/MimePart.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/NullTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/OutputByteStream.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/AntiFloodPlugin.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/BandwidthMonitorPlugin.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Decorator/Replacements.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/DecoratorPlugin.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ImpersonatePlugin.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Logger.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/LoggerPlugin.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Loggers/ArrayLogger.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Loggers/EchoLogger.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/MessageLogger.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Connection.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Exception.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/PopBeforeSmtpPlugin.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/RedirectingPlugin.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporter.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ReporterPlugin.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporters/HitReporter.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporters/HtmlReporter.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Sleeper.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ThrottlerPlugin.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Timer.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Preferences.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/ReplacementFilterFactory.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/RfcComplianceException.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/SendmailTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/SignedMessage.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Signer.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Signers/BodySigner.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Signers/DKIMSigner.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Signers/DomainKeySigner.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Signers/HeaderSigner.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Signers/OpenDKIMSigner.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Signers/SMimeSigner.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/SmtpTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Spool.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/SpoolTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilter.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/ByteArrayReplacementFilter.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilter.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilterFactory.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/SwiftException.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/CramMd5Authenticator.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/LoginAuthenticator.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/NTLMAuthenticator.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/PlainAuthenticator.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/XOAuth2Authenticator.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/AuthHandler.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Authenticator.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpHandler.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/FailoverTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/IoBuffer.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/LoadBalancedTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/MailInvoker.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/MailTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/NullTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SendmailTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SimpleMailInvoker.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SmtpAgent.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SpoolTransport.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Transport/StreamBuffer.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/TransportException.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/classes/Swift/Validate.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/dependency_maps/cache_deps.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/dependency_maps/message_deps.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/dependency_maps/mime_deps.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/dependency_maps/transport_deps.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/mime_types.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/preferences.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/swift_init.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/swift_required.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/swift_required_pear.php
+share/nextcloud/3rdparty/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php
+share/nextcloud/3rdparty/symfony/console/Application.php
+share/nextcloud/3rdparty/symfony/console/Command/Command.php
+share/nextcloud/3rdparty/symfony/console/Command/HelpCommand.php
+share/nextcloud/3rdparty/symfony/console/Command/ListCommand.php
+share/nextcloud/3rdparty/symfony/console/ConsoleEvents.php
+share/nextcloud/3rdparty/symfony/console/Descriptor/ApplicationDescription.php
+share/nextcloud/3rdparty/symfony/console/Descriptor/Descriptor.php
+share/nextcloud/3rdparty/symfony/console/Descriptor/DescriptorInterface.php
+share/nextcloud/3rdparty/symfony/console/Descriptor/JsonDescriptor.php
+share/nextcloud/3rdparty/symfony/console/Descriptor/MarkdownDescriptor.php
+share/nextcloud/3rdparty/symfony/console/Descriptor/TextDescriptor.php
+share/nextcloud/3rdparty/symfony/console/Descriptor/XmlDescriptor.php
+share/nextcloud/3rdparty/symfony/console/Event/ConsoleCommandEvent.php
+share/nextcloud/3rdparty/symfony/console/Event/ConsoleEvent.php
+share/nextcloud/3rdparty/symfony/console/Event/ConsoleExceptionEvent.php
+share/nextcloud/3rdparty/symfony/console/Event/ConsoleTerminateEvent.php
+share/nextcloud/3rdparty/symfony/console/Exception/CommandNotFoundException.php
+share/nextcloud/3rdparty/symfony/console/Exception/ExceptionInterface.php
+share/nextcloud/3rdparty/symfony/console/Exception/InvalidArgumentException.php
+share/nextcloud/3rdparty/symfony/console/Exception/InvalidOptionException.php
+share/nextcloud/3rdparty/symfony/console/Exception/LogicException.php
+share/nextcloud/3rdparty/symfony/console/Exception/RuntimeException.php
+share/nextcloud/3rdparty/symfony/console/Formatter/OutputFormatter.php
+share/nextcloud/3rdparty/symfony/console/Formatter/OutputFormatterInterface.php
+share/nextcloud/3rdparty/symfony/console/Formatter/OutputFormatterStyle.php
+share/nextcloud/3rdparty/symfony/console/Formatter/OutputFormatterStyleInterface.php
+share/nextcloud/3rdparty/symfony/console/Formatter/OutputFormatterStyleStack.php
+share/nextcloud/3rdparty/symfony/console/Helper/DebugFormatterHelper.php
+share/nextcloud/3rdparty/symfony/console/Helper/DescriptorHelper.php
+share/nextcloud/3rdparty/symfony/console/Helper/FormatterHelper.php
+share/nextcloud/3rdparty/symfony/console/Helper/Helper.php
+share/nextcloud/3rdparty/symfony/console/Helper/HelperInterface.php
+share/nextcloud/3rdparty/symfony/console/Helper/HelperSet.php
+share/nextcloud/3rdparty/symfony/console/Helper/InputAwareHelper.php
+share/nextcloud/3rdparty/symfony/console/Helper/ProcessHelper.php
+share/nextcloud/3rdparty/symfony/console/Helper/ProgressBar.php
+share/nextcloud/3rdparty/symfony/console/Helper/ProgressIndicator.php
+share/nextcloud/3rdparty/symfony/console/Helper/QuestionHelper.php
+share/nextcloud/3rdparty/symfony/console/Helper/SymfonyQuestionHelper.php
+share/nextcloud/3rdparty/symfony/console/Helper/Table.php
+share/nextcloud/3rdparty/symfony/console/Helper/TableCell.php
+share/nextcloud/3rdparty/symfony/console/Helper/TableSeparator.php
+share/nextcloud/3rdparty/symfony/console/Helper/TableStyle.php
+share/nextcloud/3rdparty/symfony/console/Input/ArgvInput.php
+share/nextcloud/3rdparty/symfony/console/Input/ArrayInput.php
+share/nextcloud/3rdparty/symfony/console/Input/Input.php
+share/nextcloud/3rdparty/symfony/console/Input/InputArgument.php
+share/nextcloud/3rdparty/symfony/console/Input/InputAwareInterface.php
+share/nextcloud/3rdparty/symfony/console/Input/InputDefinition.php
+share/nextcloud/3rdparty/symfony/console/Input/InputInterface.php
+share/nextcloud/3rdparty/symfony/console/Input/InputOption.php
+share/nextcloud/3rdparty/symfony/console/Input/StringInput.php
+share/nextcloud/3rdparty/symfony/console/LICENSE
+share/nextcloud/3rdparty/symfony/console/Logger/ConsoleLogger.php
+share/nextcloud/3rdparty/symfony/console/Output/BufferedOutput.php
+share/nextcloud/3rdparty/symfony/console/Output/ConsoleOutput.php
+share/nextcloud/3rdparty/symfony/console/Output/ConsoleOutputInterface.php
+share/nextcloud/3rdparty/symfony/console/Output/NullOutput.php
+share/nextcloud/3rdparty/symfony/console/Output/Output.php
+share/nextcloud/3rdparty/symfony/console/Output/OutputInterface.php
+share/nextcloud/3rdparty/symfony/console/Output/StreamOutput.php
+share/nextcloud/3rdparty/symfony/console/Question/ChoiceQuestion.php
+share/nextcloud/3rdparty/symfony/console/Question/ConfirmationQuestion.php
+share/nextcloud/3rdparty/symfony/console/Question/Question.php
+share/nextcloud/3rdparty/symfony/console/Style/OutputStyle.php
+share/nextcloud/3rdparty/symfony/console/Style/StyleInterface.php
+share/nextcloud/3rdparty/symfony/console/Style/SymfonyStyle.php
+share/nextcloud/3rdparty/symfony/console/Tester/ApplicationTester.php
+share/nextcloud/3rdparty/symfony/console/Tester/CommandTester.php
+share/nextcloud/3rdparty/symfony/console/composer.json
+share/nextcloud/3rdparty/symfony/event-dispatcher/ContainerAwareEventDispatcher.php
+share/nextcloud/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
+share/nextcloud/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php
+share/nextcloud/3rdparty/symfony/event-dispatcher/Debug/WrappedListener.php
+share/nextcloud/3rdparty/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php
+share/nextcloud/3rdparty/symfony/event-dispatcher/Event.php
+share/nextcloud/3rdparty/symfony/event-dispatcher/EventDispatcher.php
+share/nextcloud/3rdparty/symfony/event-dispatcher/EventDispatcherInterface.php
+share/nextcloud/3rdparty/symfony/event-dispatcher/EventSubscriberInterface.php
+share/nextcloud/3rdparty/symfony/event-dispatcher/GenericEvent.php
+share/nextcloud/3rdparty/symfony/event-dispatcher/ImmutableEventDispatcher.php
+share/nextcloud/3rdparty/symfony/event-dispatcher/LICENSE
+share/nextcloud/3rdparty/symfony/polyfill-mbstring/LICENSE
+share/nextcloud/3rdparty/symfony/polyfill-mbstring/Mbstring.php
+share/nextcloud/3rdparty/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
+share/nextcloud/3rdparty/symfony/polyfill-mbstring/Resources/unidata/upperCase.php
+share/nextcloud/3rdparty/symfony/polyfill-mbstring/bootstrap.php
+share/nextcloud/3rdparty/symfony/polyfill-mbstring/composer.json
+share/nextcloud/3rdparty/symfony/polyfill-php70/LICENSE
+share/nextcloud/3rdparty/symfony/polyfill-php70/Php70.php
+share/nextcloud/3rdparty/symfony/polyfill-php70/README.md
+share/nextcloud/3rdparty/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php
+share/nextcloud/3rdparty/symfony/polyfill-php70/Resources/stubs/AssertionError.php
+share/nextcloud/3rdparty/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php
+share/nextcloud/3rdparty/symfony/polyfill-php70/Resources/stubs/Error.php
+share/nextcloud/3rdparty/symfony/polyfill-php70/Resources/stubs/ParseError.php
+share/nextcloud/3rdparty/symfony/polyfill-php70/Resources/stubs/TypeError.php
+share/nextcloud/3rdparty/symfony/polyfill-php70/bootstrap.php
+share/nextcloud/3rdparty/symfony/polyfill-php70/composer.json
+share/nextcloud/3rdparty/symfony/process/Exception/ExceptionInterface.php
+share/nextcloud/3rdparty/symfony/process/Exception/InvalidArgumentException.php
+share/nextcloud/3rdparty/symfony/process/Exception/LogicException.php
+share/nextcloud/3rdparty/symfony/process/Exception/ProcessFailedException.php
+share/nextcloud/3rdparty/symfony/process/Exception/ProcessTimedOutException.php
+share/nextcloud/3rdparty/symfony/process/Exception/RuntimeException.php
+share/nextcloud/3rdparty/symfony/process/ExecutableFinder.php
+share/nextcloud/3rdparty/symfony/process/InputStream.php
+share/nextcloud/3rdparty/symfony/process/LICENSE
+share/nextcloud/3rdparty/symfony/process/PhpExecutableFinder.php
+share/nextcloud/3rdparty/symfony/process/PhpProcess.php
+share/nextcloud/3rdparty/symfony/process/Pipes/AbstractPipes.php
+share/nextcloud/3rdparty/symfony/process/Pipes/PipesInterface.php
+share/nextcloud/3rdparty/symfony/process/Pipes/UnixPipes.php
+share/nextcloud/3rdparty/symfony/process/Pipes/WindowsPipes.php
+share/nextcloud/3rdparty/symfony/process/Process.php
+share/nextcloud/3rdparty/symfony/process/ProcessBuilder.php
+share/nextcloud/3rdparty/symfony/process/ProcessUtils.php
+share/nextcloud/3rdparty/symfony/routing/Annotation/Route.php
+share/nextcloud/3rdparty/symfony/routing/CHANGELOG.md
+share/nextcloud/3rdparty/symfony/routing/CompiledRoute.php
+share/nextcloud/3rdparty/symfony/routing/Exception/ExceptionInterface.php
+share/nextcloud/3rdparty/symfony/routing/Exception/InvalidParameterException.php
+share/nextcloud/3rdparty/symfony/routing/Exception/MethodNotAllowedException.php
+share/nextcloud/3rdparty/symfony/routing/Exception/MissingMandatoryParametersException.php
+share/nextcloud/3rdparty/symfony/routing/Exception/ResourceNotFoundException.php
+share/nextcloud/3rdparty/symfony/routing/Exception/RouteNotFoundException.php
+share/nextcloud/3rdparty/symfony/routing/Generator/ConfigurableRequirementsInterface.php
+share/nextcloud/3rdparty/symfony/routing/Generator/Dumper/GeneratorDumper.php
+share/nextcloud/3rdparty/symfony/routing/Generator/Dumper/GeneratorDumperInterface.php
+share/nextcloud/3rdparty/symfony/routing/Generator/Dumper/PhpGeneratorDumper.php
+share/nextcloud/3rdparty/symfony/routing/Generator/UrlGenerator.php
+share/nextcloud/3rdparty/symfony/routing/Generator/UrlGeneratorInterface.php
+share/nextcloud/3rdparty/symfony/routing/LICENSE
+share/nextcloud/3rdparty/symfony/routing/Loader/AnnotationClassLoader.php
+share/nextcloud/3rdparty/symfony/routing/Loader/AnnotationDirectoryLoader.php
+share/nextcloud/3rdparty/symfony/routing/Loader/AnnotationFileLoader.php
+share/nextcloud/3rdparty/symfony/routing/Loader/ClosureLoader.php
+share/nextcloud/3rdparty/symfony/routing/Loader/DependencyInjection/ServiceRouterLoader.php
+share/nextcloud/3rdparty/symfony/routing/Loader/DirectoryLoader.php
+share/nextcloud/3rdparty/symfony/routing/Loader/ObjectRouteLoader.php
+share/nextcloud/3rdparty/symfony/routing/Loader/PhpFileLoader.php
+share/nextcloud/3rdparty/symfony/routing/Loader/XmlFileLoader.php
+share/nextcloud/3rdparty/symfony/routing/Loader/YamlFileLoader.php
+share/nextcloud/3rdparty/symfony/routing/Loader/schema/routing/routing-1.0.xsd
+share/nextcloud/3rdparty/symfony/routing/Matcher/Dumper/DumperCollection.php
+share/nextcloud/3rdparty/symfony/routing/Matcher/Dumper/DumperPrefixCollection.php
+share/nextcloud/3rdparty/symfony/routing/Matcher/Dumper/DumperRoute.php
+share/nextcloud/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumper.php
+share/nextcloud/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php
+share/nextcloud/3rdparty/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php
+share/nextcloud/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcher.php
+share/nextcloud/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php
+share/nextcloud/3rdparty/symfony/routing/Matcher/RequestMatcherInterface.php
+share/nextcloud/3rdparty/symfony/routing/Matcher/TraceableUrlMatcher.php
+share/nextcloud/3rdparty/symfony/routing/Matcher/UrlMatcher.php
+share/nextcloud/3rdparty/symfony/routing/Matcher/UrlMatcherInterface.php
+share/nextcloud/3rdparty/symfony/routing/README.md
+share/nextcloud/3rdparty/symfony/routing/RequestContext.php
+share/nextcloud/3rdparty/symfony/routing/RequestContextAwareInterface.php
+share/nextcloud/3rdparty/symfony/routing/Route.php
+share/nextcloud/3rdparty/symfony/routing/RouteCollection.php
+share/nextcloud/3rdparty/symfony/routing/RouteCollectionBuilder.php
+share/nextcloud/3rdparty/symfony/routing/RouteCompiler.php
+share/nextcloud/3rdparty/symfony/routing/RouteCompilerInterface.php
+share/nextcloud/3rdparty/symfony/routing/Router.php
+share/nextcloud/3rdparty/symfony/routing/RouterInterface.php
+share/nextcloud/AUTHORS
+share/nextcloud/apps/activity/appinfo/app.php
+share/nextcloud/apps/activity/appinfo/database.xml
+share/nextcloud/apps/activity/appinfo/info.xml
+share/nextcloud/apps/activity/appinfo/routes.php
+share/nextcloud/apps/activity/appinfo/signature.json
+share/nextcloud/apps/activity/appinfo/update.php
+share/nextcloud/apps/activity/css/settings.css
+share/nextcloud/apps/activity/css/style.css
+share/nextcloud/apps/activity/docs/endpoint-v2.md
+share/nextcloud/apps/activity/img/activity-dark.svg
+share/nextcloud/apps/activity/img/activity.svg
+share/nextcloud/apps/activity/img/add-color.svg
+share/nextcloud/apps/activity/img/change.svg
+share/nextcloud/apps/activity/img/delete-color.svg
+share/nextcloud/apps/activity/js/activitycollection.js
+share/nextcloud/apps/activity/js/activitymodel.js
+share/nextcloud/apps/activity/js/activitytabview.js
+share/nextcloud/apps/activity/js/feedSettings.js
+share/nextcloud/apps/activity/js/filesplugin.js
+share/nextcloud/apps/activity/js/richObjectStringParser.js
+share/nextcloud/apps/activity/js/script.js
+share/nextcloud/apps/activity/js/settings.js
+share/nextcloud/apps/activity/l10n/.gitkeep
+share/nextcloud/apps/activity/l10n/.tx/config
+share/nextcloud/apps/activity/l10n/ar.js
+share/nextcloud/apps/activity/l10n/ar.json
+share/nextcloud/apps/activity/l10n/ast.js
+share/nextcloud/apps/activity/l10n/ast.json
+share/nextcloud/apps/activity/l10n/az.js
+share/nextcloud/apps/activity/l10n/az.json
+share/nextcloud/apps/activity/l10n/bg_BG.js
+share/nextcloud/apps/activity/l10n/bg_BG.json
+share/nextcloud/apps/activity/l10n/bn_BD.js
+share/nextcloud/apps/activity/l10n/bn_BD.json
+share/nextcloud/apps/activity/l10n/bn_IN.js
+share/nextcloud/apps/activity/l10n/bn_IN.json
+share/nextcloud/apps/activity/l10n/ca.js
+share/nextcloud/apps/activity/l10n/ca.json
+share/nextcloud/apps/activity/l10n/cs_CZ.js
+share/nextcloud/apps/activity/l10n/cs_CZ.json
+share/nextcloud/apps/activity/l10n/da.js
+share/nextcloud/apps/activity/l10n/da.json
+share/nextcloud/apps/activity/l10n/de.js
+share/nextcloud/apps/activity/l10n/de.json
+share/nextcloud/apps/activity/l10n/de_DE.js
+share/nextcloud/apps/activity/l10n/de_DE.json
+share/nextcloud/apps/activity/l10n/el.js
+share/nextcloud/apps/activity/l10n/el.json
+share/nextcloud/apps/activity/l10n/en_GB.js
+share/nextcloud/apps/activity/l10n/en_GB.json
+share/nextcloud/apps/activity/l10n/es.js
+share/nextcloud/apps/activity/l10n/es.json
+share/nextcloud/apps/activity/l10n/es_419.js
+share/nextcloud/apps/activity/l10n/es_419.json
+share/nextcloud/apps/activity/l10n/es_AR.js
+share/nextcloud/apps/activity/l10n/es_AR.json
+share/nextcloud/apps/activity/l10n/es_CL.js
+share/nextcloud/apps/activity/l10n/es_CL.json
+share/nextcloud/apps/activity/l10n/es_CR.js
+share/nextcloud/apps/activity/l10n/es_CR.json
+share/nextcloud/apps/activity/l10n/es_MX.js
+share/nextcloud/apps/activity/l10n/es_MX.json
+share/nextcloud/apps/activity/l10n/et_EE.js
+share/nextcloud/apps/activity/l10n/et_EE.json
+share/nextcloud/apps/activity/l10n/eu.js
+share/nextcloud/apps/activity/l10n/eu.json
+share/nextcloud/apps/activity/l10n/fa.js
+share/nextcloud/apps/activity/l10n/fa.json
+share/nextcloud/apps/activity/l10n/fi_FI.js
+share/nextcloud/apps/activity/l10n/fi_FI.json
+share/nextcloud/apps/activity/l10n/fr.js
+share/nextcloud/apps/activity/l10n/fr.json
+share/nextcloud/apps/activity/l10n/gl.js
+share/nextcloud/apps/activity/l10n/gl.json
+share/nextcloud/apps/activity/l10n/he.js
+share/nextcloud/apps/activity/l10n/he.json
+share/nextcloud/apps/activity/l10n/hr.js
+share/nextcloud/apps/activity/l10n/hr.json
+share/nextcloud/apps/activity/l10n/hu_HU.js
+share/nextcloud/apps/activity/l10n/hu_HU.json
+share/nextcloud/apps/activity/l10n/ia.js
+share/nextcloud/apps/activity/l10n/ia.json
+share/nextcloud/apps/activity/l10n/id.js
+share/nextcloud/apps/activity/l10n/id.json
+share/nextcloud/apps/activity/l10n/is.js
+share/nextcloud/apps/activity/l10n/is.json
+share/nextcloud/apps/activity/l10n/it.js
+share/nextcloud/apps/activity/l10n/it.json
+share/nextcloud/apps/activity/l10n/ja.js
+share/nextcloud/apps/activity/l10n/ja.json
+share/nextcloud/apps/activity/l10n/ka_GE.js
+share/nextcloud/apps/activity/l10n/ka_GE.json
+share/nextcloud/apps/activity/l10n/km.js
+share/nextcloud/apps/activity/l10n/km.json
+share/nextcloud/apps/activity/l10n/ko.js
+share/nextcloud/apps/activity/l10n/ko.json
+share/nextcloud/apps/activity/l10n/lb.js
+share/nextcloud/apps/activity/l10n/lb.json
+share/nextcloud/apps/activity/l10n/lt_LT.js
+share/nextcloud/apps/activity/l10n/lt_LT.json
+share/nextcloud/apps/activity/l10n/lv.js
+share/nextcloud/apps/activity/l10n/lv.json
+share/nextcloud/apps/activity/l10n/mk.js
+share/nextcloud/apps/activity/l10n/mk.json
+share/nextcloud/apps/activity/l10n/ml_IN.js
+share/nextcloud/apps/activity/l10n/ml_IN.json
+share/nextcloud/apps/activity/l10n/nb_NO.js
+share/nextcloud/apps/activity/l10n/nb_NO.json
+share/nextcloud/apps/activity/l10n/nds.js
+share/nextcloud/apps/activity/l10n/nds.json
+share/nextcloud/apps/activity/l10n/nl.js
+share/nextcloud/apps/activity/l10n/nl.json
+share/nextcloud/apps/activity/l10n/nn_NO.js
+share/nextcloud/apps/activity/l10n/nn_NO.json
+share/nextcloud/apps/activity/l10n/no-php
+share/nextcloud/apps/activity/l10n/oc.js
+share/nextcloud/apps/activity/l10n/oc.json
+share/nextcloud/apps/activity/l10n/pl.js
+share/nextcloud/apps/activity/l10n/pl.json
+share/nextcloud/apps/activity/l10n/pt_BR.js
+share/nextcloud/apps/activity/l10n/pt_BR.json
+share/nextcloud/apps/activity/l10n/pt_PT.js
+share/nextcloud/apps/activity/l10n/pt_PT.json
+share/nextcloud/apps/activity/l10n/ro.js
+share/nextcloud/apps/activity/l10n/ro.json
+share/nextcloud/apps/activity/l10n/ru.js
+share/nextcloud/apps/activity/l10n/ru.json
+share/nextcloud/apps/activity/l10n/sk_SK.js
+share/nextcloud/apps/activity/l10n/sk_SK.json
+share/nextcloud/apps/activity/l10n/sl.js
+share/nextcloud/apps/activity/l10n/sl.json
+share/nextcloud/apps/activity/l10n/sq.js
+share/nextcloud/apps/activity/l10n/sq.json
+share/nextcloud/apps/activity/l10n/sr.js
+share/nextcloud/apps/activity/l10n/sr.json
+share/nextcloud/apps/activity/l10n/sr%latin.js@localhost
+share/nextcloud/apps/activity/l10n/sr%latin.json@localhost
+share/nextcloud/apps/activity/l10n/sv.js
+share/nextcloud/apps/activity/l10n/sv.json
+share/nextcloud/apps/activity/l10n/ta_IN.js
+share/nextcloud/apps/activity/l10n/ta_IN.json
+share/nextcloud/apps/activity/l10n/th_TH.js
+share/nextcloud/apps/activity/l10n/th_TH.json
+share/nextcloud/apps/activity/l10n/tr.js
+share/nextcloud/apps/activity/l10n/tr.json
+share/nextcloud/apps/activity/l10n/uk.js
+share/nextcloud/apps/activity/l10n/uk.json
+share/nextcloud/apps/activity/l10n/zh_CN.js
+share/nextcloud/apps/activity/l10n/zh_CN.json
+share/nextcloud/apps/activity/l10n/zh_TW.js
+share/nextcloud/apps/activity/l10n/zh_TW.json
+share/nextcloud/apps/activity/lib/AppInfo/Application.php
+share/nextcloud/apps/activity/lib/BackgroundJob/EmailNotification.php
+share/nextcloud/apps/activity/lib/BackgroundJob/ExpireActivities.php
+share/nextcloud/apps/activity/lib/Consumer.php
+share/nextcloud/apps/activity/lib/Controller/APIv1.php
+share/nextcloud/apps/activity/lib/Controller/Activities.php
+share/nextcloud/apps/activity/lib/Controller/EndPoint.php
+share/nextcloud/apps/activity/lib/Controller/Feed.php
+share/nextcloud/apps/activity/lib/Controller/OCSEndPoint.php
+share/nextcloud/apps/activity/lib/Controller/Settings.php
+share/nextcloud/apps/activity/lib/CurrentUser.php
+share/nextcloud/apps/activity/lib/Data.php
+share/nextcloud/apps/activity/lib/DataHelper.php
+share/nextcloud/apps/activity/lib/Exception/InvalidFilterException.php
+share/nextcloud/apps/activity/lib/Extension/Files.php
+share/nextcloud/apps/activity/lib/Extension/Files_Sharing.php
+share/nextcloud/apps/activity/lib/Extension/LegacyParser.php
+share/nextcloud/apps/activity/lib/FilesHooks.php
+share/nextcloud/apps/activity/lib/FilesHooksStatic.php
+share/nextcloud/apps/activity/lib/Filter/AllFilter.php
+share/nextcloud/apps/activity/lib/Filter/ByFilter.php
+share/nextcloud/apps/activity/lib/Filter/SelfFilter.php
+share/nextcloud/apps/activity/lib/Formatter/BaseFormatter.php
+share/nextcloud/apps/activity/lib/Formatter/CloudIDFormatter.php
+share/nextcloud/apps/activity/lib/Formatter/FileFormatter.php
+share/nextcloud/apps/activity/lib/Formatter/IFormatter.php
+share/nextcloud/apps/activity/lib/Formatter/UserFormatter.php
+share/nextcloud/apps/activity/lib/GroupHelper.php
+share/nextcloud/apps/activity/lib/GroupHelperDisabled.php
+share/nextcloud/apps/activity/lib/Hooks.php
+share/nextcloud/apps/activity/lib/MailQueueHandler.php
+share/nextcloud/apps/activity/lib/Navigation.php
+share/nextcloud/apps/activity/lib/Parameter/Collection.php
+share/nextcloud/apps/activity/lib/Parameter/Factory.php
+share/nextcloud/apps/activity/lib/Parameter/IParameter.php
+share/nextcloud/apps/activity/lib/Parameter/Parameter.php
+share/nextcloud/apps/activity/lib/PlainTextParser.php
+share/nextcloud/apps/activity/lib/UserSettings.php
+share/nextcloud/apps/activity/lib/ViewInfoCache.php
+share/nextcloud/apps/activity/personal.php
+share/nextcloud/apps/activity/templates/email.notification.php
+share/nextcloud/apps/activity/templates/personal.php
+share/nextcloud/apps/activity/templates/rss.php
+share/nextcloud/apps/activity/templates/stream.app.navigation.php
+share/nextcloud/apps/activity/templates/stream.body.php
+share/nextcloud/apps/admin_audit/appinfo/app.php
+share/nextcloud/apps/admin_audit/appinfo/info.xml
+share/nextcloud/apps/admin_audit/appinfo/signature.json
+share/nextcloud/apps/admin_audit/lib/actions/action.php
+share/nextcloud/apps/admin_audit/lib/actions/auth.php
+share/nextcloud/apps/admin_audit/lib/actions/files.php
+share/nextcloud/apps/admin_audit/lib/actions/groupmanagement.php
+share/nextcloud/apps/admin_audit/lib/actions/sharing.php
+share/nextcloud/apps/admin_audit/lib/actions/trashbin.php
+share/nextcloud/apps/admin_audit/lib/actions/usermanagement.php
+share/nextcloud/apps/admin_audit/lib/actions/versions.php
+share/nextcloud/apps/admin_audit/lib/auditlogger.php
+share/nextcloud/apps/comments/appinfo/app.php
+share/nextcloud/apps/comments/appinfo/info.xml
+share/nextcloud/apps/comments/appinfo/routes.php
+share/nextcloud/apps/comments/appinfo/signature.json
+share/nextcloud/apps/comments/css/comments.css
+share/nextcloud/apps/comments/img/comments.svg
+share/nextcloud/apps/comments/js/activitytabviewplugin.js
+share/nextcloud/apps/comments/js/app.js
+share/nextcloud/apps/comments/js/commentcollection.js
+share/nextcloud/apps/comments/js/commentmodel.js
+share/nextcloud/apps/comments/js/commentstabview.js
+share/nextcloud/apps/comments/js/commentsummarymodel.js
+share/nextcloud/apps/comments/js/filesplugin.js
+share/nextcloud/apps/comments/l10n/.gitkeep
+share/nextcloud/apps/comments/l10n/af_ZA.js
+share/nextcloud/apps/comments/l10n/af_ZA.json
+share/nextcloud/apps/comments/l10n/ar.js
+share/nextcloud/apps/comments/l10n/ar.json
+share/nextcloud/apps/comments/l10n/ast.js
+share/nextcloud/apps/comments/l10n/ast.json
+share/nextcloud/apps/comments/l10n/az.js
+share/nextcloud/apps/comments/l10n/az.json
+share/nextcloud/apps/comments/l10n/bg_BG.js
+share/nextcloud/apps/comments/l10n/bg_BG.json
+share/nextcloud/apps/comments/l10n/bn_BD.js
+share/nextcloud/apps/comments/l10n/bn_BD.json
+share/nextcloud/apps/comments/l10n/bn_IN.js
+share/nextcloud/apps/comments/l10n/bn_IN.json
+share/nextcloud/apps/comments/l10n/bs.js
+share/nextcloud/apps/comments/l10n/bs.json
+share/nextcloud/apps/comments/l10n/ca.js
+share/nextcloud/apps/comments/l10n/ca.json
+share/nextcloud/apps/comments/l10n/cs_CZ.js
+share/nextcloud/apps/comments/l10n/cs_CZ.json
+share/nextcloud/apps/comments/l10n/cy_GB.js
+share/nextcloud/apps/comments/l10n/cy_GB.json
+share/nextcloud/apps/comments/l10n/da.js
+share/nextcloud/apps/comments/l10n/da.json
+share/nextcloud/apps/comments/l10n/de.js
+share/nextcloud/apps/comments/l10n/de.json
+share/nextcloud/apps/comments/l10n/de_AT.js
+share/nextcloud/apps/comments/l10n/de_AT.json
+share/nextcloud/apps/comments/l10n/de_DE.js
+share/nextcloud/apps/comments/l10n/de_DE.json
+share/nextcloud/apps/comments/l10n/el.js
+share/nextcloud/apps/comments/l10n/el.json
+share/nextcloud/apps/comments/l10n/en_GB.js
+share/nextcloud/apps/comments/l10n/en_GB.json
+share/nextcloud/apps/comments/l10n/eo.js
+share/nextcloud/apps/comments/l10n/eo.json
+share/nextcloud/apps/comments/l10n/es.js
+share/nextcloud/apps/comments/l10n/es.json
+share/nextcloud/apps/comments/l10n/es_419.js
+share/nextcloud/apps/comments/l10n/es_419.json
+share/nextcloud/apps/comments/l10n/es_AR.js
+share/nextcloud/apps/comments/l10n/es_AR.json
+share/nextcloud/apps/comments/l10n/es_CL.js
+share/nextcloud/apps/comments/l10n/es_CL.json
+share/nextcloud/apps/comments/l10n/es_MX.js
+share/nextcloud/apps/comments/l10n/es_MX.json
+share/nextcloud/apps/comments/l10n/et_EE.js
+share/nextcloud/apps/comments/l10n/et_EE.json
+share/nextcloud/apps/comments/l10n/eu.js
+share/nextcloud/apps/comments/l10n/eu.json
+share/nextcloud/apps/comments/l10n/fa.js
+share/nextcloud/apps/comments/l10n/fa.json
+share/nextcloud/apps/comments/l10n/fi_FI.js
+share/nextcloud/apps/comments/l10n/fi_FI.json
+share/nextcloud/apps/comments/l10n/fil.js
+share/nextcloud/apps/comments/l10n/fil.json
+share/nextcloud/apps/comments/l10n/fr.js
+share/nextcloud/apps/comments/l10n/fr.json
+share/nextcloud/apps/comments/l10n/gl.js
+share/nextcloud/apps/comments/l10n/gl.json
+share/nextcloud/apps/comments/l10n/he.js
+share/nextcloud/apps/comments/l10n/he.json
+share/nextcloud/apps/comments/l10n/hi.js
+share/nextcloud/apps/comments/l10n/hi.json
+share/nextcloud/apps/comments/l10n/hr.js
+share/nextcloud/apps/comments/l10n/hr.json
+share/nextcloud/apps/comments/l10n/hu_HU.js
+share/nextcloud/apps/comments/l10n/hu_HU.json
+share/nextcloud/apps/comments/l10n/hy.js
+share/nextcloud/apps/comments/l10n/hy.json
+share/nextcloud/apps/comments/l10n/ia.js
+share/nextcloud/apps/comments/l10n/ia.json
+share/nextcloud/apps/comments/l10n/id.js
+share/nextcloud/apps/comments/l10n/id.json
+share/nextcloud/apps/comments/l10n/is.js
+share/nextcloud/apps/comments/l10n/is.json
+share/nextcloud/apps/comments/l10n/it.js
+share/nextcloud/apps/comments/l10n/it.json
+share/nextcloud/apps/comments/l10n/ja.js
+share/nextcloud/apps/comments/l10n/ja.json
+share/nextcloud/apps/comments/l10n/ka_GE.js
+share/nextcloud/apps/comments/l10n/ka_GE.json
+share/nextcloud/apps/comments/l10n/km.js
+share/nextcloud/apps/comments/l10n/km.json
+share/nextcloud/apps/comments/l10n/kn.js
+share/nextcloud/apps/comments/l10n/kn.json
+share/nextcloud/apps/comments/l10n/ko.js
+share/nextcloud/apps/comments/l10n/ko.json
+share/nextcloud/apps/comments/l10n/ku_IQ.js
+share/nextcloud/apps/comments/l10n/ku_IQ.json
+share/nextcloud/apps/comments/l10n/lb.js
+share/nextcloud/apps/comments/l10n/lb.json
+share/nextcloud/apps/comments/l10n/lt_LT.js
+share/nextcloud/apps/comments/l10n/lt_LT.json
+share/nextcloud/apps/comments/l10n/lv.js
+share/nextcloud/apps/comments/l10n/lv.json
+share/nextcloud/apps/comments/l10n/mk.js
+share/nextcloud/apps/comments/l10n/mk.json
+share/nextcloud/apps/comments/l10n/mn.js
+share/nextcloud/apps/comments/l10n/mn.json
+share/nextcloud/apps/comments/l10n/ms_MY.js
+share/nextcloud/apps/comments/l10n/ms_MY.json
+share/nextcloud/apps/comments/l10n/my_MM.js
+share/nextcloud/apps/comments/l10n/my_MM.json
+share/nextcloud/apps/comments/l10n/nb_NO.js
+share/nextcloud/apps/comments/l10n/nb_NO.json
+share/nextcloud/apps/comments/l10n/nds.js
+share/nextcloud/apps/comments/l10n/nds.json
+share/nextcloud/apps/comments/l10n/nl.js
+share/nextcloud/apps/comments/l10n/nl.json
+share/nextcloud/apps/comments/l10n/nn_NO.js
+share/nextcloud/apps/comments/l10n/nn_NO.json
+share/nextcloud/apps/comments/l10n/oc.js
+share/nextcloud/apps/comments/l10n/oc.json
+share/nextcloud/apps/comments/l10n/pa.js
+share/nextcloud/apps/comments/l10n/pa.json
+share/nextcloud/apps/comments/l10n/pl.js
+share/nextcloud/apps/comments/l10n/pl.json
+share/nextcloud/apps/comments/l10n/pt_BR.js
+share/nextcloud/apps/comments/l10n/pt_BR.json
+share/nextcloud/apps/comments/l10n/pt_PT.js
+share/nextcloud/apps/comments/l10n/pt_PT.json
+share/nextcloud/apps/comments/l10n/ro.js
+share/nextcloud/apps/comments/l10n/ro.json
+share/nextcloud/apps/comments/l10n/ru.js
+share/nextcloud/apps/comments/l10n/ru.json
+share/nextcloud/apps/comments/l10n/si_LK.js
+share/nextcloud/apps/comments/l10n/si_LK.json
+share/nextcloud/apps/comments/l10n/sk_SK.js
+share/nextcloud/apps/comments/l10n/sk_SK.json
+share/nextcloud/apps/comments/l10n/sl.js
+share/nextcloud/apps/comments/l10n/sl.json
+share/nextcloud/apps/comments/l10n/sq.js
+share/nextcloud/apps/comments/l10n/sq.json
+share/nextcloud/apps/comments/l10n/sr.js
+share/nextcloud/apps/comments/l10n/sr.json
+share/nextcloud/apps/comments/l10n/sr%latin.js@localhost
+share/nextcloud/apps/comments/l10n/sr%latin.json@localhost
+share/nextcloud/apps/comments/l10n/sv.js
+share/nextcloud/apps/comments/l10n/sv.json
+share/nextcloud/apps/comments/l10n/ta_LK.js
+share/nextcloud/apps/comments/l10n/ta_LK.json
+share/nextcloud/apps/comments/l10n/te.js
+share/nextcloud/apps/comments/l10n/te.json
+share/nextcloud/apps/comments/l10n/th_TH.js
+share/nextcloud/apps/comments/l10n/th_TH.json
+share/nextcloud/apps/comments/l10n/tr.js
+share/nextcloud/apps/comments/l10n/tr.json
+share/nextcloud/apps/comments/l10n/ug.js
+share/nextcloud/apps/comments/l10n/ug.json
+share/nextcloud/apps/comments/l10n/uk.js
+share/nextcloud/apps/comments/l10n/uk.json
+share/nextcloud/apps/comments/l10n/ur_PK.js
+share/nextcloud/apps/comments/l10n/ur_PK.json
+share/nextcloud/apps/comments/l10n/vi.js
+share/nextcloud/apps/comments/l10n/vi.json
+share/nextcloud/apps/comments/l10n/zh_CN.js
+share/nextcloud/apps/comments/l10n/zh_CN.json
+share/nextcloud/apps/comments/l10n/zh_HK.js
+share/nextcloud/apps/comments/l10n/zh_HK.json
+share/nextcloud/apps/comments/l10n/zh_TW.js
+share/nextcloud/apps/comments/l10n/zh_TW.json
+share/nextcloud/apps/comments/lib/Activity/Filter.php
+share/nextcloud/apps/comments/lib/Activity/Listener.php
+share/nextcloud/apps/comments/lib/Activity/Provider.php
+share/nextcloud/apps/comments/lib/Activity/Setting.php
+share/nextcloud/apps/comments/lib/AppInfo/Application.php
+share/nextcloud/apps/comments/lib/Controller/Notifications.php
+share/nextcloud/apps/comments/lib/EventHandler.php
+share/nextcloud/apps/comments/lib/Notification/Listener.php
+share/nextcloud/apps/comments/lib/Notification/Notifier.php
+share/nextcloud/apps/dav/appinfo/app.php
+share/nextcloud/apps/dav/appinfo/database.xml
+share/nextcloud/apps/dav/appinfo/info.xml
+share/nextcloud/apps/dav/appinfo/signature.json
+share/nextcloud/apps/dav/appinfo/v1/caldav.php
+share/nextcloud/apps/dav/appinfo/v1/carddav.php
+share/nextcloud/apps/dav/appinfo/v1/publicwebdav.php
+share/nextcloud/apps/dav/appinfo/v1/webdav.php
+share/nextcloud/apps/dav/appinfo/v2/remote.php
+share/nextcloud/apps/dav/bin/chunkperf.php
+share/nextcloud/apps/dav/l10n/.gitkeep
+share/nextcloud/apps/dav/l10n/cs_CZ.js
+share/nextcloud/apps/dav/l10n/cs_CZ.json
+share/nextcloud/apps/dav/l10n/de.js
+share/nextcloud/apps/dav/l10n/de.json
+share/nextcloud/apps/dav/l10n/de_DE.js
+share/nextcloud/apps/dav/l10n/de_DE.json
+share/nextcloud/apps/dav/l10n/el.js
+share/nextcloud/apps/dav/l10n/el.json
+share/nextcloud/apps/dav/l10n/es.js
+share/nextcloud/apps/dav/l10n/es.json
+share/nextcloud/apps/dav/l10n/fi_FI.js
+share/nextcloud/apps/dav/l10n/fi_FI.json
+share/nextcloud/apps/dav/l10n/fr.js
+share/nextcloud/apps/dav/l10n/fr.json
+share/nextcloud/apps/dav/l10n/hu_HU.js
+share/nextcloud/apps/dav/l10n/hu_HU.json
+share/nextcloud/apps/dav/l10n/id.js
+share/nextcloud/apps/dav/l10n/id.json
+share/nextcloud/apps/dav/l10n/it.js
+share/nextcloud/apps/dav/l10n/it.json
+share/nextcloud/apps/dav/l10n/ja.js
+share/nextcloud/apps/dav/l10n/ja.json
+share/nextcloud/apps/dav/l10n/lt_LT.js
+share/nextcloud/apps/dav/l10n/lt_LT.json
+share/nextcloud/apps/dav/l10n/lv.js
+share/nextcloud/apps/dav/l10n/lv.json
+share/nextcloud/apps/dav/l10n/nb_NO.js
+share/nextcloud/apps/dav/l10n/nb_NO.json
+share/nextcloud/apps/dav/l10n/nl.js
+share/nextcloud/apps/dav/l10n/nl.json
+share/nextcloud/apps/dav/l10n/pl.js
+share/nextcloud/apps/dav/l10n/pl.json
+share/nextcloud/apps/dav/l10n/pt_BR.js
+share/nextcloud/apps/dav/l10n/pt_BR.json
+share/nextcloud/apps/dav/l10n/ru.js
+share/nextcloud/apps/dav/l10n/ru.json
+share/nextcloud/apps/dav/l10n/sl.js
+share/nextcloud/apps/dav/l10n/sl.json
+share/nextcloud/apps/dav/l10n/sv.js
+share/nextcloud/apps/dav/l10n/sv.json
+share/nextcloud/apps/dav/l10n/zh_TW.js
+share/nextcloud/apps/dav/l10n/zh_TW.json
+share/nextcloud/apps/dav/lib/AppInfo/Application.php
+share/nextcloud/apps/dav/lib/CalDAV/Activity/Backend.php
+share/nextcloud/apps/dav/lib/CalDAV/Activity/Filter/Calendar.php
+share/nextcloud/apps/dav/lib/CalDAV/Activity/Filter/Todo.php
+share/nextcloud/apps/dav/lib/CalDAV/Activity/Provider/Base.php
+share/nextcloud/apps/dav/lib/CalDAV/Activity/Provider/Calendar.php
+share/nextcloud/apps/dav/lib/CalDAV/Activity/Provider/Event.php
+share/nextcloud/apps/dav/lib/CalDAV/Activity/Provider/Todo.php
+share/nextcloud/apps/dav/lib/CalDAV/Activity/Setting/Calendar.php
+share/nextcloud/apps/dav/lib/CalDAV/Activity/Setting/Event.php
+share/nextcloud/apps/dav/lib/CalDAV/Activity/Setting/Todo.php
+share/nextcloud/apps/dav/lib/CalDAV/BirthdayService.php
+share/nextcloud/apps/dav/lib/CalDAV/CalDavBackend.php
+share/nextcloud/apps/dav/lib/CalDAV/Calendar.php
+share/nextcloud/apps/dav/lib/CalDAV/CalendarHome.php
+share/nextcloud/apps/dav/lib/CalDAV/CalendarObject.php
+share/nextcloud/apps/dav/lib/CalDAV/CalendarRoot.php
+share/nextcloud/apps/dav/lib/CalDAV/Plugin.php
+share/nextcloud/apps/dav/lib/CalDAV/PublicCalendarRoot.php
+share/nextcloud/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php
+share/nextcloud/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php
+share/nextcloud/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php
+share/nextcloud/apps/dav/lib/CalDAV/Schedule/Plugin.php
+share/nextcloud/apps/dav/lib/Capabilities.php
+share/nextcloud/apps/dav/lib/CardDAV/AddressBook.php
+share/nextcloud/apps/dav/lib/CardDAV/AddressBookImpl.php
+share/nextcloud/apps/dav/lib/CardDAV/AddressBookRoot.php
+share/nextcloud/apps/dav/lib/CardDAV/CardDavBackend.php
+share/nextcloud/apps/dav/lib/CardDAV/ContactsManager.php
+share/nextcloud/apps/dav/lib/CardDAV/Converter.php
+share/nextcloud/apps/dav/lib/CardDAV/ImageExportPlugin.php
+share/nextcloud/apps/dav/lib/CardDAV/Plugin.php
+share/nextcloud/apps/dav/lib/CardDAV/SyncJob.php
+share/nextcloud/apps/dav/lib/CardDAV/SyncService.php
+share/nextcloud/apps/dav/lib/CardDAV/UserAddressBooks.php
+share/nextcloud/apps/dav/lib/CardDAV/Xml/Groups.php
+share/nextcloud/apps/dav/lib/Command/CreateAddressBook.php
+share/nextcloud/apps/dav/lib/Command/CreateCalendar.php
+share/nextcloud/apps/dav/lib/Command/SyncBirthdayCalendar.php
+share/nextcloud/apps/dav/lib/Command/SyncSystemAddressBook.php
+share/nextcloud/apps/dav/lib/Comments/CommentNode.php
+share/nextcloud/apps/dav/lib/Comments/CommentsPlugin.php
+share/nextcloud/apps/dav/lib/Comments/EntityCollection.php
+share/nextcloud/apps/dav/lib/Comments/EntityTypeCollection.php
+share/nextcloud/apps/dav/lib/Comments/RootCollection.php
+share/nextcloud/apps/dav/lib/Connector/LegacyDAVACL.php
+share/nextcloud/apps/dav/lib/Connector/PublicAuth.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/AppEnabledPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/Auth.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/ChecksumList.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/CommentPropertiesPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/CopyEtagHeaderPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/CustomPropertiesBackend.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/DavAclPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/Directory.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/Exception/EntityTooLarge.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/Exception/FileLocked.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/Exception/Forbidden.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/Exception/InvalidPath.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/Exception/PasswordLoginForbidden.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/Exception/UnsupportedMediaType.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/FakeLockerPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/File.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/FilesPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/FilesReportPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/LockPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/MaintenancePlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/Node.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/ObjectTree.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/Principal.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/QuotaPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/Server.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/ServerFactory.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/ShareTypeList.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/SharesPlugin.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/TagList.php
+share/nextcloud/apps/dav/lib/Connector/Sabre/TagsPlugin.php
+share/nextcloud/apps/dav/lib/DAV/GroupPrincipalBackend.php
+share/nextcloud/apps/dav/lib/DAV/PublicAuth.php
+share/nextcloud/apps/dav/lib/DAV/Sharing/Backend.php
+share/nextcloud/apps/dav/lib/DAV/Sharing/IShareable.php
+share/nextcloud/apps/dav/lib/DAV/Sharing/Plugin.php
+share/nextcloud/apps/dav/lib/DAV/Sharing/Xml/Invite.php
+share/nextcloud/apps/dav/lib/DAV/Sharing/Xml/ShareRequest.php
+share/nextcloud/apps/dav/lib/DAV/SystemPrincipalBackend.php
+share/nextcloud/apps/dav/lib/Files/BrowserErrorPagePlugin.php
+share/nextcloud/apps/dav/lib/Files/CustomPropertiesBackend.php
+share/nextcloud/apps/dav/lib/Files/FilesHome.php
+share/nextcloud/apps/dav/lib/Files/RootCollection.php
+share/nextcloud/apps/dav/lib/Files/Sharing/FilesDropPlugin.php
+share/nextcloud/apps/dav/lib/Files/Sharing/PublicLinkCheckPlugin.php
+share/nextcloud/apps/dav/lib/HookManager.php
+share/nextcloud/apps/dav/lib/Migration/FixBirthdayCalendarComponent.php
+share/nextcloud/apps/dav/lib/RootCollection.php
+share/nextcloud/apps/dav/lib/Server.php
+share/nextcloud/apps/dav/lib/SystemTag/SystemTagMappingNode.php
+share/nextcloud/apps/dav/lib/SystemTag/SystemTagNode.php
+share/nextcloud/apps/dav/lib/SystemTag/SystemTagPlugin.php
+share/nextcloud/apps/dav/lib/SystemTag/SystemTagsByIdCollection.php
+share/nextcloud/apps/dav/lib/SystemTag/SystemTagsObjectMappingCollection.php
+share/nextcloud/apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php
+share/nextcloud/apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php
+share/nextcloud/apps/dav/lib/Upload/AssemblyStream.php
+share/nextcloud/apps/dav/lib/Upload/FutureFile.php
+share/nextcloud/apps/dav/lib/Upload/RootCollection.php
+share/nextcloud/apps/dav/lib/Upload/UploadFolder.php
+share/nextcloud/apps/dav/lib/Upload/UploadHome.php
+share/nextcloud/apps/dav/templates/exception.php
+share/nextcloud/apps/encryption/appinfo/app.php
+share/nextcloud/apps/encryption/appinfo/info.xml
+share/nextcloud/apps/encryption/appinfo/routes.php
+share/nextcloud/apps/encryption/appinfo/signature.json
+share/nextcloud/apps/encryption/css/settings-admin.css
+share/nextcloud/apps/encryption/css/settings-personal.css
+share/nextcloud/apps/encryption/img/app.svg
+share/nextcloud/apps/encryption/js/encryption.js
+share/nextcloud/apps/encryption/js/settings-admin.js
+share/nextcloud/apps/encryption/js/settings-personal.js
+share/nextcloud/apps/encryption/l10n/.gitkeep
+share/nextcloud/apps/encryption/l10n/ar.js
+share/nextcloud/apps/encryption/l10n/ar.json
+share/nextcloud/apps/encryption/l10n/ast.js
+share/nextcloud/apps/encryption/l10n/ast.json
+share/nextcloud/apps/encryption/l10n/az.js
+share/nextcloud/apps/encryption/l10n/az.json
+share/nextcloud/apps/encryption/l10n/bg_BG.js
+share/nextcloud/apps/encryption/l10n/bg_BG.json
+share/nextcloud/apps/encryption/l10n/bn_BD.js
+share/nextcloud/apps/encryption/l10n/bn_BD.json
+share/nextcloud/apps/encryption/l10n/bs.js
+share/nextcloud/apps/encryption/l10n/bs.json
+share/nextcloud/apps/encryption/l10n/ca.js
+share/nextcloud/apps/encryption/l10n/ca.json
+share/nextcloud/apps/encryption/l10n/cs_CZ.js
+share/nextcloud/apps/encryption/l10n/cs_CZ.json
+share/nextcloud/apps/encryption/l10n/da.js
+share/nextcloud/apps/encryption/l10n/da.json
+share/nextcloud/apps/encryption/l10n/de.js
+share/nextcloud/apps/encryption/l10n/de.json
+share/nextcloud/apps/encryption/l10n/de_AT.js
+share/nextcloud/apps/encryption/l10n/de_AT.json
+share/nextcloud/apps/encryption/l10n/de_DE.js
+share/nextcloud/apps/encryption/l10n/de_DE.json
+share/nextcloud/apps/encryption/l10n/el.js
+share/nextcloud/apps/encryption/l10n/el.json
+share/nextcloud/apps/encryption/l10n/en_GB.js
+share/nextcloud/apps/encryption/l10n/en_GB.json
+share/nextcloud/apps/encryption/l10n/eo.js
+share/nextcloud/apps/encryption/l10n/eo.json
+share/nextcloud/apps/encryption/l10n/es.js
+share/nextcloud/apps/encryption/l10n/es.json
+share/nextcloud/apps/encryption/l10n/es_AR.js
+share/nextcloud/apps/encryption/l10n/es_AR.json
+share/nextcloud/apps/encryption/l10n/es_MX.js
+share/nextcloud/apps/encryption/l10n/es_MX.json
+share/nextcloud/apps/encryption/l10n/et_EE.js
+share/nextcloud/apps/encryption/l10n/et_EE.json
+share/nextcloud/apps/encryption/l10n/eu.js
+share/nextcloud/apps/encryption/l10n/eu.json
+share/nextcloud/apps/encryption/l10n/fa.js
+share/nextcloud/apps/encryption/l10n/fa.json
+share/nextcloud/apps/encryption/l10n/fi_FI.js
+share/nextcloud/apps/encryption/l10n/fi_FI.json
+share/nextcloud/apps/encryption/l10n/fr.js
+share/nextcloud/apps/encryption/l10n/fr.json
+share/nextcloud/apps/encryption/l10n/gl.js
+share/nextcloud/apps/encryption/l10n/gl.json
+share/nextcloud/apps/encryption/l10n/he.js
+share/nextcloud/apps/encryption/l10n/he.json
+share/nextcloud/apps/encryption/l10n/hr.js
+share/nextcloud/apps/encryption/l10n/hr.json
+share/nextcloud/apps/encryption/l10n/hu_HU.js
+share/nextcloud/apps/encryption/l10n/hu_HU.json
+share/nextcloud/apps/encryption/l10n/ia.js
+share/nextcloud/apps/encryption/l10n/ia.json
+share/nextcloud/apps/encryption/l10n/id.js
+share/nextcloud/apps/encryption/l10n/id.json
+share/nextcloud/apps/encryption/l10n/is.js
+share/nextcloud/apps/encryption/l10n/is.json
+share/nextcloud/apps/encryption/l10n/it.js
+share/nextcloud/apps/encryption/l10n/it.json
+share/nextcloud/apps/encryption/l10n/ja.js
+share/nextcloud/apps/encryption/l10n/ja.json
+share/nextcloud/apps/encryption/l10n/km.js
+share/nextcloud/apps/encryption/l10n/km.json
+share/nextcloud/apps/encryption/l10n/kn.js
+share/nextcloud/apps/encryption/l10n/kn.json
+share/nextcloud/apps/encryption/l10n/ko.js
+share/nextcloud/apps/encryption/l10n/ko.json
+share/nextcloud/apps/encryption/l10n/lb.js
+share/nextcloud/apps/encryption/l10n/lb.json
+share/nextcloud/apps/encryption/l10n/lt_LT.js
+share/nextcloud/apps/encryption/l10n/lt_LT.json
+share/nextcloud/apps/encryption/l10n/lv.js
+share/nextcloud/apps/encryption/l10n/lv.json
+share/nextcloud/apps/encryption/l10n/mk.js
+share/nextcloud/apps/encryption/l10n/mk.json
+share/nextcloud/apps/encryption/l10n/nb_NO.js
+share/nextcloud/apps/encryption/l10n/nb_NO.json
+share/nextcloud/apps/encryption/l10n/nl.js
+share/nextcloud/apps/encryption/l10n/nl.json
+share/nextcloud/apps/encryption/l10n/oc.js
+share/nextcloud/apps/encryption/l10n/oc.json
+share/nextcloud/apps/encryption/l10n/pl.js
+share/nextcloud/apps/encryption/l10n/pl.json
+share/nextcloud/apps/encryption/l10n/pt_BR.js
+share/nextcloud/apps/encryption/l10n/pt_BR.json
+share/nextcloud/apps/encryption/l10n/pt_PT.js
+share/nextcloud/apps/encryption/l10n/pt_PT.json
+share/nextcloud/apps/encryption/l10n/ro.js
+share/nextcloud/apps/encryption/l10n/ro.json
+share/nextcloud/apps/encryption/l10n/ru.js
+share/nextcloud/apps/encryption/l10n/ru.json
+share/nextcloud/apps/encryption/l10n/sk_SK.js
+share/nextcloud/apps/encryption/l10n/sk_SK.json
+share/nextcloud/apps/encryption/l10n/sl.js
+share/nextcloud/apps/encryption/l10n/sl.json
+share/nextcloud/apps/encryption/l10n/sq.js
+share/nextcloud/apps/encryption/l10n/sq.json
+share/nextcloud/apps/encryption/l10n/sr.js
+share/nextcloud/apps/encryption/l10n/sr.json
+share/nextcloud/apps/encryption/l10n/sr%latin.js@localhost
+share/nextcloud/apps/encryption/l10n/sr%latin.json@localhost
+share/nextcloud/apps/encryption/l10n/sv.js
+share/nextcloud/apps/encryption/l10n/sv.json
+share/nextcloud/apps/encryption/l10n/th_TH.js
+share/nextcloud/apps/encryption/l10n/th_TH.json
+share/nextcloud/apps/encryption/l10n/tr.js
+share/nextcloud/apps/encryption/l10n/tr.json
+share/nextcloud/apps/encryption/l10n/uk.js
+share/nextcloud/apps/encryption/l10n/uk.json
+share/nextcloud/apps/encryption/l10n/ur_PK.js
+share/nextcloud/apps/encryption/l10n/ur_PK.json
+share/nextcloud/apps/encryption/l10n/vi.js
+share/nextcloud/apps/encryption/l10n/vi.json
+share/nextcloud/apps/encryption/l10n/zh_CN.js
+share/nextcloud/apps/encryption/l10n/zh_CN.json
+share/nextcloud/apps/encryption/l10n/zh_HK.js
+share/nextcloud/apps/encryption/l10n/zh_HK.json
+share/nextcloud/apps/encryption/l10n/zh_TW.js
+share/nextcloud/apps/encryption/l10n/zh_TW.json
+share/nextcloud/apps/encryption/lib/AppInfo/Application.php
+share/nextcloud/apps/encryption/lib/Command/EnableMasterKey.php
+share/nextcloud/apps/encryption/lib/Command/MigrateKeys.php
+share/nextcloud/apps/encryption/lib/Controller/RecoveryController.php
+share/nextcloud/apps/encryption/lib/Controller/SettingsController.php
+share/nextcloud/apps/encryption/lib/Controller/StatusController.php
+share/nextcloud/apps/encryption/lib/Crypto/Crypt.php
+share/nextcloud/apps/encryption/lib/Crypto/DecryptAll.php
+share/nextcloud/apps/encryption/lib/Crypto/EncryptAll.php
+share/nextcloud/apps/encryption/lib/Crypto/Encryption.php
+share/nextcloud/apps/encryption/lib/Exceptions/MultiKeyDecryptException.php
+share/nextcloud/apps/encryption/lib/Exceptions/MultiKeyEncryptException.php
+share/nextcloud/apps/encryption/lib/Exceptions/PrivateKeyMissingException.php
+share/nextcloud/apps/encryption/lib/Exceptions/PublicKeyMissingException.php
+share/nextcloud/apps/encryption/lib/HookManager.php
+share/nextcloud/apps/encryption/lib/Hooks/Contracts/IHook.php
+share/nextcloud/apps/encryption/lib/Hooks/UserHooks.php
+share/nextcloud/apps/encryption/lib/KeyManager.php
+share/nextcloud/apps/encryption/lib/Migration.php
+share/nextcloud/apps/encryption/lib/Recovery.php
+share/nextcloud/apps/encryption/lib/Session.php
+share/nextcloud/apps/encryption/lib/Settings/Admin.php
+share/nextcloud/apps/encryption/lib/Users/Setup.php
+share/nextcloud/apps/encryption/lib/Util.php
+share/nextcloud/apps/encryption/settings/settings-personal.php
+share/nextcloud/apps/encryption/templates/altmail.php
+share/nextcloud/apps/encryption/templates/mail.php
+share/nextcloud/apps/encryption/templates/settings-admin.php
+share/nextcloud/apps/encryption/templates/settings-personal.php
+share/nextcloud/apps/external/ajax/setsites.php
+share/nextcloud/apps/external/appinfo/app.php
+share/nextcloud/apps/external/appinfo/info.xml
+share/nextcloud/apps/external/appinfo/routes.php
+share/nextcloud/apps/external/appinfo/signature.json
+share/nextcloud/apps/external/appinfo/version
+share/nextcloud/apps/external/css/style.css
+share/nextcloud/apps/external/img/external.png
+share/nextcloud/apps/external/img/external.svg
+share/nextcloud/apps/external/index.php
+share/nextcloud/apps/external/js/admin.js
+share/nextcloud/apps/external/js/external.js
+share/nextcloud/apps/external/l10n/.gitkeep
+share/nextcloud/apps/external/l10n/af_ZA.js
+share/nextcloud/apps/external/l10n/af_ZA.json
+share/nextcloud/apps/external/l10n/ar.js
+share/nextcloud/apps/external/l10n/ar.json
+share/nextcloud/apps/external/l10n/ast.js
+share/nextcloud/apps/external/l10n/ast.json
+share/nextcloud/apps/external/l10n/az.js
+share/nextcloud/apps/external/l10n/az.json
+share/nextcloud/apps/external/l10n/bg_BG.js
+share/nextcloud/apps/external/l10n/bg_BG.json
+share/nextcloud/apps/external/l10n/bn_BD.js
+share/nextcloud/apps/external/l10n/bn_BD.json
+share/nextcloud/apps/external/l10n/bn_IN.js
+share/nextcloud/apps/external/l10n/bn_IN.json
+share/nextcloud/apps/external/l10n/bs.js
+share/nextcloud/apps/external/l10n/bs.json
+share/nextcloud/apps/external/l10n/ca.js
+share/nextcloud/apps/external/l10n/ca.json
+share/nextcloud/apps/external/l10n/cs_CZ.js
+share/nextcloud/apps/external/l10n/cs_CZ.json
+share/nextcloud/apps/external/l10n/cy_GB.js
+share/nextcloud/apps/external/l10n/cy_GB.json
+share/nextcloud/apps/external/l10n/da.js
+share/nextcloud/apps/external/l10n/da.json
+share/nextcloud/apps/external/l10n/de.js
+share/nextcloud/apps/external/l10n/de.json
+share/nextcloud/apps/external/l10n/de_AT.js
+share/nextcloud/apps/external/l10n/de_AT.json
+share/nextcloud/apps/external/l10n/de_DE.js
+share/nextcloud/apps/external/l10n/de_DE.json
+share/nextcloud/apps/external/l10n/el.js
+share/nextcloud/apps/external/l10n/el.json
+share/nextcloud/apps/external/l10n/en_GB.js
+share/nextcloud/apps/external/l10n/en_GB.json
+share/nextcloud/apps/external/l10n/eo.js
+share/nextcloud/apps/external/l10n/eo.json
+share/nextcloud/apps/external/l10n/es.js
+share/nextcloud/apps/external/l10n/es.json
+share/nextcloud/apps/external/l10n/es_AR.js
+share/nextcloud/apps/external/l10n/es_AR.json
+share/nextcloud/apps/external/l10n/es_MX.js
+share/nextcloud/apps/external/l10n/es_MX.json
+share/nextcloud/apps/external/l10n/et_EE.js
+share/nextcloud/apps/external/l10n/et_EE.json
+share/nextcloud/apps/external/l10n/eu.js
+share/nextcloud/apps/external/l10n/eu.json
+share/nextcloud/apps/external/l10n/fa.js
+share/nextcloud/apps/external/l10n/fa.json
+share/nextcloud/apps/external/l10n/fi.js
+share/nextcloud/apps/external/l10n/fi.json
+share/nextcloud/apps/external/l10n/fi_FI.js
+share/nextcloud/apps/external/l10n/fi_FI.json
+share/nextcloud/apps/external/l10n/fr.js
+share/nextcloud/apps/external/l10n/fr.json
+share/nextcloud/apps/external/l10n/gl.js
+share/nextcloud/apps/external/l10n/gl.json
+share/nextcloud/apps/external/l10n/he.js
+share/nextcloud/apps/external/l10n/he.json
+share/nextcloud/apps/external/l10n/hi.js
+share/nextcloud/apps/external/l10n/hi.json
+share/nextcloud/apps/external/l10n/hr.js
+share/nextcloud/apps/external/l10n/hr.json
+share/nextcloud/apps/external/l10n/hu_HU.js
+share/nextcloud/apps/external/l10n/hu_HU.json
+share/nextcloud/apps/external/l10n/hy.js
+share/nextcloud/apps/external/l10n/hy.json
+share/nextcloud/apps/external/l10n/ia.js
+share/nextcloud/apps/external/l10n/ia.json
+share/nextcloud/apps/external/l10n/id.js
+share/nextcloud/apps/external/l10n/id.json
+share/nextcloud/apps/external/l10n/is.js
+share/nextcloud/apps/external/l10n/is.json
+share/nextcloud/apps/external/l10n/it.js
+share/nextcloud/apps/external/l10n/it.json
+share/nextcloud/apps/external/l10n/ja.js
+share/nextcloud/apps/external/l10n/ja.json
+share/nextcloud/apps/external/l10n/ka_GE.js
+share/nextcloud/apps/external/l10n/ka_GE.json
+share/nextcloud/apps/external/l10n/km.js
+share/nextcloud/apps/external/l10n/km.json
+share/nextcloud/apps/external/l10n/kn.js
+share/nextcloud/apps/external/l10n/kn.json
+share/nextcloud/apps/external/l10n/ko.js
+share/nextcloud/apps/external/l10n/ko.json
+share/nextcloud/apps/external/l10n/ku_IQ.js
+share/nextcloud/apps/external/l10n/ku_IQ.json
+share/nextcloud/apps/external/l10n/lb.js
+share/nextcloud/apps/external/l10n/lb.json
+share/nextcloud/apps/external/l10n/lt_LT.js
+share/nextcloud/apps/external/l10n/lt_LT.json
+share/nextcloud/apps/external/l10n/lv.js
+share/nextcloud/apps/external/l10n/lv.json
+share/nextcloud/apps/external/l10n/mk.js
+share/nextcloud/apps/external/l10n/mk.json
+share/nextcloud/apps/external/l10n/ms_MY.js
+share/nextcloud/apps/external/l10n/ms_MY.json
+share/nextcloud/apps/external/l10n/my_MM.js
+share/nextcloud/apps/external/l10n/my_MM.json
+share/nextcloud/apps/external/l10n/nb_NO.js
+share/nextcloud/apps/external/l10n/nb_NO.json
+share/nextcloud/apps/external/l10n/nds.js
+share/nextcloud/apps/external/l10n/nds.json
+share/nextcloud/apps/external/l10n/nl.js
+share/nextcloud/apps/external/l10n/nl.json
+share/nextcloud/apps/external/l10n/nn_NO.js
+share/nextcloud/apps/external/l10n/nn_NO.json
+share/nextcloud/apps/external/l10n/oc.js
+share/nextcloud/apps/external/l10n/oc.json
+share/nextcloud/apps/external/l10n/pl.js
+share/nextcloud/apps/external/l10n/pl.json
+share/nextcloud/apps/external/l10n/pt_BR.js
+share/nextcloud/apps/external/l10n/pt_BR.json
+share/nextcloud/apps/external/l10n/pt_PT.js
+share/nextcloud/apps/external/l10n/pt_PT.json
+share/nextcloud/apps/external/l10n/ro.js
+share/nextcloud/apps/external/l10n/ro.json
+share/nextcloud/apps/external/l10n/ru.js
+share/nextcloud/apps/external/l10n/ru.json
+share/nextcloud/apps/external/l10n/si_LK.js
+share/nextcloud/apps/external/l10n/si_LK.json
+share/nextcloud/apps/external/l10n/sk_SK.js
+share/nextcloud/apps/external/l10n/sk_SK.json
+share/nextcloud/apps/external/l10n/sl.js
+share/nextcloud/apps/external/l10n/sl.json
+share/nextcloud/apps/external/l10n/sq.js
+share/nextcloud/apps/external/l10n/sq.json
+share/nextcloud/apps/external/l10n/sr.js
+share/nextcloud/apps/external/l10n/sr.json
+share/nextcloud/apps/external/l10n/sr%latin.js@localhost
+share/nextcloud/apps/external/l10n/sr%latin.json@localhost
+share/nextcloud/apps/external/l10n/sv.js
+share/nextcloud/apps/external/l10n/sv.json
+share/nextcloud/apps/external/l10n/ta_LK.js
+share/nextcloud/apps/external/l10n/ta_LK.json
+share/nextcloud/apps/external/l10n/te.js
+share/nextcloud/apps/external/l10n/te.json
+share/nextcloud/apps/external/l10n/th_TH.js
+share/nextcloud/apps/external/l10n/th_TH.json
+share/nextcloud/apps/external/l10n/tr.js
+share/nextcloud/apps/external/l10n/tr.json
+share/nextcloud/apps/external/l10n/ug.js
+share/nextcloud/apps/external/l10n/ug.json
+share/nextcloud/apps/external/l10n/uk.js
+share/nextcloud/apps/external/l10n/uk.json
+share/nextcloud/apps/external/l10n/ur_PK.js
+share/nextcloud/apps/external/l10n/ur_PK.json
+share/nextcloud/apps/external/l10n/vi.js
+share/nextcloud/apps/external/l10n/vi.json
+share/nextcloud/apps/external/l10n/zh_CN.js
+share/nextcloud/apps/external/l10n/zh_CN.json
+share/nextcloud/apps/external/l10n/zh_HK.js
+share/nextcloud/apps/external/l10n/zh_HK.json
+share/nextcloud/apps/external/l10n/zh_TW.js
+share/nextcloud/apps/external/l10n/zh_TW.json
+share/nextcloud/apps/external/lib/external.php
+share/nextcloud/apps/external/settings.php
+share/nextcloud/apps/external/templates/frame.php
+share/nextcloud/apps/external/templates/settings.php
+share/nextcloud/apps/federatedfilesharing/appinfo/app.php
+share/nextcloud/apps/federatedfilesharing/appinfo/database.xml
+share/nextcloud/apps/federatedfilesharing/appinfo/info.xml
+share/nextcloud/apps/federatedfilesharing/appinfo/routes.php
+share/nextcloud/apps/federatedfilesharing/appinfo/signature.json
+share/nextcloud/apps/federatedfilesharing/css/settings-personal.css
+share/nextcloud/apps/federatedfilesharing/img/social-diaspora.svg
+share/nextcloud/apps/federatedfilesharing/img/social-facebook.svg
+share/nextcloud/apps/federatedfilesharing/img/social-googleplus.svg
+share/nextcloud/apps/federatedfilesharing/img/social-twitter.svg
+share/nextcloud/apps/federatedfilesharing/js/external.js
+share/nextcloud/apps/federatedfilesharing/js/settings-admin.js
+share/nextcloud/apps/federatedfilesharing/js/settings-personal.js
+share/nextcloud/apps/federatedfilesharing/l10n/.gitkeep
+share/nextcloud/apps/federatedfilesharing/l10n/ar.js
+share/nextcloud/apps/federatedfilesharing/l10n/ar.json
+share/nextcloud/apps/federatedfilesharing/l10n/ast.js
+share/nextcloud/apps/federatedfilesharing/l10n/ast.json
+share/nextcloud/apps/federatedfilesharing/l10n/az.js
+share/nextcloud/apps/federatedfilesharing/l10n/az.json
+share/nextcloud/apps/federatedfilesharing/l10n/bg_BG.js
+share/nextcloud/apps/federatedfilesharing/l10n/bg_BG.json
+share/nextcloud/apps/federatedfilesharing/l10n/ca.js
+share/nextcloud/apps/federatedfilesharing/l10n/ca.json
+share/nextcloud/apps/federatedfilesharing/l10n/cs_CZ.js
+share/nextcloud/apps/federatedfilesharing/l10n/cs_CZ.json
+share/nextcloud/apps/federatedfilesharing/l10n/da.js
+share/nextcloud/apps/federatedfilesharing/l10n/da.json
+share/nextcloud/apps/federatedfilesharing/l10n/de.js
+share/nextcloud/apps/federatedfilesharing/l10n/de.json
+share/nextcloud/apps/federatedfilesharing/l10n/de_DE.js
+share/nextcloud/apps/federatedfilesharing/l10n/de_DE.json
+share/nextcloud/apps/federatedfilesharing/l10n/el.js
+share/nextcloud/apps/federatedfilesharing/l10n/el.json
+share/nextcloud/apps/federatedfilesharing/l10n/en_GB.js
+share/nextcloud/apps/federatedfilesharing/l10n/en_GB.json
+share/nextcloud/apps/federatedfilesharing/l10n/eo.js
+share/nextcloud/apps/federatedfilesharing/l10n/eo.json
+share/nextcloud/apps/federatedfilesharing/l10n/es.js
+share/nextcloud/apps/federatedfilesharing/l10n/es.json
+share/nextcloud/apps/federatedfilesharing/l10n/et_EE.js
+share/nextcloud/apps/federatedfilesharing/l10n/et_EE.json
+share/nextcloud/apps/federatedfilesharing/l10n/eu.js
+share/nextcloud/apps/federatedfilesharing/l10n/eu.json
+share/nextcloud/apps/federatedfilesharing/l10n/fa.js
+share/nextcloud/apps/federatedfilesharing/l10n/fa.json
+share/nextcloud/apps/federatedfilesharing/l10n/fi_FI.js
+share/nextcloud/apps/federatedfilesharing/l10n/fi_FI.json
+share/nextcloud/apps/federatedfilesharing/l10n/fr.js
+share/nextcloud/apps/federatedfilesharing/l10n/fr.json
+share/nextcloud/apps/federatedfilesharing/l10n/gl.js
+share/nextcloud/apps/federatedfilesharing/l10n/gl.json
+share/nextcloud/apps/federatedfilesharing/l10n/he.js
+share/nextcloud/apps/federatedfilesharing/l10n/he.json
+share/nextcloud/apps/federatedfilesharing/l10n/hr.js
+share/nextcloud/apps/federatedfilesharing/l10n/hr.json
+share/nextcloud/apps/federatedfilesharing/l10n/hu_HU.js
+share/nextcloud/apps/federatedfilesharing/l10n/hu_HU.json
+share/nextcloud/apps/federatedfilesharing/l10n/id.js
+share/nextcloud/apps/federatedfilesharing/l10n/id.json
+share/nextcloud/apps/federatedfilesharing/l10n/is.js
+share/nextcloud/apps/federatedfilesharing/l10n/is.json
+share/nextcloud/apps/federatedfilesharing/l10n/it.js
+share/nextcloud/apps/federatedfilesharing/l10n/it.json
+share/nextcloud/apps/federatedfilesharing/l10n/ja.js
+share/nextcloud/apps/federatedfilesharing/l10n/ja.json
+share/nextcloud/apps/federatedfilesharing/l10n/ko.js
+share/nextcloud/apps/federatedfilesharing/l10n/ko.json
+share/nextcloud/apps/federatedfilesharing/l10n/lb.js
+share/nextcloud/apps/federatedfilesharing/l10n/lb.json
+share/nextcloud/apps/federatedfilesharing/l10n/lt_LT.js
+share/nextcloud/apps/federatedfilesharing/l10n/lt_LT.json
+share/nextcloud/apps/federatedfilesharing/l10n/lv.js
+share/nextcloud/apps/federatedfilesharing/l10n/lv.json
+share/nextcloud/apps/federatedfilesharing/l10n/mk.js
+share/nextcloud/apps/federatedfilesharing/l10n/mk.json
+share/nextcloud/apps/federatedfilesharing/l10n/nb_NO.js
+share/nextcloud/apps/federatedfilesharing/l10n/nb_NO.json
+share/nextcloud/apps/federatedfilesharing/l10n/nl.js
+share/nextcloud/apps/federatedfilesharing/l10n/nl.json
+share/nextcloud/apps/federatedfilesharing/l10n/oc.js
+share/nextcloud/apps/federatedfilesharing/l10n/oc.json
+share/nextcloud/apps/federatedfilesharing/l10n/pl.js
+share/nextcloud/apps/federatedfilesharing/l10n/pl.json
+share/nextcloud/apps/federatedfilesharing/l10n/pt_BR.js
+share/nextcloud/apps/federatedfilesharing/l10n/pt_BR.json
+share/nextcloud/apps/federatedfilesharing/l10n/pt_PT.js
+share/nextcloud/apps/federatedfilesharing/l10n/pt_PT.json
+share/nextcloud/apps/federatedfilesharing/l10n/ro.js
+share/nextcloud/apps/federatedfilesharing/l10n/ro.json
+share/nextcloud/apps/federatedfilesharing/l10n/ru.js
+share/nextcloud/apps/federatedfilesharing/l10n/ru.json
+share/nextcloud/apps/federatedfilesharing/l10n/sk_SK.js
+share/nextcloud/apps/federatedfilesharing/l10n/sk_SK.json
+share/nextcloud/apps/federatedfilesharing/l10n/sl.js
+share/nextcloud/apps/federatedfilesharing/l10n/sl.json
+share/nextcloud/apps/federatedfilesharing/l10n/sq.js
+share/nextcloud/apps/federatedfilesharing/l10n/sq.json
+share/nextcloud/apps/federatedfilesharing/l10n/sr.js
+share/nextcloud/apps/federatedfilesharing/l10n/sr.json
+share/nextcloud/apps/federatedfilesharing/l10n/sr%latin.js@localhost
+share/nextcloud/apps/federatedfilesharing/l10n/sr%latin.json@localhost
+share/nextcloud/apps/federatedfilesharing/l10n/sv.js
+share/nextcloud/apps/federatedfilesharing/l10n/sv.json
+share/nextcloud/apps/federatedfilesharing/l10n/th_TH.js
+share/nextcloud/apps/federatedfilesharing/l10n/th_TH.json
+share/nextcloud/apps/federatedfilesharing/l10n/tr.js
+share/nextcloud/apps/federatedfilesharing/l10n/tr.json
+share/nextcloud/apps/federatedfilesharing/l10n/uk.js
+share/nextcloud/apps/federatedfilesharing/l10n/uk.json
+share/nextcloud/apps/federatedfilesharing/l10n/zh_CN.js
+share/nextcloud/apps/federatedfilesharing/l10n/zh_CN.json
+share/nextcloud/apps/federatedfilesharing/l10n/zh_TW.js
+share/nextcloud/apps/federatedfilesharing/l10n/zh_TW.json
+share/nextcloud/apps/federatedfilesharing/lib/AddressHandler.php
+share/nextcloud/apps/federatedfilesharing/lib/AppInfo/Application.php
+share/nextcloud/apps/federatedfilesharing/lib/BackgroundJob/RetryJob.php
+share/nextcloud/apps/federatedfilesharing/lib/Controller/MountPublicLinkController.php
+share/nextcloud/apps/federatedfilesharing/lib/Controller/RequestHandlerController.php
+share/nextcloud/apps/federatedfilesharing/lib/DiscoveryManager.php
+share/nextcloud/apps/federatedfilesharing/lib/FederatedShareProvider.php
+share/nextcloud/apps/federatedfilesharing/lib/Notifications.php
+share/nextcloud/apps/federatedfilesharing/lib/Notifier.php
+share/nextcloud/apps/federatedfilesharing/lib/Settings/Admin.php
+share/nextcloud/apps/federatedfilesharing/lib/TokenHandler.php
+share/nextcloud/apps/federatedfilesharing/settings-personal.php
+share/nextcloud/apps/federatedfilesharing/templates/settings-admin.php
+share/nextcloud/apps/federatedfilesharing/templates/settings-personal.php
+share/nextcloud/apps/federation/appinfo/app.php
+share/nextcloud/apps/federation/appinfo/database.xml
+share/nextcloud/apps/federation/appinfo/info.xml
+share/nextcloud/apps/federation/appinfo/routes.php
+share/nextcloud/apps/federation/appinfo/signature.json
+share/nextcloud/apps/federation/css/settings-admin.css
+share/nextcloud/apps/federation/img/app.svg
+share/nextcloud/apps/federation/js/settings-admin.js
+share/nextcloud/apps/federation/l10n/.gitkeep
+share/nextcloud/apps/federation/l10n/ar.js
+share/nextcloud/apps/federation/l10n/ar.json
+share/nextcloud/apps/federation/l10n/bg_BG.js
+share/nextcloud/apps/federation/l10n/bg_BG.json
+share/nextcloud/apps/federation/l10n/ca.js
+share/nextcloud/apps/federation/l10n/ca.json
+share/nextcloud/apps/federation/l10n/cs_CZ.js
+share/nextcloud/apps/federation/l10n/cs_CZ.json
+share/nextcloud/apps/federation/l10n/da.js
+share/nextcloud/apps/federation/l10n/da.json
+share/nextcloud/apps/federation/l10n/de.js
+share/nextcloud/apps/federation/l10n/de.json
+share/nextcloud/apps/federation/l10n/de_DE.js
+share/nextcloud/apps/federation/l10n/de_DE.json
+share/nextcloud/apps/federation/l10n/el.js
+share/nextcloud/apps/federation/l10n/el.json
+share/nextcloud/apps/federation/l10n/en_GB.js
+share/nextcloud/apps/federation/l10n/en_GB.json
+share/nextcloud/apps/federation/l10n/eo.js
+share/nextcloud/apps/federation/l10n/eo.json
+share/nextcloud/apps/federation/l10n/es.js
+share/nextcloud/apps/federation/l10n/es.json
+share/nextcloud/apps/federation/l10n/et_EE.js
+share/nextcloud/apps/federation/l10n/et_EE.json
+share/nextcloud/apps/federation/l10n/fi_FI.js
+share/nextcloud/apps/federation/l10n/fi_FI.json
+share/nextcloud/apps/federation/l10n/fr.js
+share/nextcloud/apps/federation/l10n/fr.json
+share/nextcloud/apps/federation/l10n/he.js
+share/nextcloud/apps/federation/l10n/he.json
+share/nextcloud/apps/federation/l10n/hu_HU.js
+share/nextcloud/apps/federation/l10n/hu_HU.json
+share/nextcloud/apps/federation/l10n/id.js
+share/nextcloud/apps/federation/l10n/id.json
+share/nextcloud/apps/federation/l10n/is.js
+share/nextcloud/apps/federation/l10n/is.json
+share/nextcloud/apps/federation/l10n/it.js
+share/nextcloud/apps/federation/l10n/it.json
+share/nextcloud/apps/federation/l10n/ja.js
+share/nextcloud/apps/federation/l10n/ja.json
+share/nextcloud/apps/federation/l10n/ko.js
+share/nextcloud/apps/federation/l10n/ko.json
+share/nextcloud/apps/federation/l10n/lb.js
+share/nextcloud/apps/federation/l10n/lb.json
+share/nextcloud/apps/federation/l10n/nb_NO.js
+share/nextcloud/apps/federation/l10n/nb_NO.json
+share/nextcloud/apps/federation/l10n/nl.js
+share/nextcloud/apps/federation/l10n/nl.json
+share/nextcloud/apps/federation/l10n/oc.js
+share/nextcloud/apps/federation/l10n/oc.json
+share/nextcloud/apps/federation/l10n/pl.js
+share/nextcloud/apps/federation/l10n/pl.json
+share/nextcloud/apps/federation/l10n/pt_BR.js
+share/nextcloud/apps/federation/l10n/pt_BR.json
+share/nextcloud/apps/federation/l10n/pt_PT.js
+share/nextcloud/apps/federation/l10n/pt_PT.json
+share/nextcloud/apps/federation/l10n/ro.js
+share/nextcloud/apps/federation/l10n/ro.json
+share/nextcloud/apps/federation/l10n/ru.js
+share/nextcloud/apps/federation/l10n/ru.json
+share/nextcloud/apps/federation/l10n/sl.js
+share/nextcloud/apps/federation/l10n/sl.json
+share/nextcloud/apps/federation/l10n/sq.js
+share/nextcloud/apps/federation/l10n/sq.json
+share/nextcloud/apps/federation/l10n/sr.js
+share/nextcloud/apps/federation/l10n/sr.json
+share/nextcloud/apps/federation/l10n/sv.js
+share/nextcloud/apps/federation/l10n/sv.json
+share/nextcloud/apps/federation/l10n/th_TH.js
+share/nextcloud/apps/federation/l10n/th_TH.json
+share/nextcloud/apps/federation/l10n/tr.js
+share/nextcloud/apps/federation/l10n/tr.json
+share/nextcloud/apps/federation/l10n/uk.js
+share/nextcloud/apps/federation/l10n/uk.json
+share/nextcloud/apps/federation/l10n/zh_CN.js
+share/nextcloud/apps/federation/l10n/zh_CN.json
+share/nextcloud/apps/federation/l10n/zh_TW.js
+share/nextcloud/apps/federation/l10n/zh_TW.json
+share/nextcloud/apps/federation/lib/AppInfo/Application.php
+share/nextcloud/apps/federation/lib/BackgroundJob/GetSharedSecret.php
+share/nextcloud/apps/federation/lib/BackgroundJob/RequestSharedSecret.php
+share/nextcloud/apps/federation/lib/Command/SyncFederationAddressBooks.php
+share/nextcloud/apps/federation/lib/Controller/OCSAuthAPIController.php
+share/nextcloud/apps/federation/lib/Controller/SettingsController.php
+share/nextcloud/apps/federation/lib/DAV/FedAuth.php
+share/nextcloud/apps/federation/lib/DbHandler.php
+share/nextcloud/apps/federation/lib/Hooks.php
+share/nextcloud/apps/federation/lib/Middleware/AddServerMiddleware.php
+share/nextcloud/apps/federation/lib/Settings/Admin.php
+share/nextcloud/apps/federation/lib/SyncFederationAddressBooks.php
+share/nextcloud/apps/federation/lib/SyncJob.php
+share/nextcloud/apps/federation/lib/TrustedServers.php
+share/nextcloud/apps/federation/templates/settings-admin.php
+share/nextcloud/apps/files/ajax/download.php
+share/nextcloud/apps/files/ajax/getstoragestats.php
+share/nextcloud/apps/files/ajax/list.php
+share/nextcloud/apps/files/appinfo/app.php
+share/nextcloud/apps/files/appinfo/info.xml
+share/nextcloud/apps/files/appinfo/routes.php
+share/nextcloud/apps/files/appinfo/signature.json
+share/nextcloud/apps/files/appinfo/update.php
+share/nextcloud/apps/files/css/detailsView.css
+share/nextcloud/apps/files/css/files.css
+share/nextcloud/apps/files/css/mobile.css
+share/nextcloud/apps/files/css/upload.css
+share/nextcloud/apps/files/download.php
+share/nextcloud/apps/files/img/add-color.svg
+share/nextcloud/apps/files/img/change.svg
+share/nextcloud/apps/files/img/delete-color.svg
+share/nextcloud/apps/files/img/delete.svg
+share/nextcloud/apps/files/img/external.svg
+share/nextcloud/apps/files/img/folder.svg
+share/nextcloud/apps/files/img/public.svg
+share/nextcloud/apps/files/img/recent.svg
+share/nextcloud/apps/files/img/share.svg
+share/nextcloud/apps/files/img/star.svg
+share/nextcloud/apps/files/js/admin.js
+share/nextcloud/apps/files/js/app.js
+share/nextcloud/apps/files/js/breadcrumb.js
+share/nextcloud/apps/files/js/detailfileinfoview.js
+share/nextcloud/apps/files/js/detailsview.js
+share/nextcloud/apps/files/js/detailtabview.js
+share/nextcloud/apps/files/js/favoritesfilelist.js
+share/nextcloud/apps/files/js/favoritesplugin.js
+share/nextcloud/apps/files/js/file-upload.js
+share/nextcloud/apps/files/js/fileactions.js
+share/nextcloud/apps/files/js/fileactionsmenu.js
+share/nextcloud/apps/files/js/fileinfomodel.js
+share/nextcloud/apps/files/js/filelist.js
+share/nextcloud/apps/files/js/files.js
+share/nextcloud/apps/files/js/filesummary.js
+share/nextcloud/apps/files/js/gotoplugin.js
+share/nextcloud/apps/files/js/jquery-visibility.js
+share/nextcloud/apps/files/js/jquery.fileupload.js
+share/nextcloud/apps/files/js/keyboardshortcuts.js
+share/nextcloud/apps/files/js/mainfileinfodetailview.js
+share/nextcloud/apps/files/js/navigation.js
+share/nextcloud/apps/files/js/newfilemenu.js
+share/nextcloud/apps/files/js/recentfilelist.js
+share/nextcloud/apps/files/js/recentplugin.js
+share/nextcloud/apps/files/js/search.js
+share/nextcloud/apps/files/js/sidebarpreviewmanager.js
+share/nextcloud/apps/files/js/sidebarpreviewtext.js
+share/nextcloud/apps/files/js/tagsplugin.js
+share/nextcloud/apps/files/js/templates/detailsview.handlebars.js
+share/nextcloud/apps/files/js/upload.js
+share/nextcloud/apps/files/l10n/ach.js
+share/nextcloud/apps/files/l10n/ach.json
+share/nextcloud/apps/files/l10n/ady.js
+share/nextcloud/apps/files/l10n/ady.json
+share/nextcloud/apps/files/l10n/af_ZA.js
+share/nextcloud/apps/files/l10n/af_ZA.json
+share/nextcloud/apps/files/l10n/ak.js
+share/nextcloud/apps/files/l10n/ak.json
+share/nextcloud/apps/files/l10n/am_ET.js
+share/nextcloud/apps/files/l10n/am_ET.json
+share/nextcloud/apps/files/l10n/ar.js
+share/nextcloud/apps/files/l10n/ar.json
+share/nextcloud/apps/files/l10n/ast.js
+share/nextcloud/apps/files/l10n/ast.json
+share/nextcloud/apps/files/l10n/az.js
+share/nextcloud/apps/files/l10n/az.json
+share/nextcloud/apps/files/l10n/be.js
+share/nextcloud/apps/files/l10n/be.json
+share/nextcloud/apps/files/l10n/bg_BG.js
+share/nextcloud/apps/files/l10n/bg_BG.json
+share/nextcloud/apps/files/l10n/bn_BD.js
+share/nextcloud/apps/files/l10n/bn_BD.json
+share/nextcloud/apps/files/l10n/bn_IN.js
+share/nextcloud/apps/files/l10n/bn_IN.json
+share/nextcloud/apps/files/l10n/bs.js
+share/nextcloud/apps/files/l10n/bs.json
+share/nextcloud/apps/files/l10n/ca.js
+share/nextcloud/apps/files/l10n/ca.json
+share/nextcloud/apps/files/l10n/cs_CZ.js
+share/nextcloud/apps/files/l10n/cs_CZ.json
+share/nextcloud/apps/files/l10n/cy_GB.js
+share/nextcloud/apps/files/l10n/cy_GB.json
+share/nextcloud/apps/files/l10n/da.js
+share/nextcloud/apps/files/l10n/da.json
+share/nextcloud/apps/files/l10n/de.js
+share/nextcloud/apps/files/l10n/de.json
+share/nextcloud/apps/files/l10n/de_AT.js
+share/nextcloud/apps/files/l10n/de_AT.json
+share/nextcloud/apps/files/l10n/de_DE.js
+share/nextcloud/apps/files/l10n/de_DE.json
+share/nextcloud/apps/files/l10n/el.js
+share/nextcloud/apps/files/l10n/el.json
+share/nextcloud/apps/files/l10n/en_GB.js
+share/nextcloud/apps/files/l10n/en_GB.json
+share/nextcloud/apps/files/l10n/eo.js
+share/nextcloud/apps/files/l10n/eo.json
+share/nextcloud/apps/files/l10n/es.js
+share/nextcloud/apps/files/l10n/es.json
+share/nextcloud/apps/files/l10n/es_AR.js
+share/nextcloud/apps/files/l10n/es_AR.json
+share/nextcloud/apps/files/l10n/es_CL.js
+share/nextcloud/apps/files/l10n/es_CL.json
+share/nextcloud/apps/files/l10n/es_MX.js
+share/nextcloud/apps/files/l10n/es_MX.json
+share/nextcloud/apps/files/l10n/et_EE.js
+share/nextcloud/apps/files/l10n/et_EE.json
+share/nextcloud/apps/files/l10n/eu.js
+share/nextcloud/apps/files/l10n/eu.json
+share/nextcloud/apps/files/l10n/fa.js
+share/nextcloud/apps/files/l10n/fa.json
+share/nextcloud/apps/files/l10n/fi_FI.js
+share/nextcloud/apps/files/l10n/fi_FI.json
+share/nextcloud/apps/files/l10n/fil.js
+share/nextcloud/apps/files/l10n/fil.json
+share/nextcloud/apps/files/l10n/fr.js
+share/nextcloud/apps/files/l10n/fr.json
+share/nextcloud/apps/files/l10n/fy_NL.js
+share/nextcloud/apps/files/l10n/fy_NL.json
+share/nextcloud/apps/files/l10n/gl.js
+share/nextcloud/apps/files/l10n/gl.json
+share/nextcloud/apps/files/l10n/gu.js
+share/nextcloud/apps/files/l10n/gu.json
+share/nextcloud/apps/files/l10n/he.js
+share/nextcloud/apps/files/l10n/he.json
+share/nextcloud/apps/files/l10n/hi.js
+share/nextcloud/apps/files/l10n/hi.json
+share/nextcloud/apps/files/l10n/hr.js
+share/nextcloud/apps/files/l10n/hr.json
+share/nextcloud/apps/files/l10n/hu_HU.js
+share/nextcloud/apps/files/l10n/hu_HU.json
+share/nextcloud/apps/files/l10n/hy.js
+share/nextcloud/apps/files/l10n/hy.json
+share/nextcloud/apps/files/l10n/ia.js
+share/nextcloud/apps/files/l10n/ia.json
+share/nextcloud/apps/files/l10n/id.js
+share/nextcloud/apps/files/l10n/id.json
+share/nextcloud/apps/files/l10n/io.js
+share/nextcloud/apps/files/l10n/io.json
+share/nextcloud/apps/files/l10n/is.js
+share/nextcloud/apps/files/l10n/is.json
+share/nextcloud/apps/files/l10n/it.js
+share/nextcloud/apps/files/l10n/it.json
+share/nextcloud/apps/files/l10n/ja.js
+share/nextcloud/apps/files/l10n/ja.json
+share/nextcloud/apps/files/l10n/jv.js
+share/nextcloud/apps/files/l10n/jv.json
+share/nextcloud/apps/files/l10n/ka_GE.js
+share/nextcloud/apps/files/l10n/ka_GE.json
+share/nextcloud/apps/files/l10n/km.js
+share/nextcloud/apps/files/l10n/km.json
+share/nextcloud/apps/files/l10n/kn.js
+share/nextcloud/apps/files/l10n/kn.json
+share/nextcloud/apps/files/l10n/ko.js
+share/nextcloud/apps/files/l10n/ko.json
+share/nextcloud/apps/files/l10n/ku_IQ.js
+share/nextcloud/apps/files/l10n/ku_IQ.json
+share/nextcloud/apps/files/l10n/lb.js
+share/nextcloud/apps/files/l10n/lb.json
+share/nextcloud/apps/files/l10n/lo.js
+share/nextcloud/apps/files/l10n/lo.json
+share/nextcloud/apps/files/l10n/lt_LT.js
+share/nextcloud/apps/files/l10n/lt_LT.json
+share/nextcloud/apps/files/l10n/lv.js
+share/nextcloud/apps/files/l10n/lv.json
+share/nextcloud/apps/files/l10n/mg.js
+share/nextcloud/apps/files/l10n/mg.json
+share/nextcloud/apps/files/l10n/mk.js
+share/nextcloud/apps/files/l10n/mk.json
+share/nextcloud/apps/files/l10n/ml.js
+share/nextcloud/apps/files/l10n/ml.json
+share/nextcloud/apps/files/l10n/ml_IN.js
+share/nextcloud/apps/files/l10n/ml_IN.json
+share/nextcloud/apps/files/l10n/mn.js
+share/nextcloud/apps/files/l10n/mn.json
+share/nextcloud/apps/files/l10n/mr.js
+share/nextcloud/apps/files/l10n/mr.json
+share/nextcloud/apps/files/l10n/ms_MY.js
+share/nextcloud/apps/files/l10n/ms_MY.json
+share/nextcloud/apps/files/l10n/mt_MT.js
+share/nextcloud/apps/files/l10n/mt_MT.json
+share/nextcloud/apps/files/l10n/my_MM.js
+share/nextcloud/apps/files/l10n/my_MM.json
+share/nextcloud/apps/files/l10n/nb_NO.js
+share/nextcloud/apps/files/l10n/nb_NO.json
+share/nextcloud/apps/files/l10n/nds.js
+share/nextcloud/apps/files/l10n/nds.json
+share/nextcloud/apps/files/l10n/nl.js
+share/nextcloud/apps/files/l10n/nl.json
+share/nextcloud/apps/files/l10n/nn_NO.js
+share/nextcloud/apps/files/l10n/nn_NO.json
+share/nextcloud/apps/files/l10n/nqo.js
+share/nextcloud/apps/files/l10n/nqo.json
+share/nextcloud/apps/files/l10n/oc.js
+share/nextcloud/apps/files/l10n/oc.json
+share/nextcloud/apps/files/l10n/pa.js
+share/nextcloud/apps/files/l10n/pa.json
+share/nextcloud/apps/files/l10n/pl.js
+share/nextcloud/apps/files/l10n/pl.json
+share/nextcloud/apps/files/l10n/pt_BR.js
+share/nextcloud/apps/files/l10n/pt_BR.json
+share/nextcloud/apps/files/l10n/pt_PT.js
+share/nextcloud/apps/files/l10n/pt_PT.json
+share/nextcloud/apps/files/l10n/ro.js
+share/nextcloud/apps/files/l10n/ro.json
+share/nextcloud/apps/files/l10n/ru.js
+share/nextcloud/apps/files/l10n/ru.json
+share/nextcloud/apps/files/l10n/si_LK.js
+share/nextcloud/apps/files/l10n/si_LK.json
+share/nextcloud/apps/files/l10n/sk_SK.js
+share/nextcloud/apps/files/l10n/sk_SK.json
+share/nextcloud/apps/files/l10n/sl.js
+share/nextcloud/apps/files/l10n/sl.json
+share/nextcloud/apps/files/l10n/sq.js
+share/nextcloud/apps/files/l10n/sq.json
+share/nextcloud/apps/files/l10n/sr.js
+share/nextcloud/apps/files/l10n/sr.json
+share/nextcloud/apps/files/l10n/sr%latin.js@localhost
+share/nextcloud/apps/files/l10n/sr%latin.json@localhost
+share/nextcloud/apps/files/l10n/su.js
+share/nextcloud/apps/files/l10n/su.json
+share/nextcloud/apps/files/l10n/sv.js
+share/nextcloud/apps/files/l10n/sv.json
+share/nextcloud/apps/files/l10n/sw_KE.js
+share/nextcloud/apps/files/l10n/sw_KE.json
+share/nextcloud/apps/files/l10n/ta_IN.js
+share/nextcloud/apps/files/l10n/ta_IN.json
+share/nextcloud/apps/files/l10n/ta_LK.js
+share/nextcloud/apps/files/l10n/ta_LK.json
+share/nextcloud/apps/files/l10n/te.js
+share/nextcloud/apps/files/l10n/te.json
+share/nextcloud/apps/files/l10n/tg_TJ.js
+share/nextcloud/apps/files/l10n/tg_TJ.json
+share/nextcloud/apps/files/l10n/th_TH.js
+share/nextcloud/apps/files/l10n/th_TH.json
+share/nextcloud/apps/files/l10n/tl_PH.js
+share/nextcloud/apps/files/l10n/tl_PH.json
+share/nextcloud/apps/files/l10n/tr.js
+share/nextcloud/apps/files/l10n/tr.json
+share/nextcloud/apps/files/l10n/tzm.js
+share/nextcloud/apps/files/l10n/tzm.json
+share/nextcloud/apps/files/l10n/ug.js
+share/nextcloud/apps/files/l10n/ug.json
+share/nextcloud/apps/files/l10n/uk.js
+share/nextcloud/apps/files/l10n/uk.json
+share/nextcloud/apps/files/l10n/ur_PK.js
+share/nextcloud/apps/files/l10n/ur_PK.json
+share/nextcloud/apps/files/l10n/vi.js
+share/nextcloud/apps/files/l10n/vi.json
+share/nextcloud/apps/files/l10n/xgettextfiles
+share/nextcloud/apps/files/l10n/zh_CN.js
+share/nextcloud/apps/files/l10n/zh_CN.json
+share/nextcloud/apps/files/l10n/zh_HK.js
+share/nextcloud/apps/files/l10n/zh_HK.json
+share/nextcloud/apps/files/l10n/zh_TW.js
+share/nextcloud/apps/files/l10n/zh_TW.json
+share/nextcloud/apps/files/lib/Activity/FavoriteProvider.php
+share/nextcloud/apps/files/lib/Activity/Filter/Favorites.php
+share/nextcloud/apps/files/lib/Activity/Filter/FileChanges.php
+share/nextcloud/apps/files/lib/Activity/Helper.php
+share/nextcloud/apps/files/lib/Activity/Provider.php
+share/nextcloud/apps/files/lib/Activity/Settings/FavoriteAction.php
+share/nextcloud/apps/files/lib/Activity/Settings/FileChanged.php
+share/nextcloud/apps/files/lib/Activity/Settings/FileCreated.php
+share/nextcloud/apps/files/lib/Activity/Settings/FileDeleted.php
+share/nextcloud/apps/files/lib/Activity/Settings/FileFavorite.php
+share/nextcloud/apps/files/lib/Activity/Settings/FileRestored.php
+share/nextcloud/apps/files/lib/App.php
+share/nextcloud/apps/files/lib/AppInfo/Application.php
+share/nextcloud/apps/files/lib/BackgroundJob/CleanupFileLocks.php
+share/nextcloud/apps/files/lib/BackgroundJob/DeleteOrphanedItems.php
+share/nextcloud/apps/files/lib/BackgroundJob/ScanFiles.php
+share/nextcloud/apps/files/lib/Capabilities.php
+share/nextcloud/apps/files/lib/Command/DeleteOrphanedFiles.php
+share/nextcloud/apps/files/lib/Command/Scan.php
+share/nextcloud/apps/files/lib/Command/TransferOwnership.php
+share/nextcloud/apps/files/lib/Controller/ApiController.php
+share/nextcloud/apps/files/lib/Controller/SettingsController.php
+share/nextcloud/apps/files/lib/Controller/ViewController.php
+share/nextcloud/apps/files/lib/Helper.php
+share/nextcloud/apps/files/lib/Service/TagService.php
+share/nextcloud/apps/files/lib/Settings/Admin.php
+share/nextcloud/apps/files/list.php
+share/nextcloud/apps/files/recentlist.php
+share/nextcloud/apps/files/simplelist.php
+share/nextcloud/apps/files/templates/admin.php
+share/nextcloud/apps/files/templates/appnavigation.php
+share/nextcloud/apps/files/templates/fileexists.html
+share/nextcloud/apps/files/templates/index.php
+share/nextcloud/apps/files/templates/list.php
+share/nextcloud/apps/files/templates/recentlist.php
+share/nextcloud/apps/files/templates/simplelist.php
+share/nextcloud/apps/files_accesscontrol/appinfo/app.php
+share/nextcloud/apps/files_accesscontrol/appinfo/info.xml
+share/nextcloud/apps/files_accesscontrol/appinfo/signature.json
+share/nextcloud/apps/files_accesscontrol/img/app.svg
+share/nextcloud/apps/files_accesscontrol/js/admin.js
+share/nextcloud/apps/files_accesscontrol/l10n/.tx/config
+share/nextcloud/apps/files_accesscontrol/l10n/cs_CZ.js
+share/nextcloud/apps/files_accesscontrol/l10n/cs_CZ.json
+share/nextcloud/apps/files_accesscontrol/l10n/de.js
+share/nextcloud/apps/files_accesscontrol/l10n/de.json
+share/nextcloud/apps/files_accesscontrol/l10n/de_DE.js
+share/nextcloud/apps/files_accesscontrol/l10n/de_DE.json
+share/nextcloud/apps/files_accesscontrol/l10n/es.js
+share/nextcloud/apps/files_accesscontrol/l10n/es.json
+share/nextcloud/apps/files_accesscontrol/l10n/fi_FI.js
+share/nextcloud/apps/files_accesscontrol/l10n/fi_FI.json
+share/nextcloud/apps/files_accesscontrol/l10n/fr.js
+share/nextcloud/apps/files_accesscontrol/l10n/fr.json
+share/nextcloud/apps/files_accesscontrol/l10n/hu_HU.js
+share/nextcloud/apps/files_accesscontrol/l10n/hu_HU.json
+share/nextcloud/apps/files_accesscontrol/l10n/id.js
+share/nextcloud/apps/files_accesscontrol/l10n/id.json
+share/nextcloud/apps/files_accesscontrol/l10n/is.js
+share/nextcloud/apps/files_accesscontrol/l10n/is.json
+share/nextcloud/apps/files_accesscontrol/l10n/it.js
+share/nextcloud/apps/files_accesscontrol/l10n/it.json
+share/nextcloud/apps/files_accesscontrol/l10n/ja.js
+share/nextcloud/apps/files_accesscontrol/l10n/ja.json
+share/nextcloud/apps/files_accesscontrol/l10n/nb_NO.js
+share/nextcloud/apps/files_accesscontrol/l10n/nb_NO.json
+share/nextcloud/apps/files_accesscontrol/l10n/nl.js
+share/nextcloud/apps/files_accesscontrol/l10n/nl.json
+share/nextcloud/apps/files_accesscontrol/l10n/pl.js
+share/nextcloud/apps/files_accesscontrol/l10n/pl.json
+share/nextcloud/apps/files_accesscontrol/l10n/pt_BR.js
+share/nextcloud/apps/files_accesscontrol/l10n/pt_BR.json
+share/nextcloud/apps/files_accesscontrol/l10n/ru.js
+share/nextcloud/apps/files_accesscontrol/l10n/ru.json
+share/nextcloud/apps/files_accesscontrol/l10n/tr.js
+share/nextcloud/apps/files_accesscontrol/l10n/tr.json
+share/nextcloud/apps/files_accesscontrol/lib/AppInfo/Application.php
+share/nextcloud/apps/files_accesscontrol/lib/CacheWrapper.php
+share/nextcloud/apps/files_accesscontrol/lib/Operation.php
+share/nextcloud/apps/files_accesscontrol/lib/Settings/Admin.php
+share/nextcloud/apps/files_accesscontrol/lib/Settings/Section.php
+share/nextcloud/apps/files_accesscontrol/lib/StorageWrapper.php
+share/nextcloud/apps/files_automatedtagging/appinfo/app.php
+share/nextcloud/apps/files_automatedtagging/appinfo/info.xml
+share/nextcloud/apps/files_automatedtagging/appinfo/signature.json
+share/nextcloud/apps/files_automatedtagging/img/app.svg
+share/nextcloud/apps/files_automatedtagging/js/admin.js
+share/nextcloud/apps/files_automatedtagging/l10n/.tx/config
+share/nextcloud/apps/files_automatedtagging/l10n/cs_CZ.js
+share/nextcloud/apps/files_automatedtagging/l10n/cs_CZ.json
+share/nextcloud/apps/files_automatedtagging/l10n/de.js
+share/nextcloud/apps/files_automatedtagging/l10n/de.json
+share/nextcloud/apps/files_automatedtagging/l10n/de_DE.js
+share/nextcloud/apps/files_automatedtagging/l10n/de_DE.json
+share/nextcloud/apps/files_automatedtagging/l10n/es.js
+share/nextcloud/apps/files_automatedtagging/l10n/es.json
+share/nextcloud/apps/files_automatedtagging/l10n/fr.js
+share/nextcloud/apps/files_automatedtagging/l10n/fr.json
+share/nextcloud/apps/files_automatedtagging/l10n/hu_HU.js
+share/nextcloud/apps/files_automatedtagging/l10n/hu_HU.json
+share/nextcloud/apps/files_automatedtagging/l10n/id.js
+share/nextcloud/apps/files_automatedtagging/l10n/id.json
+share/nextcloud/apps/files_automatedtagging/l10n/is.js
+share/nextcloud/apps/files_automatedtagging/l10n/is.json
+share/nextcloud/apps/files_automatedtagging/l10n/it.js
+share/nextcloud/apps/files_automatedtagging/l10n/it.json
+share/nextcloud/apps/files_automatedtagging/l10n/ja.js
+share/nextcloud/apps/files_automatedtagging/l10n/ja.json
+share/nextcloud/apps/files_automatedtagging/l10n/ko.js
+share/nextcloud/apps/files_automatedtagging/l10n/ko.json
+share/nextcloud/apps/files_automatedtagging/l10n/nb_NO.js
+share/nextcloud/apps/files_automatedtagging/l10n/nb_NO.json
+share/nextcloud/apps/files_automatedtagging/l10n/nl.js
+share/nextcloud/apps/files_automatedtagging/l10n/nl.json
+share/nextcloud/apps/files_automatedtagging/l10n/pl.js
+share/nextcloud/apps/files_automatedtagging/l10n/pl.json
+share/nextcloud/apps/files_automatedtagging/l10n/pt_BR.js
+share/nextcloud/apps/files_automatedtagging/l10n/pt_BR.json
+share/nextcloud/apps/files_automatedtagging/l10n/ru.js
+share/nextcloud/apps/files_automatedtagging/l10n/ru.json
+share/nextcloud/apps/files_automatedtagging/l10n/tr.js
+share/nextcloud/apps/files_automatedtagging/l10n/tr.json
+share/nextcloud/apps/files_automatedtagging/lib/AppInfo/Application.php
+share/nextcloud/apps/files_automatedtagging/lib/CacheWrapper.php
+share/nextcloud/apps/files_automatedtagging/lib/Operation.php
+share/nextcloud/apps/files_automatedtagging/lib/Settings/Admin.php
+share/nextcloud/apps/files_automatedtagging/lib/StorageWrapper.php
+share/nextcloud/apps/files_external/3rdparty/.gitignore
+share/nextcloud/apps/files_external/3rdparty/Dropbox/API.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/Exception.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/Exception/Forbidden.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/Exception/NotFound.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/Exception/OverQuota.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/Exception/RequestToken.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/OAuth.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/OAuth/Consumer/Dropbox.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/OAuth/Curl.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/OAuth/PEAR.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/OAuth/PHP.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/OAuth/Wordpress.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/OAuth/Zend.php
+share/nextcloud/apps/files_external/3rdparty/Dropbox/OAuth/ca-bundle.pem
+share/nextcloud/apps/files_external/3rdparty/Dropbox/autoload.php
+share/nextcloud/apps/files_external/3rdparty/autoload.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Aws.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Client/AbstractClient.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Client/AwsClientInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Client/ClientBuilder.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Client/DefaultClient.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Client/ExpiredCredentialsChecker.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Client/ThrottlingErrorChecker.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Client/UploadBodyListener.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Client/UserAgentListener.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Command/AwsQueryVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Command/JsonCommand.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Command/QueryCommand.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Command/XmlResponseLocationVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Credentials/AbstractCredentialsDecorator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Credentials/AbstractRefreshableCredentials.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Credentials/CacheableCredentials.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Credentials/Credentials.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Credentials/CredentialsInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Credentials/NullCredentials.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Credentials/RefreshableInstanceProfileCredentials.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Enum.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Enum/ClientOptions.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Enum/DateFormat.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Enum/Region.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Enum/Size.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Enum/Time.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Enum/UaString.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/AwsExceptionInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/BadMethodCallException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/DomainException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/ExceptionFactoryInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/ExceptionListener.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/InstanceProfileCredentialsException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/InvalidArgumentException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/LogicException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/MultipartUploadException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/NamespaceExceptionFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/OutOfBoundsException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/OverflowException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/Parser/AbstractJsonExceptionParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/Parser/DefaultXmlExceptionParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/Parser/ExceptionParserInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/Parser/JsonQueryExceptionParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/Parser/JsonRestExceptionParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/RequiredExtensionNotLoadedException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/RuntimeException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/ServiceResponseException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/TransferException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Exception/UnexpectedValueException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Facade/Facade.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Facade/FacadeInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Facade/facade-classes.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Hash/ChunkHash.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Hash/ChunkHashInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Hash/HashUtils.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Hash/TreeHash.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/HostNameUtils.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/InstanceMetadata/InstanceMetadataClient.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/InstanceMetadata/Waiter/ServiceAvailable.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Iterator/AwsResourceIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Iterator/AwsResourceIteratorFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Model/MultipartUpload/AbstractTransfer.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Model/MultipartUpload/AbstractTransferState.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Model/MultipartUpload/AbstractUploadBuilder.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Model/MultipartUpload/AbstractUploadId.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Model/MultipartUpload/AbstractUploadPart.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Model/MultipartUpload/TransferInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Model/MultipartUpload/TransferStateInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Model/MultipartUpload/UploadIdInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Model/MultipartUpload/UploadPartInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Resources/aws-config.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Resources/public-endpoints.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Resources/sdk1-config.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/RulesEndpointProvider.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Signature/AbstractSignature.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Signature/EndpointSignatureInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Signature/SignatureInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Signature/SignatureListener.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Signature/SignatureV2.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Signature/SignatureV3Https.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Signature/SignatureV4.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Waiter/AbstractResourceWaiter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Waiter/AbstractWaiter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Waiter/CallableWaiter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Waiter/CompositeWaiterFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Waiter/ConfigResourceWaiter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Waiter/ResourceWaiterInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Waiter/WaiterClassFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Waiter/WaiterConfig.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Waiter/WaiterConfigFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Waiter/WaiterFactoryInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Waiter/WaiterInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/AcpListener.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/BucketStyleListener.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Command/S3Command.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/CannedAcl.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/EncodingType.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/Event.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/GranteeType.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/Group.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/MFADelete.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/MetadataDirective.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/Payer.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/Permission.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/Protocol.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/ServerSideEncryption.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/Status.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/Storage.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Enum/StorageClass.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/AccessDeniedException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/AccountProblemException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/AmbiguousGrantByEmailAddressException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/BadDigestException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/BucketAlreadyExistsException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/BucketAlreadyOwnedByYouException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/BucketNotEmptyException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/CredentialsNotSupportedException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/CrossLocationLoggingProhibitedException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/DeleteMultipleObjectsException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/EntityTooLargeException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/EntityTooSmallException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/ExpiredTokenException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/IllegalVersioningConfigurationException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/IncompleteBodyException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/IncorrectNumberOfFilesInPostRequestException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InlineDataTooLargeException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InternalErrorException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidAccessKeyIdException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidAddressingHeaderException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidArgumentException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidBucketNameException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidBucketStateException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidDigestException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidLocationConstraintException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidPartException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidPartOrderException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidPayerException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidPolicyDocumentException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidRangeException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidRequestException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidSOAPRequestException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidSecurityException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidStorageClassException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidTagErrorException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidTargetBucketForLoggingException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidTokenException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/InvalidURIException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/KeyTooLongException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MalformedACLErrorException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MalformedPOSTRequestException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MalformedXMLException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MaxMessageLengthExceededException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MaxPostPreDataLengthExceededErrorException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MetadataTooLargeException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MethodNotAllowedException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MissingAttachmentException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MissingContentLengthException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MissingRequestBodyErrorException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MissingSecurityElementException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/MissingSecurityHeaderException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NoLoggingStatusForKeyException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NoSuchBucketException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NoSuchBucketPolicyException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NoSuchCORSConfigurationException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NoSuchKeyException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NoSuchLifecycleConfigurationException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NoSuchTagSetErrorException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NoSuchUploadException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NoSuchVersionException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NoSuchWebsiteConfigurationException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NotImplementedException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NotSignedUpException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/NotSuchBucketPolicyException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/ObjectAlreadyInActiveTierErrorException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/ObjectNotInActiveTierErrorException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/OperationAbortedException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/Parser/S3ExceptionParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/PermanentRedirectException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/PreconditionFailedException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/RedirectException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/RequestIsNotMultiPartContentException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/RequestTimeTooSkewedException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/RequestTimeoutException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/RequestTorrentOfBucketErrorException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/S3Exception.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/ServiceUnavailableException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/SignatureDoesNotMatchException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/SlowDownException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/TemporaryRedirectException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/TokenRefreshRequiredException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/TooManyBucketsException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/UnexpectedContentException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/UnresolvableGrantByEmailAddressException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Exception/UserKeyMustBeSpecifiedException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Iterator/ListBucketsIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Iterator/ListMultipartUploadsIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Iterator/ListObjectVersionsIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Iterator/ListObjectsIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Iterator/OpendirIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/Acp.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/AcpBuilder.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/ClearBucket.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/DeleteObjectsBatch.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/DeleteObjectsTransfer.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/Grant.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/Grantee.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/MultipartUpload/AbstractTransfer.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/MultipartUpload/ParallelTransfer.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/MultipartUpload/SerialTransfer.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/MultipartUpload/TransferState.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/MultipartUpload/UploadBuilder.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/MultipartUpload/UploadId.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/MultipartUpload/UploadPart.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Model/PostObject.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Resources/s3-2006-03-01.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/ResumableDownload.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/S3Client.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/S3Md5Listener.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/S3Signature.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/S3SignatureInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/S3SignatureV4.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/SocketTimeoutChecker.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/SseCpkListener.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/StreamWrapper.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Sync/AbstractSync.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Sync/AbstractSyncBuilder.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Sync/ChangedFilesIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Sync/DownloadSync.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Sync/DownloadSyncBuilder.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Sync/FilenameConverterInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Sync/KeyConverter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Sync/UploadSync.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Aws/S3/Sync/UploadSyncBuilder.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/AbstractBatchDecorator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/Batch.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchBuilder.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchClosureDivisor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchClosureTransfer.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchCommandTransfer.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchDivisorInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchRequestTransfer.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchSizeDivisor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchTransferInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/Exception/BatchTransferException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/ExceptionBufferingBatch.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/FlushingBatch.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/HistoryBatch.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/NotifyingBatch.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/AbstractCacheAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/CacheAdapterFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/CacheAdapterInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/ClosureCacheAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/DoctrineCacheAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/NullCacheAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/Zf1CacheAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/Zf2CacheAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Cache/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/AbstractHasDispatcher.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Collection.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Event.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Exception/BadMethodCallException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Exception/ExceptionCollection.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Exception/GuzzleException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Exception/InvalidArgumentException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Exception/RuntimeException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Exception/UnexpectedValueException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/FromConfigInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/HasDispatcherInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/ToArrayInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Version.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/AbstractEntityBodyDecorator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/CachingEntityBody.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Client.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/ClientInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Curl/CurlHandle.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Curl/CurlMulti.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Curl/CurlMultiInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Curl/CurlMultiProxy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Curl/CurlVersion.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Curl/RequestMediator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/EntityBody.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/EntityBodyInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Exception/BadResponseException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Exception/ClientErrorResponseException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Exception/CouldNotRewindStreamException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Exception/CurlException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Exception/HttpException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Exception/MultiTransferException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Exception/RequestException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Exception/ServerErrorResponseException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Exception/TooManyRedirectsException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/IoEmittingEntityBody.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/AbstractMessage.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/EntityEnclosingRequest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/EntityEnclosingRequestInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/Header.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/Header/CacheControl.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/Header/HeaderCollection.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/Header/HeaderFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/Header/HeaderFactoryInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/Header/HeaderInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/Header/Link.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/MessageInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/PostFile.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/PostFileInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/Request.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/RequestFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/RequestFactoryInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/RequestInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Message/Response.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Mimetypes.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/QueryAggregator/CommaAggregator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/QueryAggregator/DuplicateAggregator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/QueryAggregator/PhpAggregator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/QueryString.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/ReadLimitEntityBody.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/RedirectPlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Resources/cacert.pem
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/StaticClient.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/Url.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Http/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Inflection/Inflector.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Inflection/InflectorInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Inflection/MemoizingInflector.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Inflection/PreComputedInflector.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Inflection/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Iterator/AppendIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Iterator/ChunkedIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Iterator/FilterIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Iterator/MapIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Iterator/MethodProxyIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Iterator/README.md
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Iterator/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Log/AbstractLogAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Log/ArrayLogAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Log/ClosureLogAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Log/LogAdapterInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Log/MessageFormatter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Log/MonologLogAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Log/PsrLogAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Log/Zf1LogAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Log/Zf2LogAdapter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Log/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/Cookie/CookieParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/Cookie/CookieParserInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/Message/AbstractMessageParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/Message/MessageParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/Message/MessageParserInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/Message/PeclHttpMessageParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/ParserRegistry.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/UriTemplate/PeclUriTemplate.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/UriTemplate/UriTemplate.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/UriTemplate/UriTemplateInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/Url/UrlParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/Url/UrlParserInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Parser/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Async/AsyncPlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Async/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/BackoffLogger.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/BackoffPlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Backoff/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CachePlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CacheStorageInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/DefaultCacheStorage.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/DefaultRevalidation.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/DenyRevalidation.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/RevalidationInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/SkipRevalidation.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cache/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cookie/Cookie.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cookie/CookiePlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Cookie/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/CurlAuth/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/ErrorResponse/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/History/HistoryPlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/History/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Log/LogPlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Log/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Md5/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Mock/MockPlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Mock/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Oauth/OauthPlugin.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/Oauth/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Plugin/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/AbstractConfigLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Builder/ServiceBuilder.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Builder/ServiceBuilderInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Builder/ServiceBuilderLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/CachingConfigLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Client.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/ClientInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/AbstractCommand.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/ClosureCommand.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/CommandInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/CreateResponseClassEvent.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/DefaultRequestSerializer.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/DefaultResponseParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/Factory/AliasFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/Factory/CompositeFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/Factory/ConcreteClassFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/Factory/FactoryInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/Factory/MapFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/OperationCommand.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/OperationResponseParser.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/RequestSerializerInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/ResponseClassInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/ResponseParserInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/ConfigLoaderInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Description/Operation.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Description/OperationInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Description/Parameter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Description/SchemaFormatter.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Description/SchemaValidator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Description/ServiceDescription.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Description/ServiceDescriptionInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Description/ServiceDescriptionLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Description/ValidatorInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/CommandException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/CommandTransferException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/DescriptionBuilderException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/InconsistentClientTransferException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/ResponseClassException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/ServiceBuilderException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/ServiceNotFoundException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/ValidationException.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Resource/MapResourceIteratorFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Resource/Model.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Resource/ResourceIterator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Resource/ResourceIteratorClassFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Resource/ResourceIteratorInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Stream/PhpStreamRequestFactory.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Stream/Stream.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Stream/StreamInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Stream/StreamRequestFactoryInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Stream/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/.gitignore
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/ApcClassLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/ApcUniversalClassLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/CHANGELOG.md
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/ClassCollectionLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/ClassLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/ClassMapGenerator.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/DebugClassLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/DebugUniversalClassLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/LICENSE
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/MapClassLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Psr4ClassLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/README.md
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/ApcUniversalClassLoaderTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/ClassCollectionLoaderTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/ClassLoaderTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/ClassMapGeneratorTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/Namespaced/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/Namespaced/Baz.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/Namespaced/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/Namespaced/FooBar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/Pearlike/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/Pearlike/Baz.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/Pearlike/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/alpha/Apc/ApcPrefixCollision/A/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/alpha/Apc/ApcPrefixCollision/A/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/alpha/Apc/NamespaceCollision/A/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/alpha/Apc/NamespaceCollision/A/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/beta/Apc/ApcPrefixCollision/A/B/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/beta/Apc/ApcPrefixCollision/A/B/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/beta/Apc/NamespaceCollision/A/B/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/beta/Apc/NamespaceCollision/A/B/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/fallback/Apc/Pearlike/FooBar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/fallback/Namespaced/FooBar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/ClassesWithParents/A.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/ClassesWithParents/ATrait.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/ClassesWithParents/B.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/ClassesWithParents/BTrait.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/ClassesWithParents/CInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/ClassesWithParents/CTrait.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/ClassesWithParents/D.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/ClassesWithParents/E.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/ClassesWithParents/GInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Namespaced/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Namespaced/Baz.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Namespaced/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Namespaced/WithComments.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Namespaced2/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Namespaced2/Baz.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Namespaced2/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Pearlike/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Pearlike/Baz.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Pearlike/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Pearlike/WithComments.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Pearlike2/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Pearlike2/Baz.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/Pearlike2/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/alpha/NamespaceCollision/A/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/alpha/NamespaceCollision/A/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/alpha/NamespaceCollision/C/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/alpha/NamespaceCollision/C/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/alpha/PrefixCollision/A/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/alpha/PrefixCollision/A/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/alpha/PrefixCollision/C/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/alpha/PrefixCollision/C/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/beta/NamespaceCollision/A/B/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/beta/NamespaceCollision/A/B/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/beta/NamespaceCollision/C/B/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/beta/NamespaceCollision/C/B/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/beta/PrefixCollision/A/B/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/beta/PrefixCollision/A/B/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/beta/PrefixCollision/C/B/Bar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/beta/PrefixCollision/C/B/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/classmap/SomeClass.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/classmap/SomeInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/classmap/SomeParent.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/classmap/multipleNs.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/classmap/notAClass.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/classmap/notPhpFile.md
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/classmap/sameNsMultipleClasses.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/deps/traits.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/fallback/Namespaced/FooBar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/fallback/Namespaced2/FooBar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/fallback/Pearlike/FooBar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/fallback/Pearlike2/FooBar.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/includepath/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/php5.4/traits.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/psr-4/Class_With_Underscores.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/psr-4/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/psr-4/Lets/Go/Deeper/Class_With_Underscores.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Fixtures/psr-4/Lets/Go/Deeper/Foo.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/Psr4ClassLoaderTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/Tests/UniversalClassLoaderTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/UniversalClassLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/WinCacheClassLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/XcacheClassLoader.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/ClassLoader/phpunit.xml.dist
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/.gitignore
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/CHANGELOG.md
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/ContainerAwareEventDispatcher.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcherInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/Debug/WrappedListener.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/DependencyInjection/RegisterListenersPass.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/Event.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/EventDispatcher.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/EventDispatcherInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/EventSubscriberInterface.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/GenericEvent.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/ImmutableEventDispatcher.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/LICENSE
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/README.md
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/Tests/ContainerAwareEventDispatcherTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/Tests/Debug/TraceableEventDispatcherTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/Tests/EventDispatcherTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/Tests/EventTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/Tests/GenericEventTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/Tests/ImmutableEventDispatcherTest.php
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/composer.json
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher/phpunit.xml.dist
+share/nextcloud/apps/files_external/3rdparty/aws-sdk-php/aws-autoloader.php
+share/nextcloud/apps/files_external/3rdparty/composer.json
+share/nextcloud/apps/files_external/3rdparty/composer.lock
+share/nextcloud/apps/files_external/3rdparty/composer/ClassLoader.php
+share/nextcloud/apps/files_external/3rdparty/composer/LICENSE
+share/nextcloud/apps/files_external/3rdparty/composer/autoload_classmap.php
+share/nextcloud/apps/files_external/3rdparty/composer/autoload_namespaces.php
+share/nextcloud/apps/files_external/3rdparty/composer/autoload_psr4.php
+share/nextcloud/apps/files_external/3rdparty/composer/autoload_real.php
+share/nextcloud/apps/files_external/3rdparty/composer/installed.json
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/LICENSE
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/README.md
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/Abstract.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/AppIdentity.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/AssertionCredentials.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/ComputeEngine.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/Exception.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/LoginTicket.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/OAuth2.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/Simple.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Abstract.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Apc.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Exception.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/File.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Memcache.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Null.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Client.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Collection.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Config.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Exception.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/Batch.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/CacheParser.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/MediaFileUpload.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/REST.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/Request.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Abstract.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Curl.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Exception.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Stream.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/cacerts.pem
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Abstract.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Exception.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/File.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Null.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Psr.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Model.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdExchangeBuyer.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdExchangeSeller.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdSense.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdSenseHost.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Admin.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Analytics.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AndroidEnterprise.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AndroidPublisher.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AppState.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Appengine.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Appsactivity.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Audit.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Autoscaler.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Bigquery.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Blogger.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Books.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Calendar.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/CivicInfo.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Classroom.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/CloudMonitoring.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/CloudUserAccounts.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudbilling.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Clouddebugger.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudlatencytest.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudresourcemanager.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudsearch.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudtrace.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Compute.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Computeaccounts.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Container.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Coordinate.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Customsearch.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/DataTransfer.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Dataflow.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Datastore.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/DeploymentManager.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Dfareporting.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Directory.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Dns.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/DoubleClickBidManager.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Doubleclicksearch.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Drive.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Exception.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Fitness.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Freebase.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Fusiontables.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Games.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/GamesConfiguration.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/GamesManagement.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Genomics.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Gmail.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/GroupsMigration.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Groupssettings.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/IdentityToolkit.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Licensing.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Logging.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Manager.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/MapsEngine.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Mirror.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Oauth2.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Pagespeedonline.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Partners.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Playmoviespartner.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Plus.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/PlusDomains.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Prediction.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Proximitybeacon.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Pubsub.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/QPXExpress.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Replicapool.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Replicapoolupdater.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Reports.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Reseller.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Resource.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Resourceviews.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/SQLAdmin.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Script.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/ShoppingContent.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/SiteVerification.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Spectrum.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Storage.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Storagetransfer.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/TagManager.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Taskqueue.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Tasks.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Translate.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Urlshortener.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Webfonts.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Webmasters.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/YouTube.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/YouTubeAnalytics.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/YouTubeReporting.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Signer/Abstract.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Signer/P12.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Task/Exception.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Task/Retryable.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Task/Runner.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Utils.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Utils/URITemplate.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Verifier/Abstract.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/Verifier/Pem.php
+share/nextcloud/apps/files_external/3rdparty/google-api-php-client/src/Google/autoload.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/.gitignore
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/LICENSE.txt
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/README.md
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/composer.json
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/AbstractShare.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Connection.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/ErrorCodes.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/AccessDeniedException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/AlreadyExistsException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/AuthenticationException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectionException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectionRefusedException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/Exception.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/FileInUseException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/ForbiddenException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/HostDownException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidHostException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidPathException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidRequestException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidResourceException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidTypeException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/NoLoginServerException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/NoRouteToHostException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/NotEmptyException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/NotFoundException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Exception/TimedOutException.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/FileInfo.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/IFileInfo.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/IShare.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/NativeFileInfo.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/NativeServer.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/NativeShare.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/NativeState.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/NativeStream.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Parser.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/RawConnection.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Server.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/Share.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/System.php
+share/nextcloud/apps/files_external/3rdparty/icewind/smb/src/TimeZoneProvider.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams-dummy/composer.json
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/.gitignore
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/.travis.yml
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/LICENCE
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/README.md
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/composer.json
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/CallbackWrapper.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/Directory.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/DirectoryFilter.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/DirectoryWrapper.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/File.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/IteratorDirectory.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/NullWrapper.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/Path.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/RetryWrapper.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/SeekableWrapper.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/Url.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/UrlCallBack.php
+share/nextcloud/apps/files_external/3rdparty/icewind/streams/src/Wrapper.php
+share/nextcloud/apps/files_external/ajax/applicable.php
+share/nextcloud/apps/files_external/ajax/oauth1.php
+share/nextcloud/apps/files_external/ajax/oauth2.php
+share/nextcloud/apps/files_external/appinfo/app.php
+share/nextcloud/apps/files_external/appinfo/database.xml
+share/nextcloud/apps/files_external/appinfo/info.xml
+share/nextcloud/apps/files_external/appinfo/routes.php
+share/nextcloud/apps/files_external/appinfo/signature.json
+share/nextcloud/apps/files_external/appinfo/update.php
+share/nextcloud/apps/files_external/css/external.css
+share/nextcloud/apps/files_external/css/settings.css
+share/nextcloud/apps/files_external/img/app.svg
+share/nextcloud/apps/files_external/js/app.js
+share/nextcloud/apps/files_external/js/dropbox.js
+share/nextcloud/apps/files_external/js/gdrive.js
+share/nextcloud/apps/files_external/js/mountsfilelist.js
+share/nextcloud/apps/files_external/js/oauth1.js
+share/nextcloud/apps/files_external/js/oauth2.js
+share/nextcloud/apps/files_external/js/public_key.js
+share/nextcloud/apps/files_external/js/rollingqueue.js
+share/nextcloud/apps/files_external/js/settings.js
+share/nextcloud/apps/files_external/js/statusmanager.js
+share/nextcloud/apps/files_external/l10n/.gitkeep
+share/nextcloud/apps/files_external/l10n/af_ZA.js
+share/nextcloud/apps/files_external/l10n/af_ZA.json
+share/nextcloud/apps/files_external/l10n/ar.js
+share/nextcloud/apps/files_external/l10n/ar.json
+share/nextcloud/apps/files_external/l10n/ast.js
+share/nextcloud/apps/files_external/l10n/ast.json
+share/nextcloud/apps/files_external/l10n/az.js
+share/nextcloud/apps/files_external/l10n/az.json
+share/nextcloud/apps/files_external/l10n/bg_BG.js
+share/nextcloud/apps/files_external/l10n/bg_BG.json
+share/nextcloud/apps/files_external/l10n/bn_BD.js
+share/nextcloud/apps/files_external/l10n/bn_BD.json
+share/nextcloud/apps/files_external/l10n/bn_IN.js
+share/nextcloud/apps/files_external/l10n/bn_IN.json
+share/nextcloud/apps/files_external/l10n/bs.js
+share/nextcloud/apps/files_external/l10n/bs.json
+share/nextcloud/apps/files_external/l10n/ca.js
+share/nextcloud/apps/files_external/l10n/ca.json
+share/nextcloud/apps/files_external/l10n/cs_CZ.js
+share/nextcloud/apps/files_external/l10n/cs_CZ.json
+share/nextcloud/apps/files_external/l10n/cy_GB.js
+share/nextcloud/apps/files_external/l10n/cy_GB.json
+share/nextcloud/apps/files_external/l10n/da.js
+share/nextcloud/apps/files_external/l10n/da.json
+share/nextcloud/apps/files_external/l10n/de.js
+share/nextcloud/apps/files_external/l10n/de.json
+share/nextcloud/apps/files_external/l10n/de_AT.js
+share/nextcloud/apps/files_external/l10n/de_AT.json
+share/nextcloud/apps/files_external/l10n/de_DE.js
+share/nextcloud/apps/files_external/l10n/de_DE.json
+share/nextcloud/apps/files_external/l10n/el.js
+share/nextcloud/apps/files_external/l10n/el.json
+share/nextcloud/apps/files_external/l10n/en_GB.js
+share/nextcloud/apps/files_external/l10n/en_GB.json
+share/nextcloud/apps/files_external/l10n/eo.js
+share/nextcloud/apps/files_external/l10n/eo.json
+share/nextcloud/apps/files_external/l10n/es.js
+share/nextcloud/apps/files_external/l10n/es.json
+share/nextcloud/apps/files_external/l10n/es_AR.js
+share/nextcloud/apps/files_external/l10n/es_AR.json
+share/nextcloud/apps/files_external/l10n/es_CL.js
+share/nextcloud/apps/files_external/l10n/es_CL.json
+share/nextcloud/apps/files_external/l10n/es_MX.js
+share/nextcloud/apps/files_external/l10n/es_MX.json
+share/nextcloud/apps/files_external/l10n/et_EE.js
+share/nextcloud/apps/files_external/l10n/et_EE.json
+share/nextcloud/apps/files_external/l10n/eu.js
+share/nextcloud/apps/files_external/l10n/eu.json
+share/nextcloud/apps/files_external/l10n/fa.js
+share/nextcloud/apps/files_external/l10n/fa.json
+share/nextcloud/apps/files_external/l10n/fi_FI.js
+share/nextcloud/apps/files_external/l10n/fi_FI.json
+share/nextcloud/apps/files_external/l10n/fil.js
+share/nextcloud/apps/files_external/l10n/fil.json
+share/nextcloud/apps/files_external/l10n/fr.js
+share/nextcloud/apps/files_external/l10n/fr.json
+share/nextcloud/apps/files_external/l10n/gl.js
+share/nextcloud/apps/files_external/l10n/gl.json
+share/nextcloud/apps/files_external/l10n/he.js
+share/nextcloud/apps/files_external/l10n/he.json
+share/nextcloud/apps/files_external/l10n/hi.js
+share/nextcloud/apps/files_external/l10n/hi.json
+share/nextcloud/apps/files_external/l10n/hr.js
+share/nextcloud/apps/files_external/l10n/hr.json
+share/nextcloud/apps/files_external/l10n/hu_HU.js
+share/nextcloud/apps/files_external/l10n/hu_HU.json
+share/nextcloud/apps/files_external/l10n/hy.js
+share/nextcloud/apps/files_external/l10n/hy.json
+share/nextcloud/apps/files_external/l10n/ia.js
+share/nextcloud/apps/files_external/l10n/ia.json
+share/nextcloud/apps/files_external/l10n/id.js
+share/nextcloud/apps/files_external/l10n/id.json
+share/nextcloud/apps/files_external/l10n/is.js
+share/nextcloud/apps/files_external/l10n/is.json
+share/nextcloud/apps/files_external/l10n/it.js
+share/nextcloud/apps/files_external/l10n/it.json
+share/nextcloud/apps/files_external/l10n/ja.js
+share/nextcloud/apps/files_external/l10n/ja.json
+share/nextcloud/apps/files_external/l10n/jv.js
+share/nextcloud/apps/files_external/l10n/jv.json
+share/nextcloud/apps/files_external/l10n/ka_GE.js
+share/nextcloud/apps/files_external/l10n/ka_GE.json
+share/nextcloud/apps/files_external/l10n/km.js
+share/nextcloud/apps/files_external/l10n/km.json
+share/nextcloud/apps/files_external/l10n/kn.js
+share/nextcloud/apps/files_external/l10n/kn.json
+share/nextcloud/apps/files_external/l10n/ko.js
+share/nextcloud/apps/files_external/l10n/ko.json
+share/nextcloud/apps/files_external/l10n/ku_IQ.js
+share/nextcloud/apps/files_external/l10n/ku_IQ.json
+share/nextcloud/apps/files_external/l10n/lb.js
+share/nextcloud/apps/files_external/l10n/lb.json
+share/nextcloud/apps/files_external/l10n/lt_LT.js
+share/nextcloud/apps/files_external/l10n/lt_LT.json
+share/nextcloud/apps/files_external/l10n/lv.js
+share/nextcloud/apps/files_external/l10n/lv.json
+share/nextcloud/apps/files_external/l10n/mk.js
+share/nextcloud/apps/files_external/l10n/mk.json
+share/nextcloud/apps/files_external/l10n/mn.js
+share/nextcloud/apps/files_external/l10n/mn.json
+share/nextcloud/apps/files_external/l10n/ms_MY.js
+share/nextcloud/apps/files_external/l10n/ms_MY.json
+share/nextcloud/apps/files_external/l10n/my_MM.js
+share/nextcloud/apps/files_external/l10n/my_MM.json
+share/nextcloud/apps/files_external/l10n/nb_NO.js
+share/nextcloud/apps/files_external/l10n/nb_NO.json
+share/nextcloud/apps/files_external/l10n/nds.js
+share/nextcloud/apps/files_external/l10n/nds.json
+share/nextcloud/apps/files_external/l10n/nl.js
+share/nextcloud/apps/files_external/l10n/nl.json
+share/nextcloud/apps/files_external/l10n/nn_NO.js
+share/nextcloud/apps/files_external/l10n/nn_NO.json
+share/nextcloud/apps/files_external/l10n/oc.js
+share/nextcloud/apps/files_external/l10n/oc.json
+share/nextcloud/apps/files_external/l10n/pa.js
+share/nextcloud/apps/files_external/l10n/pa.json
+share/nextcloud/apps/files_external/l10n/pl.js
+share/nextcloud/apps/files_external/l10n/pl.json
+share/nextcloud/apps/files_external/l10n/pt_BR.js
+share/nextcloud/apps/files_external/l10n/pt_BR.json
+share/nextcloud/apps/files_external/l10n/pt_PT.js
+share/nextcloud/apps/files_external/l10n/pt_PT.json
+share/nextcloud/apps/files_external/l10n/ro.js
+share/nextcloud/apps/files_external/l10n/ro.json
+share/nextcloud/apps/files_external/l10n/ru.js
+share/nextcloud/apps/files_external/l10n/ru.json
+share/nextcloud/apps/files_external/l10n/si_LK.js
+share/nextcloud/apps/files_external/l10n/si_LK.json
+share/nextcloud/apps/files_external/l10n/sk_SK.js
+share/nextcloud/apps/files_external/l10n/sk_SK.json
+share/nextcloud/apps/files_external/l10n/sl.js
+share/nextcloud/apps/files_external/l10n/sl.json
+share/nextcloud/apps/files_external/l10n/sq.js
+share/nextcloud/apps/files_external/l10n/sq.json
+share/nextcloud/apps/files_external/l10n/sr.js
+share/nextcloud/apps/files_external/l10n/sr.json
+share/nextcloud/apps/files_external/l10n/sr%latin.js@localhost
+share/nextcloud/apps/files_external/l10n/sr%latin.json@localhost
+share/nextcloud/apps/files_external/l10n/sv.js
+share/nextcloud/apps/files_external/l10n/sv.json
+share/nextcloud/apps/files_external/l10n/ta_LK.js
+share/nextcloud/apps/files_external/l10n/ta_LK.json
+share/nextcloud/apps/files_external/l10n/te.js
+share/nextcloud/apps/files_external/l10n/te.json
+share/nextcloud/apps/files_external/l10n/th_TH.js
+share/nextcloud/apps/files_external/l10n/th_TH.json
+share/nextcloud/apps/files_external/l10n/tr.js
+share/nextcloud/apps/files_external/l10n/tr.json
+share/nextcloud/apps/files_external/l10n/ug.js
+share/nextcloud/apps/files_external/l10n/ug.json
+share/nextcloud/apps/files_external/l10n/uk.js
+share/nextcloud/apps/files_external/l10n/uk.json
+share/nextcloud/apps/files_external/l10n/ur_PK.js
+share/nextcloud/apps/files_external/l10n/ur_PK.json
+share/nextcloud/apps/files_external/l10n/vi.js
+share/nextcloud/apps/files_external/l10n/vi.json
+share/nextcloud/apps/files_external/l10n/zh_CN.js
+share/nextcloud/apps/files_external/l10n/zh_CN.json
+share/nextcloud/apps/files_external/l10n/zh_HK.js
+share/nextcloud/apps/files_external/l10n/zh_HK.json
+share/nextcloud/apps/files_external/l10n/zh_TW.js
+share/nextcloud/apps/files_external/l10n/zh_TW.json
+share/nextcloud/apps/files_external/lib/AppInfo/Application.php
+share/nextcloud/apps/files_external/lib/Command/Applicable.php
+share/nextcloud/apps/files_external/lib/Command/Backends.php
+share/nextcloud/apps/files_external/lib/Command/Config.php
+share/nextcloud/apps/files_external/lib/Command/Create.php
+share/nextcloud/apps/files_external/lib/Command/Delete.php
+share/nextcloud/apps/files_external/lib/Command/Export.php
+share/nextcloud/apps/files_external/lib/Command/Import.php
+share/nextcloud/apps/files_external/lib/Command/ListCommand.php
+share/nextcloud/apps/files_external/lib/Command/Notify.php
+share/nextcloud/apps/files_external/lib/Command/Option.php
+share/nextcloud/apps/files_external/lib/Command/Verify.php
+share/nextcloud/apps/files_external/lib/Config/ConfigAdapter.php
+share/nextcloud/apps/files_external/lib/Controller/AjaxController.php
+share/nextcloud/apps/files_external/lib/Controller/GlobalStoragesController.php
+share/nextcloud/apps/files_external/lib/Controller/StoragesController.php
+share/nextcloud/apps/files_external/lib/Controller/UserGlobalStoragesController.php
+share/nextcloud/apps/files_external/lib/Controller/UserStoragesController.php
+share/nextcloud/apps/files_external/lib/Lib/Api.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/AmazonS3/AccessKey.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/AuthMechanism.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/Builtin.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/IUserProvided.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/NullMechanism.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/OAuth1/OAuth1.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/OAuth2/OAuth2.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/OpenStack/OpenStack.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/OpenStack/Rackspace.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/Password/GlobalAuth.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/Password/LoginCredentials.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/Password/Password.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/Password/SessionCredentials.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/Password/UserProvided.php
+share/nextcloud/apps/files_external/lib/Lib/Auth/PublicKey/RSA.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/AmazonS3.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/Backend.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/DAV.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/Dropbox.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/FTP.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/Google.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/LegacyBackend.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/Local.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/OwnCloud.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/SFTP.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/SFTP_Key.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/SMB.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/SMB_OC.php
+share/nextcloud/apps/files_external/lib/Lib/Backend/Swift.php
+share/nextcloud/apps/files_external/lib/Lib/Config/IAuthMechanismProvider.php
+share/nextcloud/apps/files_external/lib/Lib/Config/IBackendProvider.php
+share/nextcloud/apps/files_external/lib/Lib/DefinitionParameter.php
+share/nextcloud/apps/files_external/lib/Lib/DependencyTrait.php
+share/nextcloud/apps/files_external/lib/Lib/FrontendDefinitionTrait.php
+share/nextcloud/apps/files_external/lib/Lib/IdentifierTrait.php
+share/nextcloud/apps/files_external/lib/Lib/InsufficientDataForMeaningfulAnswerException.php
+share/nextcloud/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php
+share/nextcloud/apps/files_external/lib/Lib/MissingDependency.php
+share/nextcloud/apps/files_external/lib/Lib/PersonalMount.php
+share/nextcloud/apps/files_external/lib/Lib/PriorityTrait.php
+share/nextcloud/apps/files_external/lib/Lib/SessionStorageWrapper.php
+share/nextcloud/apps/files_external/lib/Lib/Storage/AmazonS3.php
+share/nextcloud/apps/files_external/lib/Lib/Storage/Dropbox.php
+share/nextcloud/apps/files_external/lib/Lib/Storage/FTP.php
+share/nextcloud/apps/files_external/lib/Lib/Storage/Google.php
+share/nextcloud/apps/files_external/lib/Lib/Storage/OwnCloud.php
+share/nextcloud/apps/files_external/lib/Lib/Storage/SFTP.php
+share/nextcloud/apps/files_external/lib/Lib/Storage/SMB.php
+share/nextcloud/apps/files_external/lib/Lib/Storage/StreamWrapper.php
+share/nextcloud/apps/files_external/lib/Lib/Storage/Swift.php
+share/nextcloud/apps/files_external/lib/Lib/StorageConfig.php
+share/nextcloud/apps/files_external/lib/Lib/StorageModifierTrait.php
+share/nextcloud/apps/files_external/lib/Lib/VisibilityTrait.php
+share/nextcloud/apps/files_external/lib/Migration/DummyUserSession.php
+share/nextcloud/apps/files_external/lib/Migration/StorageMigrator.php
+share/nextcloud/apps/files_external/lib/NotFoundException.php
+share/nextcloud/apps/files_external/lib/Service/BackendService.php
+share/nextcloud/apps/files_external/lib/Service/DBConfigService.php
+share/nextcloud/apps/files_external/lib/Service/GlobalLegacyStoragesService.php
+share/nextcloud/apps/files_external/lib/Service/GlobalStoragesService.php
+share/nextcloud/apps/files_external/lib/Service/ImportLegacyStoragesService.php
+share/nextcloud/apps/files_external/lib/Service/LegacyStoragesService.php
+share/nextcloud/apps/files_external/lib/Service/StoragesService.php
+share/nextcloud/apps/files_external/lib/Service/UserGlobalStoragesService.php
+share/nextcloud/apps/files_external/lib/Service/UserLegacyStoragesService.php
+share/nextcloud/apps/files_external/lib/Service/UserStoragesService.php
+share/nextcloud/apps/files_external/lib/Service/UserTrait.php
+share/nextcloud/apps/files_external/lib/Settings/Admin.php
+share/nextcloud/apps/files_external/lib/Settings/Section.php
+share/nextcloud/apps/files_external/lib/config.php
+share/nextcloud/apps/files_external/list.php
+share/nextcloud/apps/files_external/personal.php
+share/nextcloud/apps/files_external/templates/list.php
+share/nextcloud/apps/files_external/templates/settings.php
+share/nextcloud/apps/files_pdfviewer/appinfo/app.php
+share/nextcloud/apps/files_pdfviewer/appinfo/info.xml
+share/nextcloud/apps/files_pdfviewer/appinfo/routes.php
+share/nextcloud/apps/files_pdfviewer/appinfo/signature.json
+share/nextcloud/apps/files_pdfviewer/controller/displaycontroller.php
+share/nextcloud/apps/files_pdfviewer/css/minmode.css
+share/nextcloud/apps/files_pdfviewer/css/style.css
+share/nextcloud/apps/files_pdfviewer/css/viewer.css
+share/nextcloud/apps/files_pdfviewer/img/app.png
+share/nextcloud/apps/files_pdfviewer/img/app.svg
+share/nextcloud/apps/files_pdfviewer/img/toolbarButton-secondaryToolbarClose.svg
+share/nextcloud/apps/files_pdfviewer/js/previewplugin.js
+share/nextcloud/apps/files_pdfviewer/js/workersrc.js
+share/nextcloud/apps/files_pdfviewer/templates/viewer.php
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/LICENSE
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/build/pdf.js
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/build/pdf.worker.js
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-EUC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-EUC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-RKSJ-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-RKSJ-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-RKSJ-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-RKSJ-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-0.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-1.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-2.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-3.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-4.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-5.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5pc-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5pc-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS-EUC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS-EUC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS1-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS1-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS2-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS2-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETHK-B5-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETHK-B5-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETen-B5-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETen-B5-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETenms-B5-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETenms-B5-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/EUC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/EUC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-EUC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-EUC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK-EUC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK-EUC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK2K-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK2K-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBKp-EUC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBKp-EUC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-EUC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-EUC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBpc-EUC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBpc-EUC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdla-B5-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdla-B5-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdlb-B5-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdlb-B5-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKgccs-B5-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKgccs-B5-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm314-B5-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm314-B5-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm471-B5-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm471-B5-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKscs-B5-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKscs-B5-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Hankaku.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Hiragana.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-EUC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-EUC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-Johab-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-Johab-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Katakana.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/LICENSE
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/NWP-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/NWP-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/RKSJ-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/RKSJ-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Roman.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/V.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/WP-Symbol.bcmap
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/compatibility.js
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/debugger.js
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-check.svg
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-comment.svg
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-help.svg
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-insert.svg
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-key.svg
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-newparagraph.svg
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-noicon.svg
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-note.svg
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-paragraph.svg
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next-rtl.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next-rtl%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous-rtl.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous-rtl%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/grab.cur
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/grabbing.cur
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/loading-icon.gif
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/loading-small.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/loading-small%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-documentProperties.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-documentProperties%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-firstPage.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-firstPage%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-handTool.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-handTool%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-lastPage.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-lastPage%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCcw.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCcw%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCw.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCw%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/shadow.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/texture.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-bookmark.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-bookmark%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-download.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-download%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-menuArrows.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-menuArrows%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-openFile.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-openFile%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown-rtl.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown-rtl%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp-rtl.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp-rtl%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-presentationMode.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-presentationMode%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-print.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-print%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-search.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-search%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle-rtl.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle-rtl%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewAttachments.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewAttachments%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline-rtl.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline-rtl%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewThumbnail.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewThumbnail%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomIn.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomIn%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomOut.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomOut%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed-rtl.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed-rtl%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-expanded.png
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-expanded%2x.png@localhost
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/l10n.js
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ach/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/af/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ak/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/an/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ar/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/as/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ast/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/az/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/be/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/bg/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/bn-BD/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/bn-IN/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/br/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/bs/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ca/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/cs/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/csb/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/cy/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/da/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/de/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/el/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/en-GB/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/en-US/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/en-ZA/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/eo/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-AR/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-CL/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-ES/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-MX/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/et/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/eu/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/fa/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ff/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/fi/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/fr/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/fy-NL/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ga-IE/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/gd/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/gl/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/gu-IN/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/he/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/hi-IN/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/hr/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/hu/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/hy-AM/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/id/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/is/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/it/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ja/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ka/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/kk/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/km/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/kn/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ko/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ku/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/lg/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/lij/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/locale.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/lt/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/lv/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/mai/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/mk/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ml/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/mn/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/mr/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ms/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/my/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/nb-NO/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/nl/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/nn-NO/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/nso/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/oc/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/or/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/pa-IN/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/pl/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/pt-BR/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/pt-PT/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/rm/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ro/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ru/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/rw/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/sah/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/si/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/sk/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/sl/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/son/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/sq/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/sr/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/sv-SE/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/sw/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ta-LK/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ta/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/te/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/th/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/tl/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/tn/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/tr/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/uk/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/ur/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/vi/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/wo/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/xh/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/zh-CN/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/zh-TW/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/locale/zu/viewer.properties
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/viewer.css
+share/nextcloud/apps/files_pdfviewer/vendor/pdfjs/web/viewer.js
+share/nextcloud/apps/files_retention/LICENSE
+share/nextcloud/apps/files_retention/appinfo/app.php
+share/nextcloud/apps/files_retention/appinfo/database.xml
+share/nextcloud/apps/files_retention/appinfo/info.xml
+share/nextcloud/apps/files_retention/appinfo/routes.php
+share/nextcloud/apps/files_retention/appinfo/signature.json
+share/nextcloud/apps/files_retention/css/retention.css
+share/nextcloud/apps/files_retention/img/app.svg
+share/nextcloud/apps/files_retention/js/admin.js
+share/nextcloud/apps/files_retention/js/retentioncollection.js
+share/nextcloud/apps/files_retention/js/retentionmodel.js
+share/nextcloud/apps/files_retention/js/retentionview.js
+share/nextcloud/apps/files_retention/lib/AppInfo/Application.php
+share/nextcloud/apps/files_retention/lib/BackgroundJob/RetentionJob.php
+share/nextcloud/apps/files_retention/lib/Constants.php
+share/nextcloud/apps/files_retention/lib/Controller/APIController.php
+share/nextcloud/apps/files_retention/lib/EventListener.php
+share/nextcloud/apps/files_retention/lib/Settings/Admin.php
+share/nextcloud/apps/files_retention/templates/admin.php
+share/nextcloud/apps/files_sharing/ajax/shareinfo.php
+share/nextcloud/apps/files_sharing/appinfo/app.php
+share/nextcloud/apps/files_sharing/appinfo/database.xml
+share/nextcloud/apps/files_sharing/appinfo/info.xml
+share/nextcloud/apps/files_sharing/appinfo/routes.php
+share/nextcloud/apps/files_sharing/appinfo/signature.json
+share/nextcloud/apps/files_sharing/appinfo/update.php
+share/nextcloud/apps/files_sharing/css/404.css
+share/nextcloud/apps/files_sharing/css/authenticate.css
+share/nextcloud/apps/files_sharing/css/mobile.css
+share/nextcloud/apps/files_sharing/css/public.css
+share/nextcloud/apps/files_sharing/css/sharebreadcrumb.css
+share/nextcloud/apps/files_sharing/css/sharedfilelist.css
+share/nextcloud/apps/files_sharing/css/sharetabview.css
+share/nextcloud/apps/files_sharing/img/app.svg
+share/nextcloud/apps/files_sharing/js/app.js
+share/nextcloud/apps/files_sharing/js/authenticate.js
+share/nextcloud/apps/files_sharing/js/files_drop.js
+share/nextcloud/apps/files_sharing/js/public.js
+share/nextcloud/apps/files_sharing/js/share.js
+share/nextcloud/apps/files_sharing/js/sharebreadcrumbview.js
+share/nextcloud/apps/files_sharing/js/sharedfilelist.js
+share/nextcloud/apps/files_sharing/js/sharetabview.js
+share/nextcloud/apps/files_sharing/l10n/.gitkeep
+share/nextcloud/apps/files_sharing/l10n/af_ZA.js
+share/nextcloud/apps/files_sharing/l10n/af_ZA.json
+share/nextcloud/apps/files_sharing/l10n/ar.js
+share/nextcloud/apps/files_sharing/l10n/ar.json
+share/nextcloud/apps/files_sharing/l10n/ast.js
+share/nextcloud/apps/files_sharing/l10n/ast.json
+share/nextcloud/apps/files_sharing/l10n/az.js
+share/nextcloud/apps/files_sharing/l10n/az.json
+share/nextcloud/apps/files_sharing/l10n/bg_BG.js
+share/nextcloud/apps/files_sharing/l10n/bg_BG.json
+share/nextcloud/apps/files_sharing/l10n/bn_BD.js
+share/nextcloud/apps/files_sharing/l10n/bn_BD.json
+share/nextcloud/apps/files_sharing/l10n/bn_IN.js
+share/nextcloud/apps/files_sharing/l10n/bn_IN.json
+share/nextcloud/apps/files_sharing/l10n/bs.js
+share/nextcloud/apps/files_sharing/l10n/bs.json
+share/nextcloud/apps/files_sharing/l10n/ca.js
+share/nextcloud/apps/files_sharing/l10n/ca.json
+share/nextcloud/apps/files_sharing/l10n/cs_CZ.js
+share/nextcloud/apps/files_sharing/l10n/cs_CZ.json
+share/nextcloud/apps/files_sharing/l10n/cy_GB.js
+share/nextcloud/apps/files_sharing/l10n/cy_GB.json
+share/nextcloud/apps/files_sharing/l10n/da.js
+share/nextcloud/apps/files_sharing/l10n/da.json
+share/nextcloud/apps/files_sharing/l10n/de.js
+share/nextcloud/apps/files_sharing/l10n/de.json
+share/nextcloud/apps/files_sharing/l10n/de_AT.js
+share/nextcloud/apps/files_sharing/l10n/de_AT.json
+share/nextcloud/apps/files_sharing/l10n/de_DE.js
+share/nextcloud/apps/files_sharing/l10n/de_DE.json
+share/nextcloud/apps/files_sharing/l10n/el.js
+share/nextcloud/apps/files_sharing/l10n/el.json
+share/nextcloud/apps/files_sharing/l10n/en_GB.js
+share/nextcloud/apps/files_sharing/l10n/en_GB.json
+share/nextcloud/apps/files_sharing/l10n/eo.js
+share/nextcloud/apps/files_sharing/l10n/eo.json
+share/nextcloud/apps/files_sharing/l10n/es.js
+share/nextcloud/apps/files_sharing/l10n/es.json
+share/nextcloud/apps/files_sharing/l10n/es_AR.js
+share/nextcloud/apps/files_sharing/l10n/es_AR.json
+share/nextcloud/apps/files_sharing/l10n/es_CL.js
+share/nextcloud/apps/files_sharing/l10n/es_CL.json
+share/nextcloud/apps/files_sharing/l10n/es_MX.js
+share/nextcloud/apps/files_sharing/l10n/es_MX.json
+share/nextcloud/apps/files_sharing/l10n/et_EE.js
+share/nextcloud/apps/files_sharing/l10n/et_EE.json
+share/nextcloud/apps/files_sharing/l10n/eu.js
+share/nextcloud/apps/files_sharing/l10n/eu.json
+share/nextcloud/apps/files_sharing/l10n/fa.js
+share/nextcloud/apps/files_sharing/l10n/fa.json
+share/nextcloud/apps/files_sharing/l10n/fi_FI.js
+share/nextcloud/apps/files_sharing/l10n/fi_FI.json
+share/nextcloud/apps/files_sharing/l10n/fil.js
+share/nextcloud/apps/files_sharing/l10n/fil.json
+share/nextcloud/apps/files_sharing/l10n/fr.js
+share/nextcloud/apps/files_sharing/l10n/fr.json
+share/nextcloud/apps/files_sharing/l10n/gl.js
+share/nextcloud/apps/files_sharing/l10n/gl.json
+share/nextcloud/apps/files_sharing/l10n/he.js
+share/nextcloud/apps/files_sharing/l10n/he.json
+share/nextcloud/apps/files_sharing/l10n/hi.js
+share/nextcloud/apps/files_sharing/l10n/hi.json
+share/nextcloud/apps/files_sharing/l10n/hr.js
+share/nextcloud/apps/files_sharing/l10n/hr.json
+share/nextcloud/apps/files_sharing/l10n/hu_HU.js
+share/nextcloud/apps/files_sharing/l10n/hu_HU.json
+share/nextcloud/apps/files_sharing/l10n/hy.js
+share/nextcloud/apps/files_sharing/l10n/hy.json
+share/nextcloud/apps/files_sharing/l10n/ia.js
+share/nextcloud/apps/files_sharing/l10n/ia.json
+share/nextcloud/apps/files_sharing/l10n/id.js
+share/nextcloud/apps/files_sharing/l10n/id.json
+share/nextcloud/apps/files_sharing/l10n/is.js
+share/nextcloud/apps/files_sharing/l10n/is.json
+share/nextcloud/apps/files_sharing/l10n/it.js
+share/nextcloud/apps/files_sharing/l10n/it.json
+share/nextcloud/apps/files_sharing/l10n/ja.js
+share/nextcloud/apps/files_sharing/l10n/ja.json
+share/nextcloud/apps/files_sharing/l10n/jv.js
+share/nextcloud/apps/files_sharing/l10n/jv.json
+share/nextcloud/apps/files_sharing/l10n/ka_GE.js
+share/nextcloud/apps/files_sharing/l10n/ka_GE.json
+share/nextcloud/apps/files_sharing/l10n/km.js
+share/nextcloud/apps/files_sharing/l10n/km.json
+share/nextcloud/apps/files_sharing/l10n/kn.js
+share/nextcloud/apps/files_sharing/l10n/kn.json
+share/nextcloud/apps/files_sharing/l10n/ko.js
+share/nextcloud/apps/files_sharing/l10n/ko.json
+share/nextcloud/apps/files_sharing/l10n/ku_IQ.js
+share/nextcloud/apps/files_sharing/l10n/ku_IQ.json
+share/nextcloud/apps/files_sharing/l10n/lb.js
+share/nextcloud/apps/files_sharing/l10n/lb.json
+share/nextcloud/apps/files_sharing/l10n/lo.js
+share/nextcloud/apps/files_sharing/l10n/lo.json
+share/nextcloud/apps/files_sharing/l10n/lt_LT.js
+share/nextcloud/apps/files_sharing/l10n/lt_LT.json
+share/nextcloud/apps/files_sharing/l10n/lv.js
+share/nextcloud/apps/files_sharing/l10n/lv.json
+share/nextcloud/apps/files_sharing/l10n/mk.js
+share/nextcloud/apps/files_sharing/l10n/mk.json
+share/nextcloud/apps/files_sharing/l10n/ml_IN.js
+share/nextcloud/apps/files_sharing/l10n/ml_IN.json
+share/nextcloud/apps/files_sharing/l10n/mn.js
+share/nextcloud/apps/files_sharing/l10n/mn.json
+share/nextcloud/apps/files_sharing/l10n/ms_MY.js
+share/nextcloud/apps/files_sharing/l10n/ms_MY.json
+share/nextcloud/apps/files_sharing/l10n/my_MM.js
+share/nextcloud/apps/files_sharing/l10n/my_MM.json
+share/nextcloud/apps/files_sharing/l10n/nb_NO.js
+share/nextcloud/apps/files_sharing/l10n/nb_NO.json
+share/nextcloud/apps/files_sharing/l10n/nds.js
+share/nextcloud/apps/files_sharing/l10n/nds.json
+share/nextcloud/apps/files_sharing/l10n/nl.js
+share/nextcloud/apps/files_sharing/l10n/nl.json
+share/nextcloud/apps/files_sharing/l10n/nn_NO.js
+share/nextcloud/apps/files_sharing/l10n/nn_NO.json
+share/nextcloud/apps/files_sharing/l10n/oc.js
+share/nextcloud/apps/files_sharing/l10n/oc.json
+share/nextcloud/apps/files_sharing/l10n/pa.js
+share/nextcloud/apps/files_sharing/l10n/pa.json
+share/nextcloud/apps/files_sharing/l10n/pl.js
+share/nextcloud/apps/files_sharing/l10n/pl.json
+share/nextcloud/apps/files_sharing/l10n/pt_BR.js
+share/nextcloud/apps/files_sharing/l10n/pt_BR.json
+share/nextcloud/apps/files_sharing/l10n/pt_PT.js
+share/nextcloud/apps/files_sharing/l10n/pt_PT.json
+share/nextcloud/apps/files_sharing/l10n/ro.js
+share/nextcloud/apps/files_sharing/l10n/ro.json
+share/nextcloud/apps/files_sharing/l10n/ru.js
+share/nextcloud/apps/files_sharing/l10n/ru.json
+share/nextcloud/apps/files_sharing/l10n/si_LK.js
+share/nextcloud/apps/files_sharing/l10n/si_LK.json
+share/nextcloud/apps/files_sharing/l10n/sk_SK.js
+share/nextcloud/apps/files_sharing/l10n/sk_SK.json
+share/nextcloud/apps/files_sharing/l10n/sl.js
+share/nextcloud/apps/files_sharing/l10n/sl.json
+share/nextcloud/apps/files_sharing/l10n/sq.js
+share/nextcloud/apps/files_sharing/l10n/sq.json
+share/nextcloud/apps/files_sharing/l10n/sr.js
+share/nextcloud/apps/files_sharing/l10n/sr.json
+share/nextcloud/apps/files_sharing/l10n/sr%latin.js@localhost
+share/nextcloud/apps/files_sharing/l10n/sr%latin.json@localhost
+share/nextcloud/apps/files_sharing/l10n/sv.js
+share/nextcloud/apps/files_sharing/l10n/sv.json
+share/nextcloud/apps/files_sharing/l10n/ta_IN.js
+share/nextcloud/apps/files_sharing/l10n/ta_IN.json
+share/nextcloud/apps/files_sharing/l10n/ta_LK.js
+share/nextcloud/apps/files_sharing/l10n/ta_LK.json
+share/nextcloud/apps/files_sharing/l10n/te.js
+share/nextcloud/apps/files_sharing/l10n/te.json
+share/nextcloud/apps/files_sharing/l10n/th_TH.js
+share/nextcloud/apps/files_sharing/l10n/th_TH.json
+share/nextcloud/apps/files_sharing/l10n/tr.js
+share/nextcloud/apps/files_sharing/l10n/tr.json
+share/nextcloud/apps/files_sharing/l10n/ug.js
+share/nextcloud/apps/files_sharing/l10n/ug.json
+share/nextcloud/apps/files_sharing/l10n/uk.js
+share/nextcloud/apps/files_sharing/l10n/uk.json
+share/nextcloud/apps/files_sharing/l10n/ur_PK.js
+share/nextcloud/apps/files_sharing/l10n/ur_PK.json
+share/nextcloud/apps/files_sharing/l10n/vi.js
+share/nextcloud/apps/files_sharing/l10n/vi.json
+share/nextcloud/apps/files_sharing/l10n/zh_CN.js
+share/nextcloud/apps/files_sharing/l10n/zh_CN.json
+share/nextcloud/apps/files_sharing/l10n/zh_HK.js
+share/nextcloud/apps/files_sharing/l10n/zh_HK.json
+share/nextcloud/apps/files_sharing/l10n/zh_TW.js
+share/nextcloud/apps/files_sharing/l10n/zh_TW.json
+share/nextcloud/apps/files_sharing/lib/Activity/Filter.php
+share/nextcloud/apps/files_sharing/lib/Activity/Providers/Downloads.php
+share/nextcloud/apps/files_sharing/lib/Activity/Providers/Groups.php
+share/nextcloud/apps/files_sharing/lib/Activity/Providers/PublicLinks.php
+share/nextcloud/apps/files_sharing/lib/Activity/Providers/RemoteShares.php
+share/nextcloud/apps/files_sharing/lib/Activity/Providers/Users.php
+share/nextcloud/apps/files_sharing/lib/Activity/Settings/PublicLinks.php
+share/nextcloud/apps/files_sharing/lib/Activity/Settings/RemoteShare.php
+share/nextcloud/apps/files_sharing/lib/Activity/Settings/Shared.php
+share/nextcloud/apps/files_sharing/lib/AppInfo/Application.php
+share/nextcloud/apps/files_sharing/lib/Cache.php
+share/nextcloud/apps/files_sharing/lib/Capabilities.php
+share/nextcloud/apps/files_sharing/lib/Controller/ExternalSharesController.php
+share/nextcloud/apps/files_sharing/lib/Controller/PublicPreviewController.php
+share/nextcloud/apps/files_sharing/lib/Controller/RemoteController.php
+share/nextcloud/apps/files_sharing/lib/Controller/ShareAPIController.php
+share/nextcloud/apps/files_sharing/lib/Controller/ShareController.php
+share/nextcloud/apps/files_sharing/lib/Controller/ShareesAPIController.php
+share/nextcloud/apps/files_sharing/lib/DeleteOrphanedSharesJob.php
+share/nextcloud/apps/files_sharing/lib/Exceptions/BrokenPath.php
+share/nextcloud/apps/files_sharing/lib/Exceptions/S2SException.php
+share/nextcloud/apps/files_sharing/lib/ExpireSharesJob.php
+share/nextcloud/apps/files_sharing/lib/External/Cache.php
+share/nextcloud/apps/files_sharing/lib/External/Manager.php
+share/nextcloud/apps/files_sharing/lib/External/Mount.php
+share/nextcloud/apps/files_sharing/lib/External/MountProvider.php
+share/nextcloud/apps/files_sharing/lib/External/Scanner.php
+share/nextcloud/apps/files_sharing/lib/External/Storage.php
+share/nextcloud/apps/files_sharing/lib/External/Watcher.php
+share/nextcloud/apps/files_sharing/lib/Helper.php
+share/nextcloud/apps/files_sharing/lib/Hooks.php
+share/nextcloud/apps/files_sharing/lib/ISharedStorage.php
+share/nextcloud/apps/files_sharing/lib/Maintainer.php
+share/nextcloud/apps/files_sharing/lib/Middleware/OCSShareAPIMiddleware.php
+share/nextcloud/apps/files_sharing/lib/Middleware/SharingCheckMiddleware.php
+share/nextcloud/apps/files_sharing/lib/Migration.php
+share/nextcloud/apps/files_sharing/lib/MountProvider.php
+share/nextcloud/apps/files_sharing/lib/Scanner.php
+share/nextcloud/apps/files_sharing/lib/ShareBackend/File.php
+share/nextcloud/apps/files_sharing/lib/ShareBackend/Folder.php
+share/nextcloud/apps/files_sharing/lib/SharedMount.php
+share/nextcloud/apps/files_sharing/lib/SharedPropagator.php
+share/nextcloud/apps/files_sharing/lib/SharedStorage.php
+share/nextcloud/apps/files_sharing/lib/Updater.php
+share/nextcloud/apps/files_sharing/list.php
+share/nextcloud/apps/files_sharing/public.php
+share/nextcloud/apps/files_sharing/templates/authenticate.php
+share/nextcloud/apps/files_sharing/templates/list.php
+share/nextcloud/apps/files_sharing/templates/part.404.php
+share/nextcloud/apps/files_sharing/templates/public.php
+share/nextcloud/apps/files_texteditor/appinfo/app.php
+share/nextcloud/apps/files_texteditor/appinfo/application.php
+share/nextcloud/apps/files_texteditor/appinfo/info.xml
+share/nextcloud/apps/files_texteditor/appinfo/routes.php
+share/nextcloud/apps/files_texteditor/appinfo/signature.json
+share/nextcloud/apps/files_texteditor/controller/filehandlingcontroller.php
+share/nextcloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.eot
+share/nextcloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg
+share/nextcloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf
+share/nextcloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.woff
+share/nextcloud/apps/files_texteditor/css/DroidSansMono/Google Android License.txt
+share/nextcloud/apps/files_texteditor/css/DroidSansMono/stylesheet.css
+share/nextcloud/apps/files_texteditor/css/mobile.css
+share/nextcloud/apps/files_texteditor/css/style.css
+share/nextcloud/apps/files_texteditor/img/app.png
+share/nextcloud/apps/files_texteditor/img/app.svg
+share/nextcloud/apps/files_texteditor/js/add-nounce.patch
+share/nextcloud/apps/files_texteditor/js/bower.json
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/LICENSE
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ace.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ext-modelist.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ext-searchbox.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/keybinding-emacs.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/keybinding-vim.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-abap.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-abc.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-actionscript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ada.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-apache_conf.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-applescript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-asciidoc.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-assembly_x86.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-autohotkey.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-batchfile.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c9search.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c_cpp.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cirru.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-clojure.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cobol.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-coffee.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-coldfusion.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-csharp.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-css.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-curly.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-d.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dart.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-diff.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-django.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dockerfile.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dot.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-drools.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-eiffel.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ejs.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-elixir.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-elm.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-erlang.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-forth.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-fortran.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ftl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gcode.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gherkin.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gitignore.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-glsl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gobstones.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-golang.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-groovy.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-handlebars.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell_cabal.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haxe.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_elixir.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_ruby.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ini.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-io.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jack.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jade.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-java.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-javascript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-json.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsoniq.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsp.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsx.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-julia.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-kotlin.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-latex.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lean.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-less.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-liquid.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lisp.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-live_script.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-livescript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-logiql.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lsl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lua.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-luapage.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lucene.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-makefile.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-markdown.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mask.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-matlab.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mavens_mate_log.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-maze.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mel.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mips_assembler.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mipsassembler.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mushcode.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mysql.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-nix.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-nsis.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-objectivec.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ocaml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pascal.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-perl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pgsql.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-php.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-plain_text.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-powershell.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-praat.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-prolog.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-properties.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-protobuf.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-python.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-r.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-razor.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rdoc.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rhtml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rst.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ruby.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rust.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sass.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scad.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scala.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scheme.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scss.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sh.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sjs.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-smarty.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-snippets.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-soy_template.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-space.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sql.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sqlserver.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-stylus.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-svg.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-swift.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-swig.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tcl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tex.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-text.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-textile.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-toml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tsx.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-twig.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-typescript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vala.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vbscript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-velocity.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-verilog.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vhdl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-wollok.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-xml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-xquery.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-yaml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/abap.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/abc.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/actionscript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ada.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/apache_conf.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/applescript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/asciidoc.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/assembly_x86.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/autohotkey.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/batchfile.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c9search.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c_cpp.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cirru.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/clojure.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cobol.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/coffee.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/coldfusion.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/csharp.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/css.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/curly.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/d.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dart.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/diff.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/django.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dockerfile.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dot.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/drools.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/eiffel.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ejs.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/elixir.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/elm.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/erlang.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/forth.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/fortran.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ftl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gcode.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gherkin.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gitignore.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/glsl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gobstones.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/golang.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/groovy.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/handlebars.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell_cabal.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haxe.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_elixir.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_ruby.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ini.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/io.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jack.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jade.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/java.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/javascript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/json.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsoniq.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsp.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsx.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/julia.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/kotlin.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/latex.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lean.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/less.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/liquid.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lisp.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/live_script.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/livescript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/logiql.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lsl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lua.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/luapage.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lucene.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/makefile.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/markdown.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mask.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/matlab.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/maze.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mel.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mips_assembler.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mipsassembler.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mushcode.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mysql.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/nix.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/nsis.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/objectivec.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ocaml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pascal.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/perl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pgsql.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/php.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/plain_text.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/powershell.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/praat.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/prolog.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/properties.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/protobuf.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/python.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/r.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/razor.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rdoc.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rhtml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rst.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ruby.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rust.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sass.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scad.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scala.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scheme.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scss.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sh.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sjs.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/smarty.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/snippets.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/soy_template.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/space.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sql.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sqlserver.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/stylus.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/svg.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/swift.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/swig.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tcl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tex.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/text.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/textile.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/toml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tsx.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/twig.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/typescript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vala.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vbscript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/velocity.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/verilog.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vhdl.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/wollok.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/xml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/xquery.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/yaml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/theme-clouds.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-coffee.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-css.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-html.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-javascript.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-json.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-lua.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-php.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xml.js
+share/nextcloud/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xquery.js
+share/nextcloud/apps/files_texteditor/js/editor.js
+share/nextcloud/apps/files_texteditor/js/sidebarpreview.js
+share/nextcloud/apps/files_texteditor/l10n/.gitkeep
+share/nextcloud/apps/files_texteditor/l10n/.tx/config
+share/nextcloud/apps/files_texteditor/l10n/ar.php
+share/nextcloud/apps/files_texteditor/l10n/az.js
+share/nextcloud/apps/files_texteditor/l10n/az.json
+share/nextcloud/apps/files_texteditor/l10n/az.php
+share/nextcloud/apps/files_texteditor/l10n/bg_BG.js
+share/nextcloud/apps/files_texteditor/l10n/bg_BG.json
+share/nextcloud/apps/files_texteditor/l10n/bg_BG.php
+share/nextcloud/apps/files_texteditor/l10n/bn_BD.php
+share/nextcloud/apps/files_texteditor/l10n/bs.php
+share/nextcloud/apps/files_texteditor/l10n/ca.js
+share/nextcloud/apps/files_texteditor/l10n/ca.json
+share/nextcloud/apps/files_texteditor/l10n/ca.php
+share/nextcloud/apps/files_texteditor/l10n/cs_CZ.js
+share/nextcloud/apps/files_texteditor/l10n/cs_CZ.json
+share/nextcloud/apps/files_texteditor/l10n/cs_CZ.php
+share/nextcloud/apps/files_texteditor/l10n/cy_GB.php
+share/nextcloud/apps/files_texteditor/l10n/da.js
+share/nextcloud/apps/files_texteditor/l10n/da.json
+share/nextcloud/apps/files_texteditor/l10n/da.php
+share/nextcloud/apps/files_texteditor/l10n/de.js
+share/nextcloud/apps/files_texteditor/l10n/de.json
+share/nextcloud/apps/files_texteditor/l10n/de.php
+share/nextcloud/apps/files_texteditor/l10n/de_CH.php
+share/nextcloud/apps/files_texteditor/l10n/de_DE.js
+share/nextcloud/apps/files_texteditor/l10n/de_DE.json
+share/nextcloud/apps/files_texteditor/l10n/de_DE.php
+share/nextcloud/apps/files_texteditor/l10n/el.js
+share/nextcloud/apps/files_texteditor/l10n/el.json
+share/nextcloud/apps/files_texteditor/l10n/el.php
+share/nextcloud/apps/files_texteditor/l10n/en_GB.js
+share/nextcloud/apps/files_texteditor/l10n/en_GB.json
+share/nextcloud/apps/files_texteditor/l10n/en_GB.php
+share/nextcloud/apps/files_texteditor/l10n/eo.php
+share/nextcloud/apps/files_texteditor/l10n/es.js
+share/nextcloud/apps/files_texteditor/l10n/es.json
+share/nextcloud/apps/files_texteditor/l10n/es.php
+share/nextcloud/apps/files_texteditor/l10n/es_AR.php
+share/nextcloud/apps/files_texteditor/l10n/es_MX.js
+share/nextcloud/apps/files_texteditor/l10n/es_MX.json
+share/nextcloud/apps/files_texteditor/l10n/es_MX.php
+share/nextcloud/apps/files_texteditor/l10n/et_EE.js
+share/nextcloud/apps/files_texteditor/l10n/et_EE.json
+share/nextcloud/apps/files_texteditor/l10n/et_EE.php
+share/nextcloud/apps/files_texteditor/l10n/eu.php
+share/nextcloud/apps/files_texteditor/l10n/eu_ES.php
+share/nextcloud/apps/files_texteditor/l10n/fa.js
+share/nextcloud/apps/files_texteditor/l10n/fa.json
+share/nextcloud/apps/files_texteditor/l10n/fa.php
+share/nextcloud/apps/files_texteditor/l10n/fi_FI.js
+share/nextcloud/apps/files_texteditor/l10n/fi_FI.json
+share/nextcloud/apps/files_texteditor/l10n/fi_FI.php
+share/nextcloud/apps/files_texteditor/l10n/fr.js
+share/nextcloud/apps/files_texteditor/l10n/fr.json
+share/nextcloud/apps/files_texteditor/l10n/fr.php
+share/nextcloud/apps/files_texteditor/l10n/gl.js
+share/nextcloud/apps/files_texteditor/l10n/gl.json
+share/nextcloud/apps/files_texteditor/l10n/gl.php
+share/nextcloud/apps/files_texteditor/l10n/he.js
+share/nextcloud/apps/files_texteditor/l10n/he.json
+share/nextcloud/apps/files_texteditor/l10n/he.php
+share/nextcloud/apps/files_texteditor/l10n/hi.php
+share/nextcloud/apps/files_texteditor/l10n/hr.php
+share/nextcloud/apps/files_texteditor/l10n/hu_HU.js
+share/nextcloud/apps/files_texteditor/l10n/hu_HU.json
+share/nextcloud/apps/files_texteditor/l10n/hu_HU.php
+share/nextcloud/apps/files_texteditor/l10n/hy.js
+share/nextcloud/apps/files_texteditor/l10n/hy.json
+share/nextcloud/apps/files_texteditor/l10n/hy.php
+share/nextcloud/apps/files_texteditor/l10n/ia.php
+share/nextcloud/apps/files_texteditor/l10n/id.js
+share/nextcloud/apps/files_texteditor/l10n/id.json
+share/nextcloud/apps/files_texteditor/l10n/id.php
+share/nextcloud/apps/files_texteditor/l10n/is.js
+share/nextcloud/apps/files_texteditor/l10n/is.json
+share/nextcloud/apps/files_texteditor/l10n/is.php
+share/nextcloud/apps/files_texteditor/l10n/it.js
+share/nextcloud/apps/files_texteditor/l10n/it.json
+share/nextcloud/apps/files_texteditor/l10n/it.php
+share/nextcloud/apps/files_texteditor/l10n/ja.js
+share/nextcloud/apps/files_texteditor/l10n/ja.json
+share/nextcloud/apps/files_texteditor/l10n/ja.php
+share/nextcloud/apps/files_texteditor/l10n/ka_GE.php
+share/nextcloud/apps/files_texteditor/l10n/km.php
+share/nextcloud/apps/files_texteditor/l10n/ko.js
+share/nextcloud/apps/files_texteditor/l10n/ko.json
+share/nextcloud/apps/files_texteditor/l10n/ko.php
+share/nextcloud/apps/files_texteditor/l10n/ku_IQ.php
+share/nextcloud/apps/files_texteditor/l10n/lb.php
+share/nextcloud/apps/files_texteditor/l10n/lt_LT.js
+share/nextcloud/apps/files_texteditor/l10n/lt_LT.json
+share/nextcloud/apps/files_texteditor/l10n/lt_LT.php
+share/nextcloud/apps/files_texteditor/l10n/lv.php
+share/nextcloud/apps/files_texteditor/l10n/mk.php
+share/nextcloud/apps/files_texteditor/l10n/ms_MY.php
+share/nextcloud/apps/files_texteditor/l10n/nb_NO.js
+share/nextcloud/apps/files_texteditor/l10n/nb_NO.json
+share/nextcloud/apps/files_texteditor/l10n/nb_NO.php
+share/nextcloud/apps/files_texteditor/l10n/nl.js
+share/nextcloud/apps/files_texteditor/l10n/nl.json
+share/nextcloud/apps/files_texteditor/l10n/nl.php
+share/nextcloud/apps/files_texteditor/l10n/nn_NO.php
+share/nextcloud/apps/files_texteditor/l10n/oc.js
+share/nextcloud/apps/files_texteditor/l10n/oc.json
+share/nextcloud/apps/files_texteditor/l10n/oc.php
+share/nextcloud/apps/files_texteditor/l10n/pa.php
+share/nextcloud/apps/files_texteditor/l10n/pl.js
+share/nextcloud/apps/files_texteditor/l10n/pl.json
+share/nextcloud/apps/files_texteditor/l10n/pl.php
+share/nextcloud/apps/files_texteditor/l10n/pt_BR.js
+share/nextcloud/apps/files_texteditor/l10n/pt_BR.json
+share/nextcloud/apps/files_texteditor/l10n/pt_BR.php
+share/nextcloud/apps/files_texteditor/l10n/pt_PT.js
+share/nextcloud/apps/files_texteditor/l10n/pt_PT.json
+share/nextcloud/apps/files_texteditor/l10n/pt_PT.php
+share/nextcloud/apps/files_texteditor/l10n/ro.js
+share/nextcloud/apps/files_texteditor/l10n/ro.json
+share/nextcloud/apps/files_texteditor/l10n/ro.php
+share/nextcloud/apps/files_texteditor/l10n/ru.js
+share/nextcloud/apps/files_texteditor/l10n/ru.json
+share/nextcloud/apps/files_texteditor/l10n/ru.php
+share/nextcloud/apps/files_texteditor/l10n/si_LK.php
+share/nextcloud/apps/files_texteditor/l10n/sk.php
+share/nextcloud/apps/files_texteditor/l10n/sk_SK.js
+share/nextcloud/apps/files_texteditor/l10n/sk_SK.json
+share/nextcloud/apps/files_texteditor/l10n/sk_SK.php
+share/nextcloud/apps/files_texteditor/l10n/sl.js
+share/nextcloud/apps/files_texteditor/l10n/sl.json
+share/nextcloud/apps/files_texteditor/l10n/sl.php
+share/nextcloud/apps/files_texteditor/l10n/sq.js
+share/nextcloud/apps/files_texteditor/l10n/sq.json
+share/nextcloud/apps/files_texteditor/l10n/sq.php
+share/nextcloud/apps/files_texteditor/l10n/sr.js
+share/nextcloud/apps/files_texteditor/l10n/sr.json
+share/nextcloud/apps/files_texteditor/l10n/sr.php
+share/nextcloud/apps/files_texteditor/l10n/sr%latin.js@localhost
+share/nextcloud/apps/files_texteditor/l10n/sr%latin.json@localhost
+share/nextcloud/apps/files_texteditor/l10n/sr%latin.php@localhost
+share/nextcloud/apps/files_texteditor/l10n/sv.js
+share/nextcloud/apps/files_texteditor/l10n/sv.json
+share/nextcloud/apps/files_texteditor/l10n/sv.php
+share/nextcloud/apps/files_texteditor/l10n/ta_LK.php
+share/nextcloud/apps/files_texteditor/l10n/te.php
+share/nextcloud/apps/files_texteditor/l10n/th_TH.js
+share/nextcloud/apps/files_texteditor/l10n/th_TH.json
+share/nextcloud/apps/files_texteditor/l10n/th_TH.php
+share/nextcloud/apps/files_texteditor/l10n/tr.js
+share/nextcloud/apps/files_texteditor/l10n/tr.json
+share/nextcloud/apps/files_texteditor/l10n/tr.php
+share/nextcloud/apps/files_texteditor/l10n/ug.php
+share/nextcloud/apps/files_texteditor/l10n/uk.js
+share/nextcloud/apps/files_texteditor/l10n/uk.json
+share/nextcloud/apps/files_texteditor/l10n/uk.php
+share/nextcloud/apps/files_texteditor/l10n/vi.js
+share/nextcloud/apps/files_texteditor/l10n/vi.json
+share/nextcloud/apps/files_texteditor/l10n/vi.php
+share/nextcloud/apps/files_texteditor/l10n/zh_CN.js
+share/nextcloud/apps/files_texteditor/l10n/zh_CN.json
+share/nextcloud/apps/files_texteditor/l10n/zh_CN.php
+share/nextcloud/apps/files_texteditor/l10n/zh_HK.php
+share/nextcloud/apps/files_texteditor/l10n/zh_TW.js
+share/nextcloud/apps/files_texteditor/l10n/zh_TW.json
+share/nextcloud/apps/files_texteditor/l10n/zh_TW.php
+share/nextcloud/apps/files_trashbin/ajax/delete.php
+share/nextcloud/apps/files_trashbin/ajax/isEmpty.php
+share/nextcloud/apps/files_trashbin/ajax/list.php
+share/nextcloud/apps/files_trashbin/ajax/undelete.php
+share/nextcloud/apps/files_trashbin/appinfo/app.php
+share/nextcloud/apps/files_trashbin/appinfo/database.xml
+share/nextcloud/apps/files_trashbin/appinfo/info.xml
+share/nextcloud/apps/files_trashbin/appinfo/routes.php
+share/nextcloud/apps/files_trashbin/appinfo/signature.json
+share/nextcloud/apps/files_trashbin/appinfo/update.php
+share/nextcloud/apps/files_trashbin/css/trash.css
+share/nextcloud/apps/files_trashbin/img/app.svg
+share/nextcloud/apps/files_trashbin/js/app.js
+share/nextcloud/apps/files_trashbin/js/filelist.js
+share/nextcloud/apps/files_trashbin/l10n/.gitkeep
+share/nextcloud/apps/files_trashbin/l10n/af_ZA.js
+share/nextcloud/apps/files_trashbin/l10n/af_ZA.json
+share/nextcloud/apps/files_trashbin/l10n/ar.js
+share/nextcloud/apps/files_trashbin/l10n/ar.json
+share/nextcloud/apps/files_trashbin/l10n/ast.js
+share/nextcloud/apps/files_trashbin/l10n/ast.json
+share/nextcloud/apps/files_trashbin/l10n/az.js
+share/nextcloud/apps/files_trashbin/l10n/az.json
+share/nextcloud/apps/files_trashbin/l10n/be.js
+share/nextcloud/apps/files_trashbin/l10n/be.json
+share/nextcloud/apps/files_trashbin/l10n/bg_BG.js
+share/nextcloud/apps/files_trashbin/l10n/bg_BG.json
+share/nextcloud/apps/files_trashbin/l10n/bn_BD.js
+share/nextcloud/apps/files_trashbin/l10n/bn_BD.json
+share/nextcloud/apps/files_trashbin/l10n/bn_IN.js
+share/nextcloud/apps/files_trashbin/l10n/bn_IN.json
+share/nextcloud/apps/files_trashbin/l10n/bs.js
+share/nextcloud/apps/files_trashbin/l10n/bs.json
+share/nextcloud/apps/files_trashbin/l10n/ca.js
+share/nextcloud/apps/files_trashbin/l10n/ca.json
+share/nextcloud/apps/files_trashbin/l10n/cs_CZ.js
+share/nextcloud/apps/files_trashbin/l10n/cs_CZ.json
+share/nextcloud/apps/files_trashbin/l10n/cy_GB.js
+share/nextcloud/apps/files_trashbin/l10n/cy_GB.json
+share/nextcloud/apps/files_trashbin/l10n/da.js
+share/nextcloud/apps/files_trashbin/l10n/da.json
+share/nextcloud/apps/files_trashbin/l10n/de.js
+share/nextcloud/apps/files_trashbin/l10n/de.json
+share/nextcloud/apps/files_trashbin/l10n/de_AT.js
+share/nextcloud/apps/files_trashbin/l10n/de_AT.json
+share/nextcloud/apps/files_trashbin/l10n/de_DE.js
+share/nextcloud/apps/files_trashbin/l10n/de_DE.json
+share/nextcloud/apps/files_trashbin/l10n/el.js
+share/nextcloud/apps/files_trashbin/l10n/el.json
+share/nextcloud/apps/files_trashbin/l10n/en_GB.js
+share/nextcloud/apps/files_trashbin/l10n/en_GB.json
+share/nextcloud/apps/files_trashbin/l10n/eo.js
+share/nextcloud/apps/files_trashbin/l10n/eo.json
+share/nextcloud/apps/files_trashbin/l10n/es.js
+share/nextcloud/apps/files_trashbin/l10n/es.json
+share/nextcloud/apps/files_trashbin/l10n/es_AR.js
+share/nextcloud/apps/files_trashbin/l10n/es_AR.json
+share/nextcloud/apps/files_trashbin/l10n/es_CL.js
+share/nextcloud/apps/files_trashbin/l10n/es_CL.json
+share/nextcloud/apps/files_trashbin/l10n/es_MX.js
+share/nextcloud/apps/files_trashbin/l10n/es_MX.json
+share/nextcloud/apps/files_trashbin/l10n/et_EE.js
+share/nextcloud/apps/files_trashbin/l10n/et_EE.json
+share/nextcloud/apps/files_trashbin/l10n/eu.js
+share/nextcloud/apps/files_trashbin/l10n/eu.json
+share/nextcloud/apps/files_trashbin/l10n/fa.js
+share/nextcloud/apps/files_trashbin/l10n/fa.json
+share/nextcloud/apps/files_trashbin/l10n/fi_FI.js
+share/nextcloud/apps/files_trashbin/l10n/fi_FI.json
+share/nextcloud/apps/files_trashbin/l10n/fil.js
+share/nextcloud/apps/files_trashbin/l10n/fil.json
+share/nextcloud/apps/files_trashbin/l10n/fr.js
+share/nextcloud/apps/files_trashbin/l10n/fr.json
+share/nextcloud/apps/files_trashbin/l10n/gl.js
+share/nextcloud/apps/files_trashbin/l10n/gl.json
+share/nextcloud/apps/files_trashbin/l10n/he.js
+share/nextcloud/apps/files_trashbin/l10n/he.json
+share/nextcloud/apps/files_trashbin/l10n/hi.js
+share/nextcloud/apps/files_trashbin/l10n/hi.json
+share/nextcloud/apps/files_trashbin/l10n/hr.js
+share/nextcloud/apps/files_trashbin/l10n/hr.json
+share/nextcloud/apps/files_trashbin/l10n/hu_HU.js
+share/nextcloud/apps/files_trashbin/l10n/hu_HU.json
+share/nextcloud/apps/files_trashbin/l10n/hy.js
+share/nextcloud/apps/files_trashbin/l10n/hy.json
+share/nextcloud/apps/files_trashbin/l10n/ia.js
+share/nextcloud/apps/files_trashbin/l10n/ia.json
+share/nextcloud/apps/files_trashbin/l10n/id.js
+share/nextcloud/apps/files_trashbin/l10n/id.json
+share/nextcloud/apps/files_trashbin/l10n/is.js
+share/nextcloud/apps/files_trashbin/l10n/is.json
+share/nextcloud/apps/files_trashbin/l10n/it.js
+share/nextcloud/apps/files_trashbin/l10n/it.json
+share/nextcloud/apps/files_trashbin/l10n/ja.js
+share/nextcloud/apps/files_trashbin/l10n/ja.json
+share/nextcloud/apps/files_trashbin/l10n/ka_GE.js
+share/nextcloud/apps/files_trashbin/l10n/ka_GE.json
+share/nextcloud/apps/files_trashbin/l10n/km.js
+share/nextcloud/apps/files_trashbin/l10n/km.json
+share/nextcloud/apps/files_trashbin/l10n/kn.js
+share/nextcloud/apps/files_trashbin/l10n/kn.json
+share/nextcloud/apps/files_trashbin/l10n/ko.js
+share/nextcloud/apps/files_trashbin/l10n/ko.json
+share/nextcloud/apps/files_trashbin/l10n/ku_IQ.js
+share/nextcloud/apps/files_trashbin/l10n/ku_IQ.json
+share/nextcloud/apps/files_trashbin/l10n/lb.js
+share/nextcloud/apps/files_trashbin/l10n/lb.json
+share/nextcloud/apps/files_trashbin/l10n/lt_LT.js
+share/nextcloud/apps/files_trashbin/l10n/lt_LT.json
+share/nextcloud/apps/files_trashbin/l10n/lv.js
+share/nextcloud/apps/files_trashbin/l10n/lv.json
+share/nextcloud/apps/files_trashbin/l10n/mk.js
+share/nextcloud/apps/files_trashbin/l10n/mk.json
+share/nextcloud/apps/files_trashbin/l10n/ms_MY.js
+share/nextcloud/apps/files_trashbin/l10n/ms_MY.json
+share/nextcloud/apps/files_trashbin/l10n/nb_NO.js
+share/nextcloud/apps/files_trashbin/l10n/nb_NO.json
+share/nextcloud/apps/files_trashbin/l10n/nds.js
+share/nextcloud/apps/files_trashbin/l10n/nds.json
+share/nextcloud/apps/files_trashbin/l10n/nl.js
+share/nextcloud/apps/files_trashbin/l10n/nl.json
+share/nextcloud/apps/files_trashbin/l10n/nn_NO.js
+share/nextcloud/apps/files_trashbin/l10n/nn_NO.json
+share/nextcloud/apps/files_trashbin/l10n/oc.js
+share/nextcloud/apps/files_trashbin/l10n/oc.json
+share/nextcloud/apps/files_trashbin/l10n/pa.js
+share/nextcloud/apps/files_trashbin/l10n/pa.json
+share/nextcloud/apps/files_trashbin/l10n/pl.js
+share/nextcloud/apps/files_trashbin/l10n/pl.json
+share/nextcloud/apps/files_trashbin/l10n/pt_BR.js
+share/nextcloud/apps/files_trashbin/l10n/pt_BR.json
+share/nextcloud/apps/files_trashbin/l10n/pt_PT.js
+share/nextcloud/apps/files_trashbin/l10n/pt_PT.json
+share/nextcloud/apps/files_trashbin/l10n/ro.js
+share/nextcloud/apps/files_trashbin/l10n/ro.json
+share/nextcloud/apps/files_trashbin/l10n/ru.js
+share/nextcloud/apps/files_trashbin/l10n/ru.json
+share/nextcloud/apps/files_trashbin/l10n/si_LK.js
+share/nextcloud/apps/files_trashbin/l10n/si_LK.json
+share/nextcloud/apps/files_trashbin/l10n/sk_SK.js
+share/nextcloud/apps/files_trashbin/l10n/sk_SK.json
+share/nextcloud/apps/files_trashbin/l10n/sl.js
+share/nextcloud/apps/files_trashbin/l10n/sl.json
+share/nextcloud/apps/files_trashbin/l10n/sq.js
+share/nextcloud/apps/files_trashbin/l10n/sq.json
+share/nextcloud/apps/files_trashbin/l10n/sr.js
+share/nextcloud/apps/files_trashbin/l10n/sr.json
+share/nextcloud/apps/files_trashbin/l10n/sr%latin.js@localhost
+share/nextcloud/apps/files_trashbin/l10n/sr%latin.json@localhost
+share/nextcloud/apps/files_trashbin/l10n/sv.js
+share/nextcloud/apps/files_trashbin/l10n/sv.json
+share/nextcloud/apps/files_trashbin/l10n/ta_LK.js
+share/nextcloud/apps/files_trashbin/l10n/ta_LK.json
+share/nextcloud/apps/files_trashbin/l10n/te.js
+share/nextcloud/apps/files_trashbin/l10n/te.json
+share/nextcloud/apps/files_trashbin/l10n/th_TH.js
+share/nextcloud/apps/files_trashbin/l10n/th_TH.json
+share/nextcloud/apps/files_trashbin/l10n/tr.js
+share/nextcloud/apps/files_trashbin/l10n/tr.json
+share/nextcloud/apps/files_trashbin/l10n/ug.js
+share/nextcloud/apps/files_trashbin/l10n/ug.json
+share/nextcloud/apps/files_trashbin/l10n/uk.js
+share/nextcloud/apps/files_trashbin/l10n/uk.json
+share/nextcloud/apps/files_trashbin/l10n/ur_PK.js
+share/nextcloud/apps/files_trashbin/l10n/ur_PK.json
+share/nextcloud/apps/files_trashbin/l10n/vi.js
+share/nextcloud/apps/files_trashbin/l10n/vi.json
+share/nextcloud/apps/files_trashbin/l10n/zh_CN.js
+share/nextcloud/apps/files_trashbin/l10n/zh_CN.json
+share/nextcloud/apps/files_trashbin/l10n/zh_HK.js
+share/nextcloud/apps/files_trashbin/l10n/zh_HK.json
+share/nextcloud/apps/files_trashbin/l10n/zh_TW.js
+share/nextcloud/apps/files_trashbin/l10n/zh_TW.json
+share/nextcloud/apps/files_trashbin/lib/AppInfo/Application.php
+share/nextcloud/apps/files_trashbin/lib/BackgroundJob/ExpireTrash.php
+share/nextcloud/apps/files_trashbin/lib/Capabilities.php
+share/nextcloud/apps/files_trashbin/lib/Command/CleanUp.php
+share/nextcloud/apps/files_trashbin/lib/Command/Expire.php
+share/nextcloud/apps/files_trashbin/lib/Command/ExpireTrash.php
+share/nextcloud/apps/files_trashbin/lib/Controller/PreviewController.php
+share/nextcloud/apps/files_trashbin/lib/Exceptions/CopyRecursiveException.php
+share/nextcloud/apps/files_trashbin/lib/Expiration.php
+share/nextcloud/apps/files_trashbin/lib/Helper.php
+share/nextcloud/apps/files_trashbin/lib/Hooks.php
+share/nextcloud/apps/files_trashbin/lib/Storage.php
+share/nextcloud/apps/files_trashbin/lib/Trashbin.php
+share/nextcloud/apps/files_trashbin/list.php
+share/nextcloud/apps/files_trashbin/templates/index.php
+share/nextcloud/apps/files_versions/ajax/getVersions.php
+share/nextcloud/apps/files_versions/ajax/rollbackVersion.php
+share/nextcloud/apps/files_versions/appinfo/app.php
+share/nextcloud/apps/files_versions/appinfo/info.xml
+share/nextcloud/apps/files_versions/appinfo/routes.php
+share/nextcloud/apps/files_versions/appinfo/signature.json
+share/nextcloud/apps/files_versions/css/versions.css
+share/nextcloud/apps/files_versions/download.php
+share/nextcloud/apps/files_versions/img/app.svg
+share/nextcloud/apps/files_versions/js/filesplugin.js
+share/nextcloud/apps/files_versions/js/versioncollection.js
+share/nextcloud/apps/files_versions/js/versionmodel.js
+share/nextcloud/apps/files_versions/js/versionstabview.js
+share/nextcloud/apps/files_versions/l10n/.gitkeep
+share/nextcloud/apps/files_versions/l10n/ar.js
+share/nextcloud/apps/files_versions/l10n/ar.json
+share/nextcloud/apps/files_versions/l10n/ast.js
+share/nextcloud/apps/files_versions/l10n/ast.json
+share/nextcloud/apps/files_versions/l10n/az.js
+share/nextcloud/apps/files_versions/l10n/az.json
+share/nextcloud/apps/files_versions/l10n/bg_BG.js
+share/nextcloud/apps/files_versions/l10n/bg_BG.json
+share/nextcloud/apps/files_versions/l10n/bn_BD.js
+share/nextcloud/apps/files_versions/l10n/bn_BD.json
+share/nextcloud/apps/files_versions/l10n/bn_IN.js
+share/nextcloud/apps/files_versions/l10n/bn_IN.json
+share/nextcloud/apps/files_versions/l10n/bs.js
+share/nextcloud/apps/files_versions/l10n/bs.json
+share/nextcloud/apps/files_versions/l10n/ca.js
+share/nextcloud/apps/files_versions/l10n/ca.json
+share/nextcloud/apps/files_versions/l10n/cs_CZ.js
+share/nextcloud/apps/files_versions/l10n/cs_CZ.json
+share/nextcloud/apps/files_versions/l10n/cy_GB.js
+share/nextcloud/apps/files_versions/l10n/cy_GB.json
+share/nextcloud/apps/files_versions/l10n/da.js
+share/nextcloud/apps/files_versions/l10n/da.json
+share/nextcloud/apps/files_versions/l10n/de.js
+share/nextcloud/apps/files_versions/l10n/de.json
+share/nextcloud/apps/files_versions/l10n/de_DE.js
+share/nextcloud/apps/files_versions/l10n/de_DE.json
+share/nextcloud/apps/files_versions/l10n/el.js
+share/nextcloud/apps/files_versions/l10n/el.json
+share/nextcloud/apps/files_versions/l10n/en_GB.js
+share/nextcloud/apps/files_versions/l10n/en_GB.json
+share/nextcloud/apps/files_versions/l10n/eo.js
+share/nextcloud/apps/files_versions/l10n/eo.json
+share/nextcloud/apps/files_versions/l10n/es.js
+share/nextcloud/apps/files_versions/l10n/es.json
+share/nextcloud/apps/files_versions/l10n/es_AR.js
+share/nextcloud/apps/files_versions/l10n/es_AR.json
+share/nextcloud/apps/files_versions/l10n/es_MX.js
+share/nextcloud/apps/files_versions/l10n/es_MX.json
+share/nextcloud/apps/files_versions/l10n/et_EE.js
+share/nextcloud/apps/files_versions/l10n/et_EE.json
+share/nextcloud/apps/files_versions/l10n/eu.js
+share/nextcloud/apps/files_versions/l10n/eu.json
+share/nextcloud/apps/files_versions/l10n/fa.js
+share/nextcloud/apps/files_versions/l10n/fa.json
+share/nextcloud/apps/files_versions/l10n/fi_FI.js
+share/nextcloud/apps/files_versions/l10n/fi_FI.json
+share/nextcloud/apps/files_versions/l10n/fr.js
+share/nextcloud/apps/files_versions/l10n/fr.json
+share/nextcloud/apps/files_versions/l10n/gl.js
+share/nextcloud/apps/files_versions/l10n/gl.json
+share/nextcloud/apps/files_versions/l10n/he.js
+share/nextcloud/apps/files_versions/l10n/he.json
+share/nextcloud/apps/files_versions/l10n/hr.js
+share/nextcloud/apps/files_versions/l10n/hr.json
+share/nextcloud/apps/files_versions/l10n/hu_HU.js
+share/nextcloud/apps/files_versions/l10n/hu_HU.json
+share/nextcloud/apps/files_versions/l10n/hy.js
+share/nextcloud/apps/files_versions/l10n/hy.json
+share/nextcloud/apps/files_versions/l10n/id.js
+share/nextcloud/apps/files_versions/l10n/id.json
+share/nextcloud/apps/files_versions/l10n/is.js
+share/nextcloud/apps/files_versions/l10n/is.json
+share/nextcloud/apps/files_versions/l10n/it.js
+share/nextcloud/apps/files_versions/l10n/it.json
+share/nextcloud/apps/files_versions/l10n/ja.js
+share/nextcloud/apps/files_versions/l10n/ja.json
+share/nextcloud/apps/files_versions/l10n/ka_GE.js
+share/nextcloud/apps/files_versions/l10n/ka_GE.json
+share/nextcloud/apps/files_versions/l10n/km.js
+share/nextcloud/apps/files_versions/l10n/km.json
+share/nextcloud/apps/files_versions/l10n/kn.js
+share/nextcloud/apps/files_versions/l10n/kn.json
+share/nextcloud/apps/files_versions/l10n/ko.js
+share/nextcloud/apps/files_versions/l10n/ko.json
+share/nextcloud/apps/files_versions/l10n/ku_IQ.js
+share/nextcloud/apps/files_versions/l10n/ku_IQ.json
+share/nextcloud/apps/files_versions/l10n/lb.js
+share/nextcloud/apps/files_versions/l10n/lb.json
+share/nextcloud/apps/files_versions/l10n/lt_LT.js
+share/nextcloud/apps/files_versions/l10n/lt_LT.json
+share/nextcloud/apps/files_versions/l10n/lv.js
+share/nextcloud/apps/files_versions/l10n/lv.json
+share/nextcloud/apps/files_versions/l10n/mk.js
+share/nextcloud/apps/files_versions/l10n/mk.json
+share/nextcloud/apps/files_versions/l10n/ms_MY.js
+share/nextcloud/apps/files_versions/l10n/ms_MY.json
+share/nextcloud/apps/files_versions/l10n/nb_NO.js
+share/nextcloud/apps/files_versions/l10n/nb_NO.json
+share/nextcloud/apps/files_versions/l10n/nl.js
+share/nextcloud/apps/files_versions/l10n/nl.json
+share/nextcloud/apps/files_versions/l10n/nn_NO.js
+share/nextcloud/apps/files_versions/l10n/nn_NO.json
+share/nextcloud/apps/files_versions/l10n/oc.js
+share/nextcloud/apps/files_versions/l10n/oc.json
+share/nextcloud/apps/files_versions/l10n/pl.js
+share/nextcloud/apps/files_versions/l10n/pl.json
+share/nextcloud/apps/files_versions/l10n/pt_BR.js
+share/nextcloud/apps/files_versions/l10n/pt_BR.json
+share/nextcloud/apps/files_versions/l10n/pt_PT.js
+share/nextcloud/apps/files_versions/l10n/pt_PT.json
+share/nextcloud/apps/files_versions/l10n/ro.js
+share/nextcloud/apps/files_versions/l10n/ro.json
+share/nextcloud/apps/files_versions/l10n/ru.js
+share/nextcloud/apps/files_versions/l10n/ru.json
+share/nextcloud/apps/files_versions/l10n/si_LK.js
+share/nextcloud/apps/files_versions/l10n/si_LK.json
+share/nextcloud/apps/files_versions/l10n/sk_SK.js
+share/nextcloud/apps/files_versions/l10n/sk_SK.json
+share/nextcloud/apps/files_versions/l10n/sl.js
+share/nextcloud/apps/files_versions/l10n/sl.json
+share/nextcloud/apps/files_versions/l10n/sq.js
+share/nextcloud/apps/files_versions/l10n/sq.json
+share/nextcloud/apps/files_versions/l10n/sr.js
+share/nextcloud/apps/files_versions/l10n/sr.json
+share/nextcloud/apps/files_versions/l10n/sr%latin.js@localhost
+share/nextcloud/apps/files_versions/l10n/sr%latin.json@localhost
+share/nextcloud/apps/files_versions/l10n/sv.js
+share/nextcloud/apps/files_versions/l10n/sv.json
+share/nextcloud/apps/files_versions/l10n/ta_LK.js
+share/nextcloud/apps/files_versions/l10n/ta_LK.json
+share/nextcloud/apps/files_versions/l10n/th_TH.js
+share/nextcloud/apps/files_versions/l10n/th_TH.json
+share/nextcloud/apps/files_versions/l10n/tr.js
+share/nextcloud/apps/files_versions/l10n/tr.json
+share/nextcloud/apps/files_versions/l10n/ug.js
+share/nextcloud/apps/files_versions/l10n/ug.json
+share/nextcloud/apps/files_versions/l10n/uk.js
+share/nextcloud/apps/files_versions/l10n/uk.json
+share/nextcloud/apps/files_versions/l10n/ur_PK.js
+share/nextcloud/apps/files_versions/l10n/ur_PK.json
+share/nextcloud/apps/files_versions/l10n/vi.js
+share/nextcloud/apps/files_versions/l10n/vi.json
+share/nextcloud/apps/files_versions/l10n/zh_CN.js
+share/nextcloud/apps/files_versions/l10n/zh_CN.json
+share/nextcloud/apps/files_versions/l10n/zh_HK.js
+share/nextcloud/apps/files_versions/l10n/zh_HK.json
+share/nextcloud/apps/files_versions/l10n/zh_TW.js
+share/nextcloud/apps/files_versions/l10n/zh_TW.json
+share/nextcloud/apps/files_versions/lib/AppInfo/Application.php
+share/nextcloud/apps/files_versions/lib/BackgroundJob/ExpireVersions.php
+share/nextcloud/apps/files_versions/lib/Capabilities.php
+share/nextcloud/apps/files_versions/lib/Command/CleanUp.php
+share/nextcloud/apps/files_versions/lib/Command/Expire.php
+share/nextcloud/apps/files_versions/lib/Command/ExpireVersions.php
+share/nextcloud/apps/files_versions/lib/Controller/PreviewController.php
+share/nextcloud/apps/files_versions/lib/Expiration.php
+share/nextcloud/apps/files_versions/lib/Hooks.php
+share/nextcloud/apps/files_versions/lib/Storage.php
+share/nextcloud/apps/files_videoplayer/appinfo/app.php
+share/nextcloud/apps/files_videoplayer/appinfo/info.xml
+share/nextcloud/apps/files_videoplayer/appinfo/signature.json
+share/nextcloud/apps/files_videoplayer/css/style.css
+share/nextcloud/apps/files_videoplayer/img/app.svg
+share/nextcloud/apps/files_videoplayer/img/poster.png
+share/nextcloud/apps/files_videoplayer/img/vjs-volume-bar.png
+share/nextcloud/apps/files_videoplayer/img/vjs-volume-level.png
+share/nextcloud/apps/files_videoplayer/js/viewer.js
+share/nextcloud/apps/files_videoplayer/screenshot.jpg
+share/nextcloud/apps/files_videoplayer/videojs/src/font/vjs.eot
+share/nextcloud/apps/files_videoplayer/videojs/src/font/vjs.svg
+share/nextcloud/apps/files_videoplayer/videojs/src/font/vjs.ttf
+share/nextcloud/apps/files_videoplayer/videojs/src/font/vjs.woff
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/ar.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/bg.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/ca.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/cs.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/de.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/es.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/fr.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/hu.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/it.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/ja.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/ko.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/nl.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/pt-BR.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/ru.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/tr.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/uk.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/vi.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/zh-CN.js
+share/nextcloud/apps/files_videoplayer/videojs/src/lang/zh-TW.js
+share/nextcloud/apps/files_videoplayer/videojs/src/video-js.css
+share/nextcloud/apps/files_videoplayer/videojs/src/video.js
+share/nextcloud/apps/firstrunwizard/appinfo/app.php
+share/nextcloud/apps/firstrunwizard/appinfo/info.xml
+share/nextcloud/apps/firstrunwizard/appinfo/routes.php
+share/nextcloud/apps/firstrunwizard/appinfo/signature.json
+share/nextcloud/apps/firstrunwizard/css/colorbox.css
+share/nextcloud/apps/firstrunwizard/css/firstrunwizard.css
+share/nextcloud/apps/firstrunwizard/img/app.svg
+share/nextcloud/apps/firstrunwizard/js/activate.js
+share/nextcloud/apps/firstrunwizard/js/firstrunwizard.js
+share/nextcloud/apps/firstrunwizard/js/jquery.colorbox.js
+share/nextcloud/apps/firstrunwizard/l10n/.gitignore
+share/nextcloud/apps/firstrunwizard/l10n/.tx/config
+share/nextcloud/apps/firstrunwizard/l10n/ar.js
+share/nextcloud/apps/firstrunwizard/l10n/ar.json
+share/nextcloud/apps/firstrunwizard/l10n/ast.js
+share/nextcloud/apps/firstrunwizard/l10n/ast.json
+share/nextcloud/apps/firstrunwizard/l10n/az.js
+share/nextcloud/apps/firstrunwizard/l10n/az.json
+share/nextcloud/apps/firstrunwizard/l10n/bg_BG.js
+share/nextcloud/apps/firstrunwizard/l10n/bg_BG.json
+share/nextcloud/apps/firstrunwizard/l10n/bn_BD.js
+share/nextcloud/apps/firstrunwizard/l10n/bn_BD.json
+share/nextcloud/apps/firstrunwizard/l10n/bn_BD.php
+share/nextcloud/apps/firstrunwizard/l10n/bn_IN.js
+share/nextcloud/apps/firstrunwizard/l10n/bn_IN.json
+share/nextcloud/apps/firstrunwizard/l10n/bn_IN.php
+share/nextcloud/apps/firstrunwizard/l10n/bs.php
+share/nextcloud/apps/firstrunwizard/l10n/ca.js
+share/nextcloud/apps/firstrunwizard/l10n/ca.json
+share/nextcloud/apps/firstrunwizard/l10n/cs_CZ.js
+share/nextcloud/apps/firstrunwizard/l10n/cs_CZ.json
+share/nextcloud/apps/firstrunwizard/l10n/cy_GB.php
+share/nextcloud/apps/firstrunwizard/l10n/da.js
+share/nextcloud/apps/firstrunwizard/l10n/da.json
+share/nextcloud/apps/firstrunwizard/l10n/de.js
+share/nextcloud/apps/firstrunwizard/l10n/de.json
+share/nextcloud/apps/firstrunwizard/l10n/de_CH.php
+share/nextcloud/apps/firstrunwizard/l10n/de_DE.js
+share/nextcloud/apps/firstrunwizard/l10n/de_DE.json
+share/nextcloud/apps/firstrunwizard/l10n/el.js
+share/nextcloud/apps/firstrunwizard/l10n/el.json
+share/nextcloud/apps/firstrunwizard/l10n/en_GB.js
+share/nextcloud/apps/firstrunwizard/l10n/en_GB.json
+share/nextcloud/apps/firstrunwizard/l10n/eo.js
+share/nextcloud/apps/firstrunwizard/l10n/eo.json
+share/nextcloud/apps/firstrunwizard/l10n/es.js
+share/nextcloud/apps/firstrunwizard/l10n/es.json
+share/nextcloud/apps/firstrunwizard/l10n/es_AR.js
+share/nextcloud/apps/firstrunwizard/l10n/es_AR.json
+share/nextcloud/apps/firstrunwizard/l10n/es_MX.php
+share/nextcloud/apps/firstrunwizard/l10n/et_EE.js
+share/nextcloud/apps/firstrunwizard/l10n/et_EE.json
+share/nextcloud/apps/firstrunwizard/l10n/eu.js
+share/nextcloud/apps/firstrunwizard/l10n/eu.json
+share/nextcloud/apps/firstrunwizard/l10n/fa.js
+share/nextcloud/apps/firstrunwizard/l10n/fa.json
+share/nextcloud/apps/firstrunwizard/l10n/fi_FI.js
+share/nextcloud/apps/firstrunwizard/l10n/fi_FI.json
+share/nextcloud/apps/firstrunwizard/l10n/fr.js
+share/nextcloud/apps/firstrunwizard/l10n/fr.json
+share/nextcloud/apps/firstrunwizard/l10n/gl.js
+share/nextcloud/apps/firstrunwizard/l10n/gl.json
+share/nextcloud/apps/firstrunwizard/l10n/he.js
+share/nextcloud/apps/firstrunwizard/l10n/he.json
+share/nextcloud/apps/firstrunwizard/l10n/hr.js
+share/nextcloud/apps/firstrunwizard/l10n/hr.json
+share/nextcloud/apps/firstrunwizard/l10n/hr.php
+share/nextcloud/apps/firstrunwizard/l10n/hu_HU.js
+share/nextcloud/apps/firstrunwizard/l10n/hu_HU.json
+share/nextcloud/apps/firstrunwizard/l10n/ia.js
+share/nextcloud/apps/firstrunwizard/l10n/ia.json
+share/nextcloud/apps/firstrunwizard/l10n/ia.php
+share/nextcloud/apps/firstrunwizard/l10n/id.js
+share/nextcloud/apps/firstrunwizard/l10n/id.json
+share/nextcloud/apps/firstrunwizard/l10n/is.js
+share/nextcloud/apps/firstrunwizard/l10n/is.json
+share/nextcloud/apps/firstrunwizard/l10n/it.js
+share/nextcloud/apps/firstrunwizard/l10n/it.json
+share/nextcloud/apps/firstrunwizard/l10n/ja.js
+share/nextcloud/apps/firstrunwizard/l10n/ja.json
+share/nextcloud/apps/firstrunwizard/l10n/ka_GE.php
+share/nextcloud/apps/firstrunwizard/l10n/km.php
+share/nextcloud/apps/firstrunwizard/l10n/ko.js
+share/nextcloud/apps/firstrunwizard/l10n/ko.json
+share/nextcloud/apps/firstrunwizard/l10n/ku_IQ.php
+share/nextcloud/apps/firstrunwizard/l10n/lb.php
+share/nextcloud/apps/firstrunwizard/l10n/lt_LT.js
+share/nextcloud/apps/firstrunwizard/l10n/lt_LT.json
+share/nextcloud/apps/firstrunwizard/l10n/lv.php
+share/nextcloud/apps/firstrunwizard/l10n/mk.php
+share/nextcloud/apps/firstrunwizard/l10n/ms_MY.php
+share/nextcloud/apps/firstrunwizard/l10n/nb_NO.js
+share/nextcloud/apps/firstrunwizard/l10n/nb_NO.json
+share/nextcloud/apps/firstrunwizard/l10n/nl.js
+share/nextcloud/apps/firstrunwizard/l10n/nl.json
+share/nextcloud/apps/firstrunwizard/l10n/nn_NO.php
+share/nextcloud/apps/firstrunwizard/l10n/oc.js
+share/nextcloud/apps/firstrunwizard/l10n/oc.json
+share/nextcloud/apps/firstrunwizard/l10n/pl.js
+share/nextcloud/apps/firstrunwizard/l10n/pl.json
+share/nextcloud/apps/firstrunwizard/l10n/pt_BR.js
+share/nextcloud/apps/firstrunwizard/l10n/pt_BR.json
+share/nextcloud/apps/firstrunwizard/l10n/pt_PT.js
+share/nextcloud/apps/firstrunwizard/l10n/pt_PT.json
+share/nextcloud/apps/firstrunwizard/l10n/ro.js
+share/nextcloud/apps/firstrunwizard/l10n/ro.json
+share/nextcloud/apps/firstrunwizard/l10n/ru.js
+share/nextcloud/apps/firstrunwizard/l10n/ru.json
+share/nextcloud/apps/firstrunwizard/l10n/si_LK.php
+share/nextcloud/apps/firstrunwizard/l10n/sk_SK.js
+share/nextcloud/apps/firstrunwizard/l10n/sk_SK.json
+share/nextcloud/apps/firstrunwizard/l10n/sl.js
+share/nextcloud/apps/firstrunwizard/l10n/sl.json
+share/nextcloud/apps/firstrunwizard/l10n/sq.js
+share/nextcloud/apps/firstrunwizard/l10n/sq.json
+share/nextcloud/apps/firstrunwizard/l10n/sr.js
+share/nextcloud/apps/firstrunwizard/l10n/sr.json
+share/nextcloud/apps/firstrunwizard/l10n/sr%latin.js@localhost
+share/nextcloud/apps/firstrunwizard/l10n/sr%latin.json@localhost
+share/nextcloud/apps/firstrunwizard/l10n/sv.js
+share/nextcloud/apps/firstrunwizard/l10n/sv.json
+share/nextcloud/apps/firstrunwizard/l10n/ta_LK.php
+share/nextcloud/apps/firstrunwizard/l10n/te.php
+share/nextcloud/apps/firstrunwizard/l10n/th_TH.js
+share/nextcloud/apps/firstrunwizard/l10n/th_TH.json
+share/nextcloud/apps/firstrunwizard/l10n/tr.js
+share/nextcloud/apps/firstrunwizard/l10n/tr.json
+share/nextcloud/apps/firstrunwizard/l10n/ug.php
+share/nextcloud/apps/firstrunwizard/l10n/uk.js
+share/nextcloud/apps/firstrunwizard/l10n/uk.json
+share/nextcloud/apps/firstrunwizard/l10n/vi.php
+share/nextcloud/apps/firstrunwizard/l10n/zh_CN.js
+share/nextcloud/apps/firstrunwizard/l10n/zh_CN.json
+share/nextcloud/apps/firstrunwizard/l10n/zh_HK.php
+share/nextcloud/apps/firstrunwizard/l10n/zh_TW.js
+share/nextcloud/apps/firstrunwizard/l10n/zh_TW.json
+share/nextcloud/apps/firstrunwizard/lib/AppInfo/Application.php
+share/nextcloud/apps/firstrunwizard/lib/Controller/WizardController.php
+share/nextcloud/apps/firstrunwizard/lib/Notification/BackgroundJob.php
+share/nextcloud/apps/firstrunwizard/lib/Notification/Notifier.php
+share/nextcloud/apps/firstrunwizard/templates/wizard.php
+share/nextcloud/apps/gallery/.github/issue_template.md
+share/nextcloud/apps/gallery/.github/pull_request_template.md
+share/nextcloud/apps/gallery/.gitmodules
+share/nextcloud/apps/gallery/AUTHORS.md
+share/nextcloud/apps/gallery/CHANGELOG.md
+share/nextcloud/apps/gallery/COPYING
+share/nextcloud/apps/gallery/appinfo/app.php
+share/nextcloud/apps/gallery/appinfo/application.php
+share/nextcloud/apps/gallery/appinfo/info.xml
+share/nextcloud/apps/gallery/appinfo/routes.php
+share/nextcloud/apps/gallery/appinfo/signature.json
+share/nextcloud/apps/gallery/build/after_failure.sh
+share/nextcloud/apps/gallery/build/documentation/docpublisher.sh
+share/nextcloud/apps/gallery/build/documentation/index.html
+share/nextcloud/apps/gallery/build/documentation/reports/code coverage/index.html
+share/nextcloud/apps/gallery/build/documentation/reports/index.html
+share/nextcloud/apps/gallery/build/screenshots/Gallery.jpg
+share/nextcloud/apps/gallery/build/xdebug_install.sh
+share/nextcloud/apps/gallery/codeception.yml
+share/nextcloud/apps/gallery/composer.json
+share/nextcloud/apps/gallery/composer.lock
+share/nextcloud/apps/gallery/config/configexception.php
+share/nextcloud/apps/gallery/config/configparser.php
+share/nextcloud/apps/gallery/config/configvalidator.php
+share/nextcloud/apps/gallery/controller/config.php
+share/nextcloud/apps/gallery/controller/configapicontroller.php
+share/nextcloud/apps/gallery/controller/configcontroller.php
+share/nextcloud/apps/gallery/controller/configpubliccontroller.php
+share/nextcloud/apps/gallery/controller/files.php
+share/nextcloud/apps/gallery/controller/filesapicontroller.php
+share/nextcloud/apps/gallery/controller/filescontroller.php
+share/nextcloud/apps/gallery/controller/filespubliccontroller.php
+share/nextcloud/apps/gallery/controller/httperror.php
+share/nextcloud/apps/gallery/controller/pagecontroller.php
+share/nextcloud/apps/gallery/controller/pathmanipulation.php
+share/nextcloud/apps/gallery/controller/preview.php
+share/nextcloud/apps/gallery/controller/previewapicontroller.php
+share/nextcloud/apps/gallery/controller/previewcontroller.php
+share/nextcloud/apps/gallery/controller/previewpubliccontroller.php
+share/nextcloud/apps/gallery/css/authenticate.css
+share/nextcloud/apps/gallery/css/error.css
+share/nextcloud/apps/gallery/css/gallerybutton.css
+share/nextcloud/apps/gallery/css/github-markdown.css
+share/nextcloud/apps/gallery/css/mobile.css
+share/nextcloud/apps/gallery/css/public.css
+share/nextcloud/apps/gallery/css/share.css
+share/nextcloud/apps/gallery/css/slideshow.css
+share/nextcloud/apps/gallery/css/styles.css
+share/nextcloud/apps/gallery/css/upload.css
+share/nextcloud/apps/gallery/documentation/developers.md
+share/nextcloud/apps/gallery/environment/environment.php
+share/nextcloud/apps/gallery/environment/environmentexception.php
+share/nextcloud/apps/gallery/environment/notfoundenvexception.php
+share/nextcloud/apps/gallery/http/imageresponse.php
+share/nextcloud/apps/gallery/img/app.png
+share/nextcloud/apps/gallery/img/app.svg
+share/nextcloud/apps/gallery/img/dateasc.png
+share/nextcloud/apps/gallery/img/dateasc.svg
+share/nextcloud/apps/gallery/img/datedes.png
+share/nextcloud/apps/gallery/img/datedes.svg
+share/nextcloud/apps/gallery/img/folder.png
+share/nextcloud/apps/gallery/img/folder.svg
+share/nextcloud/apps/gallery/img/gallery-dark.png
+share/nextcloud/apps/gallery/img/gallery-dark.svg
+share/nextcloud/apps/gallery/img/nameasc.png
+share/nextcloud/apps/gallery/img/nameasc.svg
+share/nextcloud/apps/gallery/img/namedes.png
+share/nextcloud/apps/gallery/img/namedes.svg
+share/nextcloud/apps/gallery/img/toggle.png
+share/nextcloud/apps/gallery/img/toggle.svg
+share/nextcloud/apps/gallery/img/view-delete.svg
+share/nextcloud/apps/gallery/js/.bowerrc
+share/nextcloud/apps/gallery/js/.jshintrc
+share/nextcloud/apps/gallery/js/app.js
+share/nextcloud/apps/gallery/js/bower.json
+share/nextcloud/apps/gallery/js/breadcrumb.js
+share/nextcloud/apps/gallery/js/eventsource.js
+share/nextcloud/apps/gallery/js/gallery.js
+share/nextcloud/apps/gallery/js/galleryalbum.js
+share/nextcloud/apps/gallery/js/gallerybutton.js
+share/nextcloud/apps/gallery/js/galleryconfig.js
+share/nextcloud/apps/gallery/js/galleryfileaction.js
+share/nextcloud/apps/gallery/js/galleryimage.js
+share/nextcloud/apps/gallery/js/galleryinfobox.js
+share/nextcloud/apps/gallery/js/galleryrow.js
+share/nextcloud/apps/gallery/js/galleryutility.js
+share/nextcloud/apps/gallery/js/galleryview.js
+share/nextcloud/apps/gallery/js/newfilemenuplugins.js
+share/nextcloud/apps/gallery/js/slideshow.js
+share/nextcloud/apps/gallery/js/slideshowcontrols.js
+share/nextcloud/apps/gallery/js/slideshowzoomablepreview.js
+share/nextcloud/apps/gallery/js/thumbnail.js
+share/nextcloud/apps/gallery/js/upload-helper.js
+share/nextcloud/apps/gallery/js/vendor/bigshot/LICENSE.txt
+share/nextcloud/apps/gallery/js/vendor/bigshot/README.txt
+share/nextcloud/apps/gallery/js/vendor/bigshot/bigshot-compressed.js
+share/nextcloud/apps/gallery/js/vendor/bigshot/bigshot.js
+share/nextcloud/apps/gallery/js/vendor/commonmark/LICENSE
+share/nextcloud/apps/gallery/js/vendor/commonmark/dist/commonmark.js
+share/nextcloud/apps/gallery/js/vendor/commonmark/dist/commonmark.min.js
+share/nextcloud/apps/gallery/js/vendor/dompurify/LICENSE
+share/nextcloud/apps/gallery/js/vendor/dompurify/README.md
+share/nextcloud/apps/gallery/js/vendor/dompurify/src/purify.js
+share/nextcloud/apps/gallery/js/vendor/eventsource-polyfill/LICENSE
+share/nextcloud/apps/gallery/js/vendor/eventsource-polyfill/README.md
+share/nextcloud/apps/gallery/js/vendor/eventsource-polyfill/dist/eventsource.js
+share/nextcloud/apps/gallery/js/vendor/jquery-touch-events/README.md
+share/nextcloud/apps/gallery/js/vendor/jquery-touch-events/src/1.0.1/jquery.mobile-events.js
+share/nextcloud/apps/gallery/js/vendor/jquery-touch-events/src/1.0.1/jquery.mobile-events.min.js
+share/nextcloud/apps/gallery/js/vendor/jquery.ui.touch-punch-custom.js
+share/nextcloud/apps/gallery/js/vendor/jqueryui-touch-punch/README.md
+share/nextcloud/apps/gallery/js/vendor/jqueryui-touch-punch/jquery.ui.touch-punch.js
+share/nextcloud/apps/gallery/js/vendor/modified-eventsource-polyfill/eventsource-polyfill.js
+share/nextcloud/apps/gallery/js/vendor/owncloud/newfilemenu.js
+share/nextcloud/apps/gallery/js/vendor/owncloud/share.js
+share/nextcloud/apps/gallery/l10n/.tx/config
+share/nextcloud/apps/gallery/l10n/af_ZA.php
+share/nextcloud/apps/gallery/l10n/ar.js
+share/nextcloud/apps/gallery/l10n/ar.json
+share/nextcloud/apps/gallery/l10n/ar.php
+share/nextcloud/apps/gallery/l10n/ast.js
+share/nextcloud/apps/gallery/l10n/ast.json
+share/nextcloud/apps/gallery/l10n/az.js
+share/nextcloud/apps/gallery/l10n/az.json
+share/nextcloud/apps/gallery/l10n/az.php
+share/nextcloud/apps/gallery/l10n/bg_BG.js
+share/nextcloud/apps/gallery/l10n/bg_BG.json
+share/nextcloud/apps/gallery/l10n/bn_BD.js
+share/nextcloud/apps/gallery/l10n/bn_BD.json
+share/nextcloud/apps/gallery/l10n/bn_BD.php
+share/nextcloud/apps/gallery/l10n/bn_IN.js
+share/nextcloud/apps/gallery/l10n/bn_IN.json
+share/nextcloud/apps/gallery/l10n/bn_IN.php
+share/nextcloud/apps/gallery/l10n/bs.php
+share/nextcloud/apps/gallery/l10n/ca.js
+share/nextcloud/apps/gallery/l10n/ca.json
+share/nextcloud/apps/gallery/l10n/ca.php
+share/nextcloud/apps/gallery/l10n/cs_CZ.js
+share/nextcloud/apps/gallery/l10n/cs_CZ.json
+share/nextcloud/apps/gallery/l10n/cy_GB.php
+share/nextcloud/apps/gallery/l10n/da.js
+share/nextcloud/apps/gallery/l10n/da.json
+share/nextcloud/apps/gallery/l10n/de.js
+share/nextcloud/apps/gallery/l10n/de.json
+share/nextcloud/apps/gallery/l10n/de_AT.php
+share/nextcloud/apps/gallery/l10n/de_CH.php
+share/nextcloud/apps/gallery/l10n/de_DE.js
+share/nextcloud/apps/gallery/l10n/de_DE.json
+share/nextcloud/apps/gallery/l10n/el.js
+share/nextcloud/apps/gallery/l10n/el.json
+share/nextcloud/apps/gallery/l10n/en_GB.js
+share/nextcloud/apps/gallery/l10n/en_GB.json
+share/nextcloud/apps/gallery/l10n/eo.js
+share/nextcloud/apps/gallery/l10n/eo.json
+share/nextcloud/apps/gallery/l10n/eo.php
+share/nextcloud/apps/gallery/l10n/es.js
+share/nextcloud/apps/gallery/l10n/es.json
+share/nextcloud/apps/gallery/l10n/es_AR.php
+share/nextcloud/apps/gallery/l10n/es_CL.php
+share/nextcloud/apps/gallery/l10n/es_MX.php
+share/nextcloud/apps/gallery/l10n/et_EE.js
+share/nextcloud/apps/gallery/l10n/et_EE.json
+share/nextcloud/apps/gallery/l10n/eu.js
+share/nextcloud/apps/gallery/l10n/eu.json
+share/nextcloud/apps/gallery/l10n/eu.php
+share/nextcloud/apps/gallery/l10n/fa.js
+share/nextcloud/apps/gallery/l10n/fa.json
+share/nextcloud/apps/gallery/l10n/fa.php
+share/nextcloud/apps/gallery/l10n/fi_FI.js
+share/nextcloud/apps/gallery/l10n/fi_FI.json
+share/nextcloud/apps/gallery/l10n/fr.js
+share/nextcloud/apps/gallery/l10n/fr.json
+share/nextcloud/apps/gallery/l10n/gl.js
+share/nextcloud/apps/gallery/l10n/gl.json
+share/nextcloud/apps/gallery/l10n/he.js
+share/nextcloud/apps/gallery/l10n/he.json
+share/nextcloud/apps/gallery/l10n/hi.php
+share/nextcloud/apps/gallery/l10n/hr.js
+share/nextcloud/apps/gallery/l10n/hr.json
+share/nextcloud/apps/gallery/l10n/hr.php
+share/nextcloud/apps/gallery/l10n/hu_HU.js
+share/nextcloud/apps/gallery/l10n/hu_HU.json
+share/nextcloud/apps/gallery/l10n/ia.php
+share/nextcloud/apps/gallery/l10n/id.js
+share/nextcloud/apps/gallery/l10n/id.json
+share/nextcloud/apps/gallery/l10n/is.js
+share/nextcloud/apps/gallery/l10n/is.json
+share/nextcloud/apps/gallery/l10n/it.js
+share/nextcloud/apps/gallery/l10n/it.json
+share/nextcloud/apps/gallery/l10n/ja.js
+share/nextcloud/apps/gallery/l10n/ja.json
+share/nextcloud/apps/gallery/l10n/ka_GE.php
+share/nextcloud/apps/gallery/l10n/km.js
+share/nextcloud/apps/gallery/l10n/km.json
+share/nextcloud/apps/gallery/l10n/km.php
+share/nextcloud/apps/gallery/l10n/ko.js
+share/nextcloud/apps/gallery/l10n/ko.json
+share/nextcloud/apps/gallery/l10n/ku_IQ.php
+share/nextcloud/apps/gallery/l10n/lb.php
+share/nextcloud/apps/gallery/l10n/lt_LT.js
+share/nextcloud/apps/gallery/l10n/lt_LT.json
+share/nextcloud/apps/gallery/l10n/lv.php
+share/nextcloud/apps/gallery/l10n/mk.php
+share/nextcloud/apps/gallery/l10n/ms_MY.php
+share/nextcloud/apps/gallery/l10n/nb_NO.js
+share/nextcloud/apps/gallery/l10n/nb_NO.json
+share/nextcloud/apps/gallery/l10n/nl.js
+share/nextcloud/apps/gallery/l10n/nl.json
+share/nextcloud/apps/gallery/l10n/nn_NO.php
+share/nextcloud/apps/gallery/l10n/no-php
+share/nextcloud/apps/gallery/l10n/oc.js
+share/nextcloud/apps/gallery/l10n/oc.json
+share/nextcloud/apps/gallery/l10n/pa.php
+share/nextcloud/apps/gallery/l10n/pl.js
+share/nextcloud/apps/gallery/l10n/pl.json
+share/nextcloud/apps/gallery/l10n/pt_BR.js
+share/nextcloud/apps/gallery/l10n/pt_BR.json
+share/nextcloud/apps/gallery/l10n/pt_PT.js
+share/nextcloud/apps/gallery/l10n/pt_PT.json
+share/nextcloud/apps/gallery/l10n/ro.js
+share/nextcloud/apps/gallery/l10n/ro.json
+share/nextcloud/apps/gallery/l10n/ru.js
+share/nextcloud/apps/gallery/l10n/ru.json
+share/nextcloud/apps/gallery/l10n/si_LK.php
+share/nextcloud/apps/gallery/l10n/sk.php
+share/nextcloud/apps/gallery/l10n/sk_SK.js
+share/nextcloud/apps/gallery/l10n/sk_SK.json
+share/nextcloud/apps/gallery/l10n/sl.js
+share/nextcloud/apps/gallery/l10n/sl.json
+share/nextcloud/apps/gallery/l10n/sq.js
+share/nextcloud/apps/gallery/l10n/sq.json
+share/nextcloud/apps/gallery/l10n/sr.php
+share/nextcloud/apps/gallery/l10n/sr%latin.php@localhost
+share/nextcloud/apps/gallery/l10n/sv.js
+share/nextcloud/apps/gallery/l10n/sv.json
+share/nextcloud/apps/gallery/l10n/ta_LK.php
+share/nextcloud/apps/gallery/l10n/th_TH.js
+share/nextcloud/apps/gallery/l10n/th_TH.json
+share/nextcloud/apps/gallery/l10n/tr.js
+share/nextcloud/apps/gallery/l10n/tr.json
+share/nextcloud/apps/gallery/l10n/ug.php
+share/nextcloud/apps/gallery/l10n/uk.js
+share/nextcloud/apps/gallery/l10n/uk.json
+share/nextcloud/apps/gallery/l10n/uk.php
+share/nextcloud/apps/gallery/l10n/ur_PK.js
+share/nextcloud/apps/gallery/l10n/ur_PK.json
+share/nextcloud/apps/gallery/l10n/ur_PK.php
+share/nextcloud/apps/gallery/l10n/vi.js
+share/nextcloud/apps/gallery/l10n/vi.json
+share/nextcloud/apps/gallery/l10n/vi.php
+share/nextcloud/apps/gallery/l10n/zh_CN.js
+share/nextcloud/apps/gallery/l10n/zh_CN.json
+share/nextcloud/apps/gallery/l10n/zh_HK.php
+share/nextcloud/apps/gallery/l10n/zh_TW.js
+share/nextcloud/apps/gallery/l10n/zh_TW.json
+share/nextcloud/apps/gallery/middleware/checkexception.php
+share/nextcloud/apps/gallery/middleware/checkmiddleware.php
+share/nextcloud/apps/gallery/middleware/envcheckmiddleware.php
+share/nextcloud/apps/gallery/middleware/sharingcheckmiddleware.php
+share/nextcloud/apps/gallery/phpdoc.xml
+share/nextcloud/apps/gallery/preview/preview.php
+share/nextcloud/apps/gallery/service/base64encode.php
+share/nextcloud/apps/gallery/service/configservice.php
+share/nextcloud/apps/gallery/service/downloadservice.php
+share/nextcloud/apps/gallery/service/filesservice.php
+share/nextcloud/apps/gallery/service/forbiddenserviceexception.php
+share/nextcloud/apps/gallery/service/internalservererrorserviceexception.php
+share/nextcloud/apps/gallery/service/notfoundserviceexception.php
+share/nextcloud/apps/gallery/service/previewservice.php
+share/nextcloud/apps/gallery/service/searchfolderservice.php
+share/nextcloud/apps/gallery/service/searchmediaservice.php
+share/nextcloud/apps/gallery/service/service.php
+share/nextcloud/apps/gallery/service/serviceexception.php
+share/nextcloud/apps/gallery/service/thumbnailservice.php
+share/nextcloud/apps/gallery/templates/authenticate.php
+share/nextcloud/apps/gallery/templates/index.php
+share/nextcloud/apps/gallery/templates/part.content.php
+share/nextcloud/apps/gallery/templates/part.filenotfounderror.php
+share/nextcloud/apps/gallery/templates/part.internalservererror.php
+share/nextcloud/apps/gallery/templates/part.linkerror.php
+share/nextcloud/apps/gallery/templates/public.php
+share/nextcloud/apps/gallery/templates/slideshow.php
+share/nextcloud/apps/gallery/utility/eventsource.php
+share/nextcloud/apps/gallery/vendor/autoload.php
+share/nextcloud/apps/gallery/vendor/composer/ClassLoader.php
+share/nextcloud/apps/gallery/vendor/composer/LICENSE
+share/nextcloud/apps/gallery/vendor/composer/autoload_classmap.php
+share/nextcloud/apps/gallery/vendor/composer/autoload_namespaces.php
+share/nextcloud/apps/gallery/vendor/composer/autoload_psr4.php
+share/nextcloud/apps/gallery/vendor/composer/autoload_real.php
+share/nextcloud/apps/gallery/vendor/composer/autoload_static.php
+share/nextcloud/apps/gallery/vendor/composer/installed.json
+share/nextcloud/apps/gallery/vendor/symfony/yaml/.gitignore
+share/nextcloud/apps/gallery/vendor/symfony/yaml/CHANGELOG.md
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Dumper.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Escaper.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Exception/DumpException.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Exception/ExceptionInterface.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Exception/ParseException.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Exception/RuntimeException.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Inline.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/LICENSE
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Parser.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/README.md
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/DumperTest.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsAnchorAlias.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsBasicTests.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsBlockMapping.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsDocumentSeparator.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsErrorTests.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsFlowCollections.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsFoldedScalars.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsNullsAndEmpties.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsSpecificationExamples.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsTypeTransfers.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/escapedCharacters.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/index.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfComments.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfCompact.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfMergeKey.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfObjects.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfQuotes.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfTests.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/unindentedCollections.yml
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/InlineTest.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/ParseExceptionTest.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/ParserTest.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Tests/YamlTest.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Unescaper.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/Yaml.php
+share/nextcloud/apps/gallery/vendor/symfony/yaml/composer.json
+share/nextcloud/apps/gallery/vendor/symfony/yaml/phpunit.xml.dist
+share/nextcloud/apps/logreader/.babelrc
+share/nextcloud/apps/logreader/Makefile
+share/nextcloud/apps/logreader/appinfo/app.php
+share/nextcloud/apps/logreader/appinfo/info.xml
+share/nextcloud/apps/logreader/appinfo/routes.php
+share/nextcloud/apps/logreader/appinfo/signature.json
+share/nextcloud/apps/logreader/build/main.css
+share/nextcloud/apps/logreader/build/main.css.map
+share/nextcloud/apps/logreader/build/main.js
+share/nextcloud/apps/logreader/build/main.js.map
+share/nextcloud/apps/logreader/controller/logcontroller.php
+share/nextcloud/apps/logreader/controller/pagecontroller.php
+share/nextcloud/apps/logreader/css/app.css
+share/nextcloud/apps/logreader/img/app.svg
+share/nextcloud/apps/logreader/js/App.js
+share/nextcloud/apps/logreader/js/Components/BackgroundException.js
+share/nextcloud/apps/logreader/js/Components/Exception.js
+share/nextcloud/apps/logreader/js/Components/Exception.less
+share/nextcloud/apps/logreader/js/Components/LevelSettings.js
+share/nextcloud/apps/logreader/js/Components/LevelSettings.less
+share/nextcloud/apps/logreader/js/Components/LogEntry.js
+share/nextcloud/apps/logreader/js/Components/LogLevel.js
+share/nextcloud/apps/logreader/js/Components/LogTable.js
+share/nextcloud/apps/logreader/js/Components/LogTable.less
+share/nextcloud/apps/logreader/js/Components/LogUploader.js
+share/nextcloud/apps/logreader/js/Components/LogUploader.less
+share/nextcloud/apps/logreader/js/Components/ToggleEntry.js
+share/nextcloud/apps/logreader/js/Components/ToggleEntry.less
+share/nextcloud/apps/logreader/js/Components/TraceLine.js
+share/nextcloud/apps/logreader/js/Components/TraceLine.less
+share/nextcloud/apps/logreader/js/DateFormatConverter.js
+share/nextcloud/apps/logreader/js/ExceptionParser.js
+share/nextcloud/apps/logreader/js/Providers/LogFile.js
+share/nextcloud/apps/logreader/js/Providers/LogProvider.js
+share/nextcloud/apps/logreader/js/Search.js
+share/nextcloud/apps/logreader/js/index.js
+share/nextcloud/apps/logreader/js/unserialize.js
+share/nextcloud/apps/logreader/lib/Settings/Admin.php
+share/nextcloud/apps/logreader/lib/Settings/Section.php
+share/nextcloud/apps/logreader/log/logiterator.php
+share/nextcloud/apps/logreader/log/searchfilter.php
+share/nextcloud/apps/logreader/package.json
+share/nextcloud/apps/logreader/screenshots/reader.png
+share/nextcloud/apps/logreader/templates/index.php
+share/nextcloud/apps/logreader/webpack/dev-proxy.js
+share/nextcloud/apps/logreader/webpack/dev.config.js
+share/nextcloud/apps/logreader/webpack/prod.config.js
+share/nextcloud/apps/logreader/webpack/utils/notifyStats.js
+share/nextcloud/apps/logreader/webpack/utils/writeStats.js
+share/nextcloud/apps/logreader/webpack/webpack-dev-server.js
+share/nextcloud/apps/lookup_server_connector/appinfo/app.php
+share/nextcloud/apps/lookup_server_connector/appinfo/info.xml
+share/nextcloud/apps/lookup_server_connector/appinfo/signature.json
+share/nextcloud/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
+share/nextcloud/apps/lookup_server_connector/lib/UpdateLookupServer.php
+share/nextcloud/apps/nextcloud_announcements/.gitattributes
+share/nextcloud/apps/nextcloud_announcements/.github/contributing.md
+share/nextcloud/apps/nextcloud_announcements/.github/issue_template.md
+share/nextcloud/apps/nextcloud_announcements/COPYING
+share/nextcloud/apps/nextcloud_announcements/appinfo/app.php
+share/nextcloud/apps/nextcloud_announcements/appinfo/certificate.crt
+share/nextcloud/apps/nextcloud_announcements/appinfo/info.xml
+share/nextcloud/apps/nextcloud_announcements/appinfo/signature.json
+share/nextcloud/apps/nextcloud_announcements/img/app-dark.svg
+share/nextcloud/apps/nextcloud_announcements/img/app.svg
+share/nextcloud/apps/nextcloud_announcements/js/admin.js
+share/nextcloud/apps/nextcloud_announcements/l10n/.tx/config
+share/nextcloud/apps/nextcloud_announcements/l10n/ast.js
+share/nextcloud/apps/nextcloud_announcements/l10n/ast.json
+share/nextcloud/apps/nextcloud_announcements/l10n/cs_CZ.js
+share/nextcloud/apps/nextcloud_announcements/l10n/cs_CZ.json
+share/nextcloud/apps/nextcloud_announcements/l10n/de.js
+share/nextcloud/apps/nextcloud_announcements/l10n/de.json
+share/nextcloud/apps/nextcloud_announcements/l10n/de_DE.js
+share/nextcloud/apps/nextcloud_announcements/l10n/de_DE.json
+share/nextcloud/apps/nextcloud_announcements/l10n/es.js
+share/nextcloud/apps/nextcloud_announcements/l10n/es.json
+share/nextcloud/apps/nextcloud_announcements/l10n/fr.js
+share/nextcloud/apps/nextcloud_announcements/l10n/fr.json
+share/nextcloud/apps/nextcloud_announcements/l10n/hu_HU.js
+share/nextcloud/apps/nextcloud_announcements/l10n/hu_HU.json
+share/nextcloud/apps/nextcloud_announcements/l10n/id.js
+share/nextcloud/apps/nextcloud_announcements/l10n/id.json
+share/nextcloud/apps/nextcloud_announcements/l10n/is.js
+share/nextcloud/apps/nextcloud_announcements/l10n/is.json
+share/nextcloud/apps/nextcloud_announcements/l10n/it.js
+share/nextcloud/apps/nextcloud_announcements/l10n/it.json
+share/nextcloud/apps/nextcloud_announcements/l10n/ja.js
+share/nextcloud/apps/nextcloud_announcements/l10n/ja.json
+share/nextcloud/apps/nextcloud_announcements/l10n/nb_NO.js
+share/nextcloud/apps/nextcloud_announcements/l10n/nb_NO.json
+share/nextcloud/apps/nextcloud_announcements/l10n/nl.js
+share/nextcloud/apps/nextcloud_announcements/l10n/nl.json
+share/nextcloud/apps/nextcloud_announcements/l10n/pt_BR.js
+share/nextcloud/apps/nextcloud_announcements/l10n/pt_BR.json
+share/nextcloud/apps/nextcloud_announcements/l10n/ru.js
+share/nextcloud/apps/nextcloud_announcements/l10n/ru.json
+share/nextcloud/apps/nextcloud_announcements/l10n/sv.js
+share/nextcloud/apps/nextcloud_announcements/l10n/sv.json
+share/nextcloud/apps/nextcloud_announcements/l10n/tr.js
+share/nextcloud/apps/nextcloud_announcements/l10n/tr.json
+share/nextcloud/apps/nextcloud_announcements/l10n/zh_TW.js
+share/nextcloud/apps/nextcloud_announcements/l10n/zh_TW.json
+share/nextcloud/apps/nextcloud_announcements/lib/AppInfo/Application.php
+share/nextcloud/apps/nextcloud_announcements/lib/Cron/Crawler.php
+share/nextcloud/apps/nextcloud_announcements/lib/Notification/Notifier.php
+share/nextcloud/apps/nextcloud_announcements/lib/Settings/Admin.php
+share/nextcloud/apps/nextcloud_announcements/templates/admin.php
+share/nextcloud/apps/notifications/COPYING
+share/nextcloud/apps/notifications/appinfo/app.php
+share/nextcloud/apps/notifications/appinfo/database.xml
+share/nextcloud/apps/notifications/appinfo/info.xml
+share/nextcloud/apps/notifications/appinfo/routes.php
+share/nextcloud/apps/notifications/appinfo/signature.json
+share/nextcloud/apps/notifications/css/styles.css
+share/nextcloud/apps/notifications/docs/notification-workflow.md
+share/nextcloud/apps/notifications/docs/ocs-endpoint-v1.md
+share/nextcloud/apps/notifications/docs/ocs-endpoint-v2.md
+share/nextcloud/apps/notifications/docs/screenshot.png
+share/nextcloud/apps/notifications/img/notifications-new-dark.svg
+share/nextcloud/apps/notifications/img/notifications-new.png
+share/nextcloud/apps/notifications/img/notifications-new.svg
+share/nextcloud/apps/notifications/img/notifications.png
+share/nextcloud/apps/notifications/img/notifications.svg
+share/nextcloud/apps/notifications/js/app.js
+share/nextcloud/apps/notifications/js/notification.js
+share/nextcloud/apps/notifications/js/richObjectStringParser.js
+share/nextcloud/apps/notifications/l10n/.tx/config
+share/nextcloud/apps/notifications/l10n/bg_BG.js
+share/nextcloud/apps/notifications/l10n/bg_BG.json
+share/nextcloud/apps/notifications/l10n/cs_CZ.js
+share/nextcloud/apps/notifications/l10n/cs_CZ.json
+share/nextcloud/apps/notifications/l10n/de.js
+share/nextcloud/apps/notifications/l10n/de.json
+share/nextcloud/apps/notifications/l10n/de_DE.js
+share/nextcloud/apps/notifications/l10n/de_DE.json
+share/nextcloud/apps/notifications/l10n/es.js
+share/nextcloud/apps/notifications/l10n/es.json
+share/nextcloud/apps/notifications/l10n/fi_FI.js
+share/nextcloud/apps/notifications/l10n/fi_FI.json
+share/nextcloud/apps/notifications/l10n/fr.js
+share/nextcloud/apps/notifications/l10n/fr.json
+share/nextcloud/apps/notifications/l10n/hu_HU.js
+share/nextcloud/apps/notifications/l10n/hu_HU.json
+share/nextcloud/apps/notifications/l10n/id.js
+share/nextcloud/apps/notifications/l10n/id.json
+share/nextcloud/apps/notifications/l10n/is.js
+share/nextcloud/apps/notifications/l10n/is.json
+share/nextcloud/apps/notifications/l10n/it.js
+share/nextcloud/apps/notifications/l10n/it.json
+share/nextcloud/apps/notifications/l10n/ja.js
+share/nextcloud/apps/notifications/l10n/ja.json
+share/nextcloud/apps/notifications/l10n/ko.js
+share/nextcloud/apps/notifications/l10n/ko.json
+share/nextcloud/apps/notifications/l10n/lt_LT.js
+share/nextcloud/apps/notifications/l10n/lt_LT.json
+share/nextcloud/apps/notifications/l10n/nb_NO.js
+share/nextcloud/apps/notifications/l10n/nb_NO.json
+share/nextcloud/apps/notifications/l10n/nl.js
+share/nextcloud/apps/notifications/l10n/nl.json
+share/nextcloud/apps/notifications/l10n/pl.js
+share/nextcloud/apps/notifications/l10n/pl.json
+share/nextcloud/apps/notifications/l10n/pt_BR.js
+share/nextcloud/apps/notifications/l10n/pt_BR.json
+share/nextcloud/apps/notifications/l10n/ru.js
+share/nextcloud/apps/notifications/l10n/ru.json
+share/nextcloud/apps/notifications/l10n/sv.js
+share/nextcloud/apps/notifications/l10n/sv.json
+share/nextcloud/apps/notifications/l10n/tr.js
+share/nextcloud/apps/notifications/l10n/tr.json
+share/nextcloud/apps/notifications/l10n/uk.js
+share/nextcloud/apps/notifications/l10n/uk.json
+share/nextcloud/apps/notifications/l10n/zh_TW.js
+share/nextcloud/apps/notifications/l10n/zh_TW.json
+share/nextcloud/apps/notifications/lib/App.php
+share/nextcloud/apps/notifications/lib/AppInfo/Application.php
+share/nextcloud/apps/notifications/lib/Capabilities.php
+share/nextcloud/apps/notifications/lib/Controller/EndpointController.php
+share/nextcloud/apps/notifications/lib/Handler.php
+share/nextcloud/apps/password_policy/LICENSE
+share/nextcloud/apps/password_policy/appinfo/app.php
+share/nextcloud/apps/password_policy/appinfo/info.xml
+share/nextcloud/apps/password_policy/appinfo/signature.json
+share/nextcloud/apps/password_policy/css/settings-admin.css
+share/nextcloud/apps/password_policy/img/app.svg
+share/nextcloud/apps/password_policy/js/settings-admin.js
+share/nextcloud/apps/password_policy/l10n/.tx/config
+share/nextcloud/apps/password_policy/l10n/cs_CZ.js
+share/nextcloud/apps/password_policy/l10n/cs_CZ.json
+share/nextcloud/apps/password_policy/l10n/da.js
+share/nextcloud/apps/password_policy/l10n/da.json
+share/nextcloud/apps/password_policy/l10n/de.js
+share/nextcloud/apps/password_policy/l10n/de.json
+share/nextcloud/apps/password_policy/l10n/de_DE.js
+share/nextcloud/apps/password_policy/l10n/de_DE.json
+share/nextcloud/apps/password_policy/l10n/es.js
+share/nextcloud/apps/password_policy/l10n/es.json
+share/nextcloud/apps/password_policy/l10n/fr.js
+share/nextcloud/apps/password_policy/l10n/fr.json
+share/nextcloud/apps/password_policy/l10n/hu_HU.js
+share/nextcloud/apps/password_policy/l10n/hu_HU.json
+share/nextcloud/apps/password_policy/l10n/id.js
+share/nextcloud/apps/password_policy/l10n/id.json
+share/nextcloud/apps/password_policy/l10n/it.js
+share/nextcloud/apps/password_policy/l10n/it.json
+share/nextcloud/apps/password_policy/l10n/ja.js
+share/nextcloud/apps/password_policy/l10n/ja.json
+share/nextcloud/apps/password_policy/l10n/ko.js
+share/nextcloud/apps/password_policy/l10n/ko.json
+share/nextcloud/apps/password_policy/l10n/nb_NO.js
+share/nextcloud/apps/password_policy/l10n/nb_NO.json
+share/nextcloud/apps/password_policy/l10n/nl.js
+share/nextcloud/apps/password_policy/l10n/nl.json
+share/nextcloud/apps/password_policy/l10n/pl.js
+share/nextcloud/apps/password_policy/l10n/pl.json
+share/nextcloud/apps/password_policy/l10n/pt_BR.js
+share/nextcloud/apps/password_policy/l10n/pt_BR.json
+share/nextcloud/apps/password_policy/l10n/ru.js
+share/nextcloud/apps/password_policy/l10n/ru.json
+share/nextcloud/apps/password_policy/l10n/tr.js
+share/nextcloud/apps/password_policy/l10n/tr.json
+share/nextcloud/apps/password_policy/lib/PasswordPolicyConfig.php
+share/nextcloud/apps/password_policy/lib/PasswordValidator.php
+share/nextcloud/apps/password_policy/lists/README.md
+share/nextcloud/apps/password_policy/lists/converter.php
+share/nextcloud/apps/password_policy/lists/list-1.php
+share/nextcloud/apps/password_policy/lists/list-10.php
+share/nextcloud/apps/password_policy/lists/list-11.php
+share/nextcloud/apps/password_policy/lists/list-12.php
+share/nextcloud/apps/password_policy/lists/list-13.php
+share/nextcloud/apps/password_policy/lists/list-14.php
+share/nextcloud/apps/password_policy/lists/list-15.php
+share/nextcloud/apps/password_policy/lists/list-16.php
+share/nextcloud/apps/password_policy/lists/list-17.php
+share/nextcloud/apps/password_policy/lists/list-18.php
+share/nextcloud/apps/password_policy/lists/list-19.php
+share/nextcloud/apps/password_policy/lists/list-20.php
+share/nextcloud/apps/password_policy/lists/list-21.php
+share/nextcloud/apps/password_policy/lists/list-22.php
+share/nextcloud/apps/password_policy/lists/list-23.php
+share/nextcloud/apps/password_policy/lists/list-24.php
+share/nextcloud/apps/password_policy/lists/list-25.php
+share/nextcloud/apps/password_policy/lists/list-26.php
+share/nextcloud/apps/password_policy/lists/list-27.php
+share/nextcloud/apps/password_policy/lists/list-28.php
+share/nextcloud/apps/password_policy/lists/list-29.php
+share/nextcloud/apps/password_policy/lists/list-3.php
+share/nextcloud/apps/password_policy/lists/list-30.php
+share/nextcloud/apps/password_policy/lists/list-31.php
+share/nextcloud/apps/password_policy/lists/list-32.php
+share/nextcloud/apps/password_policy/lists/list-33.php
+share/nextcloud/apps/password_policy/lists/list-35.php
+share/nextcloud/apps/password_policy/lists/list-36.php
+share/nextcloud/apps/password_policy/lists/list-37.php
+share/nextcloud/apps/password_policy/lists/list-39.php
+share/nextcloud/apps/password_policy/lists/list-4.php
+share/nextcloud/apps/password_policy/lists/list-5.php
+share/nextcloud/apps/password_policy/lists/list-6.php
+share/nextcloud/apps/password_policy/lists/list-7.php
+share/nextcloud/apps/password_policy/lists/list-8.php
+share/nextcloud/apps/password_policy/lists/list-9.php
+share/nextcloud/apps/password_policy/settings/settings-admin.php
+share/nextcloud/apps/password_policy/templates/settings-admin.php
+share/nextcloud/apps/provisioning_api/appinfo/info.xml
+share/nextcloud/apps/provisioning_api/appinfo/routes.php
+share/nextcloud/apps/provisioning_api/appinfo/signature.json
+share/nextcloud/apps/provisioning_api/img/app.svg
+share/nextcloud/apps/provisioning_api/lib/AppInfo/Application.php
+share/nextcloud/apps/provisioning_api/lib/Controller/AppConfigController.php
+share/nextcloud/apps/provisioning_api/lib/Controller/AppsController.php
+share/nextcloud/apps/provisioning_api/lib/Controller/GroupsController.php
+share/nextcloud/apps/provisioning_api/lib/Controller/UsersController.php
+share/nextcloud/apps/provisioning_api/lib/Middleware/Exceptions/NotSubAdminException.php
+share/nextcloud/apps/provisioning_api/lib/Middleware/ProvisioningApiMiddleware.php
+share/nextcloud/apps/serverinfo/AUTHORS.md
+share/nextcloud/apps/serverinfo/CHANGELOG.md
+share/nextcloud/apps/serverinfo/COPYING
+share/nextcloud/apps/serverinfo/appinfo/app.php
+share/nextcloud/apps/serverinfo/appinfo/info.xml
+share/nextcloud/apps/serverinfo/appinfo/routes.php
+share/nextcloud/apps/serverinfo/appinfo/signature.json
+share/nextcloud/apps/serverinfo/css/style.css
+share/nextcloud/apps/serverinfo/img/app.svg
+share/nextcloud/apps/serverinfo/js/Chart.min.js
+share/nextcloud/apps/serverinfo/js/script.js
+share/nextcloud/apps/serverinfo/js/smoothie.js
+share/nextcloud/apps/serverinfo/lib/Controller/ApiController.php
+share/nextcloud/apps/serverinfo/lib/Controller/PageController.php
+share/nextcloud/apps/serverinfo/lib/DatabaseStatistics.php
+share/nextcloud/apps/serverinfo/lib/PhpStatistics.php
+share/nextcloud/apps/serverinfo/lib/SessionStatistics.php
+share/nextcloud/apps/serverinfo/lib/Settings/AdminSection.php
+share/nextcloud/apps/serverinfo/lib/Settings/AdminSettings.php
+share/nextcloud/apps/serverinfo/lib/ShareStatistics.php
+share/nextcloud/apps/serverinfo/lib/StorageStatistics.php
+share/nextcloud/apps/serverinfo/lib/SystemStatistics.php
+share/nextcloud/apps/serverinfo/templates/settings-admin.php
+share/nextcloud/apps/sharebymail/appinfo/app.php
+share/nextcloud/apps/sharebymail/appinfo/info.xml
+share/nextcloud/apps/sharebymail/appinfo/signature.json
+share/nextcloud/apps/sharebymail/img/app.svg
+share/nextcloud/apps/sharebymail/lib/Activity.php
+share/nextcloud/apps/sharebymail/lib/Settings.php
+share/nextcloud/apps/sharebymail/lib/ShareByMailProvider.php
+share/nextcloud/apps/sharebymail/templates/altmail.php
+share/nextcloud/apps/sharebymail/templates/mail.php
+share/nextcloud/apps/survey_client/COPYING
+share/nextcloud/apps/survey_client/ISSUE_TEMPLATE.md
+share/nextcloud/apps/survey_client/appinfo/app.php
+share/nextcloud/apps/survey_client/appinfo/info.xml
+share/nextcloud/apps/survey_client/appinfo/install.php
+share/nextcloud/apps/survey_client/appinfo/routes.php
+share/nextcloud/apps/survey_client/appinfo/signature.json
+share/nextcloud/apps/survey_client/appinfo/update.php
+share/nextcloud/apps/survey_client/css/admin.css
+share/nextcloud/apps/survey_client/js/admin.js
+share/nextcloud/apps/survey_client/lib/AppInfo/Application.php
+share/nextcloud/apps/survey_client/lib/BackgroundJobs/AdminNotification.php
+share/nextcloud/apps/survey_client/lib/BackgroundJobs/MonthlyReport.php
+share/nextcloud/apps/survey_client/lib/Categories/Apps.php
+share/nextcloud/apps/survey_client/lib/Categories/Database.php
+share/nextcloud/apps/survey_client/lib/Categories/Encryption.php
+share/nextcloud/apps/survey_client/lib/Categories/FilesSharing.php
+share/nextcloud/apps/survey_client/lib/Categories/ICategory.php
+share/nextcloud/apps/survey_client/lib/Categories/Php.php
+share/nextcloud/apps/survey_client/lib/Categories/Server.php
+share/nextcloud/apps/survey_client/lib/Categories/Stats.php
+share/nextcloud/apps/survey_client/lib/Collector.php
+share/nextcloud/apps/survey_client/lib/Controller/EndpointController.php
+share/nextcloud/apps/survey_client/lib/Notifier.php
+share/nextcloud/apps/survey_client/lib/Settings/AdminSection.php
+share/nextcloud/apps/survey_client/lib/Settings/AdminSettings.php
+share/nextcloud/apps/survey_client/templates/admin.php
+share/nextcloud/apps/systemtags/appinfo/app.php
+share/nextcloud/apps/systemtags/appinfo/info.xml
+share/nextcloud/apps/systemtags/appinfo/routes.php
+share/nextcloud/apps/systemtags/appinfo/signature.json
+share/nextcloud/apps/systemtags/css/systemtagsfilelist.css
+share/nextcloud/apps/systemtags/img/app.svg
+share/nextcloud/apps/systemtags/img/tag.svg
+share/nextcloud/apps/systemtags/js/admin.js
+share/nextcloud/apps/systemtags/js/app.js
+share/nextcloud/apps/systemtags/js/filesplugin.js
+share/nextcloud/apps/systemtags/js/systemtagsfilelist.js
+share/nextcloud/apps/systemtags/js/systemtagsinfoview.js
+share/nextcloud/apps/systemtags/l10n/.gitkeep
+share/nextcloud/apps/systemtags/l10n/ar.js
+share/nextcloud/apps/systemtags/l10n/ar.json
+share/nextcloud/apps/systemtags/l10n/ast.js
+share/nextcloud/apps/systemtags/l10n/ast.json
+share/nextcloud/apps/systemtags/l10n/az.js
+share/nextcloud/apps/systemtags/l10n/az.json
+share/nextcloud/apps/systemtags/l10n/bg_BG.js
+share/nextcloud/apps/systemtags/l10n/bg_BG.json
+share/nextcloud/apps/systemtags/l10n/bn_BD.js
+share/nextcloud/apps/systemtags/l10n/bn_BD.json
+share/nextcloud/apps/systemtags/l10n/bn_IN.js
+share/nextcloud/apps/systemtags/l10n/bn_IN.json
+share/nextcloud/apps/systemtags/l10n/bs.js
+share/nextcloud/apps/systemtags/l10n/bs.json
+share/nextcloud/apps/systemtags/l10n/ca.js
+share/nextcloud/apps/systemtags/l10n/ca.json
+share/nextcloud/apps/systemtags/l10n/cs_CZ.js
+share/nextcloud/apps/systemtags/l10n/cs_CZ.json
+share/nextcloud/apps/systemtags/l10n/cy_GB.js
+share/nextcloud/apps/systemtags/l10n/cy_GB.json
+share/nextcloud/apps/systemtags/l10n/da.js
+share/nextcloud/apps/systemtags/l10n/da.json
+share/nextcloud/apps/systemtags/l10n/de.js
+share/nextcloud/apps/systemtags/l10n/de.json
+share/nextcloud/apps/systemtags/l10n/de_AT.js
+share/nextcloud/apps/systemtags/l10n/de_AT.json
+share/nextcloud/apps/systemtags/l10n/de_DE.js
+share/nextcloud/apps/systemtags/l10n/de_DE.json
+share/nextcloud/apps/systemtags/l10n/el.js
+share/nextcloud/apps/systemtags/l10n/el.json
+share/nextcloud/apps/systemtags/l10n/en_GB.js
+share/nextcloud/apps/systemtags/l10n/en_GB.json
+share/nextcloud/apps/systemtags/l10n/eo.js
+share/nextcloud/apps/systemtags/l10n/eo.json
+share/nextcloud/apps/systemtags/l10n/es.js
+share/nextcloud/apps/systemtags/l10n/es.json
+share/nextcloud/apps/systemtags/l10n/es_AR.js
+share/nextcloud/apps/systemtags/l10n/es_AR.json
+share/nextcloud/apps/systemtags/l10n/es_MX.js
+share/nextcloud/apps/systemtags/l10n/es_MX.json
+share/nextcloud/apps/systemtags/l10n/et_EE.js
+share/nextcloud/apps/systemtags/l10n/et_EE.json
+share/nextcloud/apps/systemtags/l10n/eu.js
+share/nextcloud/apps/systemtags/l10n/eu.json
+share/nextcloud/apps/systemtags/l10n/fa.js
+share/nextcloud/apps/systemtags/l10n/fa.json
+share/nextcloud/apps/systemtags/l10n/fi_FI.js
+share/nextcloud/apps/systemtags/l10n/fi_FI.json
+share/nextcloud/apps/systemtags/l10n/fr.js
+share/nextcloud/apps/systemtags/l10n/fr.json
+share/nextcloud/apps/systemtags/l10n/gl.js
+share/nextcloud/apps/systemtags/l10n/gl.json
+share/nextcloud/apps/systemtags/l10n/he.js
+share/nextcloud/apps/systemtags/l10n/he.json
+share/nextcloud/apps/systemtags/l10n/hr.js
+share/nextcloud/apps/systemtags/l10n/hr.json
+share/nextcloud/apps/systemtags/l10n/hu_HU.js
+share/nextcloud/apps/systemtags/l10n/hu_HU.json
+share/nextcloud/apps/systemtags/l10n/hy.js
+share/nextcloud/apps/systemtags/l10n/hy.json
+share/nextcloud/apps/systemtags/l10n/ia.js
+share/nextcloud/apps/systemtags/l10n/ia.json
+share/nextcloud/apps/systemtags/l10n/id.js
+share/nextcloud/apps/systemtags/l10n/id.json
+share/nextcloud/apps/systemtags/l10n/is.js
+share/nextcloud/apps/systemtags/l10n/is.json
+share/nextcloud/apps/systemtags/l10n/it.js
+share/nextcloud/apps/systemtags/l10n/it.json
+share/nextcloud/apps/systemtags/l10n/ja.js
+share/nextcloud/apps/systemtags/l10n/ja.json
+share/nextcloud/apps/systemtags/l10n/ka_GE.js
+share/nextcloud/apps/systemtags/l10n/ka_GE.json
+share/nextcloud/apps/systemtags/l10n/km.js
+share/nextcloud/apps/systemtags/l10n/km.json
+share/nextcloud/apps/systemtags/l10n/kn.js
+share/nextcloud/apps/systemtags/l10n/kn.json
+share/nextcloud/apps/systemtags/l10n/ko.js
+share/nextcloud/apps/systemtags/l10n/ko.json
+share/nextcloud/apps/systemtags/l10n/ku_IQ.js
+share/nextcloud/apps/systemtags/l10n/ku_IQ.json
+share/nextcloud/apps/systemtags/l10n/lb.js
+share/nextcloud/apps/systemtags/l10n/lb.json
+share/nextcloud/apps/systemtags/l10n/lt_LT.js
+share/nextcloud/apps/systemtags/l10n/lt_LT.json
+share/nextcloud/apps/systemtags/l10n/lv.js
+share/nextcloud/apps/systemtags/l10n/lv.json
+share/nextcloud/apps/systemtags/l10n/mk.js
+share/nextcloud/apps/systemtags/l10n/mk.json
+share/nextcloud/apps/systemtags/l10n/ms_MY.js
+share/nextcloud/apps/systemtags/l10n/ms_MY.json
+share/nextcloud/apps/systemtags/l10n/nb_NO.js
+share/nextcloud/apps/systemtags/l10n/nb_NO.json
+share/nextcloud/apps/systemtags/l10n/nds.js
+share/nextcloud/apps/systemtags/l10n/nds.json
+share/nextcloud/apps/systemtags/l10n/nl.js
+share/nextcloud/apps/systemtags/l10n/nl.json
+share/nextcloud/apps/systemtags/l10n/nn_NO.js
+share/nextcloud/apps/systemtags/l10n/nn_NO.json
+share/nextcloud/apps/systemtags/l10n/oc.js
+share/nextcloud/apps/systemtags/l10n/oc.json
+share/nextcloud/apps/systemtags/l10n/pl.js
+share/nextcloud/apps/systemtags/l10n/pl.json
+share/nextcloud/apps/systemtags/l10n/pt_BR.js
+share/nextcloud/apps/systemtags/l10n/pt_BR.json
+share/nextcloud/apps/systemtags/l10n/pt_PT.js
+share/nextcloud/apps/systemtags/l10n/pt_PT.json
+share/nextcloud/apps/systemtags/l10n/ro.js
+share/nextcloud/apps/systemtags/l10n/ro.json
+share/nextcloud/apps/systemtags/l10n/ru.js
+share/nextcloud/apps/systemtags/l10n/ru.json
+share/nextcloud/apps/systemtags/l10n/si_LK.js
+share/nextcloud/apps/systemtags/l10n/si_LK.json
+share/nextcloud/apps/systemtags/l10n/sk_SK.js
+share/nextcloud/apps/systemtags/l10n/sk_SK.json
+share/nextcloud/apps/systemtags/l10n/sl.js
+share/nextcloud/apps/systemtags/l10n/sl.json
+share/nextcloud/apps/systemtags/l10n/sq.js
+share/nextcloud/apps/systemtags/l10n/sq.json
+share/nextcloud/apps/systemtags/l10n/sr.js
+share/nextcloud/apps/systemtags/l10n/sr.json
+share/nextcloud/apps/systemtags/l10n/sr%latin.js@localhost
+share/nextcloud/apps/systemtags/l10n/sr%latin.json@localhost
+share/nextcloud/apps/systemtags/l10n/sv.js
+share/nextcloud/apps/systemtags/l10n/sv.json
+share/nextcloud/apps/systemtags/l10n/ta_LK.js
+share/nextcloud/apps/systemtags/l10n/ta_LK.json
+share/nextcloud/apps/systemtags/l10n/te.js
+share/nextcloud/apps/systemtags/l10n/te.json
+share/nextcloud/apps/systemtags/l10n/th_TH.js
+share/nextcloud/apps/systemtags/l10n/th_TH.json
+share/nextcloud/apps/systemtags/l10n/tr.js
+share/nextcloud/apps/systemtags/l10n/tr.json
+share/nextcloud/apps/systemtags/l10n/ug.js
+share/nextcloud/apps/systemtags/l10n/ug.json
+share/nextcloud/apps/systemtags/l10n/uk.js
+share/nextcloud/apps/systemtags/l10n/uk.json
+share/nextcloud/apps/systemtags/l10n/ur_PK.js
+share/nextcloud/apps/systemtags/l10n/ur_PK.json
+share/nextcloud/apps/systemtags/l10n/vi.js
+share/nextcloud/apps/systemtags/l10n/vi.json
+share/nextcloud/apps/systemtags/l10n/zh_CN.js
+share/nextcloud/apps/systemtags/l10n/zh_CN.json
+share/nextcloud/apps/systemtags/l10n/zh_HK.js
+share/nextcloud/apps/systemtags/l10n/zh_HK.json
+share/nextcloud/apps/systemtags/l10n/zh_TW.js
+share/nextcloud/apps/systemtags/l10n/zh_TW.json
+share/nextcloud/apps/systemtags/lib/Activity/Listener.php
+share/nextcloud/apps/systemtags/lib/Activity/Provider.php
+share/nextcloud/apps/systemtags/lib/Activity/Setting.php
+share/nextcloud/apps/systemtags/lib/Controller/LastUsedController.php
+share/nextcloud/apps/systemtags/lib/Settings/Admin.php
+share/nextcloud/apps/systemtags/list.php
+share/nextcloud/apps/systemtags/templates/admin.php
+share/nextcloud/apps/systemtags/templates/list.php
+share/nextcloud/apps/templateeditor/app/templateeditor.php
+share/nextcloud/apps/templateeditor/appinfo/app.php
+share/nextcloud/apps/templateeditor/appinfo/info.xml
+share/nextcloud/apps/templateeditor/appinfo/routes.php
+share/nextcloud/apps/templateeditor/appinfo/signature.json
+share/nextcloud/apps/templateeditor/controller/adminsettingscontroller.php
+share/nextcloud/apps/templateeditor/css/settings-admin.css
+share/nextcloud/apps/templateeditor/http/mailtemplateresponse.php
+share/nextcloud/apps/templateeditor/img/app.svg
+share/nextcloud/apps/templateeditor/js/settings-admin.js
+share/nextcloud/apps/templateeditor/l10n/.tx/config
+share/nextcloud/apps/templateeditor/l10n/ar.js
+share/nextcloud/apps/templateeditor/l10n/ar.json
+share/nextcloud/apps/templateeditor/l10n/ar.php
+share/nextcloud/apps/templateeditor/l10n/ast.js
+share/nextcloud/apps/templateeditor/l10n/ast.json
+share/nextcloud/apps/templateeditor/l10n/ast.php
+share/nextcloud/apps/templateeditor/l10n/az.js
+share/nextcloud/apps/templateeditor/l10n/az.json
+share/nextcloud/apps/templateeditor/l10n/az.php
+share/nextcloud/apps/templateeditor/l10n/bg_BG.js
+share/nextcloud/apps/templateeditor/l10n/bg_BG.json
+share/nextcloud/apps/templateeditor/l10n/bg_BG.php
+share/nextcloud/apps/templateeditor/l10n/bn_BD.js
+share/nextcloud/apps/templateeditor/l10n/bn_BD.json
+share/nextcloud/apps/templateeditor/l10n/bn_BD.php
+share/nextcloud/apps/templateeditor/l10n/bn_IN.js
+share/nextcloud/apps/templateeditor/l10n/bn_IN.json
+share/nextcloud/apps/templateeditor/l10n/bn_IN.php
+share/nextcloud/apps/templateeditor/l10n/bs.php
+share/nextcloud/apps/templateeditor/l10n/ca.js
+share/nextcloud/apps/templateeditor/l10n/ca.json
+share/nextcloud/apps/templateeditor/l10n/ca.php
+share/nextcloud/apps/templateeditor/l10n/cs_CZ.js
+share/nextcloud/apps/templateeditor/l10n/cs_CZ.json
+share/nextcloud/apps/templateeditor/l10n/cs_CZ.php
+share/nextcloud/apps/templateeditor/l10n/cy_GB.php
+share/nextcloud/apps/templateeditor/l10n/da.js
+share/nextcloud/apps/templateeditor/l10n/da.json
+share/nextcloud/apps/templateeditor/l10n/da.php
+share/nextcloud/apps/templateeditor/l10n/de.js
+share/nextcloud/apps/templateeditor/l10n/de.json
+share/nextcloud/apps/templateeditor/l10n/de.php
+share/nextcloud/apps/templateeditor/l10n/de_AT.php
+share/nextcloud/apps/templateeditor/l10n/de_CH.php
+share/nextcloud/apps/templateeditor/l10n/de_DE.js
+share/nextcloud/apps/templateeditor/l10n/de_DE.json
+share/nextcloud/apps/templateeditor/l10n/de_DE.php
+share/nextcloud/apps/templateeditor/l10n/el.js
+share/nextcloud/apps/templateeditor/l10n/el.json
+share/nextcloud/apps/templateeditor/l10n/el.php
+share/nextcloud/apps/templateeditor/l10n/en_GB.js
+share/nextcloud/apps/templateeditor/l10n/en_GB.json
+share/nextcloud/apps/templateeditor/l10n/en_GB.php
+share/nextcloud/apps/templateeditor/l10n/eo.php
+share/nextcloud/apps/templateeditor/l10n/es.js
+share/nextcloud/apps/templateeditor/l10n/es.json
+share/nextcloud/apps/templateeditor/l10n/es.php
+share/nextcloud/apps/templateeditor/l10n/es_AR.php
+share/nextcloud/apps/templateeditor/l10n/es_MX.php
+share/nextcloud/apps/templateeditor/l10n/et_EE.js
+share/nextcloud/apps/templateeditor/l10n/et_EE.json
+share/nextcloud/apps/templateeditor/l10n/et_EE.php
+share/nextcloud/apps/templateeditor/l10n/eu.js
+share/nextcloud/apps/templateeditor/l10n/eu.json
+share/nextcloud/apps/templateeditor/l10n/eu.php
+share/nextcloud/apps/templateeditor/l10n/eu_ES.php
+share/nextcloud/apps/templateeditor/l10n/fa.js
+share/nextcloud/apps/templateeditor/l10n/fa.json
+share/nextcloud/apps/templateeditor/l10n/fa.php
+share/nextcloud/apps/templateeditor/l10n/fi_FI.js
+share/nextcloud/apps/templateeditor/l10n/fi_FI.json
+share/nextcloud/apps/templateeditor/l10n/fi_FI.php
+share/nextcloud/apps/templateeditor/l10n/fr.js
+share/nextcloud/apps/templateeditor/l10n/fr.json
+share/nextcloud/apps/templateeditor/l10n/fr.php
+share/nextcloud/apps/templateeditor/l10n/gl.js
+share/nextcloud/apps/templateeditor/l10n/gl.json
+share/nextcloud/apps/templateeditor/l10n/gl.php
+share/nextcloud/apps/templateeditor/l10n/he.js
+share/nextcloud/apps/templateeditor/l10n/he.json
+share/nextcloud/apps/templateeditor/l10n/he.php
+share/nextcloud/apps/templateeditor/l10n/hi.php
+share/nextcloud/apps/templateeditor/l10n/hr.php
+share/nextcloud/apps/templateeditor/l10n/hu_HU.js
+share/nextcloud/apps/templateeditor/l10n/hu_HU.json
+share/nextcloud/apps/templateeditor/l10n/hu_HU.php
+share/nextcloud/apps/templateeditor/l10n/hy.php
+share/nextcloud/apps/templateeditor/l10n/ia.php
+share/nextcloud/apps/templateeditor/l10n/id.js
+share/nextcloud/apps/templateeditor/l10n/id.json
+share/nextcloud/apps/templateeditor/l10n/id.php
+share/nextcloud/apps/templateeditor/l10n/is.js
+share/nextcloud/apps/templateeditor/l10n/is.json
+share/nextcloud/apps/templateeditor/l10n/is.php
+share/nextcloud/apps/templateeditor/l10n/it.js
+share/nextcloud/apps/templateeditor/l10n/it.json
+share/nextcloud/apps/templateeditor/l10n/it.php
+share/nextcloud/apps/templateeditor/l10n/ja.js
+share/nextcloud/apps/templateeditor/l10n/ja.json
+share/nextcloud/apps/templateeditor/l10n/ja.php
+share/nextcloud/apps/templateeditor/l10n/ka_GE.php
+share/nextcloud/apps/templateeditor/l10n/km.php
+share/nextcloud/apps/templateeditor/l10n/ko.js
+share/nextcloud/apps/templateeditor/l10n/ko.json
+share/nextcloud/apps/templateeditor/l10n/ko.php
+share/nextcloud/apps/templateeditor/l10n/ku_IQ.php
+share/nextcloud/apps/templateeditor/l10n/lb.php
+share/nextcloud/apps/templateeditor/l10n/lt_LT.php
+share/nextcloud/apps/templateeditor/l10n/lv.php
+share/nextcloud/apps/templateeditor/l10n/mk.php
+share/nextcloud/apps/templateeditor/l10n/ms_MY.php
+share/nextcloud/apps/templateeditor/l10n/nb_NO.js
+share/nextcloud/apps/templateeditor/l10n/nb_NO.json
+share/nextcloud/apps/templateeditor/l10n/nb_NO.php
+share/nextcloud/apps/templateeditor/l10n/nl.js
+share/nextcloud/apps/templateeditor/l10n/nl.json
+share/nextcloud/apps/templateeditor/l10n/nl.php
+share/nextcloud/apps/templateeditor/l10n/nn_NO.php
+share/nextcloud/apps/templateeditor/l10n/oc.js
+share/nextcloud/apps/templateeditor/l10n/oc.json
+share/nextcloud/apps/templateeditor/l10n/oc.php
+share/nextcloud/apps/templateeditor/l10n/pl.js
+share/nextcloud/apps/templateeditor/l10n/pl.json
+share/nextcloud/apps/templateeditor/l10n/pl.php
+share/nextcloud/apps/templateeditor/l10n/pt_BR.js
+share/nextcloud/apps/templateeditor/l10n/pt_BR.json
+share/nextcloud/apps/templateeditor/l10n/pt_BR.php
+share/nextcloud/apps/templateeditor/l10n/pt_PT.js
+share/nextcloud/apps/templateeditor/l10n/pt_PT.json
+share/nextcloud/apps/templateeditor/l10n/pt_PT.php
+share/nextcloud/apps/templateeditor/l10n/ro.php
+share/nextcloud/apps/templateeditor/l10n/ru.js
+share/nextcloud/apps/templateeditor/l10n/ru.json
+share/nextcloud/apps/templateeditor/l10n/ru.php
+share/nextcloud/apps/templateeditor/l10n/si_LK.php
+share/nextcloud/apps/templateeditor/l10n/sk.php
+share/nextcloud/apps/templateeditor/l10n/sk_SK.js
+share/nextcloud/apps/templateeditor/l10n/sk_SK.json
+share/nextcloud/apps/templateeditor/l10n/sk_SK.php
+share/nextcloud/apps/templateeditor/l10n/sl.js
+share/nextcloud/apps/templateeditor/l10n/sl.json
+share/nextcloud/apps/templateeditor/l10n/sl.php
+share/nextcloud/apps/templateeditor/l10n/sq.js
+share/nextcloud/apps/templateeditor/l10n/sq.json
+share/nextcloud/apps/templateeditor/l10n/sq.php
+share/nextcloud/apps/templateeditor/l10n/sr.js
+share/nextcloud/apps/templateeditor/l10n/sr.json
+share/nextcloud/apps/templateeditor/l10n/sr.php
+share/nextcloud/apps/templateeditor/l10n/sr%latin.php@localhost
+share/nextcloud/apps/templateeditor/l10n/sv.js
+share/nextcloud/apps/templateeditor/l10n/sv.json
+share/nextcloud/apps/templateeditor/l10n/sv.php
+share/nextcloud/apps/templateeditor/l10n/ta_LK.php
+share/nextcloud/apps/templateeditor/l10n/te.php
+share/nextcloud/apps/templateeditor/l10n/th_TH.js
+share/nextcloud/apps/templateeditor/l10n/th_TH.json
+share/nextcloud/apps/templateeditor/l10n/th_TH.php
+share/nextcloud/apps/templateeditor/l10n/tr.js
+share/nextcloud/apps/templateeditor/l10n/tr.json
+share/nextcloud/apps/templateeditor/l10n/tr.php
+share/nextcloud/apps/templateeditor/l10n/ug.php
+share/nextcloud/apps/templateeditor/l10n/uk.js
+share/nextcloud/apps/templateeditor/l10n/uk.json
+share/nextcloud/apps/templateeditor/l10n/uk.php
+share/nextcloud/apps/templateeditor/l10n/ur_PK.php
+share/nextcloud/apps/templateeditor/l10n/vi.php
+share/nextcloud/apps/templateeditor/l10n/zh_CN.js
+share/nextcloud/apps/templateeditor/l10n/zh_CN.json
+share/nextcloud/apps/templateeditor/l10n/zh_CN.php
+share/nextcloud/apps/templateeditor/l10n/zh_HK.php
+share/nextcloud/apps/templateeditor/l10n/zh_TW.js
+share/nextcloud/apps/templateeditor/l10n/zh_TW.json
+share/nextcloud/apps/templateeditor/l10n/zh_TW.php
+share/nextcloud/apps/templateeditor/lib/mailtemplate.php
+share/nextcloud/apps/templateeditor/settings-admin.php
+share/nextcloud/apps/templateeditor/templates/settings-admin.php
+share/nextcloud/apps/theming/appinfo/app.php
+share/nextcloud/apps/theming/appinfo/info.xml
+share/nextcloud/apps/theming/appinfo/routes.php
+share/nextcloud/apps/theming/appinfo/signature.json
+share/nextcloud/apps/theming/css/settings-admin.css
+share/nextcloud/apps/theming/img/app.svg
+share/nextcloud/apps/theming/js/3rdparty/jscolor/LICENSE.txt
+share/nextcloud/apps/theming/js/3rdparty/jscolor/jscolor.js
+share/nextcloud/apps/theming/js/3rdparty/jscolor/jscolor.min.js
+share/nextcloud/apps/theming/js/settings-admin.js
+share/nextcloud/apps/theming/lib/Capabilities.php
+share/nextcloud/apps/theming/lib/Controller/IconController.php
+share/nextcloud/apps/theming/lib/Controller/ThemingController.php
+share/nextcloud/apps/theming/lib/IconBuilder.php
+share/nextcloud/apps/theming/lib/ImageManager.php
+share/nextcloud/apps/theming/lib/Settings/Admin.php
+share/nextcloud/apps/theming/lib/Settings/Section.php
+share/nextcloud/apps/theming/lib/ThemingDefaults.php
+share/nextcloud/apps/theming/lib/Util.php
+share/nextcloud/apps/theming/templates/settings-admin.php
+share/nextcloud/apps/twofactor_backupcodes/appinfo/app.php
+share/nextcloud/apps/twofactor_backupcodes/appinfo/database.xml
+share/nextcloud/apps/twofactor_backupcodes/appinfo/info.xml
+share/nextcloud/apps/twofactor_backupcodes/appinfo/routes.php
+share/nextcloud/apps/twofactor_backupcodes/appinfo/signature.json
+share/nextcloud/apps/twofactor_backupcodes/css/style.css
+share/nextcloud/apps/twofactor_backupcodes/js/settings.js
+share/nextcloud/apps/twofactor_backupcodes/js/settingsview.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/.gitkeep
+share/nextcloud/apps/twofactor_backupcodes/l10n/cs_CZ.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/cs_CZ.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/de.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/de.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/de_DE.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/de_DE.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/es.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/es.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/fr.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/fr.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/hu_HU.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/hu_HU.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/is.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/is.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/it.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/it.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/ja.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/ja.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/ko.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/ko.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/nb_NO.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/nb_NO.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/nl.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/nl.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/pl.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/pl.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/pt_BR.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/pt_BR.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/ru.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/ru.json
+share/nextcloud/apps/twofactor_backupcodes/l10n/tr.js
+share/nextcloud/apps/twofactor_backupcodes/l10n/tr.json
+share/nextcloud/apps/twofactor_backupcodes/lib/Controller/SettingsController.php
+share/nextcloud/apps/twofactor_backupcodes/lib/Db/BackupCode.php
+share/nextcloud/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php
+share/nextcloud/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php
+share/nextcloud/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php
+share/nextcloud/apps/twofactor_backupcodes/settings/personal.php
+share/nextcloud/apps/twofactor_backupcodes/templates/challenge.php
+share/nextcloud/apps/twofactor_backupcodes/templates/personal.php
+share/nextcloud/apps/updatenotification/appinfo/app.php
+share/nextcloud/apps/updatenotification/appinfo/info.xml
+share/nextcloud/apps/updatenotification/appinfo/routes.php
+share/nextcloud/apps/updatenotification/appinfo/signature.json
+share/nextcloud/apps/updatenotification/img/app.svg
+share/nextcloud/apps/updatenotification/img/notification.svg
+share/nextcloud/apps/updatenotification/js/admin.js
+share/nextcloud/apps/updatenotification/js/notification.js
+share/nextcloud/apps/updatenotification/l10n/.gitkeep
+share/nextcloud/apps/updatenotification/l10n/ar.js
+share/nextcloud/apps/updatenotification/l10n/ar.json
+share/nextcloud/apps/updatenotification/l10n/ast.js
+share/nextcloud/apps/updatenotification/l10n/ast.json
+share/nextcloud/apps/updatenotification/l10n/az.js
+share/nextcloud/apps/updatenotification/l10n/az.json
+share/nextcloud/apps/updatenotification/l10n/bg_BG.js
+share/nextcloud/apps/updatenotification/l10n/bg_BG.json
+share/nextcloud/apps/updatenotification/l10n/bn_BD.js
+share/nextcloud/apps/updatenotification/l10n/bn_BD.json
+share/nextcloud/apps/updatenotification/l10n/bs.js
+share/nextcloud/apps/updatenotification/l10n/bs.json
+share/nextcloud/apps/updatenotification/l10n/ca.js
+share/nextcloud/apps/updatenotification/l10n/ca.json
+share/nextcloud/apps/updatenotification/l10n/cs_CZ.js
+share/nextcloud/apps/updatenotification/l10n/cs_CZ.json
+share/nextcloud/apps/updatenotification/l10n/da.js
+share/nextcloud/apps/updatenotification/l10n/da.json
+share/nextcloud/apps/updatenotification/l10n/de.js
+share/nextcloud/apps/updatenotification/l10n/de.json
+share/nextcloud/apps/updatenotification/l10n/de_DE.js
+share/nextcloud/apps/updatenotification/l10n/de_DE.json
+share/nextcloud/apps/updatenotification/l10n/el.js
+share/nextcloud/apps/updatenotification/l10n/el.json
+share/nextcloud/apps/updatenotification/l10n/en_GB.js
+share/nextcloud/apps/updatenotification/l10n/en_GB.json
+share/nextcloud/apps/updatenotification/l10n/eo.js
+share/nextcloud/apps/updatenotification/l10n/eo.json
+share/nextcloud/apps/updatenotification/l10n/es.js
+share/nextcloud/apps/updatenotification/l10n/es.json
+share/nextcloud/apps/updatenotification/l10n/es_AR.js
+share/nextcloud/apps/updatenotification/l10n/es_AR.json
+share/nextcloud/apps/updatenotification/l10n/et_EE.js
+share/nextcloud/apps/updatenotification/l10n/et_EE.json
+share/nextcloud/apps/updatenotification/l10n/eu.js
+share/nextcloud/apps/updatenotification/l10n/eu.json
+share/nextcloud/apps/updatenotification/l10n/fa.js
+share/nextcloud/apps/updatenotification/l10n/fa.json
+share/nextcloud/apps/updatenotification/l10n/fi_FI.js
+share/nextcloud/apps/updatenotification/l10n/fi_FI.json
+share/nextcloud/apps/updatenotification/l10n/fr.js
+share/nextcloud/apps/updatenotification/l10n/fr.json
+share/nextcloud/apps/updatenotification/l10n/gl.js
+share/nextcloud/apps/updatenotification/l10n/gl.json
+share/nextcloud/apps/updatenotification/l10n/he.js
+share/nextcloud/apps/updatenotification/l10n/he.json
+share/nextcloud/apps/updatenotification/l10n/hr.js
+share/nextcloud/apps/updatenotification/l10n/hr.json
+share/nextcloud/apps/updatenotification/l10n/hu_HU.js
+share/nextcloud/apps/updatenotification/l10n/hu_HU.json
+share/nextcloud/apps/updatenotification/l10n/id.js
+share/nextcloud/apps/updatenotification/l10n/id.json
+share/nextcloud/apps/updatenotification/l10n/is.js
+share/nextcloud/apps/updatenotification/l10n/is.json
+share/nextcloud/apps/updatenotification/l10n/it.js
+share/nextcloud/apps/updatenotification/l10n/it.json
+share/nextcloud/apps/updatenotification/l10n/ja.js
+share/nextcloud/apps/updatenotification/l10n/ja.json
+share/nextcloud/apps/updatenotification/l10n/ko.js
+share/nextcloud/apps/updatenotification/l10n/ko.json
+share/nextcloud/apps/updatenotification/l10n/lb.js
+share/nextcloud/apps/updatenotification/l10n/lb.json
+share/nextcloud/apps/updatenotification/l10n/lt_LT.js
+share/nextcloud/apps/updatenotification/l10n/lt_LT.json
+share/nextcloud/apps/updatenotification/l10n/mk.js
+share/nextcloud/apps/updatenotification/l10n/mk.json
+share/nextcloud/apps/updatenotification/l10n/nb_NO.js
+share/nextcloud/apps/updatenotification/l10n/nb_NO.json
+share/nextcloud/apps/updatenotification/l10n/nl.js
+share/nextcloud/apps/updatenotification/l10n/nl.json
+share/nextcloud/apps/updatenotification/l10n/oc.js
+share/nextcloud/apps/updatenotification/l10n/oc.json
+share/nextcloud/apps/updatenotification/l10n/pl.js
+share/nextcloud/apps/updatenotification/l10n/pl.json
+share/nextcloud/apps/updatenotification/l10n/pt_BR.js
+share/nextcloud/apps/updatenotification/l10n/pt_BR.json
+share/nextcloud/apps/updatenotification/l10n/pt_PT.js
+share/nextcloud/apps/updatenotification/l10n/pt_PT.json
+share/nextcloud/apps/updatenotification/l10n/ro.js
+share/nextcloud/apps/updatenotification/l10n/ro.json
+share/nextcloud/apps/updatenotification/l10n/ru.js
+share/nextcloud/apps/updatenotification/l10n/ru.json
+share/nextcloud/apps/updatenotification/l10n/sk_SK.js
+share/nextcloud/apps/updatenotification/l10n/sk_SK.json
+share/nextcloud/apps/updatenotification/l10n/sl.js
+share/nextcloud/apps/updatenotification/l10n/sl.json
+share/nextcloud/apps/updatenotification/l10n/sq.js
+share/nextcloud/apps/updatenotification/l10n/sq.json
+share/nextcloud/apps/updatenotification/l10n/sr.js
+share/nextcloud/apps/updatenotification/l10n/sr.json
+share/nextcloud/apps/updatenotification/l10n/sv.js
+share/nextcloud/apps/updatenotification/l10n/sv.json
+share/nextcloud/apps/updatenotification/l10n/th_TH.js
+share/nextcloud/apps/updatenotification/l10n/th_TH.json
+share/nextcloud/apps/updatenotification/l10n/tr.js
+share/nextcloud/apps/updatenotification/l10n/tr.json
+share/nextcloud/apps/updatenotification/l10n/uk.js
+share/nextcloud/apps/updatenotification/l10n/uk.json
+share/nextcloud/apps/updatenotification/l10n/zh_CN.js
+share/nextcloud/apps/updatenotification/l10n/zh_CN.json
+share/nextcloud/apps/updatenotification/l10n/zh_TW.js
+share/nextcloud/apps/updatenotification/l10n/zh_TW.json
+share/nextcloud/apps/updatenotification/lib/AppInfo/Application.php
+share/nextcloud/apps/updatenotification/lib/Controller/AdminController.php
+share/nextcloud/apps/updatenotification/lib/Notification/BackgroundJob.php
+share/nextcloud/apps/updatenotification/lib/Notification/Notifier.php
+share/nextcloud/apps/updatenotification/lib/ResetTokenBackgroundJob.php
+share/nextcloud/apps/updatenotification/lib/UpdateChecker.php
+share/nextcloud/apps/updatenotification/templates/admin.php
+share/nextcloud/apps/user_external/appinfo/app.php
+share/nextcloud/apps/user_external/appinfo/database.xml
+share/nextcloud/apps/user_external/appinfo/info.xml
+share/nextcloud/apps/user_external/appinfo/signature.json
+share/nextcloud/apps/user_external/img/app.svg
+share/nextcloud/apps/user_external/lib/base.php
+share/nextcloud/apps/user_external/lib/ftp.php
+share/nextcloud/apps/user_external/lib/imap.php
+share/nextcloud/apps/user_external/lib/smb.php
+share/nextcloud/apps/user_external/lib/webdavauth.php
+share/nextcloud/apps/user_ldap/ajax/clearMappings.php
+share/nextcloud/apps/user_ldap/ajax/deleteConfiguration.php
+share/nextcloud/apps/user_ldap/ajax/getConfiguration.php
+share/nextcloud/apps/user_ldap/ajax/getNewServerConfigPrefix.php
+share/nextcloud/apps/user_ldap/ajax/setConfiguration.php
+share/nextcloud/apps/user_ldap/ajax/testConfiguration.php
+share/nextcloud/apps/user_ldap/ajax/wizard.php
+share/nextcloud/apps/user_ldap/appinfo/app.php
+share/nextcloud/apps/user_ldap/appinfo/database.xml
+share/nextcloud/apps/user_ldap/appinfo/info.xml
+share/nextcloud/apps/user_ldap/appinfo/install.php
+share/nextcloud/apps/user_ldap/appinfo/register_command.php
+share/nextcloud/apps/user_ldap/appinfo/routes.php
+share/nextcloud/apps/user_ldap/appinfo/signature.json
+share/nextcloud/apps/user_ldap/appinfo/update.php
+share/nextcloud/apps/user_ldap/css/settings.css
+share/nextcloud/apps/user_ldap/img/app.svg
+share/nextcloud/apps/user_ldap/img/copy.png
+share/nextcloud/apps/user_ldap/img/copy.svg
+share/nextcloud/apps/user_ldap/js/wizard/configModel.js
+share/nextcloud/apps/user_ldap/js/wizard/controller.js
+share/nextcloud/apps/user_ldap/js/wizard/view.js
+share/nextcloud/apps/user_ldap/js/wizard/wizard.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorAvailableAttributes.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorBaseDN.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorClearGroupMappings.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorClearUserMappings.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorEmailAttribute.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorFeatureAbstract.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorFilterGroup.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorFilterLogin.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorFilterUser.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorGeneric.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorGroupCount.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorGroupObjectClasses.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorGroupsForGroups.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorGroupsForUsers.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorPort.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorQueue.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorSimpleRequestAbstract.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorTestAbstract.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorTestBaseDN.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorTestConfiguration.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorTestLoginName.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorUserCount.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorUserDisplayNameAttribute.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorUserGroupAssociation.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardDetectorUserObjectClasses.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardFilterOnType.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardFilterOnTypeFactory.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardObject.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardTabAbstractFilter.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardTabAdvanced.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardTabElementary.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardTabExpert.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardTabGeneric.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardTabGroupFilter.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardTabLoginFilter.js
+share/nextcloud/apps/user_ldap/js/wizard/wizardTabUserFilter.js
+share/nextcloud/apps/user_ldap/l10n/.gitkeep
+share/nextcloud/apps/user_ldap/l10n/ach.js
+share/nextcloud/apps/user_ldap/l10n/ach.json
+share/nextcloud/apps/user_ldap/l10n/ady.js
+share/nextcloud/apps/user_ldap/l10n/ady.json
+share/nextcloud/apps/user_ldap/l10n/af_ZA.js
+share/nextcloud/apps/user_ldap/l10n/af_ZA.json
+share/nextcloud/apps/user_ldap/l10n/ak.js
+share/nextcloud/apps/user_ldap/l10n/ak.json
+share/nextcloud/apps/user_ldap/l10n/am_ET.js
+share/nextcloud/apps/user_ldap/l10n/am_ET.json
+share/nextcloud/apps/user_ldap/l10n/ar.js
+share/nextcloud/apps/user_ldap/l10n/ar.json
+share/nextcloud/apps/user_ldap/l10n/ast.js
+share/nextcloud/apps/user_ldap/l10n/ast.json
+share/nextcloud/apps/user_ldap/l10n/az.js
+share/nextcloud/apps/user_ldap/l10n/az.json
+share/nextcloud/apps/user_ldap/l10n/be.js
+share/nextcloud/apps/user_ldap/l10n/be.json
+share/nextcloud/apps/user_ldap/l10n/bg_BG.js
+share/nextcloud/apps/user_ldap/l10n/bg_BG.json
+share/nextcloud/apps/user_ldap/l10n/bn_BD.js
+share/nextcloud/apps/user_ldap/l10n/bn_BD.json
+share/nextcloud/apps/user_ldap/l10n/bn_IN.js
+share/nextcloud/apps/user_ldap/l10n/bn_IN.json
+share/nextcloud/apps/user_ldap/l10n/bs.js
+share/nextcloud/apps/user_ldap/l10n/bs.json
+share/nextcloud/apps/user_ldap/l10n/ca.js
+share/nextcloud/apps/user_ldap/l10n/ca.json
+share/nextcloud/apps/user_ldap/l10n/cs_CZ.js
+share/nextcloud/apps/user_ldap/l10n/cs_CZ.json
+share/nextcloud/apps/user_ldap/l10n/cy_GB.js
+share/nextcloud/apps/user_ldap/l10n/cy_GB.json
+share/nextcloud/apps/user_ldap/l10n/da.js
+share/nextcloud/apps/user_ldap/l10n/da.json
+share/nextcloud/apps/user_ldap/l10n/de.js
+share/nextcloud/apps/user_ldap/l10n/de.json
+share/nextcloud/apps/user_ldap/l10n/de_AT.js
+share/nextcloud/apps/user_ldap/l10n/de_AT.json
+share/nextcloud/apps/user_ldap/l10n/de_DE.js
+share/nextcloud/apps/user_ldap/l10n/de_DE.json
+share/nextcloud/apps/user_ldap/l10n/el.js
+share/nextcloud/apps/user_ldap/l10n/el.json
+share/nextcloud/apps/user_ldap/l10n/en_GB.js
+share/nextcloud/apps/user_ldap/l10n/en_GB.json
+share/nextcloud/apps/user_ldap/l10n/eo.js
+share/nextcloud/apps/user_ldap/l10n/eo.json
+share/nextcloud/apps/user_ldap/l10n/es.js
+share/nextcloud/apps/user_ldap/l10n/es.json
+share/nextcloud/apps/user_ldap/l10n/es_AR.js
+share/nextcloud/apps/user_ldap/l10n/es_AR.json
+share/nextcloud/apps/user_ldap/l10n/es_CL.js
+share/nextcloud/apps/user_ldap/l10n/es_CL.json
+share/nextcloud/apps/user_ldap/l10n/es_MX.js
+share/nextcloud/apps/user_ldap/l10n/es_MX.json
+share/nextcloud/apps/user_ldap/l10n/et_EE.js
+share/nextcloud/apps/user_ldap/l10n/et_EE.json
+share/nextcloud/apps/user_ldap/l10n/eu.js
+share/nextcloud/apps/user_ldap/l10n/eu.json
+share/nextcloud/apps/user_ldap/l10n/fa.js
+share/nextcloud/apps/user_ldap/l10n/fa.json
+share/nextcloud/apps/user_ldap/l10n/fi_FI.js
+share/nextcloud/apps/user_ldap/l10n/fi_FI.json
+share/nextcloud/apps/user_ldap/l10n/fil.js
+share/nextcloud/apps/user_ldap/l10n/fil.json
+share/nextcloud/apps/user_ldap/l10n/fr.js
+share/nextcloud/apps/user_ldap/l10n/fr.json
+share/nextcloud/apps/user_ldap/l10n/fy_NL.js
+share/nextcloud/apps/user_ldap/l10n/fy_NL.json
+share/nextcloud/apps/user_ldap/l10n/gl.js
+share/nextcloud/apps/user_ldap/l10n/gl.json
+share/nextcloud/apps/user_ldap/l10n/gu.js
+share/nextcloud/apps/user_ldap/l10n/gu.json
+share/nextcloud/apps/user_ldap/l10n/he.js
+share/nextcloud/apps/user_ldap/l10n/he.json
+share/nextcloud/apps/user_ldap/l10n/hi.js
+share/nextcloud/apps/user_ldap/l10n/hi.json
+share/nextcloud/apps/user_ldap/l10n/hr.js
+share/nextcloud/apps/user_ldap/l10n/hr.json
+share/nextcloud/apps/user_ldap/l10n/hu_HU.js
+share/nextcloud/apps/user_ldap/l10n/hu_HU.json
+share/nextcloud/apps/user_ldap/l10n/hy.js
+share/nextcloud/apps/user_ldap/l10n/hy.json
+share/nextcloud/apps/user_ldap/l10n/ia.js
+share/nextcloud/apps/user_ldap/l10n/ia.json
+share/nextcloud/apps/user_ldap/l10n/id.js
+share/nextcloud/apps/user_ldap/l10n/id.json
+share/nextcloud/apps/user_ldap/l10n/io.js
+share/nextcloud/apps/user_ldap/l10n/io.json
+share/nextcloud/apps/user_ldap/l10n/is.js
+share/nextcloud/apps/user_ldap/l10n/is.json
+share/nextcloud/apps/user_ldap/l10n/it.js
+share/nextcloud/apps/user_ldap/l10n/it.json
+share/nextcloud/apps/user_ldap/l10n/ja.js
+share/nextcloud/apps/user_ldap/l10n/ja.json
+share/nextcloud/apps/user_ldap/l10n/jv.js
+share/nextcloud/apps/user_ldap/l10n/jv.json
+share/nextcloud/apps/user_ldap/l10n/ka_GE.js
+share/nextcloud/apps/user_ldap/l10n/ka_GE.json
+share/nextcloud/apps/user_ldap/l10n/km.js
+share/nextcloud/apps/user_ldap/l10n/km.json
+share/nextcloud/apps/user_ldap/l10n/kn.js
+share/nextcloud/apps/user_ldap/l10n/kn.json
+share/nextcloud/apps/user_ldap/l10n/ko.js
+share/nextcloud/apps/user_ldap/l10n/ko.json
+share/nextcloud/apps/user_ldap/l10n/ku_IQ.js
+share/nextcloud/apps/user_ldap/l10n/ku_IQ.json
+share/nextcloud/apps/user_ldap/l10n/lb.js
+share/nextcloud/apps/user_ldap/l10n/lb.json
+share/nextcloud/apps/user_ldap/l10n/lo.js
+share/nextcloud/apps/user_ldap/l10n/lo.json
+share/nextcloud/apps/user_ldap/l10n/lt_LT.js
+share/nextcloud/apps/user_ldap/l10n/lt_LT.json
+share/nextcloud/apps/user_ldap/l10n/lv.js
+share/nextcloud/apps/user_ldap/l10n/lv.json
+share/nextcloud/apps/user_ldap/l10n/mg.js
+share/nextcloud/apps/user_ldap/l10n/mg.json
+share/nextcloud/apps/user_ldap/l10n/mk.js
+share/nextcloud/apps/user_ldap/l10n/mk.json
+share/nextcloud/apps/user_ldap/l10n/ml.js
+share/nextcloud/apps/user_ldap/l10n/ml.json
+share/nextcloud/apps/user_ldap/l10n/ml_IN.js
+share/nextcloud/apps/user_ldap/l10n/ml_IN.json
+share/nextcloud/apps/user_ldap/l10n/mn.js
+share/nextcloud/apps/user_ldap/l10n/mn.json
+share/nextcloud/apps/user_ldap/l10n/mr.js
+share/nextcloud/apps/user_ldap/l10n/mr.json
+share/nextcloud/apps/user_ldap/l10n/ms_MY.js
+share/nextcloud/apps/user_ldap/l10n/ms_MY.json
+share/nextcloud/apps/user_ldap/l10n/mt_MT.js
+share/nextcloud/apps/user_ldap/l10n/mt_MT.json
+share/nextcloud/apps/user_ldap/l10n/my_MM.js
+share/nextcloud/apps/user_ldap/l10n/my_MM.json
+share/nextcloud/apps/user_ldap/l10n/nb_NO.js
+share/nextcloud/apps/user_ldap/l10n/nb_NO.json
+share/nextcloud/apps/user_ldap/l10n/nds.js
+share/nextcloud/apps/user_ldap/l10n/nds.json
+share/nextcloud/apps/user_ldap/l10n/nl.js
+share/nextcloud/apps/user_ldap/l10n/nl.json
+share/nextcloud/apps/user_ldap/l10n/nn_NO.js
+share/nextcloud/apps/user_ldap/l10n/nn_NO.json
+share/nextcloud/apps/user_ldap/l10n/nqo.js
+share/nextcloud/apps/user_ldap/l10n/nqo.json
+share/nextcloud/apps/user_ldap/l10n/oc.js
+share/nextcloud/apps/user_ldap/l10n/oc.json
+share/nextcloud/apps/user_ldap/l10n/pa.js
+share/nextcloud/apps/user_ldap/l10n/pa.json
+share/nextcloud/apps/user_ldap/l10n/pl.js
+share/nextcloud/apps/user_ldap/l10n/pl.json
+share/nextcloud/apps/user_ldap/l10n/pt_BR.js
+share/nextcloud/apps/user_ldap/l10n/pt_BR.json
+share/nextcloud/apps/user_ldap/l10n/pt_PT.js
+share/nextcloud/apps/user_ldap/l10n/pt_PT.json
+share/nextcloud/apps/user_ldap/l10n/ro.js
+share/nextcloud/apps/user_ldap/l10n/ro.json
+share/nextcloud/apps/user_ldap/l10n/ru.js
+share/nextcloud/apps/user_ldap/l10n/ru.json
+share/nextcloud/apps/user_ldap/l10n/si_LK.js
+share/nextcloud/apps/user_ldap/l10n/si_LK.json
+share/nextcloud/apps/user_ldap/l10n/sk_SK.js
+share/nextcloud/apps/user_ldap/l10n/sk_SK.json
+share/nextcloud/apps/user_ldap/l10n/sl.js
+share/nextcloud/apps/user_ldap/l10n/sl.json
+share/nextcloud/apps/user_ldap/l10n/sq.js
+share/nextcloud/apps/user_ldap/l10n/sq.json
+share/nextcloud/apps/user_ldap/l10n/sr.js
+share/nextcloud/apps/user_ldap/l10n/sr.json
+share/nextcloud/apps/user_ldap/l10n/sr%latin.js@localhost
+share/nextcloud/apps/user_ldap/l10n/sr%latin.json@localhost
+share/nextcloud/apps/user_ldap/l10n/su.js
+share/nextcloud/apps/user_ldap/l10n/su.json
+share/nextcloud/apps/user_ldap/l10n/sv.js
+share/nextcloud/apps/user_ldap/l10n/sv.json
+share/nextcloud/apps/user_ldap/l10n/sw_KE.js
+share/nextcloud/apps/user_ldap/l10n/sw_KE.json
+share/nextcloud/apps/user_ldap/l10n/ta_IN.js
+share/nextcloud/apps/user_ldap/l10n/ta_IN.json
+share/nextcloud/apps/user_ldap/l10n/ta_LK.js
+share/nextcloud/apps/user_ldap/l10n/ta_LK.json
+share/nextcloud/apps/user_ldap/l10n/te.js
+share/nextcloud/apps/user_ldap/l10n/te.json
+share/nextcloud/apps/user_ldap/l10n/tg_TJ.js
+share/nextcloud/apps/user_ldap/l10n/tg_TJ.json
+share/nextcloud/apps/user_ldap/l10n/th_TH.js
+share/nextcloud/apps/user_ldap/l10n/th_TH.json
+share/nextcloud/apps/user_ldap/l10n/tl_PH.js
+share/nextcloud/apps/user_ldap/l10n/tl_PH.json
+share/nextcloud/apps/user_ldap/l10n/tr.js
+share/nextcloud/apps/user_ldap/l10n/tr.json
+share/nextcloud/apps/user_ldap/l10n/tzm.js
+share/nextcloud/apps/user_ldap/l10n/tzm.json
+share/nextcloud/apps/user_ldap/l10n/ug.js
+share/nextcloud/apps/user_ldap/l10n/ug.json
+share/nextcloud/apps/user_ldap/l10n/uk.js
+share/nextcloud/apps/user_ldap/l10n/uk.json
+share/nextcloud/apps/user_ldap/l10n/ur_PK.js
+share/nextcloud/apps/user_ldap/l10n/ur_PK.json
+share/nextcloud/apps/user_ldap/l10n/vi.js
+share/nextcloud/apps/user_ldap/l10n/vi.json
+share/nextcloud/apps/user_ldap/l10n/zh_CN.js
+share/nextcloud/apps/user_ldap/l10n/zh_CN.json
+share/nextcloud/apps/user_ldap/l10n/zh_HK.js
+share/nextcloud/apps/user_ldap/l10n/zh_HK.json
+share/nextcloud/apps/user_ldap/l10n/zh_TW.js
+share/nextcloud/apps/user_ldap/l10n/zh_TW.json
+share/nextcloud/apps/user_ldap/lib/Access.php
+share/nextcloud/apps/user_ldap/lib/BackendUtility.php
+share/nextcloud/apps/user_ldap/lib/Command/CheckUser.php
+share/nextcloud/apps/user_ldap/lib/Command/CreateEmptyConfig.php
+share/nextcloud/apps/user_ldap/lib/Command/DeleteConfig.php
+share/nextcloud/apps/user_ldap/lib/Command/Search.php
+share/nextcloud/apps/user_ldap/lib/Command/SetConfig.php
+share/nextcloud/apps/user_ldap/lib/Command/ShowConfig.php
+share/nextcloud/apps/user_ldap/lib/Command/ShowRemnants.php
+share/nextcloud/apps/user_ldap/lib/Command/TestConfig.php
+share/nextcloud/apps/user_ldap/lib/Configuration.php
+share/nextcloud/apps/user_ldap/lib/Connection.php
+share/nextcloud/apps/user_ldap/lib/Exceptions/ConstraintViolationException.php
+share/nextcloud/apps/user_ldap/lib/Exceptions/NotOnLDAP.php
+share/nextcloud/apps/user_ldap/lib/FilesystemHelper.php
+share/nextcloud/apps/user_ldap/lib/Group_LDAP.php
+share/nextcloud/apps/user_ldap/lib/Group_Proxy.php
+share/nextcloud/apps/user_ldap/lib/Helper.php
+share/nextcloud/apps/user_ldap/lib/ILDAPWrapper.php
+share/nextcloud/apps/user_ldap/lib/IUserLDAP.php
+share/nextcloud/apps/user_ldap/lib/Jobs/CleanUp.php
+share/nextcloud/apps/user_ldap/lib/Jobs/UpdateGroups.php
+share/nextcloud/apps/user_ldap/lib/LDAP.php
+share/nextcloud/apps/user_ldap/lib/LDAPProvider.php
+share/nextcloud/apps/user_ldap/lib/LDAPProviderFactory.php
+share/nextcloud/apps/user_ldap/lib/LDAPUtility.php
+share/nextcloud/apps/user_ldap/lib/LogWrapper.php
+share/nextcloud/apps/user_ldap/lib/Mapping/AbstractMapping.php
+share/nextcloud/apps/user_ldap/lib/Mapping/GroupMapping.php
+share/nextcloud/apps/user_ldap/lib/Mapping/UserMapping.php
+share/nextcloud/apps/user_ldap/lib/Proxy.php
+share/nextcloud/apps/user_ldap/lib/Settings/Admin.php
+share/nextcloud/apps/user_ldap/lib/Settings/Section.php
+share/nextcloud/apps/user_ldap/lib/User/DeletedUsersIndex.php
+share/nextcloud/apps/user_ldap/lib/User/IUserTools.php
+share/nextcloud/apps/user_ldap/lib/User/Manager.php
+share/nextcloud/apps/user_ldap/lib/User/OfflineUser.php
+share/nextcloud/apps/user_ldap/lib/User/User.php
+share/nextcloud/apps/user_ldap/lib/User_LDAP.php
+share/nextcloud/apps/user_ldap/lib/User_Proxy.php
+share/nextcloud/apps/user_ldap/lib/Wizard.php
+share/nextcloud/apps/user_ldap/lib/WizardResult.php
+share/nextcloud/apps/user_ldap/templates/part.settingcontrols.php
+share/nextcloud/apps/user_ldap/templates/part.wizard-groupfilter.php
+share/nextcloud/apps/user_ldap/templates/part.wizard-loginfilter.php
+share/nextcloud/apps/user_ldap/templates/part.wizard-server.php
+share/nextcloud/apps/user_ldap/templates/part.wizard-userfilter.php
+share/nextcloud/apps/user_ldap/templates/part.wizardcontrols.php
+share/nextcloud/apps/user_ldap/templates/settings.php
+share/nextcloud/apps/user_ldap/vendor/ui-multiselect/MIT-LICENSE
+share/nextcloud/apps/user_ldap/vendor/ui-multiselect/jquery.multiselect.css
+share/nextcloud/apps/user_ldap/vendor/ui-multiselect/src/jquery.multiselect.js
+share/nextcloud/apps/user_saml/3rdparty/composer.json
+share/nextcloud/apps/user_saml/3rdparty/composer.lock
+share/nextcloud/apps/user_saml/3rdparty/vendor/autoload.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/composer/ClassLoader.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/composer/LICENSE
+share/nextcloud/apps/user_saml/3rdparty/vendor/composer/autoload_classmap.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/composer/autoload_namespaces.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/composer/autoload_psr4.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/composer/autoload_real.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/composer/autoload_static.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/composer/installed.json
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/.coveralls.yml
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/.gitignore
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/.travis.yml
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/CHANGELOG
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/LICENSE
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/README.md
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/_toolkit_loader.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/advanced_settings_example.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/compatibility.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/composer.json
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/extlib/xmlseclibs/CHANGELOG.txt
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/extlib/xmlseclibs/LICENSE
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/extlib/xmlseclibs/xmlseclibs.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml/AuthRequest.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml/Metadata.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml/Response.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml/Settings.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml/XmlSec.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/Auth.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/AuthnRequest.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/Constants.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/Error.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/LogoutRequest.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/LogoutResponse.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/Metadata.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/Response.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/Settings.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/Utils.php
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/saml-schema-assertion-2.0.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/saml-schema-authn-context-2.0.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/saml-schema-authn-context-types-2.0.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/saml-schema-metadata-2.0.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/saml-schema-protocol-2.0.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/sstc-metadata-attr.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/sstc-saml-attribute-ext.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/sstc-saml-metadata-algsupport-v1.0.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/sstc-saml-metadata-ui-v1.0.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/xenc-schema.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/xml.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/schemas/xmldsig-core-schema.xsd
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/lib/Saml2/version.json
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/locale/en_US/LC_MESSAGES/phptoolkit.mo
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/locale/en_US/LC_MESSAGES/phptoolkit.po
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/locale/es_ES/LC_MESSAGES/phptoolkit.mo
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/locale/es_ES/LC_MESSAGES/phptoolkit.po
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/phpdoc.xml
+share/nextcloud/apps/user_saml/3rdparty/vendor/onelogin/php-saml/settings_example.php
+share/nextcloud/apps/user_saml/appinfo/app.php
+share/nextcloud/apps/user_saml/appinfo/database.xml
+share/nextcloud/apps/user_saml/appinfo/info.xml
+share/nextcloud/apps/user_saml/appinfo/routes.php
+share/nextcloud/apps/user_saml/appinfo/signature.json
+share/nextcloud/apps/user_saml/appinfo/update.php
+share/nextcloud/apps/user_saml/css/admin.css
+share/nextcloud/apps/user_saml/css/personal.css
+share/nextcloud/apps/user_saml/img/app.svg
+share/nextcloud/apps/user_saml/js/admin.js
+share/nextcloud/apps/user_saml/l10n/.tx/config
+share/nextcloud/apps/user_saml/l10n/cs_CZ.js
+share/nextcloud/apps/user_saml/l10n/cs_CZ.json
+share/nextcloud/apps/user_saml/l10n/de.js
+share/nextcloud/apps/user_saml/l10n/de.json
+share/nextcloud/apps/user_saml/l10n/de_DE.js
+share/nextcloud/apps/user_saml/l10n/de_DE.json
+share/nextcloud/apps/user_saml/l10n/fr.js
+share/nextcloud/apps/user_saml/l10n/fr.json
+share/nextcloud/apps/user_saml/l10n/id.js
+share/nextcloud/apps/user_saml/l10n/id.json
+share/nextcloud/apps/user_saml/l10n/it.js
+share/nextcloud/apps/user_saml/l10n/it.json
+share/nextcloud/apps/user_saml/l10n/nl.js
+share/nextcloud/apps/user_saml/l10n/nl.json
+share/nextcloud/apps/user_saml/l10n/pt_BR.js
+share/nextcloud/apps/user_saml/l10n/pt_BR.json
+share/nextcloud/apps/user_saml/lib/AppInfo/Application.php
+share/nextcloud/apps/user_saml/lib/Controller/SAMLController.php
+share/nextcloud/apps/user_saml/lib/Exceptions/NoUserFoundException.php
+share/nextcloud/apps/user_saml/lib/Middleware/OnlyLoggedInMiddleware.php
+share/nextcloud/apps/user_saml/lib/Settings/Admin.php
+share/nextcloud/apps/user_saml/lib/Settings/Section.php
+share/nextcloud/apps/user_saml/lib/samlsettings.php
+share/nextcloud/apps/user_saml/lib/userbackend.php
+share/nextcloud/apps/user_saml/templates/admin.php
+share/nextcloud/apps/user_saml/templates/notProvisioned.php
+share/nextcloud/apps/workflowengine/appinfo/app.php
+share/nextcloud/apps/workflowengine/appinfo/database.xml
+share/nextcloud/apps/workflowengine/appinfo/info.xml
+share/nextcloud/apps/workflowengine/appinfo/routes.php
+share/nextcloud/apps/workflowengine/appinfo/signature.json
+share/nextcloud/apps/workflowengine/css/admin.css
+share/nextcloud/apps/workflowengine/js/admin.js
+share/nextcloud/apps/workflowengine/js/filemimetypeplugin.js
+share/nextcloud/apps/workflowengine/js/filesizeplugin.js
+share/nextcloud/apps/workflowengine/js/filesystemtagsplugin.js
+share/nextcloud/apps/workflowengine/js/requestremoteaddressplugin.js
+share/nextcloud/apps/workflowengine/js/requesttimeplugin.js
+share/nextcloud/apps/workflowengine/js/requesturlplugin.js
+share/nextcloud/apps/workflowengine/js/requestuseragentplugin.js
+share/nextcloud/apps/workflowengine/js/usergroupmembershipplugin.js
+share/nextcloud/apps/workflowengine/l10n/.gitkeep
+share/nextcloud/apps/workflowengine/l10n/bg_BG.js
+share/nextcloud/apps/workflowengine/l10n/bg_BG.json
+share/nextcloud/apps/workflowengine/l10n/cs_CZ.js
+share/nextcloud/apps/workflowengine/l10n/cs_CZ.json
+share/nextcloud/apps/workflowengine/l10n/de.js
+share/nextcloud/apps/workflowengine/l10n/de.json
+share/nextcloud/apps/workflowengine/l10n/de_DE.js
+share/nextcloud/apps/workflowengine/l10n/de_DE.json
+share/nextcloud/apps/workflowengine/l10n/es.js
+share/nextcloud/apps/workflowengine/l10n/es.json
+share/nextcloud/apps/workflowengine/l10n/fr.js
+share/nextcloud/apps/workflowengine/l10n/fr.json
+share/nextcloud/apps/workflowengine/l10n/hu_HU.js
+share/nextcloud/apps/workflowengine/l10n/hu_HU.json
+share/nextcloud/apps/workflowengine/l10n/id.js
+share/nextcloud/apps/workflowengine/l10n/id.json
+share/nextcloud/apps/workflowengine/l10n/it.js
+share/nextcloud/apps/workflowengine/l10n/it.json
+share/nextcloud/apps/workflowengine/l10n/ja.js
+share/nextcloud/apps/workflowengine/l10n/ja.json
+share/nextcloud/apps/workflowengine/l10n/nb_NO.js
+share/nextcloud/apps/workflowengine/l10n/nb_NO.json
+share/nextcloud/apps/workflowengine/l10n/nl.js
+share/nextcloud/apps/workflowengine/l10n/nl.json
+share/nextcloud/apps/workflowengine/l10n/pl.js
+share/nextcloud/apps/workflowengine/l10n/pl.json
+share/nextcloud/apps/workflowengine/l10n/pt_BR.js
+share/nextcloud/apps/workflowengine/l10n/pt_BR.json
+share/nextcloud/apps/workflowengine/l10n/ru.js
+share/nextcloud/apps/workflowengine/l10n/ru.json
+share/nextcloud/apps/workflowengine/l10n/zh_TW.js
+share/nextcloud/apps/workflowengine/l10n/zh_TW.json
+share/nextcloud/apps/workflowengine/lib/AppInfo/Application.php
+share/nextcloud/apps/workflowengine/lib/Check/AbstractStringCheck.php
+share/nextcloud/apps/workflowengine/lib/Check/FileMimeType.php
+share/nextcloud/apps/workflowengine/lib/Check/FileSize.php
+share/nextcloud/apps/workflowengine/lib/Check/FileSystemTags.php
+share/nextcloud/apps/workflowengine/lib/Check/RequestRemoteAddress.php
+share/nextcloud/apps/workflowengine/lib/Check/RequestTime.php
+share/nextcloud/apps/workflowengine/lib/Check/RequestURL.php
+share/nextcloud/apps/workflowengine/lib/Check/RequestUserAgent.php
+share/nextcloud/apps/workflowengine/lib/Check/UserGroupMembership.php
+share/nextcloud/apps/workflowengine/lib/Controller/FlowOperations.php
+share/nextcloud/apps/workflowengine/lib/Controller/RequestTime.php
+share/nextcloud/apps/workflowengine/lib/Manager.php
+share/nextcloud/apps/workflowengine/lib/Settings/Section.php
+share/nextcloud/apps/workflowengine/templates/admin.php
+share/nextcloud/config/.htaccess
+share/nextcloud/config/config.sample.php
+share/nextcloud/console.php
+share/nextcloud/core/Application.php
+share/nextcloud/core/Command/App/CheckCode.php
+share/nextcloud/core/Command/App/Disable.php
+share/nextcloud/core/Command/App/Enable.php
+share/nextcloud/core/Command/App/GetPath.php
+share/nextcloud/core/Command/App/ListApps.php
+share/nextcloud/core/Command/Background/Ajax.php
+share/nextcloud/core/Command/Background/Base.php
+share/nextcloud/core/Command/Background/Cron.php
+share/nextcloud/core/Command/Background/WebCron.php
+share/nextcloud/core/Command/Base.php
+share/nextcloud/core/Command/Check.php
+share/nextcloud/core/Command/Config/App/Base.php
+share/nextcloud/core/Command/Config/App/DeleteConfig.php
+share/nextcloud/core/Command/Config/App/GetConfig.php
+share/nextcloud/core/Command/Config/App/SetConfig.php
+share/nextcloud/core/Command/Config/Import.php
+share/nextcloud/core/Command/Config/ListConfigs.php
+share/nextcloud/core/Command/Config/System/Base.php
+share/nextcloud/core/Command/Config/System/DeleteConfig.php
+share/nextcloud/core/Command/Config/System/GetConfig.php
+share/nextcloud/core/Command/Config/System/SetConfig.php
+share/nextcloud/core/Command/Db/ConvertType.php
+share/nextcloud/core/Command/Db/GenerateChangeScript.php
+share/nextcloud/core/Command/Encryption/ChangeKeyStorageRoot.php
+share/nextcloud/core/Command/Encryption/DecryptAll.php
+share/nextcloud/core/Command/Encryption/Disable.php
+share/nextcloud/core/Command/Encryption/Enable.php
+share/nextcloud/core/Command/Encryption/EncryptAll.php
+share/nextcloud/core/Command/Encryption/ListModules.php
+share/nextcloud/core/Command/Encryption/SetDefaultModule.php
+share/nextcloud/core/Command/Encryption/ShowKeyStorageRoot.php
+share/nextcloud/core/Command/Encryption/Status.php
+share/nextcloud/core/Command/Group/AddUser.php
+share/nextcloud/core/Command/Group/ListCommand.php
+share/nextcloud/core/Command/Group/RemoveUser.php
+share/nextcloud/core/Command/Integrity/CheckApp.php
+share/nextcloud/core/Command/Integrity/CheckCore.php
+share/nextcloud/core/Command/Integrity/SignApp.php
+share/nextcloud/core/Command/Integrity/SignCore.php
+share/nextcloud/core/Command/L10n/CreateJs.php
+share/nextcloud/core/Command/Log/File.php
+share/nextcloud/core/Command/Log/Manage.php
+share/nextcloud/core/Command/Maintenance/DataFingerprint.php
+share/nextcloud/core/Command/Maintenance/Install.php
+share/nextcloud/core/Command/Maintenance/Mimetype/UpdateDB.php
+share/nextcloud/core/Command/Maintenance/Mimetype/UpdateJS.php
+share/nextcloud/core/Command/Maintenance/Mode.php
+share/nextcloud/core/Command/Maintenance/Repair.php
+share/nextcloud/core/Command/Maintenance/SingleUser.php
+share/nextcloud/core/Command/Maintenance/UpdateHtaccess.php
+share/nextcloud/core/Command/Security/ImportCertificate.php
+share/nextcloud/core/Command/Security/ListCertificates.php
+share/nextcloud/core/Command/Security/RemoveCertificate.php
+share/nextcloud/core/Command/Status.php
+share/nextcloud/core/Command/TwoFactorAuth/Base.php
+share/nextcloud/core/Command/TwoFactorAuth/Disable.php
+share/nextcloud/core/Command/TwoFactorAuth/Enable.php
+share/nextcloud/core/Command/Upgrade.php
+share/nextcloud/core/Command/User/Add.php
+share/nextcloud/core/Command/User/Delete.php
+share/nextcloud/core/Command/User/Disable.php
+share/nextcloud/core/Command/User/Enable.php
+share/nextcloud/core/Command/User/Info.php
+share/nextcloud/core/Command/User/LastSeen.php
+share/nextcloud/core/Command/User/ListCommand.php
+share/nextcloud/core/Command/User/Report.php
+share/nextcloud/core/Command/User/ResetPassword.php
+share/nextcloud/core/Command/User/Setting.php
+share/nextcloud/core/Controller/AvatarController.php
+share/nextcloud/core/Controller/LoginController.php
+share/nextcloud/core/Controller/LostController.php
+share/nextcloud/core/Controller/OCJSController.php
+share/nextcloud/core/Controller/OCSController.php
+share/nextcloud/core/Controller/PreviewController.php
+share/nextcloud/core/Controller/SetupController.php
+share/nextcloud/core/Controller/TwoFactorChallengeController.php
+share/nextcloud/core/Controller/UserController.php
+share/nextcloud/core/Middleware/TwoFactorMiddleware.php
+share/nextcloud/core/ajax/update.php
+share/nextcloud/core/css/apps.css
+share/nextcloud/core/css/fixes.css
+share/nextcloud/core/css/fonts.css
+share/nextcloud/core/css/global.css
+share/nextcloud/core/css/header.css
+share/nextcloud/core/css/icons.css
+share/nextcloud/core/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png
+share/nextcloud/core/css/images/ui-bg_diagonals-thick_20_666666_40x40.png
+share/nextcloud/core/css/images/ui-bg_flat_100_ffffff_40x100.png
+share/nextcloud/core/css/images/ui-bg_flat_10_000000_40x100.png
+share/nextcloud/core/css/images/ui-bg_flat_35_1d2d44_40x100.png
+share/nextcloud/core/css/images/ui-bg_glass_100_f8f8f8_1x400.png
+share/nextcloud/core/css/images/ui-bg_highlight-hard_100_f8f8f8_1x100.png
+share/nextcloud/core/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
+share/nextcloud/core/css/images/ui-icons_1d2d44_256x240.png
+share/nextcloud/core/css/images/ui-icons_ffd27a_256x240.png
+share/nextcloud/core/css/images/ui-icons_ffffff_256x240.png
+share/nextcloud/core/css/inputs.css
+share/nextcloud/core/css/jquery-ui-fixes.css
+share/nextcloud/core/css/jquery.ocdialog.css
+share/nextcloud/core/css/lostpassword/resetpassword.css
+share/nextcloud/core/css/mobile.css
+share/nextcloud/core/css/multiselect.css
+share/nextcloud/core/css/share.css
+share/nextcloud/core/css/styles.css
+share/nextcloud/core/css/systemtags.css
+share/nextcloud/core/css/tooltip.css
+share/nextcloud/core/css/update.css
+share/nextcloud/core/doc/admin/_images/2fa-app-install.png
+share/nextcloud/core/doc/admin/_images/add_storage.png
+share/nextcloud/core/doc/admin/_images/admin_filehandling-1.png
+share/nextcloud/core/doc/admin/_images/admin_filehandling-2.png
+share/nextcloud/core/doc/admin/_images/amazons3.png
+share/nextcloud/core/doc/admin/_images/antivirus-app.png
+share/nextcloud/core/doc/admin/_images/antivirus-config.png
+share/nextcloud/core/doc/admin/_images/antivirus-daemon-socket.png
+share/nextcloud/core/doc/admin/_images/antivirus-daemon.png
+share/nextcloud/core/doc/admin/_images/antivirus-executable.png
+share/nextcloud/core/doc/admin/_images/antivirus-logging.png
+share/nextcloud/core/doc/admin/_images/applicable.png
+share/nextcloud/core/doc/admin/_images/auth_mechanism.png
+share/nextcloud/core/doc/admin/_images/auth_rsa.png
+share/nextcloud/core/doc/admin/_images/authentication-types.png
+share/nextcloud/core/doc/admin/_images/code-integrity-admin.png
+share/nextcloud/core/doc/admin/_images/code-integrity-notification.png
+share/nextcloud/core/doc/admin/_images/create_public_share-10.png
+share/nextcloud/core/doc/admin/_images/create_public_share-6.png
+share/nextcloud/core/doc/admin/_images/create_public_share-8.png
+share/nextcloud/core/doc/admin/_images/create_public_share-9.png
+share/nextcloud/core/doc/admin/_images/deprecs-1.png
+share/nextcloud/core/doc/admin/_images/deprecs-2.png
+share/nextcloud/core/doc/admin/_images/deprecs-3.png
+share/nextcloud/core/doc/admin/_images/dropbox-1.png
+share/nextcloud/core/doc/admin/_images/dropbox-2.png
+share/nextcloud/core/doc/admin/_images/dropbox-3.png
+share/nextcloud/core/doc/admin/_images/dropbox-4.png
+share/nextcloud/core/doc/admin/_images/dropbox-5.png
+share/nextcloud/core/doc/admin/_images/dropbox-6.png
+share/nextcloud/core/doc/admin/_images/dropbox-oc.png
+share/nextcloud/core/doc/admin/_images/dropbox.png
+share/nextcloud/core/doc/admin/_images/enable-app.png
+share/nextcloud/core/doc/admin/_images/encryption1.png
+share/nextcloud/core/doc/admin/_images/encryption10.png
+share/nextcloud/core/doc/admin/_images/encryption12.png
+share/nextcloud/core/doc/admin/_images/encryption14.png
+share/nextcloud/core/doc/admin/_images/encryption15.png
+share/nextcloud/core/doc/admin/_images/encryption3.png
+share/nextcloud/core/doc/admin/_images/encryption7.png
+share/nextcloud/core/doc/admin/_images/encryption8.png
+share/nextcloud/core/doc/admin/_images/encryption9.png
+share/nextcloud/core/doc/admin/_images/external-sites-1.png
+share/nextcloud/core/doc/admin/_images/external-sites-2.png
+share/nextcloud/core/doc/admin/_images/external-sites-3.png
+share/nextcloud/core/doc/admin/_images/external-sites-4.png
+share/nextcloud/core/doc/admin/_images/external-sites-5.png
+share/nextcloud/core/doc/admin/_images/federation-0.png
+share/nextcloud/core/doc/admin/_images/federation-1.png
+share/nextcloud/core/doc/admin/_images/federation-2.png
+share/nextcloud/core/doc/admin/_images/federation-3.png
+share/nextcloud/core/doc/admin/_images/files_access_control_block_mimetype.png
+share/nextcloud/core/doc/admin/_images/files_access_control_collaborative_tags.png
+share/nextcloud/core/doc/admin/_images/files_access_control_sample_rules.png
+share/nextcloud/core/doc/admin/_images/ftp.png
+share/nextcloud/core/doc/admin/_images/google-drive.png
+share/nextcloud/core/doc/admin/_images/google-drive1.png
+share/nextcloud/core/doc/admin/_images/google-drive10.png
+share/nextcloud/core/doc/admin/_images/google-drive11.png
+share/nextcloud/core/doc/admin/_images/google-drive12.png
+share/nextcloud/core/doc/admin/_images/google-drive13.png
+share/nextcloud/core/doc/admin/_images/google-drive2.png
+share/nextcloud/core/doc/admin/_images/google-drive3.png
+share/nextcloud/core/doc/admin/_images/google-drive4.png
+share/nextcloud/core/doc/admin/_images/google-drive5.png
+share/nextcloud/core/doc/admin/_images/google-drive6.png
+share/nextcloud/core/doc/admin/_images/google-drive8.png
+share/nextcloud/core/doc/admin/_images/google-drive9.png
+share/nextcloud/core/doc/admin/_images/install-wizard-a.png
+share/nextcloud/core/doc/admin/_images/install-wizard-a1.png
+share/nextcloud/core/doc/admin/_images/install-wizard-a2.png
+share/nextcloud/core/doc/admin/_images/install-wizard-a4.png
+share/nextcloud/core/doc/admin/_images/ldap-advanced-1-connection.png
+share/nextcloud/core/doc/admin/_images/ldap-advanced-2-directory.png
+share/nextcloud/core/doc/admin/_images/ldap-advanced-3-attributes.png
+share/nextcloud/core/doc/admin/_images/ldap-expert.png
+share/nextcloud/core/doc/admin/_images/ldap-fetched-avatar.png
+share/nextcloud/core/doc/admin/_images/ldap-wizard-1-server.png
+share/nextcloud/core/doc/admin/_images/ldap-wizard-2-user.png
+share/nextcloud/core/doc/admin/_images/ldap-wizard-3-login.png
+share/nextcloud/core/doc/admin/_images/ldap-wizard-4-group.png
+share/nextcloud/core/doc/admin/_images/local.png
+share/nextcloud/core/doc/admin/_images/mount_options.png
+share/nextcloud/core/doc/admin/_images/oc_admin_app_page.png
+share/nextcloud/core/doc/admin/_images/openstack.png
+share/nextcloud/core/doc/admin/_images/phpinfo.png
+share/nextcloud/core/doc/admin/_images/preview_images.png
+share/nextcloud/core/doc/admin/_images/rackspace.png
+share/nextcloud/core/doc/admin/_images/saml_app_overview.png
+share/nextcloud/core/doc/admin/_images/scaling-1.png
+share/nextcloud/core/doc/admin/_images/scaling-2.png
+share/nextcloud/core/doc/admin/_images/scaling-3.png
+share/nextcloud/core/doc/admin/_images/scaling-4.png
+share/nextcloud/core/doc/admin/_images/scaling-5.png
+share/nextcloud/core/doc/admin/_images/security-setup-warning-1.png
+share/nextcloud/core/doc/admin/_images/sharing-files-1.png
+share/nextcloud/core/doc/admin/_images/sharing-files-2.png
+share/nextcloud/core/doc/admin/_images/skeleton-files.png
+share/nextcloud/core/doc/admin/_images/skeleton-files1.png
+share/nextcloud/core/doc/admin/_images/smb.png
+share/nextcloud/core/doc/admin/_images/smtp-config-php-sendmail.png
+share/nextcloud/core/doc/admin/_images/smtp-config-smtp.png
+share/nextcloud/core/doc/admin/_images/smtp-config-wizard.png
+share/nextcloud/core/doc/admin/_images/theming-log-in-page.png
+share/nextcloud/core/doc/admin/_images/theming.png
+share/nextcloud/core/doc/admin/_images/upgrade-1.png
+share/nextcloud/core/doc/admin/_images/upgrade-2.png
+share/nextcloud/core/doc/admin/_images/user_mounts.png
+share/nextcloud/core/doc/admin/_images/user_password_policy_configuration_app.png
+share/nextcloud/core/doc/admin/_images/users-config-1.png
+share/nextcloud/core/doc/admin/_images/users-config-2.png
+share/nextcloud/core/doc/admin/_images/users-config.png
+share/nextcloud/core/doc/admin/_images/users-create.png
+share/nextcloud/core/doc/admin/_images/users-groups.png
+share/nextcloud/core/doc/admin/_images/webdav.png
+share/nextcloud/core/doc/admin/_sources/configuration_database/db_conversion.txt
+share/nextcloud/core/doc/admin/_sources/configuration_database/index.txt
+share/nextcloud/core/doc/admin/_sources/configuration_database/linux_database_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/big_file_upload_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/default_files_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/encryption_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage/amazons3.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage/auth_mechanisms.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage/dropbox.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage/ftp.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage/google.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage/local.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage/nextcloud.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage/openstack.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage/sftp.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage/smb.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage/webdav.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/external_storage_configuration_gui.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/federated_cloud_sharing_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/file_sharing_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/file_versioning.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/files_access_control.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/files_locking_transactional.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/index.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/previews_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_files/primary_storage.txt
+share/nextcloud/core/doc/admin/_sources/configuration_mimetypes/index.txt
+share/nextcloud/core/doc/admin/_sources/configuration_mimetypes/mimetype_aliases.txt
+share/nextcloud/core/doc/admin/_sources/configuration_mimetypes/mimetype_mapping.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/activity_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/antivirus_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/automatic_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/background_jobs_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/caching_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/config_sample_php_parameters.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/custom_client_repos.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/email_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/external_sites.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/harden_server.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/index.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/knowledgebase_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/language_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/logging_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/occ_command.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/reverse_proxy_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/security_setup_warnings.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/server_tuning.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/sso_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/theming.txt
+share/nextcloud/core/doc/admin/_sources/configuration_server/thirdparty_php_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_user/index.txt
+share/nextcloud/core/doc/admin/_sources/configuration_user/reset_admin_password.txt
+share/nextcloud/core/doc/admin/_sources/configuration_user/reset_user_password.txt
+share/nextcloud/core/doc/admin/_sources/configuration_user/two_factor-auth.txt
+share/nextcloud/core/doc/admin/_sources/configuration_user/user_auth_ftp_smb_imap.txt
+share/nextcloud/core/doc/admin/_sources/configuration_user/user_auth_ldap.txt
+share/nextcloud/core/doc/admin/_sources/configuration_user/user_auth_ldap_cleanup.txt
+share/nextcloud/core/doc/admin/_sources/configuration_user/user_configuration.txt
+share/nextcloud/core/doc/admin/_sources/configuration_user/user_password_policy.txt
+share/nextcloud/core/doc/admin/_sources/configuration_user/user_provisioning_api.txt
+share/nextcloud/core/doc/admin/_sources/contents.txt
+share/nextcloud/core/doc/admin/_sources/index.txt
+share/nextcloud/core/doc/admin/_sources/installation/apps_management_installation.txt
+share/nextcloud/core/doc/admin/_sources/installation/apps_supported.txt
+share/nextcloud/core/doc/admin/_sources/installation/command_line_installation.txt
+share/nextcloud/core/doc/admin/_sources/installation/deployment_recommendations.txt
+share/nextcloud/core/doc/admin/_sources/installation/index.txt
+share/nextcloud/core/doc/admin/_sources/installation/installation_wizard.txt
+share/nextcloud/core/doc/admin/_sources/installation/nginx_examples.txt
+share/nextcloud/core/doc/admin/_sources/installation/nginx_nextcloud_9x.txt
+share/nextcloud/core/doc/admin/_sources/installation/php_54_installation.txt
+share/nextcloud/core/doc/admin/_sources/installation/php_55_installation.txt
+share/nextcloud/core/doc/admin/_sources/installation/selinux_configuration.txt
+share/nextcloud/core/doc/admin/_sources/installation/source_installation.txt
+share/nextcloud/core/doc/admin/_sources/installation/system_requirements.txt
+share/nextcloud/core/doc/admin/_sources/issues/code_signing.txt
+share/nextcloud/core/doc/admin/_sources/issues/general_troubleshooting.txt
+share/nextcloud/core/doc/admin/_sources/issues/index.txt
+share/nextcloud/core/doc/admin/_sources/maintenance/backup.txt
+share/nextcloud/core/doc/admin/_sources/maintenance/enable_maintenance.txt
+share/nextcloud/core/doc/admin/_sources/maintenance/index.txt
+share/nextcloud/core/doc/admin/_sources/maintenance/manual_upgrade.txt
+share/nextcloud/core/doc/admin/_sources/maintenance/migrating.txt
+share/nextcloud/core/doc/admin/_sources/maintenance/mysql_4byte_support.txt
+share/nextcloud/core/doc/admin/_sources/maintenance/package_upgrade.txt
+share/nextcloud/core/doc/admin/_sources/maintenance/restore.txt
+share/nextcloud/core/doc/admin/_sources/maintenance/update.txt
+share/nextcloud/core/doc/admin/_sources/maintenance/upgrade.txt
+share/nextcloud/core/doc/admin/_sources/operations/considerations_on_monitoring.txt
+share/nextcloud/core/doc/admin/_sources/operations/index.txt
+share/nextcloud/core/doc/admin/_sources/operations/scaling_multiple_machines.txt
+share/nextcloud/core/doc/admin/_sources/operations/theming.txt
+share/nextcloud/core/doc/admin/_sources/release_notes.txt
+share/nextcloud/core/doc/admin/_static/ajax-loader.gif
+share/nextcloud/core/doc/admin/_static/basic.css
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/css/bootstrap-theme.css
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/css/bootstrap-theme.css.map
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/css/bootstrap-theme.min.css
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/css/bootstrap.css
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/css/bootstrap.css.map
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/css/bootstrap.min.css
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/fonts/glyphicons-halflings-regular.eot
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/fonts/glyphicons-halflings-regular.svg
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/fonts/glyphicons-halflings-regular.ttf
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/fonts/glyphicons-halflings-regular.woff
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/js/bootstrap.js
+share/nextcloud/core/doc/admin/_static/bootstrap-3.1.0/js/bootstrap.min.js
+share/nextcloud/core/doc/admin/_static/bootstrap-responsive.css
+share/nextcloud/core/doc/admin/_static/bootstrap-sphinx.css
+share/nextcloud/core/doc/admin/_static/bootstrap-sphinx.js
+share/nextcloud/core/doc/admin/_static/bootstrap.css
+share/nextcloud/core/doc/admin/_static/bootstrap.js
+share/nextcloud/core/doc/admin/_static/comment-bright.png
+share/nextcloud/core/doc/admin/_static/comment-close.png
+share/nextcloud/core/doc/admin/_static/comment.png
+share/nextcloud/core/doc/admin/_static/doctools.js
+share/nextcloud/core/doc/admin/_static/down-pressed.png
+share/nextcloud/core/doc/admin/_static/down.png
+share/nextcloud/core/doc/admin/_static/file.png
+share/nextcloud/core/doc/admin/_static/fonts/OpenSans-Bold.ttf
+share/nextcloud/core/doc/admin/_static/fonts/OpenSans-Bold.woff
+share/nextcloud/core/doc/admin/_static/fonts/OpenSans-Italic.ttf
+share/nextcloud/core/doc/admin/_static/fonts/OpenSans-Italic.woff
+share/nextcloud/core/doc/admin/_static/fonts/OpenSans-Light.ttf
+share/nextcloud/core/doc/admin/_static/fonts/OpenSans-Light.woff
+share/nextcloud/core/doc/admin/_static/fonts/OpenSans-Regular.ttf
+share/nextcloud/core/doc/admin/_static/fonts/OpenSans-Regular.woff
+share/nextcloud/core/doc/admin/_static/fonts/fontawesome-webfont.eot
+share/nextcloud/core/doc/admin/_static/fonts/fontawesome-webfont.svg
+share/nextcloud/core/doc/admin/_static/fonts/fontawesome-webfont.ttf
+share/nextcloud/core/doc/admin/_static/fonts/fontawesome-webfont.woff
+share/nextcloud/core/doc/admin/_static/img/glyphicons-halflings-white.png
+share/nextcloud/core/doc/admin/_static/img/glyphicons-halflings.png
+share/nextcloud/core/doc/admin/_static/img/logo_owncloud.svg
+share/nextcloud/core/doc/admin/_static/img/note.svg
+share/nextcloud/core/doc/admin/_static/img/note_pencil.svg
+share/nextcloud/core/doc/admin/_static/img/social/diaspora.png
+share/nextcloud/core/doc/admin/_static/img/social/diaspora.svg
+share/nextcloud/core/doc/admin/_static/img/social/diasporaround.png
+share/nextcloud/core/doc/admin/_static/img/social/facebook.png
+share/nextcloud/core/doc/admin/_static/img/social/facebook.svg
+share/nextcloud/core/doc/admin/_static/img/social/googleplus.png
+share/nextcloud/core/doc/admin/_static/img/social/googleplus.svg
+share/nextcloud/core/doc/admin/_static/img/social/mail.svg
+share/nextcloud/core/doc/admin/_static/img/social/ownCloud7launch.png
+share/nextcloud/core/doc/admin/_static/img/social/rss.png
+share/nextcloud/core/doc/admin/_static/img/social/rss.svg
+share/nextcloud/core/doc/admin/_static/img/social/twitter.png
+share/nextcloud/core/doc/admin/_static/img/social/twitter.svg
+share/nextcloud/core/doc/admin/_static/img/social/twitterround.png
+share/nextcloud/core/doc/admin/_static/img/social/youtube.svg
+share/nextcloud/core/doc/admin/_static/img/todo.svg
+share/nextcloud/core/doc/admin/_static/img/warning.svg
+share/nextcloud/core/doc/admin/_static/jquery.js
+share/nextcloud/core/doc/admin/_static/js/jquery-1.11.0.min.js
+share/nextcloud/core/doc/admin/_static/js/jquery-fix.js
+share/nextcloud/core/doc/admin/_static/logo-blue.pdf
+share/nextcloud/core/doc/admin/_static/logo-blue.png
+share/nextcloud/core/doc/admin/_static/main.min.css
+share/nextcloud/core/doc/admin/_static/minus.png
+share/nextcloud/core/doc/admin/_static/plus.png
+share/nextcloud/core/doc/admin/_static/pygments.css
+share/nextcloud/core/doc/admin/_static/searchtools.js
+share/nextcloud/core/doc/admin/_static/social/diaspora.svg
+share/nextcloud/core/doc/admin/_static/social/diasporaround.png
+share/nextcloud/core/doc/admin/_static/social/facebook.png
+share/nextcloud/core/doc/admin/_static/social/googleplus.png
+share/nextcloud/core/doc/admin/_static/social/mail.png
+share/nextcloud/core/doc/admin/_static/social/mail.svg
+share/nextcloud/core/doc/admin/_static/social/rss.png
+share/nextcloud/core/doc/admin/_static/social/rss.svg
+share/nextcloud/core/doc/admin/_static/social/twitter.svg
+share/nextcloud/core/doc/admin/_static/social/twitterround.png
+share/nextcloud/core/doc/admin/_static/social/youtube.svg
+share/nextcloud/core/doc/admin/_static/style.css
+share/nextcloud/core/doc/admin/_static/styles.css
+share/nextcloud/core/doc/admin/_static/underscore.js
+share/nextcloud/core/doc/admin/_static/up-pressed.png
+share/nextcloud/core/doc/admin/_static/up.png
+share/nextcloud/core/doc/admin/_static/websupport.js
+share/nextcloud/core/doc/admin/configuration_database/db_conversion.html
+share/nextcloud/core/doc/admin/configuration_database/index.html
+share/nextcloud/core/doc/admin/configuration_database/linux_database_configuration.html
+share/nextcloud/core/doc/admin/configuration_files/big_file_upload_configuration.html
+share/nextcloud/core/doc/admin/configuration_files/default_files_configuration.html
+share/nextcloud/core/doc/admin/configuration_files/encryption_configuration.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage/amazons3.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage/auth_mechanisms.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage/dropbox.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage/ftp.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage/google.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage/local.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage/nextcloud.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage/openstack.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage/sftp.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage/smb.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage/webdav.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage_configuration.html
+share/nextcloud/core/doc/admin/configuration_files/external_storage_configuration_gui.html
+share/nextcloud/core/doc/admin/configuration_files/federated_cloud_sharing_configuration.html
+share/nextcloud/core/doc/admin/configuration_files/file_sharing_configuration.html
+share/nextcloud/core/doc/admin/configuration_files/file_versioning.html
+share/nextcloud/core/doc/admin/configuration_files/files_access_control.html
+share/nextcloud/core/doc/admin/configuration_files/files_locking_transactional.html
+share/nextcloud/core/doc/admin/configuration_files/index.html
+share/nextcloud/core/doc/admin/configuration_files/previews_configuration.html
+share/nextcloud/core/doc/admin/configuration_files/primary_storage.html
+share/nextcloud/core/doc/admin/configuration_mimetypes/index.html
+share/nextcloud/core/doc/admin/configuration_mimetypes/mimetype_aliases.html
+share/nextcloud/core/doc/admin/configuration_mimetypes/mimetype_mapping.html
+share/nextcloud/core/doc/admin/configuration_server/activity_configuration.html
+share/nextcloud/core/doc/admin/configuration_server/antivirus_configuration.html
+share/nextcloud/core/doc/admin/configuration_server/automatic_configuration.html
+share/nextcloud/core/doc/admin/configuration_server/background_jobs_configuration.html
+share/nextcloud/core/doc/admin/configuration_server/caching_configuration.html
+share/nextcloud/core/doc/admin/configuration_server/config_sample_php_parameters.html
+share/nextcloud/core/doc/admin/configuration_server/custom_client_repos.html
+share/nextcloud/core/doc/admin/configuration_server/email_configuration.html
+share/nextcloud/core/doc/admin/configuration_server/external_sites.html
+share/nextcloud/core/doc/admin/configuration_server/harden_server.html
+share/nextcloud/core/doc/admin/configuration_server/index.html
+share/nextcloud/core/doc/admin/configuration_server/knowledgebase_configuration.html
+share/nextcloud/core/doc/admin/configuration_server/language_configuration.html
+share/nextcloud/core/doc/admin/configuration_server/logging_configuration.html
+share/nextcloud/core/doc/admin/configuration_server/occ_command.html
+share/nextcloud/core/doc/admin/configuration_server/reverse_proxy_configuration.html
+share/nextcloud/core/doc/admin/configuration_server/security_setup_warnings.html
+share/nextcloud/core/doc/admin/configuration_server/server_tuning.html
+share/nextcloud/core/doc/admin/configuration_server/sso_configuration.html
+share/nextcloud/core/doc/admin/configuration_server/theming.html
+share/nextcloud/core/doc/admin/configuration_server/thirdparty_php_configuration.html
+share/nextcloud/core/doc/admin/configuration_user/index.html
+share/nextcloud/core/doc/admin/configuration_user/reset_admin_password.html
+share/nextcloud/core/doc/admin/configuration_user/reset_user_password.html
+share/nextcloud/core/doc/admin/configuration_user/two_factor-auth.html
+share/nextcloud/core/doc/admin/configuration_user/user_auth_ftp_smb_imap.html
+share/nextcloud/core/doc/admin/configuration_user/user_auth_ldap.html
+share/nextcloud/core/doc/admin/configuration_user/user_auth_ldap_cleanup.html
+share/nextcloud/core/doc/admin/configuration_user/user_configuration.html
+share/nextcloud/core/doc/admin/configuration_user/user_password_policy.html
+share/nextcloud/core/doc/admin/configuration_user/user_provisioning_api.html
+share/nextcloud/core/doc/admin/contents.html
+share/nextcloud/core/doc/admin/genindex.html
+share/nextcloud/core/doc/admin/index.html
+share/nextcloud/core/doc/admin/installation/apps_management_installation.html
+share/nextcloud/core/doc/admin/installation/apps_supported.html
+share/nextcloud/core/doc/admin/installation/command_line_installation.html
+share/nextcloud/core/doc/admin/installation/deployment_recommendations.html
+share/nextcloud/core/doc/admin/installation/index.html
+share/nextcloud/core/doc/admin/installation/installation_wizard.html
+share/nextcloud/core/doc/admin/installation/nginx_examples.html
+share/nextcloud/core/doc/admin/installation/nginx_nextcloud_9x.html
+share/nextcloud/core/doc/admin/installation/php_54_installation.html
+share/nextcloud/core/doc/admin/installation/php_55_installation.html
+share/nextcloud/core/doc/admin/installation/selinux_configuration.html
+share/nextcloud/core/doc/admin/installation/source_installation.html
+share/nextcloud/core/doc/admin/installation/system_requirements.html
+share/nextcloud/core/doc/admin/issues/code_signing.html
+share/nextcloud/core/doc/admin/issues/general_troubleshooting.html
+share/nextcloud/core/doc/admin/issues/index.html
+share/nextcloud/core/doc/admin/maintenance/backup.html
+share/nextcloud/core/doc/admin/maintenance/enable_maintenance.html
+share/nextcloud/core/doc/admin/maintenance/index.html
+share/nextcloud/core/doc/admin/maintenance/manual_upgrade.html
+share/nextcloud/core/doc/admin/maintenance/migrating.html
+share/nextcloud/core/doc/admin/maintenance/mysql_4byte_support.html
+share/nextcloud/core/doc/admin/maintenance/package_upgrade.html
+share/nextcloud/core/doc/admin/maintenance/restore.html
+share/nextcloud/core/doc/admin/maintenance/update.html
+share/nextcloud/core/doc/admin/maintenance/upgrade.html
+share/nextcloud/core/doc/admin/objects.inv
+share/nextcloud/core/doc/admin/operations/considerations_on_monitoring.html
+share/nextcloud/core/doc/admin/operations/index.html
+share/nextcloud/core/doc/admin/operations/scaling_multiple_machines.html
+share/nextcloud/core/doc/admin/operations/theming.html
+share/nextcloud/core/doc/admin/release_notes.html
+share/nextcloud/core/doc/admin/search.html
+share/nextcloud/core/doc/admin/searchindex.js
+share/nextcloud/core/doc/user/_images/2fa_backupcode_1.png
+share/nextcloud/core/doc/user/_images/2fa_backupcode_2.png
+share/nextcloud/core/doc/user/_images/anonym_click_sharing.png
+share/nextcloud/core/doc/user/_images/anonym_hide_file_listing.png
+share/nextcloud/core/doc/user/_images/anonym_upload.png
+share/nextcloud/core/doc/user/_images/anonym_uploaded_files.png
+share/nextcloud/core/doc/user/_images/contact_thunderbird-Symbol_Gear.jpg
+share/nextcloud/core/doc/user/_images/contact_thunderbird-Symbol_Impeller.jpg
+share/nextcloud/core/doc/user/_images/contact_thunderbird-URL_config.jpg
+share/nextcloud/core/doc/user/_images/create_public_share-6.png
+share/nextcloud/core/doc/user/_images/create_public_share-8.png
+share/nextcloud/core/doc/user/_images/create_public_share-9.png
+share/nextcloud/core/doc/user/_images/direct-share-1.png
+share/nextcloud/core/doc/user/_images/encryption1.png
+share/nextcloud/core/doc/user/_images/encryption2.png
+share/nextcloud/core/doc/user/_images/encryption3.png
+share/nextcloud/core/doc/user/_images/explorer_webdav.png
+share/nextcloud/core/doc/user/_images/file_menu_comments_2.png
+share/nextcloud/core/doc/user/_images/files_page-1.png
+share/nextcloud/core/doc/user/_images/files_page-2.png
+share/nextcloud/core/doc/user/_images/files_page-3.png
+share/nextcloud/core/doc/user/_images/files_page-4.png
+share/nextcloud/core/doc/user/_images/files_page-5.png
+share/nextcloud/core/doc/user/_images/files_page-6.png
+share/nextcloud/core/doc/user/_images/files_page-7.png
+share/nextcloud/core/doc/user/_images/files_page-8.png
+share/nextcloud/core/doc/user/_images/files_page.png
+share/nextcloud/core/doc/user/_images/files_page1.png
+share/nextcloud/core/doc/user/_images/files_versioning.png
+share/nextcloud/core/doc/user/_images/gallery-1.png
+share/nextcloud/core/doc/user/_images/gallery-2.png
+share/nextcloud/core/doc/user/_images/hidden_files.png
+share/nextcloud/core/doc/user/_images/kdes.png
+share/nextcloud/core/doc/user/_images/kdes1.png
+share/nextcloud/core/doc/user/_images/kdes2.png
+share/nextcloud/core/doc/user/_images/kdes3.png
+share/nextcloud/core/doc/user/_images/kdes4.png
+share/nextcloud/core/doc/user/_images/kdes5.png
+share/nextcloud/core/doc/user/_images/kdes6.png
+share/nextcloud/core/doc/user/_images/kdes7.png
+share/nextcloud/core/doc/user/_images/kdes9.png
+share/nextcloud/core/doc/user/_images/oc_connect.png
+share/nextcloud/core/doc/user/_images/oc_personal_settings_dropdown.png
+share/nextcloud/core/doc/user/_images/osx_webdav1.png
+share/nextcloud/core/doc/user/_images/osx_webdav2.png
+share/nextcloud/core/doc/user/_images/personal_settings.png
+share/nextcloud/core/doc/user/_images/quota1.png
+share/nextcloud/core/doc/user/_images/settings_devices.png
+share/nextcloud/core/doc/user/_images/settings_devices_add.png
+share/nextcloud/core/doc/user/_images/settings_sessions.png
+share/nextcloud/core/doc/user/_images/totp_enable.png
+share/nextcloud/core/doc/user/_images/totp_login_2.png
+share/nextcloud/core/doc/user/_images/video_player_2.png
+share/nextcloud/core/doc/user/_images/webdav_dolphin.png
+share/nextcloud/core/doc/user/_images/webdav_gnome3_nautilus.png
+share/nextcloud/core/doc/user/_sources/contents.txt
+share/nextcloud/core/doc/user/_sources/external_storage/external_storage.txt
+share/nextcloud/core/doc/user/_sources/external_storage/index.txt
+share/nextcloud/core/doc/user/_sources/files/access_webdav.txt
+share/nextcloud/core/doc/user/_sources/files/access_webgui.txt
+share/nextcloud/core/doc/user/_sources/files/deleted_file_management.txt
+share/nextcloud/core/doc/user/_sources/files/desktop_mobile_sync.txt
+share/nextcloud/core/doc/user/_sources/files/encrypting_files.txt
+share/nextcloud/core/doc/user/_sources/files/federated_cloud_sharing.txt
+share/nextcloud/core/doc/user/_sources/files/file_drop.txt
+share/nextcloud/core/doc/user/_sources/files/gallery_app.txt
+share/nextcloud/core/doc/user/_sources/files/index.txt
+share/nextcloud/core/doc/user/_sources/files/large_file_upload.txt
+share/nextcloud/core/doc/user/_sources/files/quota.txt
+share/nextcloud/core/doc/user/_sources/files/version_control.txt
+share/nextcloud/core/doc/user/_sources/index.txt
+share/nextcloud/core/doc/user/_sources/pim/calendar.txt
+share/nextcloud/core/doc/user/_sources/pim/contacts.txt
+share/nextcloud/core/doc/user/_sources/pim/index.txt
+share/nextcloud/core/doc/user/_sources/pim/sync_ios.txt
+share/nextcloud/core/doc/user/_sources/pim/sync_kde.txt
+share/nextcloud/core/doc/user/_sources/pim/sync_osx.txt
+share/nextcloud/core/doc/user/_sources/pim/sync_thunderbird.txt
+share/nextcloud/core/doc/user/_sources/pim/troubleshooting.txt
+share/nextcloud/core/doc/user/_sources/session_management.txt
+share/nextcloud/core/doc/user/_sources/user_2fa.txt
+share/nextcloud/core/doc/user/_sources/userpreferences.txt
+share/nextcloud/core/doc/user/_sources/webinterface.txt
+share/nextcloud/core/doc/user/_sources/whats_new.txt
+share/nextcloud/core/doc/user/_static/ajax-loader.gif
+share/nextcloud/core/doc/user/_static/basic.css
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/css/bootstrap-theme.css
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/css/bootstrap-theme.css.map
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/css/bootstrap-theme.min.css
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/css/bootstrap.css
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/css/bootstrap.css.map
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/css/bootstrap.min.css
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/fonts/glyphicons-halflings-regular.eot
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/fonts/glyphicons-halflings-regular.svg
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/fonts/glyphicons-halflings-regular.ttf
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/fonts/glyphicons-halflings-regular.woff
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/js/bootstrap.js
+share/nextcloud/core/doc/user/_static/bootstrap-3.1.0/js/bootstrap.min.js
+share/nextcloud/core/doc/user/_static/bootstrap-responsive.css
+share/nextcloud/core/doc/user/_static/bootstrap-sphinx.css
+share/nextcloud/core/doc/user/_static/bootstrap-sphinx.js
+share/nextcloud/core/doc/user/_static/bootstrap.css
+share/nextcloud/core/doc/user/_static/bootstrap.js
+share/nextcloud/core/doc/user/_static/comment-bright.png
+share/nextcloud/core/doc/user/_static/comment-close.png
+share/nextcloud/core/doc/user/_static/comment.png
+share/nextcloud/core/doc/user/_static/doctools.js
+share/nextcloud/core/doc/user/_static/down-pressed.png
+share/nextcloud/core/doc/user/_static/down.png
+share/nextcloud/core/doc/user/_static/file.png
+share/nextcloud/core/doc/user/_static/fonts/OpenSans-Bold.ttf
+share/nextcloud/core/doc/user/_static/fonts/OpenSans-Bold.woff
+share/nextcloud/core/doc/user/_static/fonts/OpenSans-Italic.ttf
+share/nextcloud/core/doc/user/_static/fonts/OpenSans-Italic.woff
+share/nextcloud/core/doc/user/_static/fonts/OpenSans-Light.ttf
+share/nextcloud/core/doc/user/_static/fonts/OpenSans-Light.woff
+share/nextcloud/core/doc/user/_static/fonts/OpenSans-Regular.ttf
+share/nextcloud/core/doc/user/_static/fonts/OpenSans-Regular.woff
+share/nextcloud/core/doc/user/_static/fonts/fontawesome-webfont.eot
+share/nextcloud/core/doc/user/_static/fonts/fontawesome-webfont.svg
+share/nextcloud/core/doc/user/_static/fonts/fontawesome-webfont.ttf
+share/nextcloud/core/doc/user/_static/fonts/fontawesome-webfont.woff
+share/nextcloud/core/doc/user/_static/img/glyphicons-halflings-white.png
+share/nextcloud/core/doc/user/_static/img/glyphicons-halflings.png
+share/nextcloud/core/doc/user/_static/img/logo_owncloud.svg
+share/nextcloud/core/doc/user/_static/img/note.svg
+share/nextcloud/core/doc/user/_static/img/note_pencil.svg
+share/nextcloud/core/doc/user/_static/img/social/diaspora.png
+share/nextcloud/core/doc/user/_static/img/social/diaspora.svg
+share/nextcloud/core/doc/user/_static/img/social/diasporaround.png
+share/nextcloud/core/doc/user/_static/img/social/facebook.png
+share/nextcloud/core/doc/user/_static/img/social/facebook.svg
+share/nextcloud/core/doc/user/_static/img/social/googleplus.png
+share/nextcloud/core/doc/user/_static/img/social/googleplus.svg
+share/nextcloud/core/doc/user/_static/img/social/mail.svg
+share/nextcloud/core/doc/user/_static/img/social/ownCloud7launch.png
+share/nextcloud/core/doc/user/_static/img/social/rss.png
+share/nextcloud/core/doc/user/_static/img/social/rss.svg
+share/nextcloud/core/doc/user/_static/img/social/twitter.png
+share/nextcloud/core/doc/user/_static/img/social/twitter.svg
+share/nextcloud/core/doc/user/_static/img/social/twitterround.png
+share/nextcloud/core/doc/user/_static/img/social/youtube.svg
+share/nextcloud/core/doc/user/_static/img/todo.svg
+share/nextcloud/core/doc/user/_static/img/warning.svg
+share/nextcloud/core/doc/user/_static/jquery.js
+share/nextcloud/core/doc/user/_static/js/jquery-1.11.0.min.js
+share/nextcloud/core/doc/user/_static/js/jquery-fix.js
+share/nextcloud/core/doc/user/_static/logo-blue.pdf
+share/nextcloud/core/doc/user/_static/logo-blue.png
+share/nextcloud/core/doc/user/_static/main.min.css
+share/nextcloud/core/doc/user/_static/minus.png
+share/nextcloud/core/doc/user/_static/plus.png
+share/nextcloud/core/doc/user/_static/pygments.css
+share/nextcloud/core/doc/user/_static/searchtools.js
+share/nextcloud/core/doc/user/_static/social/diaspora.svg
+share/nextcloud/core/doc/user/_static/social/diasporaround.png
+share/nextcloud/core/doc/user/_static/social/facebook.png
+share/nextcloud/core/doc/user/_static/social/googleplus.png
+share/nextcloud/core/doc/user/_static/social/mail.png
+share/nextcloud/core/doc/user/_static/social/mail.svg
+share/nextcloud/core/doc/user/_static/social/rss.png
+share/nextcloud/core/doc/user/_static/social/rss.svg
+share/nextcloud/core/doc/user/_static/social/twitter.svg
+share/nextcloud/core/doc/user/_static/social/twitterround.png
+share/nextcloud/core/doc/user/_static/social/youtube.svg
+share/nextcloud/core/doc/user/_static/style.css
+share/nextcloud/core/doc/user/_static/styles.css
+share/nextcloud/core/doc/user/_static/underscore.js
+share/nextcloud/core/doc/user/_static/up-pressed.png
+share/nextcloud/core/doc/user/_static/up.png
+share/nextcloud/core/doc/user/_static/websupport.js
+share/nextcloud/core/doc/user/contents.html
+share/nextcloud/core/doc/user/external_storage/external_storage.html
+share/nextcloud/core/doc/user/external_storage/index.html
+share/nextcloud/core/doc/user/files/access_webdav.html
+share/nextcloud/core/doc/user/files/access_webgui.html
+share/nextcloud/core/doc/user/files/deleted_file_management.html
+share/nextcloud/core/doc/user/files/desktop_mobile_sync.html
+share/nextcloud/core/doc/user/files/encrypting_files.html
+share/nextcloud/core/doc/user/files/federated_cloud_sharing.html
+share/nextcloud/core/doc/user/files/file_drop.html
+share/nextcloud/core/doc/user/files/gallery_app.html
+share/nextcloud/core/doc/user/files/index.html
+share/nextcloud/core/doc/user/files/large_file_upload.html
+share/nextcloud/core/doc/user/files/quota.html
+share/nextcloud/core/doc/user/files/version_control.html
+share/nextcloud/core/doc/user/genindex.html
+share/nextcloud/core/doc/user/index.html
+share/nextcloud/core/doc/user/objects.inv
+share/nextcloud/core/doc/user/pim/calendar.html
+share/nextcloud/core/doc/user/pim/contacts.html
+share/nextcloud/core/doc/user/pim/index.html
+share/nextcloud/core/doc/user/pim/sync_ios.html
+share/nextcloud/core/doc/user/pim/sync_kde.html
+share/nextcloud/core/doc/user/pim/sync_osx.html
+share/nextcloud/core/doc/user/pim/sync_thunderbird.html
+share/nextcloud/core/doc/user/pim/troubleshooting.html
+share/nextcloud/core/doc/user/search.html
+share/nextcloud/core/doc/user/searchindex.js
+share/nextcloud/core/doc/user/session_management.html
+share/nextcloud/core/doc/user/user_2fa.html
+share/nextcloud/core/doc/user/userpreferences.html
+share/nextcloud/core/doc/user/webinterface.html
+share/nextcloud/core/doc/user/whats_new.html
+share/nextcloud/core/fonts/LICENSE.txt
+share/nextcloud/core/fonts/OpenSans-Light.woff
+share/nextcloud/core/fonts/OpenSans-Regular.ttf
+share/nextcloud/core/fonts/OpenSans-Regular.woff
+share/nextcloud/core/fonts/OpenSans-Semibold.woff
+share/nextcloud/core/img/actions/add.svg
+share/nextcloud/core/img/actions/audio-off-white.svg
+share/nextcloud/core/img/actions/audio-off.svg
+share/nextcloud/core/img/actions/audio-white.svg
+share/nextcloud/core/img/actions/audio.svg
+share/nextcloud/core/img/actions/caret-dark.svg
+share/nextcloud/core/img/actions/caret.svg
+share/nextcloud/core/img/actions/checkbox-checked-disabled.svg
+share/nextcloud/core/img/actions/checkbox-checked-white.svg
+share/nextcloud/core/img/actions/checkbox-checked.svg
+share/nextcloud/core/img/actions/checkbox-disabled-white.svg
+share/nextcloud/core/img/actions/checkbox-disabled.svg
+share/nextcloud/core/img/actions/checkbox-mixed-disabled.svg
+share/nextcloud/core/img/actions/checkbox-mixed-white.svg
+share/nextcloud/core/img/actions/checkbox-mixed.svg
+share/nextcloud/core/img/actions/checkbox-white.svg
+share/nextcloud/core/img/actions/checkbox.svg
+share/nextcloud/core/img/actions/checkmark-color.svg
+share/nextcloud/core/img/actions/checkmark-white.svg
+share/nextcloud/core/img/actions/checkmark.svg
+share/nextcloud/core/img/actions/clippy.svg
+share/nextcloud/core/img/actions/close.svg
+share/nextcloud/core/img/actions/comment.svg
+share/nextcloud/core/img/actions/confirm-white.svg
+share/nextcloud/core/img/actions/confirm.svg
+share/nextcloud/core/img/actions/delete-hover.svg
+share/nextcloud/core/img/actions/delete-white.svg
+share/nextcloud/core/img/actions/delete.svg
+share/nextcloud/core/img/actions/details.svg
+share/nextcloud/core/img/actions/download-white.svg
+share/nextcloud/core/img/actions/download.svg
+share/nextcloud/core/img/actions/edit.svg
+share/nextcloud/core/img/actions/error-color.svg
+share/nextcloud/core/img/actions/error-white.svg
+share/nextcloud/core/img/actions/error.svg
+share/nextcloud/core/img/actions/external.svg
+share/nextcloud/core/img/actions/fullscreen-white.svg
+share/nextcloud/core/img/actions/fullscreen.svg
+share/nextcloud/core/img/actions/history.svg
+share/nextcloud/core/img/actions/info-white.svg
+share/nextcloud/core/img/actions/info.svg
+share/nextcloud/core/img/actions/logout.svg
+share/nextcloud/core/img/actions/mail.svg
+share/nextcloud/core/img/actions/menu.svg
+share/nextcloud/core/img/actions/more-white.svg
+share/nextcloud/core/img/actions/more.svg
+share/nextcloud/core/img/actions/password.svg
+share/nextcloud/core/img/actions/pause-big.svg
+share/nextcloud/core/img/actions/pause.svg
+share/nextcloud/core/img/actions/play-add.svg
+share/nextcloud/core/img/actions/play-big.svg
+share/nextcloud/core/img/actions/play-next.svg
+share/nextcloud/core/img/actions/play-previous.svg
+share/nextcloud/core/img/actions/play.svg
+share/nextcloud/core/img/actions/public.svg
+share/nextcloud/core/img/actions/radio-checked-disabled.svg
+share/nextcloud/core/img/actions/radio-checked-white.svg
+share/nextcloud/core/img/actions/radio-checked.svg
+share/nextcloud/core/img/actions/radio-disabled.svg
+share/nextcloud/core/img/actions/radio-white.svg
+share/nextcloud/core/img/actions/radio.svg
+share/nextcloud/core/img/actions/rename.svg
+share/nextcloud/core/img/actions/search-white.svg
+share/nextcloud/core/img/actions/search.svg
+share/nextcloud/core/img/actions/settings.svg
+share/nextcloud/core/img/actions/share.svg
+share/nextcloud/core/img/actions/shared.svg
+share/nextcloud/core/img/actions/sound-off.svg
+share/nextcloud/core/img/actions/sound.svg
+share/nextcloud/core/img/actions/star-dark.svg
+share/nextcloud/core/img/actions/star.svg
+share/nextcloud/core/img/actions/starred.svg
+share/nextcloud/core/img/actions/tag.svg
+share/nextcloud/core/img/actions/toggle-filelist.svg
+share/nextcloud/core/img/actions/toggle-pictures.svg
+share/nextcloud/core/img/actions/toggle.svg
+share/nextcloud/core/img/actions/triangle-e.svg
+share/nextcloud/core/img/actions/triangle-n.svg
+share/nextcloud/core/img/actions/triangle-s.svg
+share/nextcloud/core/img/actions/upload-white.svg
+share/nextcloud/core/img/actions/upload.svg
+share/nextcloud/core/img/actions/user.svg
+share/nextcloud/core/img/actions/video-off-white.svg
+share/nextcloud/core/img/actions/video-off.svg
+share/nextcloud/core/img/actions/video-white.svg
+share/nextcloud/core/img/actions/video.svg
+share/nextcloud/core/img/actions/view-close.svg
+share/nextcloud/core/img/actions/view-download.svg
+share/nextcloud/core/img/actions/view-next.svg
+share/nextcloud/core/img/actions/view-pause.svg
+share/nextcloud/core/img/actions/view-play.svg
+share/nextcloud/core/img/actions/view-previous.svg
+share/nextcloud/core/img/appstore.svg
+share/nextcloud/core/img/background.jpg
+share/nextcloud/core/img/breadcrumb.svg
+share/nextcloud/core/img/default-app-icon.svg
+share/nextcloud/core/img/desktopapp.svg
+share/nextcloud/core/img/facebook.svg
+share/nextcloud/core/img/favicon-fb.png
+share/nextcloud/core/img/favicon-mask.svg
+share/nextcloud/core/img/favicon-touch.png
+share/nextcloud/core/img/favicon-touch.svg
+share/nextcloud/core/img/favicon.ico
+share/nextcloud/core/img/favicon.png
+share/nextcloud/core/img/favicon.svg
+share/nextcloud/core/img/filetypes/application-pdf.svg
+share/nextcloud/core/img/filetypes/application.svg
+share/nextcloud/core/img/filetypes/audio.svg
+share/nextcloud/core/img/filetypes/file.svg
+share/nextcloud/core/img/filetypes/folder-drag-accept.svg
+share/nextcloud/core/img/filetypes/folder-external.svg
+share/nextcloud/core/img/filetypes/folder-public.svg
+share/nextcloud/core/img/filetypes/folder-shared.svg
+share/nextcloud/core/img/filetypes/folder-starred.svg
+share/nextcloud/core/img/filetypes/folder.svg
+share/nextcloud/core/img/filetypes/image.svg
+share/nextcloud/core/img/filetypes/package-x-generic.svg
+share/nextcloud/core/img/filetypes/text-calendar.svg
+share/nextcloud/core/img/filetypes/text-code.svg
+share/nextcloud/core/img/filetypes/text-vcard.svg
+share/nextcloud/core/img/filetypes/text.svg
+share/nextcloud/core/img/filetypes/video.svg
+share/nextcloud/core/img/filetypes/x-office-document.svg
+share/nextcloud/core/img/filetypes/x-office-presentation.svg
+share/nextcloud/core/img/filetypes/x-office-spreadsheet.svg
+share/nextcloud/core/img/googleplay.png
+share/nextcloud/core/img/googleplus.svg
+share/nextcloud/core/img/image-optimization.sh
+share/nextcloud/core/img/loading-dark.gif
+share/nextcloud/core/img/loading-small-dark.gif
+share/nextcloud/core/img/loading-small.gif
+share/nextcloud/core/img/loading.gif
+share/nextcloud/core/img/logo-icon-175px.png
+share/nextcloud/core/img/logo-icon.svg
+share/nextcloud/core/img/logo-mail.png
+share/nextcloud/core/img/logo.png
+share/nextcloud/core/img/logo.svg
+share/nextcloud/core/img/mail.svg
+share/nextcloud/core/img/places/calendar-dark.svg
+share/nextcloud/core/img/places/contacts-dark.svg
+share/nextcloud/core/img/places/files-dark.svg
+share/nextcloud/core/img/places/files.svg
+share/nextcloud/core/img/places/home.svg
+share/nextcloud/core/img/places/link.svg
+share/nextcloud/core/img/places/music.svg
+share/nextcloud/core/img/places/picture.svg
+share/nextcloud/core/img/rating/s0.svg
+share/nextcloud/core/img/rating/s1.svg
+share/nextcloud/core/img/rating/s10.svg
+share/nextcloud/core/img/rating/s2.svg
+share/nextcloud/core/img/rating/s3.svg
+share/nextcloud/core/img/rating/s4.svg
+share/nextcloud/core/img/rating/s5.svg
+share/nextcloud/core/img/rating/s6.svg
+share/nextcloud/core/img/rating/s7.svg
+share/nextcloud/core/img/rating/s8.svg
+share/nextcloud/core/img/rating/s9.svg
+share/nextcloud/core/img/rss.svg
+share/nextcloud/core/img/twitter.svg
+share/nextcloud/core/js/apps.js
+share/nextcloud/core/js/backgroundjobs.js
+share/nextcloud/core/js/config.js
+share/nextcloud/core/js/core.json
+share/nextcloud/core/js/eventsource.js
+share/nextcloud/core/js/files/client.js
+share/nextcloud/core/js/files/fileinfo.js
+share/nextcloud/core/js/files/iedavclient.js
+share/nextcloud/core/js/installation.js
+share/nextcloud/core/js/integritycheck-failed-notification.js
+share/nextcloud/core/js/jquery-showpassword.js
+share/nextcloud/core/js/jquery-ui-fixes.js
+share/nextcloud/core/js/jquery.avatar.js
+share/nextcloud/core/js/jquery.ocdialog.js
+share/nextcloud/core/js/js.js
+share/nextcloud/core/js/l10n.js
+share/nextcloud/core/js/login.js
+share/nextcloud/core/js/lostpassword.js
+share/nextcloud/core/js/maintenance-check.js
+share/nextcloud/core/js/mimetype.js
+share/nextcloud/core/js/mimetypelist.js
+share/nextcloud/core/js/multiselect.js
+share/nextcloud/core/js/oc-backbone-webdav.js
+share/nextcloud/core/js/oc-backbone.js
+share/nextcloud/core/js/oc-dialogs.js
+share/nextcloud/core/js/oc-requesttoken.js
+share/nextcloud/core/js/octemplate.js
+share/nextcloud/core/js/placeholder.js
+share/nextcloud/core/js/public/appconfig.js
+share/nextcloud/core/js/select2-toggleselect.js
+share/nextcloud/core/js/setup.js
+share/nextcloud/core/js/setupchecks.js
+share/nextcloud/core/js/share.js
+share/nextcloud/core/js/shareconfigmodel.js
+share/nextcloud/core/js/sharedialogexpirationview.js
+share/nextcloud/core/js/sharedialoglinkshareview.js
+share/nextcloud/core/js/sharedialogresharerinfoview.js
+share/nextcloud/core/js/sharedialogshareelistview.js
+share/nextcloud/core/js/sharedialogview.js
+share/nextcloud/core/js/shareitemmodel.js
+share/nextcloud/core/js/singleselect.js
+share/nextcloud/core/js/systemtags/systemtagmodel.js
+share/nextcloud/core/js/systemtags/systemtags.js
+share/nextcloud/core/js/systemtags/systemtagscollection.js
+share/nextcloud/core/js/systemtags/systemtagsinputfield.js
+share/nextcloud/core/js/systemtags/systemtagsmappingcollection.js
+share/nextcloud/core/js/tags.js
+share/nextcloud/core/js/tests/lib/sinon-1.15.4.js
+share/nextcloud/core/js/tests/specHelper.js
+share/nextcloud/core/js/tests/specs/appsSpec.js
+share/nextcloud/core/js/tests/specs/coreSpec.js
+share/nextcloud/core/js/tests/specs/files/clientSpec.js
+share/nextcloud/core/js/tests/specs/jquery.avatarSpec.js
+share/nextcloud/core/js/tests/specs/l10nSpec.js
+share/nextcloud/core/js/tests/specs/mimeTypeSpec.js
+share/nextcloud/core/js/tests/specs/oc-backbone-webdavSpec.js
+share/nextcloud/core/js/tests/specs/setupchecksSpec.js
+share/nextcloud/core/js/tests/specs/shareSpec.js
+share/nextcloud/core/js/tests/specs/sharedialogshareelistview.js
+share/nextcloud/core/js/tests/specs/sharedialogviewSpec.js
+share/nextcloud/core/js/tests/specs/shareitemmodelSpec.js
+share/nextcloud/core/js/tests/specs/systemtags/systemtagsSpec.js
+share/nextcloud/core/js/tests/specs/systemtags/systemtagscollectionSpec.js
+share/nextcloud/core/js/tests/specs/systemtags/systemtagsinputfieldSpec.js
+share/nextcloud/core/js/update.js
+share/nextcloud/core/js/visitortimezone.js
+share/nextcloud/core/l10n/bg_BG.js
+share/nextcloud/core/l10n/bg_BG.json
+share/nextcloud/core/l10n/cs_CZ.js
+share/nextcloud/core/l10n/cs_CZ.json
+share/nextcloud/core/l10n/da.js
+share/nextcloud/core/l10n/da.json
+share/nextcloud/core/l10n/de.js
+share/nextcloud/core/l10n/de.json
+share/nextcloud/core/l10n/de_DE.js
+share/nextcloud/core/l10n/de_DE.json
+share/nextcloud/core/l10n/el.js
+share/nextcloud/core/l10n/el.json
+share/nextcloud/core/l10n/en_GB.js
+share/nextcloud/core/l10n/en_GB.json
+share/nextcloud/core/l10n/es.js
+share/nextcloud/core/l10n/es.json
+share/nextcloud/core/l10n/fi_FI.js
+share/nextcloud/core/l10n/fi_FI.json
+share/nextcloud/core/l10n/fr.js
+share/nextcloud/core/l10n/fr.json
+share/nextcloud/core/l10n/he.js
+share/nextcloud/core/l10n/he.json
+share/nextcloud/core/l10n/hu_HU.js
+share/nextcloud/core/l10n/hu_HU.json
+share/nextcloud/core/l10n/id.js
+share/nextcloud/core/l10n/id.json
+share/nextcloud/core/l10n/is.js
+share/nextcloud/core/l10n/is.json
+share/nextcloud/core/l10n/it.js
+share/nextcloud/core/l10n/it.json
+share/nextcloud/core/l10n/ja.js
+share/nextcloud/core/l10n/ja.json
+share/nextcloud/core/l10n/ko.js
+share/nextcloud/core/l10n/ko.json
+share/nextcloud/core/l10n/nb_NO.js
+share/nextcloud/core/l10n/nb_NO.json
+share/nextcloud/core/l10n/nl.js
+share/nextcloud/core/l10n/nl.json
+share/nextcloud/core/l10n/pl.js
+share/nextcloud/core/l10n/pl.json
+share/nextcloud/core/l10n/pt_BR.js
+share/nextcloud/core/l10n/pt_BR.json
+share/nextcloud/core/l10n/pt_PT.js
+share/nextcloud/core/l10n/pt_PT.json
+share/nextcloud/core/l10n/ru.js
+share/nextcloud/core/l10n/ru.json
+share/nextcloud/core/l10n/sl.js
+share/nextcloud/core/l10n/sl.json
+share/nextcloud/core/l10n/sq.js
+share/nextcloud/core/l10n/sq.json
+share/nextcloud/core/l10n/sv.js
+share/nextcloud/core/l10n/sv.json
+share/nextcloud/core/l10n/tr.js
+share/nextcloud/core/l10n/tr.json
+share/nextcloud/core/l10n/uk.js
+share/nextcloud/core/l10n/uk.json
+share/nextcloud/core/l10n/zh_CN.js
+share/nextcloud/core/l10n/zh_CN.json
+share/nextcloud/core/l10n/zh_TW.js
+share/nextcloud/core/l10n/zh_TW.json
+share/nextcloud/core/register_command.php
+share/nextcloud/core/routes.php
+share/nextcloud/core/search/ajax/search.php
+share/nextcloud/core/search/css/results.css
+share/nextcloud/core/search/js/search.js
+share/nextcloud/core/search/templates/part.results.html
+share/nextcloud/core/shipped.json
+share/nextcloud/core/signature.json
+share/nextcloud/core/skeleton/Documents/About.odt
+share/nextcloud/core/skeleton/Documents/About.txt
+share/nextcloud/core/skeleton/Nextcloud Manual.pdf
+share/nextcloud/core/skeleton/Nextcloud.mp4
+share/nextcloud/core/skeleton/Photos/Coast.jpg
+share/nextcloud/core/skeleton/Photos/Hummingbird.jpg
+share/nextcloud/core/skeleton/Photos/Nut.jpg
+share/nextcloud/core/strings.php
+share/nextcloud/core/templates/403.php
+share/nextcloud/core/templates/404.php
+share/nextcloud/core/templates/altmail.php
+share/nextcloud/core/templates/error.php
+share/nextcloud/core/templates/exception.php
+share/nextcloud/core/templates/filepicker.html
+share/nextcloud/core/templates/filetemplates/template.html
+share/nextcloud/core/templates/filetemplates/template.odp
+share/nextcloud/core/templates/filetemplates/template.ods
+share/nextcloud/core/templates/filetemplates/template.odt
+share/nextcloud/core/templates/installation.php
+share/nextcloud/core/templates/layout.base.php
+share/nextcloud/core/templates/layout.guest.php
+share/nextcloud/core/templates/layout.noscript.warning.php
+share/nextcloud/core/templates/layout.user.php
+share/nextcloud/core/templates/login.php
+share/nextcloud/core/templates/lostpassword/email.php
+share/nextcloud/core/templates/lostpassword/resetpassword.php
+share/nextcloud/core/templates/mail.php
+share/nextcloud/core/templates/message.html
+share/nextcloud/core/templates/singleuser.user.php
+share/nextcloud/core/templates/tags.html
+share/nextcloud/core/templates/twofactorselectchallenge.php
+share/nextcloud/core/templates/twofactorshowchallenge.php
+share/nextcloud/core/templates/untrustedDomain.php
+share/nextcloud/core/templates/update.admin.php
+share/nextcloud/core/templates/update.use-cli.php
+share/nextcloud/core/templates/update.user.php
+share/nextcloud/core/vendor/.gitignore
+share/nextcloud/core/vendor/autosize/.bower.json
+share/nextcloud/core/vendor/autosize/LICENSE.md
+share/nextcloud/core/vendor/autosize/dist/autosize.js
+share/nextcloud/core/vendor/backbone/.bower.json
+share/nextcloud/core/vendor/backbone/LICENSE
+share/nextcloud/core/vendor/backbone/backbone.js
+share/nextcloud/core/vendor/base64/.bower.json
+share/nextcloud/core/vendor/base64/LICENSE
+share/nextcloud/core/vendor/base64/base64.js
+share/nextcloud/core/vendor/blueimp-md5/.bower.json
+share/nextcloud/core/vendor/blueimp-md5/js/md5.js
+share/nextcloud/core/vendor/bootstrap/.bower.json
+share/nextcloud/core/vendor/bootstrap/js/tooltip.js
+share/nextcloud/core/vendor/clipboard/.bower.json
+share/nextcloud/core/vendor/clipboard/dist/clipboard.js
+share/nextcloud/core/vendor/davclient.js/.bower.json
+share/nextcloud/core/vendor/davclient.js/LICENSE
+share/nextcloud/core/vendor/davclient.js/lib/client.js
+share/nextcloud/core/vendor/es6-promise/.bower.json
+share/nextcloud/core/vendor/es6-promise/LICENSE
+share/nextcloud/core/vendor/es6-promise/dist/es6-promise.js
+share/nextcloud/core/vendor/handlebars/.bower.json
+share/nextcloud/core/vendor/handlebars/handlebars.js
+share/nextcloud/core/vendor/jcrop/.bower.json
+share/nextcloud/core/vendor/jcrop/MIT-LICENSE.txt
+share/nextcloud/core/vendor/jcrop/css/Jcrop.gif
+share/nextcloud/core/vendor/jcrop/css/jquery.Jcrop.css
+share/nextcloud/core/vendor/jcrop/js/jquery.Jcrop.js
+share/nextcloud/core/vendor/jquery-migrate/.bower.json
+share/nextcloud/core/vendor/jquery-migrate/jquery-migrate.js
+share/nextcloud/core/vendor/jquery-migrate/jquery-migrate.min.js
+share/nextcloud/core/vendor/jquery-ui/.bower.json
+share/nextcloud/core/vendor/jquery-ui/MIT-LICENSE.txt
+share/nextcloud/core/vendor/jquery-ui/themes/base/images/animated-overlay.gif
+share/nextcloud/core/vendor/jquery-ui/themes/base/images/ui-icons_222222_256x240.png
+share/nextcloud/core/vendor/jquery-ui/themes/base/jquery-ui.css
+share/nextcloud/core/vendor/jquery-ui/ui/jquery-ui.custom.js
+share/nextcloud/core/vendor/jquery/.bower.json
+share/nextcloud/core/vendor/jquery/MIT-LICENSE.txt
+share/nextcloud/core/vendor/jquery/dist/jquery.js
+share/nextcloud/core/vendor/jquery/dist/jquery.min.js
+share/nextcloud/core/vendor/jquery/dist/jquery.min.map
+share/nextcloud/core/vendor/jsTimezoneDetect/.bower.json
+share/nextcloud/core/vendor/jsTimezoneDetect/LICENCE.txt
+share/nextcloud/core/vendor/jsTimezoneDetect/jstz.js
+share/nextcloud/core/vendor/moment/.bower.json
+share/nextcloud/core/vendor/moment/LICENSE
+share/nextcloud/core/vendor/moment/min/moment-with-locales.js
+share/nextcloud/core/vendor/select2/.bower.json
+share/nextcloud/core/vendor/select2/LICENSE
+share/nextcloud/core/vendor/select2/select2-spinner.gif
+share/nextcloud/core/vendor/select2/select2.css
+share/nextcloud/core/vendor/select2/select2.js
+share/nextcloud/core/vendor/select2/select2.png
+share/nextcloud/core/vendor/select2/select2x2.png
+share/nextcloud/core/vendor/snapjs/.bower.json
+share/nextcloud/core/vendor/snapjs/dist/latest/snap.js
+share/nextcloud/core/vendor/strengthify/.bower.json
+share/nextcloud/core/vendor/strengthify/LICENSE
+share/nextcloud/core/vendor/strengthify/jquery.strengthify.js
+share/nextcloud/core/vendor/strengthify/strengthify.css
+share/nextcloud/core/vendor/underscore/.bower.json
+share/nextcloud/core/vendor/underscore/LICENSE
+share/nextcloud/core/vendor/underscore/underscore.js
+share/nextcloud/core/vendor/zxcvbn/.bower.json
+share/nextcloud/core/vendor/zxcvbn/LICENSE.txt
+share/nextcloud/core/vendor/zxcvbn/dist/zxcvbn.js
+share/nextcloud/cron.php
+share/nextcloud/db_structure.xml
+share/nextcloud/index.html
+share/nextcloud/index.php
+share/nextcloud/l10n/.gitignore
+share/nextcloud/l10n/.tx/config
+share/nextcloud/l10n/l10n.pl
+share/nextcloud/l10n/rm-old.sh
+share/nextcloud/lib/autoloader.php
+share/nextcloud/lib/base.php
+share/nextcloud/lib/composer/autoload.php
+share/nextcloud/lib/composer/composer/ClassLoader.php
+share/nextcloud/lib/composer/composer/LICENSE
+share/nextcloud/lib/composer/composer/autoload_classmap.php
+share/nextcloud/lib/composer/composer/autoload_namespaces.php
+share/nextcloud/lib/composer/composer/autoload_psr4.php
+share/nextcloud/lib/composer/composer/autoload_real.php
+share/nextcloud/lib/composer/composer/autoload_static.php
+share/nextcloud/lib/composer/composer/installed.json
+share/nextcloud/lib/l10n/cs_CZ.js
+share/nextcloud/lib/l10n/cs_CZ.json
+share/nextcloud/lib/l10n/de.js
+share/nextcloud/lib/l10n/de.json
+share/nextcloud/lib/l10n/de_DE.js
+share/nextcloud/lib/l10n/de_DE.json
+share/nextcloud/lib/l10n/es.js
+share/nextcloud/lib/l10n/es.json
+share/nextcloud/lib/l10n/fr.js
+share/nextcloud/lib/l10n/fr.json
+share/nextcloud/lib/l10n/hu_HU.js
+share/nextcloud/lib/l10n/hu_HU.json
+share/nextcloud/lib/l10n/it.js
+share/nextcloud/lib/l10n/it.json
+share/nextcloud/lib/l10n/ja.js
+share/nextcloud/lib/l10n/ja.json
+share/nextcloud/lib/l10n/nb_NO.js
+share/nextcloud/lib/l10n/nb_NO.json
+share/nextcloud/lib/l10n/nl.js
+share/nextcloud/lib/l10n/nl.json
+share/nextcloud/lib/l10n/pl.js
+share/nextcloud/lib/l10n/pl.json
+share/nextcloud/lib/l10n/pt_BR.js
+share/nextcloud/lib/l10n/pt_BR.json
+share/nextcloud/lib/l10n/ru.js
+share/nextcloud/lib/l10n/ru.json
+share/nextcloud/lib/l10n/zh_TW.js
+share/nextcloud/lib/l10n/zh_TW.json
+share/nextcloud/lib/private/Accounts/AccountManager.php
+share/nextcloud/lib/private/Accounts/Hooks.php
+share/nextcloud/lib/private/Activity/Event.php
+share/nextcloud/lib/private/Activity/EventMerger.php
+share/nextcloud/lib/private/Activity/LegacyFilter.php
+share/nextcloud/lib/private/Activity/LegacySetting.php
+share/nextcloud/lib/private/Activity/Manager.php
+share/nextcloud/lib/private/AllConfig.php
+share/nextcloud/lib/private/App/AppManager.php
+share/nextcloud/lib/private/App/AppStore/Fetcher/AppFetcher.php
+share/nextcloud/lib/private/App/AppStore/Fetcher/CategoryFetcher.php
+share/nextcloud/lib/private/App/AppStore/Fetcher/Fetcher.php
+share/nextcloud/lib/private/App/AppStore/Version/Version.php
+share/nextcloud/lib/private/App/AppStore/Version/VersionParser.php
+share/nextcloud/lib/private/App/CodeChecker/AbstractCheck.php
+share/nextcloud/lib/private/App/CodeChecker/CodeChecker.php
+share/nextcloud/lib/private/App/CodeChecker/DeprecationCheck.php
+share/nextcloud/lib/private/App/CodeChecker/EmptyCheck.php
+share/nextcloud/lib/private/App/CodeChecker/ICheck.php
+share/nextcloud/lib/private/App/CodeChecker/InfoChecker.php
+share/nextcloud/lib/private/App/CodeChecker/NodeVisitor.php
+share/nextcloud/lib/private/App/CodeChecker/PrivateCheck.php
+share/nextcloud/lib/private/App/CodeChecker/StrongComparisonCheck.php
+share/nextcloud/lib/private/App/DependencyAnalyzer.php
+share/nextcloud/lib/private/App/InfoParser.php
+share/nextcloud/lib/private/App/Platform.php
+share/nextcloud/lib/private/App/PlatformRepository.php
+share/nextcloud/lib/private/AppConfig.php
+share/nextcloud/lib/private/AppFramework/App.php
+share/nextcloud/lib/private/AppFramework/Core/API.php
+share/nextcloud/lib/private/AppFramework/Db/Db.php
+share/nextcloud/lib/private/AppFramework/DependencyInjection/DIContainer.php
+share/nextcloud/lib/private/AppFramework/Http.php
+share/nextcloud/lib/private/AppFramework/Http/Dispatcher.php
+share/nextcloud/lib/private/AppFramework/Http/Output.php
+share/nextcloud/lib/private/AppFramework/Http/Request.php
+share/nextcloud/lib/private/AppFramework/Middleware/MiddlewareDispatcher.php
+share/nextcloud/lib/private/AppFramework/Middleware/OCSMiddleware.php
+share/nextcloud/lib/private/AppFramework/Middleware/Security/CORSMiddleware.php
+share/nextcloud/lib/private/AppFramework/Middleware/Security/Exceptions/AppNotEnabledException.php
+share/nextcloud/lib/private/AppFramework/Middleware/Security/Exceptions/CrossSiteRequestForgeryException.php
+share/nextcloud/lib/private/AppFramework/Middleware/Security/Exceptions/NotAdminException.php
+share/nextcloud/lib/private/AppFramework/Middleware/Security/Exceptions/NotConfirmedException.php
+share/nextcloud/lib/private/AppFramework/Middleware/Security/Exceptions/NotLoggedInException.php
+share/nextcloud/lib/private/AppFramework/Middleware/Security/Exceptions/SecurityException.php
+share/nextcloud/lib/private/AppFramework/Middleware/Security/Exceptions/StrictCookieMissingException.php
+share/nextcloud/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php
+share/nextcloud/lib/private/AppFramework/Middleware/SessionMiddleware.php
+share/nextcloud/lib/private/AppFramework/OCS/BaseResponse.php
+share/nextcloud/lib/private/AppFramework/OCS/V1Response.php
+share/nextcloud/lib/private/AppFramework/OCS/V2Response.php
+share/nextcloud/lib/private/AppFramework/Routing/RouteActionHandler.php
+share/nextcloud/lib/private/AppFramework/Routing/RouteConfig.php
+share/nextcloud/lib/private/AppFramework/Utility/ControllerMethodReflector.php
+share/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php
+share/nextcloud/lib/private/AppFramework/Utility/TimeFactory.php
+share/nextcloud/lib/private/AppHelper.php
+share/nextcloud/lib/private/Archive/Archive.php
+share/nextcloud/lib/private/Archive/TAR.php
+share/nextcloud/lib/private/Archive/ZIP.php
+share/nextcloud/lib/private/Authentication/Exceptions/InvalidTokenException.php
+share/nextcloud/lib/private/Authentication/Exceptions/LoginRequiredException.php
+share/nextcloud/lib/private/Authentication/Exceptions/PasswordLoginForbiddenException.php
+share/nextcloud/lib/private/Authentication/Exceptions/PasswordlessTokenException.php
+share/nextcloud/lib/private/Authentication/Exceptions/TwoFactorAuthRequiredException.php
+share/nextcloud/lib/private/Authentication/Exceptions/UserAlreadyLoggedInException.php
+share/nextcloud/lib/private/Authentication/Token/DefaultToken.php
+share/nextcloud/lib/private/Authentication/Token/DefaultTokenCleanupJob.php
+share/nextcloud/lib/private/Authentication/Token/DefaultTokenMapper.php
+share/nextcloud/lib/private/Authentication/Token/DefaultTokenProvider.php
+share/nextcloud/lib/private/Authentication/Token/IProvider.php
+share/nextcloud/lib/private/Authentication/Token/IToken.php
+share/nextcloud/lib/private/Authentication/TwoFactorAuth/Manager.php
+share/nextcloud/lib/private/Avatar.php
+share/nextcloud/lib/private/AvatarManager.php
+share/nextcloud/lib/private/BackgroundJob/Job.php
+share/nextcloud/lib/private/BackgroundJob/JobList.php
+share/nextcloud/lib/private/BackgroundJob/Legacy/QueuedJob.php
+share/nextcloud/lib/private/BackgroundJob/Legacy/RegularJob.php
+share/nextcloud/lib/private/BackgroundJob/QueuedJob.php
+share/nextcloud/lib/private/BackgroundJob/TimedJob.php
+share/nextcloud/lib/private/Cache/CappedMemoryCache.php
+share/nextcloud/lib/private/Cache/File.php
+share/nextcloud/lib/private/CapabilitiesManager.php
+share/nextcloud/lib/private/Command/AsyncBus.php
+share/nextcloud/lib/private/Command/CallableJob.php
+share/nextcloud/lib/private/Command/ClosureJob.php
+share/nextcloud/lib/private/Command/CommandJob.php
+share/nextcloud/lib/private/Command/FileAccess.php
+share/nextcloud/lib/private/Command/QueueBus.php
+share/nextcloud/lib/private/Comments/Comment.php
+share/nextcloud/lib/private/Comments/Manager.php
+share/nextcloud/lib/private/Comments/ManagerFactory.php
+share/nextcloud/lib/private/Config.php
+share/nextcloud/lib/private/Console/Application.php
+share/nextcloud/lib/private/Console/TimestampFormatter.php
+share/nextcloud/lib/private/ContactsManager.php
+share/nextcloud/lib/private/DB/Adapter.php
+share/nextcloud/lib/private/DB/AdapterMySQL.php
+share/nextcloud/lib/private/DB/AdapterOCI8.php
+share/nextcloud/lib/private/DB/AdapterPgSql.php
+share/nextcloud/lib/private/DB/AdapterSqlite.php
+share/nextcloud/lib/private/DB/Connection.php
+share/nextcloud/lib/private/DB/ConnectionFactory.php
+share/nextcloud/lib/private/DB/MDB2SchemaManager.php
+share/nextcloud/lib/private/DB/MDB2SchemaReader.php
+share/nextcloud/lib/private/DB/MDB2SchemaWriter.php
+share/nextcloud/lib/private/DB/MigrationException.php
+share/nextcloud/lib/private/DB/Migrator.php
+share/nextcloud/lib/private/DB/MySQLMigrator.php
+share/nextcloud/lib/private/DB/NoCheckMigrator.php
+share/nextcloud/lib/private/DB/OCSqlitePlatform.php
+share/nextcloud/lib/private/DB/OracleConnection.php
+share/nextcloud/lib/private/DB/OracleMigrator.php
+share/nextcloud/lib/private/DB/PgSqlTools.php
+share/nextcloud/lib/private/DB/PostgreSqlMigrator.php
+share/nextcloud/lib/private/DB/QueryBuilder/CompositeExpression.php
+share/nextcloud/lib/private/DB/QueryBuilder/ExpressionBuilder/ExpressionBuilder.php
+share/nextcloud/lib/private/DB/QueryBuilder/ExpressionBuilder/MySqlExpressionBuilder.php
+share/nextcloud/lib/private/DB/QueryBuilder/ExpressionBuilder/OCIExpressionBuilder.php
+share/nextcloud/lib/private/DB/QueryBuilder/ExpressionBuilder/PgSqlExpressionBuilder.php
+share/nextcloud/lib/private/DB/QueryBuilder/Literal.php
+share/nextcloud/lib/private/DB/QueryBuilder/Parameter.php
+share/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php
+share/nextcloud/lib/private/DB/QueryBuilder/QueryFunction.php
+share/nextcloud/lib/private/DB/QueryBuilder/QuoteHelper.php
+share/nextcloud/lib/private/DB/SQLiteMigrator.php
+share/nextcloud/lib/private/DB/SQLiteSessionInit.php
+share/nextcloud/lib/private/DatabaseException.php
+share/nextcloud/lib/private/DatabaseSetupException.php
+share/nextcloud/lib/private/DateTimeFormatter.php
+share/nextcloud/lib/private/DateTimeZone.php
+share/nextcloud/lib/private/Diagnostics/Event.php
+share/nextcloud/lib/private/Diagnostics/EventLogger.php
+share/nextcloud/lib/private/Diagnostics/NullEventLogger.php
+share/nextcloud/lib/private/Diagnostics/NullQueryLogger.php
+share/nextcloud/lib/private/Diagnostics/Query.php
+share/nextcloud/lib/private/Diagnostics/QueryLogger.php
+share/nextcloud/lib/private/Encryption/DecryptAll.php
+share/nextcloud/lib/private/Encryption/EncryptionWrapper.php
+share/nextcloud/lib/private/Encryption/Exceptions/DecryptionFailedException.php
+share/nextcloud/lib/private/Encryption/Exceptions/EmptyEncryptionDataException.php
+share/nextcloud/lib/private/Encryption/Exceptions/EncryptionFailedException.php
+share/nextcloud/lib/private/Encryption/Exceptions/EncryptionHeaderKeyExistsException.php
+share/nextcloud/lib/private/Encryption/Exceptions/EncryptionHeaderToLargeException.php
+share/nextcloud/lib/private/Encryption/Exceptions/ModuleAlreadyExistsException.php
+share/nextcloud/lib/private/Encryption/Exceptions/ModuleDoesNotExistsException.php
+share/nextcloud/lib/private/Encryption/Exceptions/UnknownCipherException.php
+share/nextcloud/lib/private/Encryption/File.php
+share/nextcloud/lib/private/Encryption/HookManager.php
+share/nextcloud/lib/private/Encryption/Keys/Storage.php
+share/nextcloud/lib/private/Encryption/Manager.php
+share/nextcloud/lib/private/Encryption/Update.php
+share/nextcloud/lib/private/Encryption/Util.php
+share/nextcloud/lib/private/Files/AppData/AppData.php
+share/nextcloud/lib/private/Files/AppData/Factory.php
+share/nextcloud/lib/private/Files/Cache/Cache.php
+share/nextcloud/lib/private/Files/Cache/CacheEntry.php
+share/nextcloud/lib/private/Files/Cache/FailedCache.php
+share/nextcloud/lib/private/Files/Cache/HomeCache.php
+share/nextcloud/lib/private/Files/Cache/HomePropagator.php
+share/nextcloud/lib/private/Files/Cache/MoveFromCacheTrait.php
+share/nextcloud/lib/private/Files/Cache/Propagator.php
+share/nextcloud/lib/private/Files/Cache/Scanner.php
+share/nextcloud/lib/private/Files/Cache/Storage.php
+share/nextcloud/lib/private/Files/Cache/StorageGlobal.php
+share/nextcloud/lib/private/Files/Cache/Updater.php
+share/nextcloud/lib/private/Files/Cache/Watcher.php
+share/nextcloud/lib/private/Files/Cache/Wrapper/CacheJail.php
+share/nextcloud/lib/private/Files/Cache/Wrapper/CachePermissionsMask.php
+share/nextcloud/lib/private/Files/Cache/Wrapper/CacheWrapper.php
+share/nextcloud/lib/private/Files/Config/CachedMountInfo.php
+share/nextcloud/lib/private/Files/Config/LazyStorageMountInfo.php
+share/nextcloud/lib/private/Files/Config/MountProviderCollection.php
+share/nextcloud/lib/private/Files/Config/UserMountCache.php
+share/nextcloud/lib/private/Files/Config/UserMountCacheListener.php
+share/nextcloud/lib/private/Files/FileInfo.php
+share/nextcloud/lib/private/Files/Filesystem.php
+share/nextcloud/lib/private/Files/Mount/CacheMountProvider.php
+share/nextcloud/lib/private/Files/Mount/LocalHomeMountProvider.php
+share/nextcloud/lib/private/Files/Mount/Manager.php
+share/nextcloud/lib/private/Files/Mount/MountPoint.php
+share/nextcloud/lib/private/Files/Mount/MoveableMount.php
+share/nextcloud/lib/private/Files/Mount/ObjectHomeMountProvider.php
+share/nextcloud/lib/private/Files/Node/File.php
+share/nextcloud/lib/private/Files/Node/Folder.php
+share/nextcloud/lib/private/Files/Node/HookConnector.php
+share/nextcloud/lib/private/Files/Node/LazyRoot.php
+share/nextcloud/lib/private/Files/Node/Node.php
+share/nextcloud/lib/private/Files/Node/NonExistingFile.php
+share/nextcloud/lib/private/Files/Node/NonExistingFolder.php
+share/nextcloud/lib/private/Files/Node/Root.php
+share/nextcloud/lib/private/Files/ObjectStore/HomeObjectStoreStorage.php
+share/nextcloud/lib/private/Files/ObjectStore/Mapper.php
+share/nextcloud/lib/private/Files/ObjectStore/NoopScanner.php
+share/nextcloud/lib/private/Files/ObjectStore/ObjectStoreStorage.php
+share/nextcloud/lib/private/Files/ObjectStore/S3.php
+share/nextcloud/lib/private/Files/ObjectStore/S3ConnectionTrait.php
+share/nextcloud/lib/private/Files/ObjectStore/StorageObjectStore.php
+share/nextcloud/lib/private/Files/ObjectStore/Swift.php
+share/nextcloud/lib/private/Files/SimpleFS/SimpleFile.php
+share/nextcloud/lib/private/Files/SimpleFS/SimpleFolder.php
+share/nextcloud/lib/private/Files/Storage/Common.php
+share/nextcloud/lib/private/Files/Storage/CommonTest.php
+share/nextcloud/lib/private/Files/Storage/DAV.php
+share/nextcloud/lib/private/Files/Storage/FailedStorage.php
+share/nextcloud/lib/private/Files/Storage/Flysystem.php
+share/nextcloud/lib/private/Files/Storage/Home.php
+share/nextcloud/lib/private/Files/Storage/Local.php
+share/nextcloud/lib/private/Files/Storage/LocalTempFileTrait.php
+share/nextcloud/lib/private/Files/Storage/PolyFill/CopyDirectory.php
+share/nextcloud/lib/private/Files/Storage/Storage.php
+share/nextcloud/lib/private/Files/Storage/StorageFactory.php
+share/nextcloud/lib/private/Files/Storage/Temporary.php
+share/nextcloud/lib/private/Files/Storage/Wrapper/Availability.php
+share/nextcloud/lib/private/Files/Storage/Wrapper/Encoding.php
+share/nextcloud/lib/private/Files/Storage/Wrapper/Encryption.php
+share/nextcloud/lib/private/Files/Storage/Wrapper/Jail.php
+share/nextcloud/lib/private/Files/Storage/Wrapper/PermissionsMask.php
+share/nextcloud/lib/private/Files/Storage/Wrapper/Quota.php
+share/nextcloud/lib/private/Files/Storage/Wrapper/Wrapper.php
+share/nextcloud/lib/private/Files/Stream/Close.php
+share/nextcloud/lib/private/Files/Stream/Dir.php
+share/nextcloud/lib/private/Files/Stream/Encryption.php
+share/nextcloud/lib/private/Files/Stream/Quota.php
+share/nextcloud/lib/private/Files/Stream/StaticStream.php
+share/nextcloud/lib/private/Files/Type/Detection.php
+share/nextcloud/lib/private/Files/Type/Loader.php
+share/nextcloud/lib/private/Files/Type/TemplateManager.php
+share/nextcloud/lib/private/Files/Utils/Scanner.php
+share/nextcloud/lib/private/Files/View.php
+share/nextcloud/lib/private/ForbiddenException.php
+share/nextcloud/lib/private/Group/Backend.php
+share/nextcloud/lib/private/Group/Database.php
+share/nextcloud/lib/private/Group/Group.php
+share/nextcloud/lib/private/Group/Manager.php
+share/nextcloud/lib/private/Group/MetaData.php
+share/nextcloud/lib/private/HTTPHelper.php
+share/nextcloud/lib/private/HintException.php
+share/nextcloud/lib/private/Hooks/BasicEmitter.php
+share/nextcloud/lib/private/Hooks/Emitter.php
+share/nextcloud/lib/private/Hooks/EmitterTrait.php
+share/nextcloud/lib/private/Hooks/ForwardingEmitter.php
+share/nextcloud/lib/private/Hooks/LegacyEmitter.php
+share/nextcloud/lib/private/Hooks/PublicEmitter.php
+share/nextcloud/lib/private/Http/Client/Client.php
+share/nextcloud/lib/private/Http/Client/ClientService.php
+share/nextcloud/lib/private/Http/Client/Response.php
+share/nextcloud/lib/private/Installer.php
+share/nextcloud/lib/private/IntegrityCheck/Checker.php
+share/nextcloud/lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php
+share/nextcloud/lib/private/IntegrityCheck/Helpers/AppLocator.php
+share/nextcloud/lib/private/IntegrityCheck/Helpers/EnvironmentHelper.php
+share/nextcloud/lib/private/IntegrityCheck/Helpers/FileAccessHelper.php
+share/nextcloud/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php
+share/nextcloud/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php
+share/nextcloud/lib/private/L10N/Factory.php
+share/nextcloud/lib/private/L10N/L10N.php
+share/nextcloud/lib/private/L10N/LanguageNotFoundException.php
+share/nextcloud/lib/private/LargeFileHelper.php
+share/nextcloud/lib/private/Lock/AbstractLockingProvider.php
+share/nextcloud/lib/private/Lock/DBLockingProvider.php
+share/nextcloud/lib/private/Lock/MemcacheLockingProvider.php
+share/nextcloud/lib/private/Lock/NoopLockingProvider.php
+share/nextcloud/lib/private/Lockdown/Filesystem/NullCache.php
+share/nextcloud/lib/private/Lockdown/Filesystem/NullStorage.php
+share/nextcloud/lib/private/Lockdown/LockdownManager.php
+share/nextcloud/lib/private/Log.php
+share/nextcloud/lib/private/Log/ErrorHandler.php
+share/nextcloud/lib/private/Log/Errorlog.php
+share/nextcloud/lib/private/Log/File.php
+share/nextcloud/lib/private/Log/Rotate.php
+share/nextcloud/lib/private/Log/Syslog.php
+share/nextcloud/lib/private/Mail/Mailer.php
+share/nextcloud/lib/private/Mail/Message.php
+share/nextcloud/lib/private/Memcache/APC.php
+share/nextcloud/lib/private/Memcache/APCu.php
+share/nextcloud/lib/private/Memcache/ArrayCache.php
+share/nextcloud/lib/private/Memcache/CADTrait.php
+share/nextcloud/lib/private/Memcache/CASTrait.php
+share/nextcloud/lib/private/Memcache/Cache.php
+share/nextcloud/lib/private/Memcache/Factory.php
+share/nextcloud/lib/private/Memcache/Memcached.php
+share/nextcloud/lib/private/Memcache/NullCache.php
+share/nextcloud/lib/private/Memcache/Redis.php
+share/nextcloud/lib/private/Memcache/XCache.php
+share/nextcloud/lib/private/Migration/BackgroundRepair.php
+share/nextcloud/lib/private/NaturalSort.php
+share/nextcloud/lib/private/NaturalSort_DefaultCollator.php
+share/nextcloud/lib/private/NavigationManager.php
+share/nextcloud/lib/private/NeedsUpdateException.php
+share/nextcloud/lib/private/NotSquareException.php
+share/nextcloud/lib/private/Notification/Action.php
+share/nextcloud/lib/private/Notification/Manager.php
+share/nextcloud/lib/private/Notification/Notification.php
+share/nextcloud/lib/private/OCS/CoreCapabilities.php
+share/nextcloud/lib/private/OCS/Exception.php
+share/nextcloud/lib/private/OCS/PrivateData.php
+share/nextcloud/lib/private/OCS/Provider.php
+share/nextcloud/lib/private/OCS/Result.php
+share/nextcloud/lib/private/Preview.php
+share/nextcloud/lib/private/Preview/BMP.php
+share/nextcloud/lib/private/Preview/Bitmap.php
+share/nextcloud/lib/private/Preview/Font.php
+share/nextcloud/lib/private/Preview/GIF.php
+share/nextcloud/lib/private/Preview/Generator.php
+share/nextcloud/lib/private/Preview/GeneratorHelper.php
+share/nextcloud/lib/private/Preview/Illustrator.php
+share/nextcloud/lib/private/Preview/Image.php
+share/nextcloud/lib/private/Preview/JPEG.php
+share/nextcloud/lib/private/Preview/MP3.php
+share/nextcloud/lib/private/Preview/MSOffice2003.php
+share/nextcloud/lib/private/Preview/MSOffice2007.php
+share/nextcloud/lib/private/Preview/MSOfficeDoc.php
+share/nextcloud/lib/private/Preview/MarkDown.php
+share/nextcloud/lib/private/Preview/Movie.php
+share/nextcloud/lib/private/Preview/Office.php
+share/nextcloud/lib/private/Preview/OpenDocument.php
+share/nextcloud/lib/private/Preview/PDF.php
+share/nextcloud/lib/private/Preview/PNG.php
+share/nextcloud/lib/private/Preview/Photoshop.php
+share/nextcloud/lib/private/Preview/Postscript.php
+share/nextcloud/lib/private/Preview/Provider.php
+share/nextcloud/lib/private/Preview/SVG.php
+share/nextcloud/lib/private/Preview/StarOffice.php
+share/nextcloud/lib/private/Preview/TIFF.php
+share/nextcloud/lib/private/Preview/TXT.php
+share/nextcloud/lib/private/Preview/Watcher.php
+share/nextcloud/lib/private/Preview/WatcherConnector.php
+share/nextcloud/lib/private/Preview/XBitmap.php
+share/nextcloud/lib/private/PreviewManager.php
+share/nextcloud/lib/private/PreviewNotAvailableException.php
+share/nextcloud/lib/private/RedisFactory.php
+share/nextcloud/lib/private/Repair.php
+share/nextcloud/lib/private/Repair/AssetCache.php
+share/nextcloud/lib/private/Repair/AvatarPermissions.php
+share/nextcloud/lib/private/Repair/CleanTags.php
+share/nextcloud/lib/private/Repair/Collation.php
+share/nextcloud/lib/private/Repair/DropOldJobs.php
+share/nextcloud/lib/private/Repair/DropOldTables.php
+share/nextcloud/lib/private/Repair/FillETags.php
+share/nextcloud/lib/private/Repair/InnoDB.php
+share/nextcloud/lib/private/Repair/MoveUpdaterStepFile.php
+share/nextcloud/lib/private/Repair/NC11/CleanPreviews.php
+share/nextcloud/lib/private/Repair/NC11/CleanPreviewsBackgroundJob.php
+share/nextcloud/lib/private/Repair/NC11/FixMountStorages.php
+share/nextcloud/lib/private/Repair/NC11/MoveAvatars.php
+share/nextcloud/lib/private/Repair/NC11/MoveAvatarsBackgroundJob.php
+share/nextcloud/lib/private/Repair/OldGroupMembershipShares.php
+share/nextcloud/lib/private/Repair/Preview.php
+share/nextcloud/lib/private/Repair/RemoveGetETagEntries.php
+share/nextcloud/lib/private/Repair/RemoveOldShares.php
+share/nextcloud/lib/private/Repair/RemoveRootShares.php
+share/nextcloud/lib/private/Repair/RepairInvalidShares.php
+share/nextcloud/lib/private/Repair/RepairLegacyStorages.php
+share/nextcloud/lib/private/Repair/RepairMimeTypes.php
+share/nextcloud/lib/private/Repair/RepairUnmergedShares.php
+share/nextcloud/lib/private/Repair/SearchLuceneTables.php
+share/nextcloud/lib/private/Repair/SharePropagation.php
+share/nextcloud/lib/private/Repair/SqliteAutoincrement.php
+share/nextcloud/lib/private/Repair/UpdateCertificateStore.php
+share/nextcloud/lib/private/Repair/UpdateOutdatedOcsIds.php
+share/nextcloud/lib/private/RepairException.php
+share/nextcloud/lib/private/RichObjectStrings/Validator.php
+share/nextcloud/lib/private/Route/CachingRouter.php
+share/nextcloud/lib/private/Route/Route.php
+share/nextcloud/lib/private/Route/Router.php
+share/nextcloud/lib/private/Search.php
+share/nextcloud/lib/private/Search/Provider/File.php
+share/nextcloud/lib/private/Search/Result/Audio.php
+share/nextcloud/lib/private/Search/Result/File.php
+share/nextcloud/lib/private/Search/Result/Folder.php
+share/nextcloud/lib/private/Search/Result/Image.php
+share/nextcloud/lib/private/Security/Bruteforce/Throttler.php
+share/nextcloud/lib/private/Security/CSP/ContentSecurityPolicy.php
+share/nextcloud/lib/private/Security/CSP/ContentSecurityPolicyManager.php
+share/nextcloud/lib/private/Security/CSP/ContentSecurityPolicyNonceManager.php
+share/nextcloud/lib/private/Security/CSRF/CsrfToken.php
+share/nextcloud/lib/private/Security/CSRF/CsrfTokenGenerator.php
+share/nextcloud/lib/private/Security/CSRF/CsrfTokenManager.php
+share/nextcloud/lib/private/Security/CSRF/TokenStorage/SessionStorage.php
+share/nextcloud/lib/private/Security/Certificate.php
+share/nextcloud/lib/private/Security/CertificateManager.php
+share/nextcloud/lib/private/Security/CredentialsManager.php
+share/nextcloud/lib/private/Security/Crypto.php
+share/nextcloud/lib/private/Security/Hasher.php
+share/nextcloud/lib/private/Security/IdentityProof/Key.php
+share/nextcloud/lib/private/Security/IdentityProof/Manager.php
+share/nextcloud/lib/private/Security/IdentityProof/Signer.php
+share/nextcloud/lib/private/Security/SecureRandom.php
+share/nextcloud/lib/private/Security/TrustedDomainHelper.php
+share/nextcloud/lib/private/Server.php
+share/nextcloud/lib/private/ServerContainer.php
+share/nextcloud/lib/private/ServerNotAvailableException.php
+share/nextcloud/lib/private/ServiceUnavailableException.php
+share/nextcloud/lib/private/Session/CryptoSessionData.php
+share/nextcloud/lib/private/Session/CryptoWrapper.php
+share/nextcloud/lib/private/Session/Internal.php
+share/nextcloud/lib/private/Session/Memory.php
+share/nextcloud/lib/private/Session/Session.php
+share/nextcloud/lib/private/Settings/Admin/Additional.php
+share/nextcloud/lib/private/Settings/Admin/Encryption.php
+share/nextcloud/lib/private/Settings/Admin/Server.php
+share/nextcloud/lib/private/Settings/Admin/ServerDevNotice.php
+share/nextcloud/lib/private/Settings/Admin/Sharing.php
+share/nextcloud/lib/private/Settings/Admin/TipsTricks.php
+share/nextcloud/lib/private/Settings/Manager.php
+share/nextcloud/lib/private/Settings/RemoveOrphaned.php
+share/nextcloud/lib/private/Settings/Section.php
+share/nextcloud/lib/private/Setup.php
+share/nextcloud/lib/private/Setup/AbstractDatabase.php
+share/nextcloud/lib/private/Setup/MySQL.php
+share/nextcloud/lib/private/Setup/OCI.php
+share/nextcloud/lib/private/Setup/PostgreSQL.php
+share/nextcloud/lib/private/Setup/Sqlite.php
+share/nextcloud/lib/private/Share/Constants.php
+share/nextcloud/lib/private/Share/Helper.php
+share/nextcloud/lib/private/Share/MailNotifications.php
+share/nextcloud/lib/private/Share/SearchResultSorter.php
+share/nextcloud/lib/private/Share/Share.php
+share/nextcloud/lib/private/Share20/DefaultShareProvider.php
+share/nextcloud/lib/private/Share20/Exception/BackendError.php
+share/nextcloud/lib/private/Share20/Exception/InvalidShare.php
+share/nextcloud/lib/private/Share20/Exception/ProviderException.php
+share/nextcloud/lib/private/Share20/Hooks.php
+share/nextcloud/lib/private/Share20/Manager.php
+share/nextcloud/lib/private/Share20/ProviderFactory.php
+share/nextcloud/lib/private/Share20/Share.php
+share/nextcloud/lib/private/Streamer.php
+share/nextcloud/lib/private/SubAdmin.php
+share/nextcloud/lib/private/SystemConfig.php
+share/nextcloud/lib/private/SystemTag/ManagerFactory.php
+share/nextcloud/lib/private/SystemTag/SystemTag.php
+share/nextcloud/lib/private/SystemTag/SystemTagManager.php
+share/nextcloud/lib/private/SystemTag/SystemTagObjectMapper.php
+share/nextcloud/lib/private/TagManager.php
+share/nextcloud/lib/private/Tagging/Tag.php
+share/nextcloud/lib/private/Tagging/TagMapper.php
+share/nextcloud/lib/private/Tags.php
+share/nextcloud/lib/private/TempManager.php
+share/nextcloud/lib/private/Template/Base.php
+share/nextcloud/lib/private/Template/CSSResourceLocator.php
+share/nextcloud/lib/private/Template/JSConfigHelper.php
+share/nextcloud/lib/private/Template/JSResourceLocator.php
+share/nextcloud/lib/private/Template/ResourceLocator.php
+share/nextcloud/lib/private/Template/ResourceNotFoundException.php
+share/nextcloud/lib/private/Template/TemplateFileLocator.php
+share/nextcloud/lib/private/TemplateLayout.php
+share/nextcloud/lib/private/URLGenerator.php
+share/nextcloud/lib/private/Updater.php
+share/nextcloud/lib/private/Updater/VersionCheck.php
+share/nextcloud/lib/private/User/Backend.php
+share/nextcloud/lib/private/User/Database.php
+share/nextcloud/lib/private/User/LoginException.php
+share/nextcloud/lib/private/User/Manager.php
+share/nextcloud/lib/private/User/NoUserException.php
+share/nextcloud/lib/private/User/Session.php
+share/nextcloud/lib/private/User/User.php
+share/nextcloud/lib/private/legacy/api.php
+share/nextcloud/lib/private/legacy/app.php
+share/nextcloud/lib/private/legacy/db.php
+share/nextcloud/lib/private/legacy/db/statementwrapper.php
+share/nextcloud/lib/private/legacy/defaults.php
+share/nextcloud/lib/private/legacy/eventsource.php
+share/nextcloud/lib/private/legacy/filechunking.php
+share/nextcloud/lib/private/legacy/files.php
+share/nextcloud/lib/private/legacy/group.php
+share/nextcloud/lib/private/legacy/group/backend.php
+share/nextcloud/lib/private/legacy/group/database.php
+share/nextcloud/lib/private/legacy/group/example.php
+share/nextcloud/lib/private/legacy/group/interface.php
+share/nextcloud/lib/private/legacy/helper.php
+share/nextcloud/lib/private/legacy/hook.php
+share/nextcloud/lib/private/legacy/image.php
+share/nextcloud/lib/private/legacy/json.php
+share/nextcloud/lib/private/legacy/l10n/string.php
+share/nextcloud/lib/private/legacy/ocs.php
+share/nextcloud/lib/private/legacy/ocs/person.php
+share/nextcloud/lib/private/legacy/ocs/privatedata.php
+share/nextcloud/lib/private/legacy/ocs/result.php
+share/nextcloud/lib/private/legacy/response.php
+share/nextcloud/lib/private/legacy/template.php
+share/nextcloud/lib/private/legacy/template/functions.php
+share/nextcloud/lib/private/legacy/user.php
+share/nextcloud/lib/private/legacy/user/backend.php
+share/nextcloud/lib/private/legacy/user/interface.php
+share/nextcloud/lib/private/legacy/util.php
+share/nextcloud/lib/public/API.php
+share/nextcloud/lib/public/Activity/IConsumer.php
+share/nextcloud/lib/public/Activity/IEvent.php
+share/nextcloud/lib/public/Activity/IEventMerger.php
+share/nextcloud/lib/public/Activity/IExtension.php
+share/nextcloud/lib/public/Activity/IFilter.php
+share/nextcloud/lib/public/Activity/IManager.php
+share/nextcloud/lib/public/Activity/IProvider.php
+share/nextcloud/lib/public/Activity/ISetting.php
+share/nextcloud/lib/public/App.php
+share/nextcloud/lib/public/App/AppPathNotFoundException.php
+share/nextcloud/lib/public/App/IAppManager.php
+share/nextcloud/lib/public/App/ManagerEvent.php
+share/nextcloud/lib/public/AppFramework/ApiController.php
+share/nextcloud/lib/public/AppFramework/App.php
+share/nextcloud/lib/public/AppFramework/Controller.php
+share/nextcloud/lib/public/AppFramework/Db/DoesNotExistException.php
+share/nextcloud/lib/public/AppFramework/Db/Entity.php
+share/nextcloud/lib/public/AppFramework/Db/Mapper.php
+share/nextcloud/lib/public/AppFramework/Db/MultipleObjectsReturnedException.php
+share/nextcloud/lib/public/AppFramework/Http.php
+share/nextcloud/lib/public/AppFramework/Http/ContentSecurityPolicy.php
+share/nextcloud/lib/public/AppFramework/Http/DataDisplayResponse.php
+share/nextcloud/lib/public/AppFramework/Http/DataDownloadResponse.php
+share/nextcloud/lib/public/AppFramework/Http/DataResponse.php
+share/nextcloud/lib/public/AppFramework/Http/DownloadResponse.php
+share/nextcloud/lib/public/AppFramework/Http/EmptyContentSecurityPolicy.php
+share/nextcloud/lib/public/AppFramework/Http/FileDisplayResponse.php
+share/nextcloud/lib/public/AppFramework/Http/ICallbackResponse.php
+share/nextcloud/lib/public/AppFramework/Http/IOutput.php
+share/nextcloud/lib/public/AppFramework/Http/JSONResponse.php
+share/nextcloud/lib/public/AppFramework/Http/NotFoundResponse.php
+share/nextcloud/lib/public/AppFramework/Http/OCSResponse.php
+share/nextcloud/lib/public/AppFramework/Http/RedirectResponse.php
+share/nextcloud/lib/public/AppFramework/Http/Response.php
+share/nextcloud/lib/public/AppFramework/Http/StreamResponse.php
+share/nextcloud/lib/public/AppFramework/Http/TemplateResponse.php
+share/nextcloud/lib/public/AppFramework/IApi.php
+share/nextcloud/lib/public/AppFramework/IAppContainer.php
+share/nextcloud/lib/public/AppFramework/Middleware.php
+share/nextcloud/lib/public/AppFramework/OCS/OCSBadRequestException.php
+share/nextcloud/lib/public/AppFramework/OCS/OCSException.php
+share/nextcloud/lib/public/AppFramework/OCS/OCSForbiddenException.php
+share/nextcloud/lib/public/AppFramework/OCS/OCSNotFoundException.php
+share/nextcloud/lib/public/AppFramework/OCSController.php
+share/nextcloud/lib/public/AppFramework/QueryException.php
+share/nextcloud/lib/public/AppFramework/Utility/IControllerMethodReflector.php
+share/nextcloud/lib/public/AppFramework/Utility/ITimeFactory.php
+share/nextcloud/lib/public/Authentication/IApacheBackend.php
+share/nextcloud/lib/public/Authentication/TwoFactorAuth/IProvider.php
+share/nextcloud/lib/public/AutoloadNotAllowedException.php
+share/nextcloud/lib/public/BackgroundJob.php
+share/nextcloud/lib/public/BackgroundJob/IJob.php
+share/nextcloud/lib/public/BackgroundJob/IJobList.php
+share/nextcloud/lib/public/Capabilities/ICapability.php
+share/nextcloud/lib/public/Command/IBus.php
+share/nextcloud/lib/public/Command/ICommand.php
+share/nextcloud/lib/public/Comments/CommentsEntityEvent.php
+share/nextcloud/lib/public/Comments/CommentsEvent.php
+share/nextcloud/lib/public/Comments/IComment.php
+share/nextcloud/lib/public/Comments/ICommentsEventHandler.php
+share/nextcloud/lib/public/Comments/ICommentsManager.php
+share/nextcloud/lib/public/Comments/ICommentsManagerFactory.php
+share/nextcloud/lib/public/Comments/IllegalIDChangeException.php
+share/nextcloud/lib/public/Comments/MessageTooLongException.php
+share/nextcloud/lib/public/Comments/NotFoundException.php
+share/nextcloud/lib/public/Config.php
+share/nextcloud/lib/public/Console/ConsoleEvent.php
+share/nextcloud/lib/public/Constants.php
+share/nextcloud/lib/public/Contacts.php
+share/nextcloud/lib/public/Contacts/IManager.php
+share/nextcloud/lib/public/DB.php
+share/nextcloud/lib/public/DB/QueryBuilder/ICompositeExpression.php
+share/nextcloud/lib/public/DB/QueryBuilder/IExpressionBuilder.php
+share/nextcloud/lib/public/DB/QueryBuilder/ILiteral.php
+share/nextcloud/lib/public/DB/QueryBuilder/IParameter.php
+share/nextcloud/lib/public/DB/QueryBuilder/IQueryBuilder.php
+share/nextcloud/lib/public/DB/QueryBuilder/IQueryFunction.php
+share/nextcloud/lib/public/Defaults.php
+share/nextcloud/lib/public/Diagnostics/IEvent.php
+share/nextcloud/lib/public/Diagnostics/IEventLogger.php
+share/nextcloud/lib/public/Diagnostics/IQuery.php
+share/nextcloud/lib/public/Diagnostics/IQueryLogger.php
+share/nextcloud/lib/public/Encryption/Exceptions/GenericEncryptionException.php
+share/nextcloud/lib/public/Encryption/IEncryptionModule.php
+share/nextcloud/lib/public/Encryption/IFile.php
+share/nextcloud/lib/public/Encryption/IManager.php
+share/nextcloud/lib/public/Encryption/Keys/IStorage.php
+share/nextcloud/lib/public/Files.php
+share/nextcloud/lib/public/Files/AlreadyExistsException.php
+share/nextcloud/lib/public/Files/Cache/ICache.php
+share/nextcloud/lib/public/Files/Cache/ICacheEntry.php
+share/nextcloud/lib/public/Files/Cache/IPropagator.php
+share/nextcloud/lib/public/Files/Cache/IScanner.php
+share/nextcloud/lib/public/Files/Cache/IUpdater.php
+share/nextcloud/lib/public/Files/Cache/IWatcher.php
+share/nextcloud/lib/public/Files/Config/ICachedMountInfo.php
+share/nextcloud/lib/public/Files/Config/IHomeMountProvider.php
+share/nextcloud/lib/public/Files/Config/IMountProvider.php
+share/nextcloud/lib/public/Files/Config/IMountProviderCollection.php
+share/nextcloud/lib/public/Files/Config/IUserMountCache.php
+share/nextcloud/lib/public/Files/EmptyFileNameException.php
+share/nextcloud/lib/public/Files/EntityTooLargeException.php
+share/nextcloud/lib/public/Files/File.php
+share/nextcloud/lib/public/Files/FileInfo.php
+share/nextcloud/lib/public/Files/FileNameTooLongException.php
+share/nextcloud/lib/public/Files/Folder.php
+share/nextcloud/lib/public/Files/ForbiddenException.php
+share/nextcloud/lib/public/Files/IAppData.php
+share/nextcloud/lib/public/Files/IHomeStorage.php
+share/nextcloud/lib/public/Files/IMimeTypeDetector.php
+share/nextcloud/lib/public/Files/IMimeTypeLoader.php
+share/nextcloud/lib/public/Files/IRootFolder.php
+share/nextcloud/lib/public/Files/InvalidCharacterInPathException.php
+share/nextcloud/lib/public/Files/InvalidContentException.php
+share/nextcloud/lib/public/Files/InvalidDirectoryException.php
+share/nextcloud/lib/public/Files/InvalidPathException.php
+share/nextcloud/lib/public/Files/LockNotAcquiredException.php
+share/nextcloud/lib/public/Files/Mount/IMountManager.php
+share/nextcloud/lib/public/Files/Mount/IMountPoint.php
+share/nextcloud/lib/public/Files/Node.php
+share/nextcloud/lib/public/Files/NotEnoughSpaceException.php
+share/nextcloud/lib/public/Files/NotFoundException.php
+share/nextcloud/lib/public/Files/NotPermittedException.php
+share/nextcloud/lib/public/Files/ObjectStore/IObjectStore.php
+share/nextcloud/lib/public/Files/ReservedWordException.php
+share/nextcloud/lib/public/Files/SimpleFS/ISimpleFile.php
+share/nextcloud/lib/public/Files/SimpleFS/ISimpleFolder.php
+share/nextcloud/lib/public/Files/SimpleFS/ISimpleRoot.php
+share/nextcloud/lib/public/Files/Storage.php
+share/nextcloud/lib/public/Files/Storage/ILockingStorage.php
+share/nextcloud/lib/public/Files/Storage/INotifyStorage.php
+share/nextcloud/lib/public/Files/Storage/IStorage.php
+share/nextcloud/lib/public/Files/Storage/IStorageFactory.php
+share/nextcloud/lib/public/Files/StorageAuthException.php
+share/nextcloud/lib/public/Files/StorageBadConfigException.php
+share/nextcloud/lib/public/Files/StorageConnectionException.php
+share/nextcloud/lib/public/Files/StorageInvalidException.php
+share/nextcloud/lib/public/Files/StorageNotAvailableException.php
+share/nextcloud/lib/public/Files/StorageTimeoutException.php
+share/nextcloud/lib/public/Files/UnseekableException.php
+share/nextcloud/lib/public/GroupInterface.php
+share/nextcloud/lib/public/Http/Client/IClient.php
+share/nextcloud/lib/public/Http/Client/IClientService.php
+share/nextcloud/lib/public/Http/Client/IResponse.php
+share/nextcloud/lib/public/IAddressBook.php
+share/nextcloud/lib/public/IAppConfig.php
+share/nextcloud/lib/public/IAvatar.php
+share/nextcloud/lib/public/IAvatarManager.php
+share/nextcloud/lib/public/ICache.php
+share/nextcloud/lib/public/ICacheFactory.php
+share/nextcloud/lib/public/ICertificate.php
+share/nextcloud/lib/public/ICertificateManager.php
+share/nextcloud/lib/public/IConfig.php
+share/nextcloud/lib/public/IContainer.php
+share/nextcloud/lib/public/IDBConnection.php
+share/nextcloud/lib/public/IDateTimeFormatter.php
+share/nextcloud/lib/public/IDateTimeZone.php
+share/nextcloud/lib/public/IDb.php
+share/nextcloud/lib/public/IEventSource.php
+share/nextcloud/lib/public/IGroup.php
+share/nextcloud/lib/public/IGroupManager.php
+share/nextcloud/lib/public/IHelper.php
+share/nextcloud/lib/public/IImage.php
+share/nextcloud/lib/public/IL10N.php
+share/nextcloud/lib/public/ILogger.php
+share/nextcloud/lib/public/IMemcache.php
+share/nextcloud/lib/public/IMemcacheTTL.php
+share/nextcloud/lib/public/INavigationManager.php
+share/nextcloud/lib/public/IPreview.php
+share/nextcloud/lib/public/IRequest.php
+share/nextcloud/lib/public/ISearch.php
+share/nextcloud/lib/public/IServerContainer.php
+share/nextcloud/lib/public/ISession.php
+share/nextcloud/lib/public/ITagManager.php
+share/nextcloud/lib/public/ITags.php
+share/nextcloud/lib/public/ITempManager.php
+share/nextcloud/lib/public/IURLGenerator.php
+share/nextcloud/lib/public/IUser.php
+share/nextcloud/lib/public/IUserBackend.php
+share/nextcloud/lib/public/IUserManager.php
+share/nextcloud/lib/public/IUserSession.php
+share/nextcloud/lib/public/Image.php
+share/nextcloud/lib/public/JSON.php
+share/nextcloud/lib/public/L10N/IFactory.php
+share/nextcloud/lib/public/LDAP/IDeletionFlagSupport.php
+share/nextcloud/lib/public/LDAP/ILDAPProvider.php
+share/nextcloud/lib/public/LDAP/ILDAPProviderFactory.php
+share/nextcloud/lib/public/Lock/ILockingProvider.php
+share/nextcloud/lib/public/Lock/LockedException.php
+share/nextcloud/lib/public/Lockdown/ILockdownManager.php
+share/nextcloud/lib/public/Mail/IMailer.php
+share/nextcloud/lib/public/Migration/IOutput.php
+share/nextcloud/lib/public/Migration/IRepairStep.php
+share/nextcloud/lib/public/Notification/IAction.php
+share/nextcloud/lib/public/Notification/IApp.php
+share/nextcloud/lib/public/Notification/IManager.php
+share/nextcloud/lib/public/Notification/INotification.php
+share/nextcloud/lib/public/Notification/INotifier.php
+share/nextcloud/lib/public/PreConditionNotMetException.php
+share/nextcloud/lib/public/Preview/IProvider.php
+share/nextcloud/lib/public/Response.php
+share/nextcloud/lib/public/RichObjectStrings/Definitions.php
+share/nextcloud/lib/public/RichObjectStrings/IValidator.php
+share/nextcloud/lib/public/RichObjectStrings/InvalidObjectExeption.php
+share/nextcloud/lib/public/Route/IRoute.php
+share/nextcloud/lib/public/Route/IRouter.php
+share/nextcloud/lib/public/SabrePluginEvent.php
+share/nextcloud/lib/public/SabrePluginException.php
+share/nextcloud/lib/public/Search/PagedProvider.php
+share/nextcloud/lib/public/Search/Provider.php
+share/nextcloud/lib/public/Search/Result.php
+share/nextcloud/lib/public/Security/IContentSecurityPolicyManager.php
+share/nextcloud/lib/public/Security/ICredentialsManager.php
+share/nextcloud/lib/public/Security/ICrypto.php
+share/nextcloud/lib/public/Security/IHasher.php
+share/nextcloud/lib/public/Security/ISecureRandom.php
+share/nextcloud/lib/public/Security/StringUtils.php
+share/nextcloud/lib/public/Session/Exceptions/SessionNotAvailableException.php
+share/nextcloud/lib/public/Settings/IManager.php
+share/nextcloud/lib/public/Settings/ISection.php
+share/nextcloud/lib/public/Settings/ISettings.php
+share/nextcloud/lib/public/Share.php
+share/nextcloud/lib/public/Share/Exceptions/GenericShareException.php
+share/nextcloud/lib/public/Share/Exceptions/IllegalIDChangeException.php
+share/nextcloud/lib/public/Share/Exceptions/ShareNotFound.php
+share/nextcloud/lib/public/Share/IManager.php
+share/nextcloud/lib/public/Share/IProviderFactory.php
+share/nextcloud/lib/public/Share/IShare.php
+share/nextcloud/lib/public/Share/IShareProvider.php
+share/nextcloud/lib/public/Share_Backend.php
+share/nextcloud/lib/public/Share_Backend_Collection.php
+share/nextcloud/lib/public/Share_Backend_File_Dependent.php
+share/nextcloud/lib/public/SystemTag/ISystemTag.php
+share/nextcloud/lib/public/SystemTag/ISystemTagManager.php
+share/nextcloud/lib/public/SystemTag/ISystemTagManagerFactory.php
+share/nextcloud/lib/public/SystemTag/ISystemTagObjectMapper.php
+share/nextcloud/lib/public/SystemTag/ManagerEvent.php
+share/nextcloud/lib/public/SystemTag/MapperEvent.php
+share/nextcloud/lib/public/SystemTag/SystemTagsEntityEvent.php
+share/nextcloud/lib/public/SystemTag/TagAlreadyExistsException.php
+share/nextcloud/lib/public/SystemTag/TagNotFoundException.php
+share/nextcloud/lib/public/Template.php
+share/nextcloud/lib/public/User.php
+share/nextcloud/lib/public/UserInterface.php
+share/nextcloud/lib/public/Util.php
+share/nextcloud/lib/public/WorkflowEngine/ICheck.php
+share/nextcloud/lib/public/WorkflowEngine/IManager.php
+share/nextcloud/lib/public/WorkflowEngine/IOperation.php
+share/nextcloud/occ
+share/nextcloud/ocs-provider/index.php
+share/nextcloud/ocs/providers.php
+share/nextcloud/ocs/routes.php
+share/nextcloud/ocs/v1.php
+share/nextcloud/ocs/v2.php
+share/nextcloud/public.php
+share/nextcloud/remote.php
+share/nextcloud/resources/codesigning/core.crt
+share/nextcloud/resources/codesigning/owncloud.crt
+share/nextcloud/resources/codesigning/root.crl
+share/nextcloud/resources/codesigning/root.crt
+share/nextcloud/resources/config/ca-bundle.crt
+share/nextcloud/resources/config/mimetypealiases.dist.json
+share/nextcloud/resources/config/mimetypemapping.dist.json
+share/nextcloud/robots.txt
+share/nextcloud/settings/Application.php
+share/nextcloud/settings/Controller/AdminSettingsController.php
+share/nextcloud/settings/Controller/AppSettingsController.php
+share/nextcloud/settings/Controller/AuthSettingsController.php
+share/nextcloud/settings/Controller/CertificateController.php
+share/nextcloud/settings/Controller/ChangePasswordController.php
+share/nextcloud/settings/Controller/CheckSetupController.php
+share/nextcloud/settings/Controller/EncryptionController.php
+share/nextcloud/settings/Controller/GroupsController.php
+share/nextcloud/settings/Controller/LogSettingsController.php
+share/nextcloud/settings/Controller/MailSettingsController.php
+share/nextcloud/settings/Controller/PersonalController.php
+share/nextcloud/settings/Controller/SecuritySettingsController.php
+share/nextcloud/settings/Controller/UsersController.php
+share/nextcloud/settings/Middleware/SubadminMiddleware.php
+share/nextcloud/settings/ajax/disableapp.php
+share/nextcloud/settings/ajax/enableapp.php
+share/nextcloud/settings/ajax/installapp.php
+share/nextcloud/settings/ajax/navigationdetect.php
+share/nextcloud/settings/ajax/setquota.php
+share/nextcloud/settings/ajax/togglegroups.php
+share/nextcloud/settings/ajax/togglesubadmins.php
+share/nextcloud/settings/ajax/uninstallapp.php
+share/nextcloud/settings/ajax/updateapp.php
+share/nextcloud/settings/css/settings.css
+share/nextcloud/settings/help.php
+share/nextcloud/settings/img/admin.svg
+share/nextcloud/settings/img/apps.svg
+share/nextcloud/settings/img/help.svg
+share/nextcloud/settings/img/personal.svg
+share/nextcloud/settings/img/users.svg
+share/nextcloud/settings/js/admin.js
+share/nextcloud/settings/js/apps.js
+share/nextcloud/settings/js/authtoken.js
+share/nextcloud/settings/js/authtoken_collection.js
+share/nextcloud/settings/js/authtoken_view.js
+share/nextcloud/settings/js/certificates.js
+share/nextcloud/settings/js/federationscopemenu.js
+share/nextcloud/settings/js/federationsettingsview.js
+share/nextcloud/settings/js/log.js
+share/nextcloud/settings/js/personal.js
+share/nextcloud/settings/js/settings.js
+share/nextcloud/settings/js/users/deleteHandler.js
+share/nextcloud/settings/js/users/filter.js
+share/nextcloud/settings/js/users/groups.js
+share/nextcloud/settings/js/users/users.js
+share/nextcloud/settings/js/usersettings.js
+share/nextcloud/settings/l10n/ar.js
+share/nextcloud/settings/l10n/ar.json
+share/nextcloud/settings/l10n/ast.js
+share/nextcloud/settings/l10n/ast.json
+share/nextcloud/settings/l10n/az.js
+share/nextcloud/settings/l10n/az.json
+share/nextcloud/settings/l10n/bg_BG.js
+share/nextcloud/settings/l10n/bg_BG.json
+share/nextcloud/settings/l10n/bn_BD.js
+share/nextcloud/settings/l10n/bn_BD.json
+share/nextcloud/settings/l10n/bs.js
+share/nextcloud/settings/l10n/bs.json
+share/nextcloud/settings/l10n/ca.js
+share/nextcloud/settings/l10n/ca.json
+share/nextcloud/settings/l10n/cs_CZ.js
+share/nextcloud/settings/l10n/cs_CZ.json
+share/nextcloud/settings/l10n/cy_GB.js
+share/nextcloud/settings/l10n/cy_GB.json
+share/nextcloud/settings/l10n/da.js
+share/nextcloud/settings/l10n/da.json
+share/nextcloud/settings/l10n/de.js
+share/nextcloud/settings/l10n/de.json
+share/nextcloud/settings/l10n/de_DE.js
+share/nextcloud/settings/l10n/de_DE.json
+share/nextcloud/settings/l10n/el.js
+share/nextcloud/settings/l10n/el.json
+share/nextcloud/settings/l10n/en_GB.js
+share/nextcloud/settings/l10n/en_GB.json
+share/nextcloud/settings/l10n/eo.js
+share/nextcloud/settings/l10n/eo.json
+share/nextcloud/settings/l10n/es.js
+share/nextcloud/settings/l10n/es.json
+share/nextcloud/settings/l10n/es_AR.js
+share/nextcloud/settings/l10n/es_AR.json
+share/nextcloud/settings/l10n/es_MX.js
+share/nextcloud/settings/l10n/es_MX.json
+share/nextcloud/settings/l10n/et_EE.js
+share/nextcloud/settings/l10n/et_EE.json
+share/nextcloud/settings/l10n/eu.js
+share/nextcloud/settings/l10n/eu.json
+share/nextcloud/settings/l10n/fa.js
+share/nextcloud/settings/l10n/fa.json
+share/nextcloud/settings/l10n/fi_FI.js
+share/nextcloud/settings/l10n/fi_FI.json
+share/nextcloud/settings/l10n/fr.js
+share/nextcloud/settings/l10n/fr.json
+share/nextcloud/settings/l10n/gl.js
+share/nextcloud/settings/l10n/gl.json
+share/nextcloud/settings/l10n/he.js
+share/nextcloud/settings/l10n/he.json
+share/nextcloud/settings/l10n/hr.js
+share/nextcloud/settings/l10n/hr.json
+share/nextcloud/settings/l10n/hu_HU.js
+share/nextcloud/settings/l10n/hu_HU.json
+share/nextcloud/settings/l10n/hy.js
+share/nextcloud/settings/l10n/hy.json
+share/nextcloud/settings/l10n/id.js
+share/nextcloud/settings/l10n/id.json
+share/nextcloud/settings/l10n/is.js
+share/nextcloud/settings/l10n/is.json
+share/nextcloud/settings/l10n/it.js
+share/nextcloud/settings/l10n/it.json
+share/nextcloud/settings/l10n/ja.js
+share/nextcloud/settings/l10n/ja.json
+share/nextcloud/settings/l10n/ka_GE.js
+share/nextcloud/settings/l10n/ka_GE.json
+share/nextcloud/settings/l10n/km.js
+share/nextcloud/settings/l10n/km.json
+share/nextcloud/settings/l10n/kn.js
+share/nextcloud/settings/l10n/kn.json
+share/nextcloud/settings/l10n/ko.js
+share/nextcloud/settings/l10n/ko.json
+share/nextcloud/settings/l10n/lb.js
+share/nextcloud/settings/l10n/lb.json
+share/nextcloud/settings/l10n/lt_LT.js
+share/nextcloud/settings/l10n/lt_LT.json
+share/nextcloud/settings/l10n/lv.js
+share/nextcloud/settings/l10n/lv.json
+share/nextcloud/settings/l10n/mk.js
+share/nextcloud/settings/l10n/mk.json
+share/nextcloud/settings/l10n/ms_MY.js
+share/nextcloud/settings/l10n/ms_MY.json
+share/nextcloud/settings/l10n/nb_NO.js
+share/nextcloud/settings/l10n/nb_NO.json
+share/nextcloud/settings/l10n/nl.js
+share/nextcloud/settings/l10n/nl.json
+share/nextcloud/settings/l10n/nn_NO.js
+share/nextcloud/settings/l10n/nn_NO.json
+share/nextcloud/settings/l10n/pl.js
+share/nextcloud/settings/l10n/pl.json
+share/nextcloud/settings/l10n/pt_BR.js
+share/nextcloud/settings/l10n/pt_BR.json
+share/nextcloud/settings/l10n/pt_PT.js
+share/nextcloud/settings/l10n/pt_PT.json
+share/nextcloud/settings/l10n/ro.js
+share/nextcloud/settings/l10n/ro.json
+share/nextcloud/settings/l10n/ru.js
+share/nextcloud/settings/l10n/ru.json
+share/nextcloud/settings/l10n/si_LK.js
+share/nextcloud/settings/l10n/si_LK.json
+share/nextcloud/settings/l10n/sk_SK.js
+share/nextcloud/settings/l10n/sk_SK.json
+share/nextcloud/settings/l10n/sl.js
+share/nextcloud/settings/l10n/sl.json
+share/nextcloud/settings/l10n/sq.js
+share/nextcloud/settings/l10n/sq.json
+share/nextcloud/settings/l10n/sr.js
+share/nextcloud/settings/l10n/sr.json
+share/nextcloud/settings/l10n/sv.js
+share/nextcloud/settings/l10n/sv.json
+share/nextcloud/settings/l10n/ta_LK.js
+share/nextcloud/settings/l10n/ta_LK.json
+share/nextcloud/settings/l10n/th_TH.js
+share/nextcloud/settings/l10n/th_TH.json
+share/nextcloud/settings/l10n/tr.js
+share/nextcloud/settings/l10n/tr.json
+share/nextcloud/settings/l10n/ug.js
+share/nextcloud/settings/l10n/ug.json
+share/nextcloud/settings/l10n/uk.js
+share/nextcloud/settings/l10n/uk.json
+share/nextcloud/settings/l10n/ur_PK.js
+share/nextcloud/settings/l10n/ur_PK.json
+share/nextcloud/settings/l10n/vi.js
+share/nextcloud/settings/l10n/vi.json
+share/nextcloud/settings/l10n/zh_CN.js
+share/nextcloud/settings/l10n/zh_CN.json
+share/nextcloud/settings/l10n/zh_HK.js
+share/nextcloud/settings/l10n/zh_HK.json
+share/nextcloud/settings/l10n/zh_TW.js
+share/nextcloud/settings/l10n/zh_TW.json
+share/nextcloud/settings/personal.php
+share/nextcloud/settings/routes.php
+share/nextcloud/settings/templates/admin/additional-mail.php
+share/nextcloud/settings/templates/admin/additional.php
+share/nextcloud/settings/templates/admin/encryption.php
+share/nextcloud/settings/templates/admin/frame.php
+share/nextcloud/settings/templates/admin/server.development.notice.php
+share/nextcloud/settings/templates/admin/server.php
+share/nextcloud/settings/templates/admin/sharing.php
+share/nextcloud/settings/templates/admin/tipstricks.php
+share/nextcloud/settings/templates/apps.php
+share/nextcloud/settings/templates/certificates.php
+share/nextcloud/settings/templates/email.new_user.php
+share/nextcloud/settings/templates/email.new_user_plain_text.php
+share/nextcloud/settings/templates/help.php
+share/nextcloud/settings/templates/personal.php
+share/nextcloud/settings/templates/settings.development.notice.php
+share/nextcloud/settings/templates/settings.php
+share/nextcloud/settings/templates/users/main.php
+share/nextcloud/settings/templates/users/part.createuser.php
+share/nextcloud/settings/templates/users/part.grouplist.php
+share/nextcloud/settings/templates/users/part.setquota.php
+share/nextcloud/settings/templates/users/part.userlist.php
+share/nextcloud/settings/tests/js/appsSpec.js
+share/nextcloud/settings/tests/js/users/deleteHandlerSpec.js
+share/nextcloud/settings/users.php
+share/nextcloud/status.php
+share/nextcloud/themes/README
+share/nextcloud/themes/example/core/css/styles.css
+share/nextcloud/themes/example/core/img/favicon-touch.png
+share/nextcloud/themes/example/core/img/favicon-touch.svg
+share/nextcloud/themes/example/core/img/favicon.ico
+share/nextcloud/themes/example/core/img/favicon.png
+share/nextcloud/themes/example/core/img/favicon.svg
+share/nextcloud/themes/example/core/img/logo-icon.png
+share/nextcloud/themes/example/core/img/logo-icon.svg
+share/nextcloud/themes/example/core/img/logo-mail.gif
+share/nextcloud/themes/example/core/img/logo.png
+share/nextcloud/themes/example/core/img/logo.svg
+share/nextcloud/themes/example/defaults.php
+share/nextcloud/updater/index.php
+share/nextcloud/updater/updater.phar
+share/nextcloud/version.php
Index: pkgsrc/www/php-nextcloud/distinfo
diff -u /dev/null pkgsrc/www/php-nextcloud/distinfo:1.1
--- /dev/null   Thu Jan 12 15:07:38 2017
+++ pkgsrc/www/php-nextcloud/distinfo   Thu Jan 12 15:07:38 2017
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2017/01/12 15:07:38 ryoon Exp $
+
+SHA1 (nextcloud-11.0.0.tar.bz2) = 54197356df5d7139520b5dd06bb4696a02327e25
+RMD160 (nextcloud-11.0.0.tar.bz2) = 1d7c5ee8172f1031d903d6682d97215a28c2dce4
+SHA512 (nextcloud-11.0.0.tar.bz2) = 50efb8d821e3e8dc34249a110cd95f8e7c24ed767842c4aae9e5a50e3f70ea6d382675e9d858c9281c20ed68953d42f69e74eba87a1276bbfb8b52a0fbf8fa52
+Size (nextcloud-11.0.0.tar.bz2) = 38500600 bytes
Index: pkgsrc/www/php-nextcloud/options.mk
diff -u /dev/null pkgsrc/www/php-nextcloud/options.mk:1.1
--- /dev/null   Thu Jan 12 15:07:38 2017
+++ pkgsrc/www/php-nextcloud/options.mk Thu Jan 12 15:07:38 2017
@@ -0,0 +1,22 @@
+# $NetBSD: options.mk,v 1.1 2017/01/12 15:07:38 ryoon Exp $
+
+PKG_OPTIONS_VAR=       PKG_OPTIONS.php-nextcloud
+
+PKG_OPTIONS_REQUIRED_GROUPS=   db
+PKG_OPTIONS_GROUP.db=          mysql sqlite3 pgsql
+
+PKG_SUGGESTED_OPTIONS= sqlite3
+
+.include "../../mk/bsd.options.mk"
+
+###
+### Use mysql, pgsql, or sqlite backend
+###
+.if !empty(PKG_OPTIONS:Mmysql)
+DEPENDS+=      ${PHP_PKG_PREFIX}-pdo_mysql>=5.2.0:../../databases/php-pdo_mysql
+.elif !empty(PKG_OPTIONS:Msqlite3)
+DEPENDS+=      ${PHP_PKG_PREFIX}-pdo_sqlite>=5.4.0:../../databases/php-pdo_sqlite
+.elif !empty(PKG_OPTIONS:Mpgsql)
+DEPENDS+=      ${PHP_PKG_PREFIX}-pdo_pgsql>=5.4.0:../../databases/php-pdo_pgsql
+DEPENDS+=      ${PHP_PKG_PREFIX}-pgsql>=5.4.0:../../databases/php-pgsql
+.endif



Home | Main Index | Thread Index | Old Index