rucio 38.3.0__py3-none-any.whl → 38.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rucio might be problematic. Click here for more details.
- rucio/cli/bin_legacy/rucio.py +12 -7
- rucio/cli/bin_legacy/rucio_admin.py +9 -2
- rucio/cli/did.py +1 -1
- rucio/cli/opendata.py +19 -2
- rucio/cli/replica.py +6 -2
- rucio/cli/rule.py +0 -1
- rucio/cli/scope.py +9 -0
- rucio/cli/utils.py +11 -0
- rucio/client/accountclient.py +20 -19
- rucio/client/accountlimitclient.py +5 -4
- rucio/client/baseclient.py +25 -25
- rucio/client/configclient.py +7 -6
- rucio/client/credentialclient.py +2 -1
- rucio/client/didclient.py +33 -32
- rucio/client/diracclient.py +2 -1
- rucio/client/downloadclient.py +3 -1
- rucio/client/exportclient.py +2 -1
- rucio/client/importclient.py +2 -1
- rucio/client/lifetimeclient.py +3 -2
- rucio/client/lockclient.py +4 -3
- rucio/client/metaconventionsclient.py +5 -4
- rucio/client/opendataclient.py +8 -7
- rucio/client/pingclient.py +2 -1
- rucio/client/replicaclient.py +27 -26
- rucio/client/requestclient.py +8 -8
- rucio/client/rseclient.py +31 -28
- rucio/client/ruleclient.py +13 -12
- rucio/client/scopeclient.py +44 -4
- rucio/client/subscriptionclient.py +6 -5
- rucio/common/constants.py +18 -0
- rucio/common/didtype.py +18 -11
- rucio/common/exception.py +20 -0
- rucio/common/plugins.py +9 -7
- rucio/core/credential.py +19 -26
- rucio/core/did.py +1 -1
- rucio/core/did_meta_plugins/__init__.py +2 -1
- rucio/core/did_meta_plugins/did_column_meta.py +2 -10
- rucio/core/did_meta_plugins/did_meta_plugin_interface.py +39 -25
- rucio/core/did_meta_plugins/elasticsearch_meta.py +3 -11
- rucio/core/did_meta_plugins/json_meta.py +2 -8
- rucio/core/did_meta_plugins/mongo_meta.py +3 -12
- rucio/core/did_meta_plugins/postgres_meta.py +7 -14
- rucio/core/dirac.py +1 -1
- rucio/core/opendata.py +150 -8
- rucio/core/rse.py +6 -2
- rucio/core/rule_grouping.py +3 -3
- rucio/core/scope.py +47 -7
- rucio/daemons/automatix/automatix.py +2 -0
- rucio/db/sqla/models.py +22 -0
- rucio/gateway/account.py +8 -7
- rucio/gateway/did.py +1 -1
- rucio/gateway/dirac.py +1 -1
- rucio/gateway/opendata.py +2 -2
- rucio/gateway/request.py +2 -117
- rucio/gateway/scope.py +35 -3
- rucio/rse/protocols/webdav.py +5 -2
- rucio/transfertool/fts3.py +0 -19
- rucio/vcsversion.py +3 -3
- rucio/web/rest/flaskapi/v1/accountlimits.py +4 -3
- rucio/web/rest/flaskapi/v1/accounts.py +26 -25
- rucio/web/rest/flaskapi/v1/archives.py +2 -2
- rucio/web/rest/flaskapi/v1/auth.py +15 -14
- rucio/web/rest/flaskapi/v1/common.py +4 -4
- rucio/web/rest/flaskapi/v1/config.py +6 -4
- rucio/web/rest/flaskapi/v1/credentials.py +3 -3
- rucio/web/rest/flaskapi/v1/dids.py +25 -24
- rucio/web/rest/flaskapi/v1/dirac.py +3 -2
- rucio/web/rest/flaskapi/v1/export.py +4 -2
- rucio/web/rest/flaskapi/v1/heartbeats.py +2 -1
- rucio/web/rest/flaskapi/v1/identities.py +5 -4
- rucio/web/rest/flaskapi/v1/import.py +3 -2
- rucio/web/rest/flaskapi/v1/lifetime_exceptions.py +3 -2
- rucio/web/rest/flaskapi/v1/locks.py +4 -3
- rucio/web/rest/flaskapi/v1/meta_conventions.py +4 -3
- rucio/web/rest/flaskapi/v1/metrics.py +2 -1
- rucio/web/rest/flaskapi/v1/nongrid_traces.py +2 -1
- rucio/web/rest/flaskapi/v1/opendata.py +28 -27
- rucio/web/rest/flaskapi/v1/opendata_public.py +12 -11
- rucio/web/rest/flaskapi/v1/ping.py +3 -2
- rucio/web/rest/flaskapi/v1/redirect.py +4 -3
- rucio/web/rest/flaskapi/v1/replicas.py +31 -31
- rucio/web/rest/flaskapi/v1/requests.py +7 -7
- rucio/web/rest/flaskapi/v1/rses.py +23 -16
- rucio/web/rest/flaskapi/v1/rules.py +9 -8
- rucio/web/rest/flaskapi/v1/scopes.py +66 -13
- rucio/web/rest/flaskapi/v1/subscriptions.py +9 -8
- rucio/web/rest/flaskapi/v1/traces.py +2 -1
- rucio/web/rest/flaskapi/v1/vos.py +4 -3
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/rucio.cfg.template +2 -3
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/rucio_multi_vo.cfg.template +2 -3
- {rucio-38.3.0.dist-info → rucio-38.5.0.dist-info}/METADATA +1 -1
- {rucio-38.3.0.dist-info → rucio-38.5.0.dist-info}/RECORD +149 -149
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/alembic.ini.template +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/alembic_offline.ini.template +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/globus-config.yml.template +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/ldap.cfg.template +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/mail_templates/rule_denied_user.tmpl +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/rse-accounts.cfg.template +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/rucio.cfg.atlas.client.template +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/requirements.server.txt +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/tools/bootstrap.py +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/tools/merge_rucio_configs.py +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/tools/reset_database.py +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-abacus-account +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-abacus-collection-replica +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-abacus-rse +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-admin +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-atropos +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-auditor +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-automatix +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-bb8 +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-cache-client +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-cache-consumer +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-conveyor-finisher +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-conveyor-poller +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-conveyor-preparer +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-conveyor-receiver +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-conveyor-stager +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-conveyor-submitter +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-conveyor-throttler +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-dark-reaper +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-dumper +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-follower +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-hermes +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-judge-cleaner +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-judge-evaluator +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-judge-injector +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-judge-repairer +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-kronos +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-minos +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-minos-temporary-expiration +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-necromancer +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-oauth-manager +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-reaper +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-replica-recoverer +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-rse-decommissioner +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-storage-consistency-actions +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-transmogrifier +0 -0
- {rucio-38.3.0.data → rucio-38.5.0.data}/scripts/rucio-undertaker +0 -0
- {rucio-38.3.0.dist-info → rucio-38.5.0.dist-info}/WHEEL +0 -0
- {rucio-38.3.0.dist-info → rucio-38.5.0.dist-info}/licenses/AUTHORS.rst +0 -0
- {rucio-38.3.0.dist-info → rucio-38.5.0.dist-info}/licenses/LICENSE +0 -0
- {rucio-38.3.0.dist-info → rucio-38.5.0.dist-info}/top_level.txt +0 -0
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
rucio/__init__.py,sha256=Y7cPPlHVQPFyN8bSPFC0W3WViEdONr5g_qwBub5rufE,660
|
|
2
2
|
rucio/alembicrevision.py,sha256=9tnjQLFkTpUEcZqcw-ojWpt4Wbg-5OtMJ0CfjPc0wX8,690
|
|
3
|
-
rucio/vcsversion.py,sha256=
|
|
3
|
+
rucio/vcsversion.py,sha256=gIawRqhnsUg9YGwak_xzJdzx3efjPERJHG5ap15AKF4,248
|
|
4
4
|
rucio/version.py,sha256=IwsNb1QQk0D092QQbR2K9wBPF2Akny1RGs-ZZziUohE,1519
|
|
5
5
|
rucio/cli/__init__.py,sha256=GIkHmxgE3xdvWSf-7ZnvVaJmbs7NokaSjbFzsrXOG9o,662
|
|
6
6
|
rucio/cli/account.py,sha256=2Fe-iEaTfLxqlW5mDJsJPwD-Etm4VqaMowTSA67hZIo,9458
|
|
7
7
|
rucio/cli/command.py,sha256=7jqBakwQOW7gORCLf63wrGOfzsQKdZbsc1TWUMmDH5s,11294
|
|
8
8
|
rucio/cli/config.py,sha256=chcCxby1ET8YvoMx9IUIty0wVaZghISwEO_Ahe22ReA,3558
|
|
9
|
-
rucio/cli/did.py,sha256=
|
|
9
|
+
rucio/cli/did.py,sha256=viwJC07AvEneC6_E307Q9nybWti-iYalwphNOpfQXLE,9041
|
|
10
10
|
rucio/cli/download.py,sha256=kIB_n45egqBp4inVFmUXdofFAmlPkdAgxLTpPlG4WLM,6241
|
|
11
11
|
rucio/cli/lifetime_exception.py,sha256=joi9HdaiYP_g3115IR_ImX7oFlEg1xbSaK-IzmoIVcY,1498
|
|
12
|
-
rucio/cli/opendata.py,sha256=
|
|
13
|
-
rucio/cli/replica.py,sha256=
|
|
12
|
+
rucio/cli/opendata.py,sha256=UfUGDolu-d7hzlH26uhXk5YcD4HcF-R891GH11mwlLU,7329
|
|
13
|
+
rucio/cli/replica.py,sha256=qFsOyJjJM5GY-BctVcDCQpja7cNLcBZpBNd4S-SvaFw,8907
|
|
14
14
|
rucio/cli/rse.py,sha256=J2IjCGUzvv9U0swFcU0ykZ1pYweHqTlXwmpGfSI-VgE,11490
|
|
15
|
-
rucio/cli/rule.py,sha256=
|
|
16
|
-
rucio/cli/scope.py,sha256=
|
|
15
|
+
rucio/cli/rule.py,sha256=3f-RP--CLdx5RrdIbgYYqvptb_oyZgAh1IVwmP5U83E,9032
|
|
16
|
+
rucio/cli/scope.py,sha256=uQFbjXDsPWv10fMd2jx9JauopkH7bKfILtzY4QF5I40,2060
|
|
17
17
|
rucio/cli/subscription.py,sha256=kx1ox3OkWqdwfdflhdsv00XSYI6nnUZCp97YBZa4Aw4,4269
|
|
18
18
|
rucio/cli/upload.py,sha256=29gJGfb7jsiA6-UwPCSg1kGZu-OJ-bdxUZr27S2mJEM,3237
|
|
19
|
-
rucio/cli/utils.py,sha256=
|
|
19
|
+
rucio/cli/utils.py,sha256=tCRTQxXIONkEarpA74NofHYh7HhKvQRC9ZtRc7C5vn8,11522
|
|
20
20
|
rucio/cli/bin_legacy/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
21
|
-
rucio/cli/bin_legacy/rucio.py,sha256=
|
|
22
|
-
rucio/cli/bin_legacy/rucio_admin.py,sha256=
|
|
21
|
+
rucio/cli/bin_legacy/rucio.py,sha256=6Md-5metJcOi3DVQRePwJpm_oZGtPN-jAy1FtKd91l8,141174
|
|
22
|
+
rucio/cli/bin_legacy/rucio_admin.py,sha256=G0tQPe83otuTdIDjQb3whi2zsrplE5R9lddEX9yISNo,141436
|
|
23
23
|
rucio/client/__init__.py,sha256=0-jkSlrJf-eqbN4swA5a07eaWd6_6JXPQPLXMs4A3iI,660
|
|
24
|
-
rucio/client/accountclient.py,sha256=
|
|
25
|
-
rucio/client/accountlimitclient.py,sha256=
|
|
26
|
-
rucio/client/baseclient.py,sha256=
|
|
24
|
+
rucio/client/accountclient.py,sha256=yimP_88XbHOpMnyEG6kT2i0x8x4ILpq8EeVs0O_o-as,19148
|
|
25
|
+
rucio/client/accountlimitclient.py,sha256=RwWfyddIT6iZt8PDHRSqrOvgI7-GGZiz1kE4m1zGOtQ,6997
|
|
26
|
+
rucio/client/baseclient.py,sha256=jJ8x-EYTM_zONHGU-B7sg-cJDm1KCd6iVj0lyV2hB_s,51172
|
|
27
27
|
rucio/client/client.py,sha256=npg0pFWzqnmnObjFO7QDdSkH1O0jrY-HglXEVfDrWNY,4493
|
|
28
|
-
rucio/client/configclient.py,sha256=
|
|
29
|
-
rucio/client/credentialclient.py,sha256=
|
|
30
|
-
rucio/client/didclient.py,sha256=
|
|
31
|
-
rucio/client/diracclient.py,sha256=
|
|
32
|
-
rucio/client/downloadclient.py,sha256=
|
|
33
|
-
rucio/client/exportclient.py,sha256=
|
|
34
|
-
rucio/client/importclient.py,sha256=
|
|
35
|
-
rucio/client/lifetimeclient.py,sha256=
|
|
36
|
-
rucio/client/lockclient.py,sha256=
|
|
37
|
-
rucio/client/metaconventionsclient.py,sha256=
|
|
38
|
-
rucio/client/opendataclient.py,sha256=
|
|
39
|
-
rucio/client/pingclient.py,sha256=
|
|
40
|
-
rucio/client/replicaclient.py,sha256=
|
|
41
|
-
rucio/client/requestclient.py,sha256=
|
|
28
|
+
rucio/client/configclient.py,sha256=cy1yXDmtiNqlZrytF7GK9Pi5DB4-PO9VaiJn7ITLJi4,5595
|
|
29
|
+
rucio/client/credentialclient.py,sha256=9dvF6cAgf9hOTYuX-igzQOPdmMVCbjt97v4f7_yH_nE,2270
|
|
30
|
+
rucio/client/didclient.py,sha256=E9HusPPeQn4nhMrCtm0VsZtYlTAwAf5c9paSYuzPMjU,34969
|
|
31
|
+
rucio/client/diracclient.py,sha256=E5yGTkNdtBT5iYOAm81pT5lHHkEf0VSs40g1TB9VWwE,4521
|
|
32
|
+
rucio/client/downloadclient.py,sha256=Rs9x_s-kgiSuYtTHNX195Po6niPO3s25aOfHNVFYpEw,91781
|
|
33
|
+
rucio/client/exportclient.py,sha256=pCgjm-SbcZk5RZp2iOzAESdMeBeyVNYzQ1oModCvLfk,3366
|
|
34
|
+
rucio/client/importclient.py,sha256=9CHlLmgH59HBfm7zBe1TKiqNTmGar8SeIYiNZdkCFXU,1616
|
|
35
|
+
rucio/client/lifetimeclient.py,sha256=96MLiMv8ff1zMUnNe8OT6a12cUWIouG-dq4wBDUX-Jw,6037
|
|
36
|
+
rucio/client/lockclient.py,sha256=hluIjxQcitcrreZBjDwsYXI96Ceb9PjgAqPa7VP1lag,4523
|
|
37
|
+
rucio/client/metaconventionsclient.py,sha256=tQgFo65Pjxh0MZ4JZxpbwMm4fuzYP3hKVQnEjOtEAtE,5767
|
|
38
|
+
rucio/client/opendataclient.py,sha256=boJLaAySzQR8r13iGjn5ujx0K5VPI3A3e_IOW37JE8A,9249
|
|
39
|
+
rucio/client/pingclient.py,sha256=ZSxloZO6FRU6RkkNqow1tkTOfOzKHOW939LypQFEsE4,2448
|
|
40
|
+
rucio/client/replicaclient.py,sha256=n7m2oCjclF8uHpnYhIqZrGV7nZ-HiiXauygyQNbajDg,20834
|
|
41
|
+
rucio/client/requestclient.py,sha256=7N0RaZfuVegD40oQkekwn_UylVi3GljHAkxDezMMOs4,8659
|
|
42
42
|
rucio/client/richclient.py,sha256=ArTHvnx0eJxRysfpBxnx0zaDI8ixgnfA_8vAegZQC2Y,10243
|
|
43
|
-
rucio/client/rseclient.py,sha256=
|
|
44
|
-
rucio/client/ruleclient.py,sha256=
|
|
45
|
-
rucio/client/scopeclient.py,sha256
|
|
46
|
-
rucio/client/subscriptionclient.py,sha256=
|
|
43
|
+
rucio/client/rseclient.py,sha256=zrXXMRIIENC6WmMPhNw4_JK_8XqqINt5TdB9ZYOQVus,32242
|
|
44
|
+
rucio/client/ruleclient.py,sha256=nFXZ2wC8UgbSTD0es7XHuY6szIDHCHDdZNAwABmgDts,13808
|
|
45
|
+
rucio/client/scopeclient.py,sha256=4_v2CJskpTwKrqLbECPqrXJvGtcuoURAVc8shoDmLkw,4822
|
|
46
|
+
rucio/client/subscriptionclient.py,sha256=B8oEQa_Dwh3gvydEYjEZXmSkjZY2EdbL7VZ0JXEDN1w,9513
|
|
47
47
|
rucio/client/touchclient.py,sha256=LZXC2xI4QmmTTW4D1339sNXP1VwOKtxS-K7AaQwSlf4,2873
|
|
48
48
|
rucio/client/uploadclient.py,sha256=pXsgzdQXDC8hcyA2lHvHkyrz1gCNsOADJuqS-gfLTFQ,72217
|
|
49
49
|
rucio/common/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
@@ -52,14 +52,14 @@ rucio/common/cache.py,sha256=oa1WCodXpsmHzM-LJoYL7wQHw7VMU5I0g3TBg-VzEfo,3389
|
|
|
52
52
|
rucio/common/checksum.py,sha256=nSqjY8TdDGohpAzcEM2fjv4FPdOKmKr_3U27HalKkoY,5254
|
|
53
53
|
rucio/common/client.py,sha256=vHJ1gnHRBiXC2ZPfSgYPlsdJi0DbvwWDdHHMEOVgBvU,3129
|
|
54
54
|
rucio/common/config.py,sha256=69AhxgP9SXXrlaTqlOCQiaiqGqHLhSfhRFasroGfDdc,24402
|
|
55
|
-
rucio/common/constants.py,sha256=
|
|
55
|
+
rucio/common/constants.py,sha256=IdxXRvIltiJWz5qxxqpXZC1xum458-czxuot3PCtRXU,8535
|
|
56
56
|
rucio/common/constraints.py,sha256=MrdiAwKyoaZGfspUWX_53XS2790nXMSMg1JYmTO_ciQ,726
|
|
57
|
-
rucio/common/didtype.py,sha256=
|
|
58
|
-
rucio/common/exception.py,sha256=
|
|
57
|
+
rucio/common/didtype.py,sha256=gk9Ewoh4wkeguouUNjAm-eS1PSDdPnkgxPXwKd4hm4U,8585
|
|
58
|
+
rucio/common/exception.py,sha256=kXltk7Zujf55L3h3v6iP0yfHXJIphbS7H67OS610Aig,37248
|
|
59
59
|
rucio/common/extra.py,sha256=IE01275vTJobyNiYbptU9NmsUl2Ga_92FSoOODV8Qfk,1054
|
|
60
60
|
rucio/common/logging.py,sha256=_G1QDFpPLghz2VXOjdhC7j-TtZBxmPJsyJtztW7mf68,15874
|
|
61
61
|
rucio/common/pcache.py,sha256=V2OnO4h4v5yaxWT9T9DMJpm-2rLalBzzaqlUWUq5x4c,47097
|
|
62
|
-
rucio/common/plugins.py,sha256=
|
|
62
|
+
rucio/common/plugins.py,sha256=SdPR8b7zpUJN2wMBnigG3_IJ9PgK8cfzkTSmpPnY2n8,9943
|
|
63
63
|
rucio/common/policy.py,sha256=4i7SHyUpWxagS9nI72nBpWyfvYfz_aH6GH4lFMtDARo,3546
|
|
64
64
|
rucio/common/stomp_utils.py,sha256=3GTiRTJ0roe5OX_wgkVwOJYAIhGgYbhiROHc2M8LQT8,5414
|
|
65
65
|
rucio/common/stopwatch.py,sha256=_9zxoLjr8A0wUDJsljK4vZNDCI-dIOgpcxXiCNVJcHU,1641
|
|
@@ -79,9 +79,9 @@ rucio/core/account_counter.py,sha256=DjxaZfyXKY4VJ7fQgLywkaB4882PIX27f9FXRv0UdbM
|
|
|
79
79
|
rucio/core/account_limit.py,sha256=aKIiO8Sss_8m4n-cAkKqCXUanMz8fE7Lqod65NbY-Rc,16341
|
|
80
80
|
rucio/core/authentication.py,sha256=r4MJYmr7T8iJZw4CB3ziLv9s6MESh5gUgGJMrnQyIP4,21041
|
|
81
81
|
rucio/core/config.py,sha256=aWLyc8iVcRLYYjxQzPGaoBKt2eKHNX06XVCRGmyZ7uY,14197
|
|
82
|
-
rucio/core/credential.py,sha256=
|
|
83
|
-
rucio/core/did.py,sha256=
|
|
84
|
-
rucio/core/dirac.py,sha256=
|
|
82
|
+
rucio/core/credential.py,sha256=8eRZpqHuC7Kst0fr7RUQYfLg_8xmZdJlieURCn8UPRg,8451
|
|
83
|
+
rucio/core/did.py,sha256=FShGqXrdaPf2PPLZ4hfYVw49Qp3BpFFLQD3MaTNsCwA,116382
|
|
84
|
+
rucio/core/dirac.py,sha256=TqSHsSW7WCdxXQTZErubiA03gPKRWoaMNRZ3s-vOTuI,9880
|
|
85
85
|
rucio/core/distance.py,sha256=3WtfWONxWTopcRf9lsz01XsWikwF8Ga76z9g3Im7bBw,6052
|
|
86
86
|
rucio/core/exporter.py,sha256=sk6Qjrs5Rki_h1-zd8T_6834YZretoHIMuGy3Lu2gHU,1931
|
|
87
87
|
rucio/core/heartbeat.py,sha256=xesayFiO_mFsfvbmaGf0pLyeCTW0dZ4LHypOnDhzlbk,11380
|
|
@@ -95,32 +95,32 @@ rucio/core/monitor.py,sha256=ABVRtfmwroWYEku53jtLy5ByKONLIid3SuP6Yry7sSY,16169
|
|
|
95
95
|
rucio/core/naming_convention.py,sha256=Q_P1ipmynGNgjB1onEPI1gZoLYOUvf49B4dEWTDYj1o,6214
|
|
96
96
|
rucio/core/nongrid_trace.py,sha256=wAEC5KBFby0rB4ihKTNMnHyLkLwyedA3xmvCCwBWtW8,5206
|
|
97
97
|
rucio/core/oidc.py,sha256=olsC-KhO3UninRCAIxykDkABhMCZID-13mxX1JUa6T8,70584
|
|
98
|
-
rucio/core/opendata.py,sha256=
|
|
98
|
+
rucio/core/opendata.py,sha256=4LjObD5QkoXmz4H-gxJUtpXugppYE_py74jM2B9uN9c,30591
|
|
99
99
|
rucio/core/quarantined_replica.py,sha256=MKKn1QF5kkXLB-z_K_DJoVtksE1sSXS_WJ44NekcaZc,8323
|
|
100
100
|
rucio/core/replica.py,sha256=ZK_FBuyapSpH_hpd5aGsU30hHUXCChm15jTjM3EfmYs,185486
|
|
101
101
|
rucio/core/replica_sorter.py,sha256=ONfs4G6fo0JGZ70pqDKT4k7CSRxW82LhCZnQHskJhaU,14993
|
|
102
102
|
rucio/core/request.py,sha256=Bgb3dGrp9aZ6QBdz8K0vUtqGZO_6GtksfDFjXzhyygE,120556
|
|
103
|
-
rucio/core/rse.py,sha256=
|
|
103
|
+
rucio/core/rse.py,sha256=0on9FxT-NjG2Ivqmhf-0aBODV2F9Ymmm2FYlRjQIkU0,71249
|
|
104
104
|
rucio/core/rse_counter.py,sha256=5N3k5X6p-4PkDsNz-8TXnAWeU2oj8ti4epRDLJj3FWM,6093
|
|
105
105
|
rucio/core/rse_expression_parser.py,sha256=txTYmddSOqdFxia_wkLXZMEtw2SoyOWnhOmzbhtdbsk,15511
|
|
106
106
|
rucio/core/rse_selector.py,sha256=Of9cWR0JA5Su00zn8_KZwHrtKN9YbkzcfGzsWsLhL3I,14596
|
|
107
107
|
rucio/core/rule.py,sha256=na9ta7d30MDd3REpEGwDAwyKID7E41wVW7nwZQSflKI,211550
|
|
108
|
-
rucio/core/rule_grouping.py,sha256=
|
|
109
|
-
rucio/core/scope.py,sha256=
|
|
108
|
+
rucio/core/rule_grouping.py,sha256=atx1hwl7QT8pAXr3EYacEv0ERQi9Djqf-ch9ryvJ70w,96065
|
|
109
|
+
rucio/core/scope.py,sha256=KGA0hSGxxFgFk7lIm1CT-uyOCyeoRoLfqZA4yaE_-0k,7091
|
|
110
110
|
rucio/core/subscription.py,sha256=i1zgc2FnceDgrkYzjMFRTTDvWlFssvv_qHgnkJyR_NY,16407
|
|
111
111
|
rucio/core/topology.py,sha256=qErGVrTv4R77G_h8u4bW3lXEw8mL7sZo1KQR5lLW0dw,19282
|
|
112
112
|
rucio/core/trace.py,sha256=eTuYAQtDB-z20qs5_AUD6RLA9Hk0TZH5beKJzRQYtUY,13602
|
|
113
113
|
rucio/core/transfer.py,sha256=9u2Qwk5Os9DhrYMDHT4JpGHsaPilPVxMGMJ2h2-escQ,64840
|
|
114
114
|
rucio/core/vo.py,sha256=SQtW-JObiTQSkJM_3RKz44RrA9vIcsmdbxPsxWMo5cU,5966
|
|
115
115
|
rucio/core/volatile_replica.py,sha256=KvYcu6Lv9EOWxG3Y-yTwVUY5Taq6Zl9CHjRQPiFrYBg,5508
|
|
116
|
-
rucio/core/did_meta_plugins/__init__.py,sha256=
|
|
117
|
-
rucio/core/did_meta_plugins/did_column_meta.py,sha256=
|
|
118
|
-
rucio/core/did_meta_plugins/did_meta_plugin_interface.py,sha256=
|
|
119
|
-
rucio/core/did_meta_plugins/elasticsearch_meta.py,sha256=
|
|
116
|
+
rucio/core/did_meta_plugins/__init__.py,sha256=LtngiK2iCSLeSMlNtnu6Bxl2mXrAE2qjSTZCVIxbw_c,11924
|
|
117
|
+
rucio/core/did_meta_plugins/did_column_meta.py,sha256=3gjqTzd0Uu-HRfFNs3-AxSh_HvHqGIDKCjDqBlv3CYk,22684
|
|
118
|
+
rucio/core/did_meta_plugins/did_meta_plugin_interface.py,sha256=ix2jaCkxVNlW5GHs7tk5394NzvWmkk4m0OG8PXiV9R4,5547
|
|
119
|
+
rucio/core/did_meta_plugins/elasticsearch_meta.py,sha256=g1OuFY9SfYlzO7VGGpo9Nh6ledxs2KyHTAC1L4gi3TQ,15307
|
|
120
120
|
rucio/core/did_meta_plugins/filter_engine.py,sha256=tFRtA1A-T1DNlfffgfZdTJ0LCfukxyisIQy6WgfAi-8,33335
|
|
121
|
-
rucio/core/did_meta_plugins/json_meta.py,sha256=
|
|
122
|
-
rucio/core/did_meta_plugins/mongo_meta.py,sha256=
|
|
123
|
-
rucio/core/did_meta_plugins/postgres_meta.py,sha256=
|
|
121
|
+
rucio/core/did_meta_plugins/json_meta.py,sha256=BfRC-iu__5DxIU4tkDbMl8A9ndkykC-HMd3zWJBdDtI,9666
|
|
122
|
+
rucio/core/did_meta_plugins/mongo_meta.py,sha256=H4M4xsL6WcoNqABOUbMNgZUMlqLBho4SiGS7jSyofpw,8242
|
|
123
|
+
rucio/core/did_meta_plugins/postgres_meta.py,sha256=4mrOYv0Lkh223AOStrNsXzcq2oAKuhlt3ZD44S_c6Ik,14096
|
|
124
124
|
rucio/core/permission/__init__.py,sha256=E7gfKO0T4tFJFckU0Pe0ldjMneFFjORyNPycd5lL-78,5875
|
|
125
125
|
rucio/core/permission/generic.py,sha256=mAxgCTcKL-HKFsA-xcRw5DfYV9xNPfaOBZzSDXiQilI,49901
|
|
126
126
|
rucio/core/permission/generic_multi_vo.py,sha256=nHkPNNixP6bWKSS8tIOJiX_--TL6s8F2TMnobWMnYu8,45653
|
|
@@ -136,7 +136,7 @@ rucio/daemons/auditor/__init__.py,sha256=TjyTpuSuGbnMlxlqjPO_Clvy806RfTQ0IDK987q
|
|
|
136
136
|
rucio/daemons/auditor/hdfs.py,sha256=TjYeVYm6_zrQEu9KPYrrHuPJ9yAYAEwuaPNmJFJEG5k,3071
|
|
137
137
|
rucio/daemons/auditor/srmdumps.py,sha256=BsqWFwSKLhAffVuzWmOX36RgUmAi_o7Tn-GKIy_QFLU,11056
|
|
138
138
|
rucio/daemons/automatix/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
139
|
-
rucio/daemons/automatix/automatix.py,sha256=
|
|
139
|
+
rucio/daemons/automatix/automatix.py,sha256=OkD4Qncy_RvDmBehIWpWTl2cmOrc0n3ca5CAKC8bKnI,10792
|
|
140
140
|
rucio/daemons/badreplicas/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
141
141
|
rucio/daemons/badreplicas/minos.py,sha256=M2CApn8B6qM2ALT9uitApk8QQHlPWV7zgX0WJo9pQKo,16448
|
|
142
142
|
rucio/daemons/badreplicas/minos_temporary_expiration.py,sha256=TYT9mJ0D38tAYeTVRNWKBkh2lCgdhBM3e8HEPTnkQ14,8798
|
|
@@ -192,7 +192,7 @@ rucio/daemons/undertaker/undertaker.py,sha256=b8HiFkk7YY4fxORQ7MgmDVADZvvHlHiKrc
|
|
|
192
192
|
rucio/db/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
193
193
|
rucio/db/sqla/__init__.py,sha256=nVXdqNgRs6AXgN7cVM3MAdHZZDX1l0FdVEabWEtMbbw,2506
|
|
194
194
|
rucio/db/sqla/constants.py,sha256=F0MhQNm7-vgDzXXF7SzVLIRu_JhyfLUdTixXqUX-Seo,4396
|
|
195
|
-
rucio/db/sqla/models.py,sha256=
|
|
195
|
+
rucio/db/sqla/models.py,sha256=aGP-Fb1aF4bKqtLfR3ZxNoy34UbqZz6jnB3Ln7YNwBI,115577
|
|
196
196
|
rucio/db/sqla/sautils.py,sha256=X4gHWCkqvDlJEEHmhO2txV94__kvS8M9Hb1aJvbLaUg,2000
|
|
197
197
|
rucio/db/sqla/session.py,sha256=iu00PirtSQYQe1671lAZTqq8xv_J4CTPHPi8sKa_86A,19586
|
|
198
198
|
rucio/db/sqla/types.py,sha256=VBCDsSozh2mUNwmmBNbA5xZHkgU0FMXwRBmsc33YUtE,6090
|
|
@@ -330,13 +330,13 @@ rucio/db/sqla/migrate_repo/versions/fb28a95fe288_add_replicas_rse_id_tombstone_i
|
|
|
330
330
|
rucio/db/sqla/migrate_repo/versions/fe1a65b176c9_set_third_party_copy_read_and_write_.py,sha256=ax1wpzHyCBVb42fZTiPplcB7XiI7MgdNxuvfQFwpIXw,1896
|
|
331
331
|
rucio/db/sqla/migrate_repo/versions/fe8ea2fa9788_added_third_party_copy_column_to_rse_.py,sha256=27lEJJERe1LwRZoHu3gw-Lsiiu_2W2lYKR_bzNOEitQ,1599
|
|
332
332
|
rucio/gateway/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
333
|
-
rucio/gateway/account.py,sha256=
|
|
333
|
+
rucio/gateway/account.py,sha256=l2dfhRAWmrn9KNwz-z0WGeiIBnzxhRSG5ExPF8kohps,10538
|
|
334
334
|
rucio/gateway/account_limit.py,sha256=488y7W5k_Kl28-yjbMzEbik3RHVkCt5jukax-XsaC3Q,12409
|
|
335
335
|
rucio/gateway/authentication.py,sha256=XQHiVWNolnFcT6tDjmwhrJLihWe22lH17ZZHHss7uu4,14057
|
|
336
336
|
rucio/gateway/config.py,sha256=5Ev9uK2t0cSiqcgxr0WLgT0beSyVmWPtF0290z1CEnk,8023
|
|
337
337
|
rucio/gateway/credential.py,sha256=hwEQTJeLZHUHZ5lNrUkWBsX1BkqT_G9kMwvWVo8ErvQ,2565
|
|
338
|
-
rucio/gateway/did.py,sha256=
|
|
339
|
-
rucio/gateway/dirac.py,sha256=
|
|
338
|
+
rucio/gateway/did.py,sha256=4kOAHRuKeuQOey2gq07fSgRWVIvlwY7ndndDgxNlHDE,32716
|
|
339
|
+
rucio/gateway/dirac.py,sha256=31aq2sFzsG6E4WpoOjcez8YHzkF3vxs9JOW7d5ZYBKg,3794
|
|
340
340
|
rucio/gateway/exporter.py,sha256=ZgAxGvnG_lcfcQx9fQ9X3vfEGu3OXD8H9liqOULN7hM,2301
|
|
341
341
|
rucio/gateway/heartbeat.py,sha256=14CxHlkaXedKnWNVj9G5M9s41MQd9daoP4kXQJSKqP4,3000
|
|
342
342
|
rucio/gateway/identity.py,sha256=-fEtersM6qTzR2lYlCtV-PHSE2Uz6mWW70CsKsQ2oEE,7377
|
|
@@ -344,14 +344,14 @@ rucio/gateway/importer.py,sha256=77ZuiN5C2xq3favb9ZPfZlKjWV8gsBqwhwIGE4A4DoQ,185
|
|
|
344
344
|
rucio/gateway/lifetime_exception.py,sha256=Uec2hsX1HFieNX672bR06REHg0m3Ms_883NIcFCdmmU,4183
|
|
345
345
|
rucio/gateway/lock.py,sha256=4Nx2rc1UsDRgB7pSboqEivBWAwOXA3UxCJ0mEon_OXM,4956
|
|
346
346
|
rucio/gateway/meta_conventions.py,sha256=KJOwoDfhHU2KIqrw-Lpq6rOYesXMNO1rX4OOaOFFMhQ,3747
|
|
347
|
-
rucio/gateway/opendata.py,sha256=
|
|
347
|
+
rucio/gateway/opendata.py,sha256=RvtbLZseYTOZiB0Z08TvzguT4jrL_nICWX67RgvR9ZY,6375
|
|
348
348
|
rucio/gateway/permission.py,sha256=qQXzsVOfvvFWQpcg_e7BQVF25zW-Jq5wOrWENVp5wwM,2906
|
|
349
349
|
rucio/gateway/quarantined_replica.py,sha256=fzeIOqCP387tb8TtYlkmua0HJ9QXAf-fCNLV582Jk0k,2829
|
|
350
350
|
rucio/gateway/replica.py,sha256=NNFmizu1RwESK4xbBjAq-V-IhsRZmqdSTCtCy7-eLjQ,25705
|
|
351
|
-
rucio/gateway/request.py,sha256=
|
|
351
|
+
rucio/gateway/request.py,sha256=dIK5D_XZdOMi7pH65rexB0TbNizrpQpSK3tDDEFBbh8,12118
|
|
352
352
|
rucio/gateway/rse.py,sha256=8IPAwWUM0ngvDMFHJeZPp_hwEE2evu5KcOWOs82VQzM,24539
|
|
353
353
|
rucio/gateway/rule.py,sha256=S9qa5EwB8mSQyM833T3j3RKlC2b7V6MLflvlpF1Vk9U,18135
|
|
354
|
-
rucio/gateway/scope.py,sha256=
|
|
354
|
+
rucio/gateway/scope.py,sha256=B-_EIz5oxuDIYt284z5o5CzmDcuoikD0_HUB9j9594k,4353
|
|
355
355
|
rucio/gateway/subscription.py,sha256=vPbYBdzGwz8-bRKC1MXCZK6CcraxDFcpoSbS1OzgUzM,11053
|
|
356
356
|
rucio/gateway/trace.py,sha256=rsLD4fx3O_mxQJY2RtVjHO9FpwMc9jzpmxNdi7VPGBk,1903
|
|
357
357
|
rucio/gateway/vo.py,sha256=6JjIQE4zp-JNq1VV3Ojjdlfc-hNcSVWanVszXHVs2KA,5005
|
|
@@ -374,7 +374,7 @@ rucio/rse/protocols/rfio.py,sha256=8TJ_60pWH7ragdNG9INz_oOK1LXLc-C43iENGAKfOEg,5
|
|
|
374
374
|
rucio/rse/protocols/srm.py,sha256=9QFSORsXT-CR_6tDqyXCAQ5BzZifqaDItCYGIlTQGQI,14699
|
|
375
375
|
rucio/rse/protocols/ssh.py,sha256=pHPAQx2bPNkMrtqbCqDfq7OXoy7XphQ-i2Stzdvnf1k,17506
|
|
376
376
|
rucio/rse/protocols/storm.py,sha256=Z4fzklxG-x70A0Lugg1jE1RicwCSeF27iz0MXO-4to0,7864
|
|
377
|
-
rucio/rse/protocols/webdav.py,sha256=
|
|
377
|
+
rucio/rse/protocols/webdav.py,sha256=axO_a4Z4nO6hlSAU1kUICXwUH-D0MrBYvdH3cHlFJuY,24978
|
|
378
378
|
rucio/rse/protocols/xrootd.py,sha256=oJHueVR44dcW5nkg8jCbr9PetV9UIti3C0tka_m7yIk,12604
|
|
379
379
|
rucio/tests/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
380
380
|
rucio/tests/common.py,sha256=oPffRftoWH3Pxv27XscwLl2_o7I4AHNTpKjsSyb9-RE,11925
|
|
@@ -383,7 +383,7 @@ rucio/transfertool/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHG
|
|
|
383
383
|
rucio/transfertool/bittorrent.py,sha256=2gPRmopyav8IXAtHcsC5oUcjZtmNQ8prUMKzFcCPUaE,8378
|
|
384
384
|
rucio/transfertool/bittorrent_driver.py,sha256=3Txv9hzjl2ICop_MjVswLteUzPDECS7sqikvNFzMoRs,1694
|
|
385
385
|
rucio/transfertool/bittorrent_driver_qbittorrent.py,sha256=8L4_K8ZdKS-kML8nLuZSzGZ6PMNtYdxjjO1QJD5C0o8,4987
|
|
386
|
-
rucio/transfertool/fts3.py,sha256=
|
|
386
|
+
rucio/transfertool/fts3.py,sha256=xsqzs8NKdWVdsnGfr4RVWdgfxKU1cbBil4prZdOmbm8,77558
|
|
387
387
|
rucio/transfertool/fts3_plugins.py,sha256=FOyS-O1EiPU2eTWZ0kZY-vPjK61w1Xmw8uUqr1UFobE,6286
|
|
388
388
|
rucio/transfertool/globus.py,sha256=JgkkbgBQdmsloGsaAeGm5B_yUQDNabDiZb1hie6teT8,7716
|
|
389
389
|
rucio/transfertool/globus_library.py,sha256=SA2ryvmxieXjQ8L_UcUFILJ26pySzmNMCkokxbWDcI0,8411
|
|
@@ -397,98 +397,98 @@ rucio/web/rest/ping.py,sha256=35YpZV7fW1MXz81Di1Wm4YXlq90TMrrda2l3QJy3s4k,1010
|
|
|
397
397
|
rucio/web/rest/flaskapi/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
398
398
|
rucio/web/rest/flaskapi/authenticated_bp.py,sha256=Q5yRLRAfu091GVaeiXKhKd5FNdA8DlClXWDv8562TW8,999
|
|
399
399
|
rucio/web/rest/flaskapi/v1/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
400
|
-
rucio/web/rest/flaskapi/v1/accountlimits.py,sha256=
|
|
401
|
-
rucio/web/rest/flaskapi/v1/accounts.py,sha256=
|
|
402
|
-
rucio/web/rest/flaskapi/v1/archives.py,sha256=
|
|
403
|
-
rucio/web/rest/flaskapi/v1/auth.py,sha256=
|
|
404
|
-
rucio/web/rest/flaskapi/v1/common.py,sha256=
|
|
405
|
-
rucio/web/rest/flaskapi/v1/config.py,sha256=
|
|
406
|
-
rucio/web/rest/flaskapi/v1/credentials.py,sha256=
|
|
407
|
-
rucio/web/rest/flaskapi/v1/dids.py,sha256=
|
|
408
|
-
rucio/web/rest/flaskapi/v1/dirac.py,sha256=
|
|
409
|
-
rucio/web/rest/flaskapi/v1/export.py,sha256=
|
|
410
|
-
rucio/web/rest/flaskapi/v1/heartbeats.py,sha256=
|
|
411
|
-
rucio/web/rest/flaskapi/v1/identities.py,sha256=
|
|
412
|
-
rucio/web/rest/flaskapi/v1/import.py,sha256=
|
|
413
|
-
rucio/web/rest/flaskapi/v1/lifetime_exceptions.py,sha256=
|
|
414
|
-
rucio/web/rest/flaskapi/v1/locks.py,sha256=
|
|
400
|
+
rucio/web/rest/flaskapi/v1/accountlimits.py,sha256=aedDKnAQSOmzyEGae_OBSpKUjKEGF_phOs-SJbzMeOQ,8228
|
|
401
|
+
rucio/web/rest/flaskapi/v1/accounts.py,sha256=sr8YnXzFYi_JYnazLqI4IuFFgfLvwOeBZGTLczW4Io0,38657
|
|
402
|
+
rucio/web/rest/flaskapi/v1/archives.py,sha256=6GsoEhFcYlcMHcMbxJBsTbmINvS-3dZVw20ko0fe-08,3630
|
|
403
|
+
rucio/web/rest/flaskapi/v1/auth.py,sha256=depVd7KD8SSjBXzKYxhad3PDJG4rEAT1SG7e0EmK6vE,64403
|
|
404
|
+
rucio/web/rest/flaskapi/v1/common.py,sha256=8LBc75xLRX8nRAjefvBaA2M5SvvI20ozLTsFf04DBMA,18765
|
|
405
|
+
rucio/web/rest/flaskapi/v1/config.py,sha256=VRd_OwgPbTIr39snmRaYdbaA2KzQ7lI0ylV4bOODiuU,11994
|
|
406
|
+
rucio/web/rest/flaskapi/v1/credentials.py,sha256=brfQmnxrQ7wLcTCJChJ20ZYnn3glJmbtgEKBynbkXCg,8219
|
|
407
|
+
rucio/web/rest/flaskapi/v1/dids.py,sha256=f6d946c7Zi9CcpGoMf2BFWlAil2QMVkVQVm4PMuTefE,94767
|
|
408
|
+
rucio/web/rest/flaskapi/v1/dirac.py,sha256=ZJZO9XvtDjpKesuBDjCrobl25Vm3Azrf81DprGmXs1Y,4790
|
|
409
|
+
rucio/web/rest/flaskapi/v1/export.py,sha256=QnF4gW_tZeNLplbM9Cnxju2y7YGD3I3K2pWCF5L0Ra8,2737
|
|
410
|
+
rucio/web/rest/flaskapi/v1/heartbeats.py,sha256=1vBAP4KiF36B7ztmWpVuwO5DbMTY80a1pLx-pBeNZB0,4738
|
|
411
|
+
rucio/web/rest/flaskapi/v1/identities.py,sha256=wvI4zXAWeXxWEG2ngEbHQwJ1pHbWwjhu05pEgiT-gns,8988
|
|
412
|
+
rucio/web/rest/flaskapi/v1/import.py,sha256=DsAGdncI--WgezMz_8dXTluV0Vf76QUja6Yic-XqIjQ,5365
|
|
413
|
+
rucio/web/rest/flaskapi/v1/lifetime_exceptions.py,sha256=owEPzetKiHdgAsP3YVvL_5UslHcxCtrcIzgLavWPuDg,12229
|
|
414
|
+
rucio/web/rest/flaskapi/v1/locks.py,sha256=YDdSPelcJyxZQZpwOtNFFP0BEtwZhfM57V7AEmD_Ad8,13208
|
|
415
415
|
rucio/web/rest/flaskapi/v1/main.py,sha256=PIU3vZP_yYfnYALZOtBkX3uNZj6ylJB1Jm_m_Ag7XgI,3143
|
|
416
|
-
rucio/web/rest/flaskapi/v1/meta_conventions.py,sha256=
|
|
417
|
-
rucio/web/rest/flaskapi/v1/metrics.py,sha256
|
|
418
|
-
rucio/web/rest/flaskapi/v1/nongrid_traces.py,sha256=
|
|
419
|
-
rucio/web/rest/flaskapi/v1/opendata.py,sha256=
|
|
420
|
-
rucio/web/rest/flaskapi/v1/opendata_public.py,sha256=
|
|
421
|
-
rucio/web/rest/flaskapi/v1/ping.py,sha256=
|
|
422
|
-
rucio/web/rest/flaskapi/v1/redirect.py,sha256=
|
|
423
|
-
rucio/web/rest/flaskapi/v1/replicas.py,sha256=
|
|
424
|
-
rucio/web/rest/flaskapi/v1/requests.py,sha256=
|
|
425
|
-
rucio/web/rest/flaskapi/v1/rses.py,sha256=
|
|
426
|
-
rucio/web/rest/flaskapi/v1/rules.py,sha256=
|
|
427
|
-
rucio/web/rest/flaskapi/v1/scopes.py,sha256=
|
|
428
|
-
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=
|
|
429
|
-
rucio/web/rest/flaskapi/v1/traces.py,sha256=
|
|
416
|
+
rucio/web/rest/flaskapi/v1/meta_conventions.py,sha256=Rk5oJycBs8nrFHEroQ3uwUawBbAH-GSxCghREPyJ6sY,7424
|
|
417
|
+
rucio/web/rest/flaskapi/v1/metrics.py,sha256=50I80QW-hu09gvHQbXfFV_FrG5YTBdKv6sbL-g_O4co,1309
|
|
418
|
+
rucio/web/rest/flaskapi/v1/nongrid_traces.py,sha256=ZAukcThkL3Gtw1E4vbdtIbPhwShCAvN-VVVoHtNl9Es,3210
|
|
419
|
+
rucio/web/rest/flaskapi/v1/opendata.py,sha256=wOfpuEjRNclnwgmzu8D3uuZi65YssY4dqDqWNPuVC5o,15511
|
|
420
|
+
rucio/web/rest/flaskapi/v1/opendata_public.py,sha256=NpjiRDCXf1EhjpTvxQAfXPWULwDtZbYr5keCZ76Vp0M,5297
|
|
421
|
+
rucio/web/rest/flaskapi/v1/ping.py,sha256=SxWLS7VxWxKi288DOhmzR-fHm8G1hrjkAqBqpsdqYsE,3175
|
|
422
|
+
rucio/web/rest/flaskapi/v1/redirect.py,sha256=GNFKNlfrZkWzq_CxVDF0teovGv0tYjlCA4Y9In3tLj0,13644
|
|
423
|
+
rucio/web/rest/flaskapi/v1/replicas.py,sha256=j9HXiF5ejTmpmYeghFUkDp3SfG3VtK3rhcvy6re2ewU,73784
|
|
424
|
+
rucio/web/rest/flaskapi/v1/requests.py,sha256=MiL4XQUBmQJug5VOPcooAEOkE6UTbgeE7JW_4Is6lvY,50689
|
|
425
|
+
rucio/web/rest/flaskapi/v1/rses.py,sha256=PZ21HrfyHxaqcrt0z04Ipkqkqjc5ppfNNnAI5RoZJRE,83551
|
|
426
|
+
rucio/web/rest/flaskapi/v1/rules.py,sha256=XNEPS1kWWsFQ4aQU5pu6XmepTTvQ33euIL69kklQZc4,32600
|
|
427
|
+
rucio/web/rest/flaskapi/v1/scopes.py,sha256=3GYjCQPPoDIZxFnXdKI0zG_oTRxt5Pe4522iQBeowSo,6842
|
|
428
|
+
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=2aIpXBY0xWL281FHW8Qu1dhJgum4XuBQ1DzOx6Jm1bg,24857
|
|
429
|
+
rucio/web/rest/flaskapi/v1/traces.py,sha256=ppCkzBm9iN2pP8Yfpq73ZnCrcSXB7TUZiJkj5Wgy-hg,5824
|
|
430
430
|
rucio/web/rest/flaskapi/v1/types.py,sha256=kY-nml_En9zwkKu9TEYwEZGaF2NJ09gN2IUY7h9rp68,799
|
|
431
|
-
rucio/web/rest/flaskapi/v1/vos.py,sha256=
|
|
431
|
+
rucio/web/rest/flaskapi/v1/vos.py,sha256=ICslqYrCXSJx_waMa-kFnMzBif_zNhsiuAhZeQc3P_g,9280
|
|
432
432
|
rucio/web/rest/flaskapi/v1/templates/auth_crash.html,sha256=enhyVliQHlblgCEHvBzAlLxymFySlc42tk87vfWdBo0,2254
|
|
433
433
|
rucio/web/rest/flaskapi/v1/templates/auth_granted.html,sha256=SDsrTCQhwklLu3mDtSTUATnK16QG1T-eWDTDjmv8bn4,2139
|
|
434
|
-
rucio-38.
|
|
435
|
-
rucio-38.
|
|
436
|
-
rucio-38.
|
|
437
|
-
rucio-38.
|
|
438
|
-
rucio-38.
|
|
439
|
-
rucio-38.
|
|
440
|
-
rucio-38.
|
|
441
|
-
rucio-38.
|
|
442
|
-
rucio-38.
|
|
443
|
-
rucio-38.
|
|
444
|
-
rucio-38.
|
|
445
|
-
rucio-38.
|
|
446
|
-
rucio-38.
|
|
447
|
-
rucio-38.
|
|
448
|
-
rucio-38.
|
|
449
|
-
rucio-38.
|
|
450
|
-
rucio-38.
|
|
451
|
-
rucio-38.
|
|
452
|
-
rucio-38.
|
|
453
|
-
rucio-38.
|
|
454
|
-
rucio-38.
|
|
455
|
-
rucio-38.
|
|
456
|
-
rucio-38.
|
|
457
|
-
rucio-38.
|
|
458
|
-
rucio-38.
|
|
459
|
-
rucio-38.
|
|
460
|
-
rucio-38.
|
|
461
|
-
rucio-38.
|
|
462
|
-
rucio-38.
|
|
463
|
-
rucio-38.
|
|
464
|
-
rucio-38.
|
|
465
|
-
rucio-38.
|
|
466
|
-
rucio-38.
|
|
467
|
-
rucio-38.
|
|
468
|
-
rucio-38.
|
|
469
|
-
rucio-38.
|
|
470
|
-
rucio-38.
|
|
471
|
-
rucio-38.
|
|
472
|
-
rucio-38.
|
|
473
|
-
rucio-38.
|
|
474
|
-
rucio-38.
|
|
475
|
-
rucio-38.
|
|
476
|
-
rucio-38.
|
|
477
|
-
rucio-38.
|
|
478
|
-
rucio-38.
|
|
479
|
-
rucio-38.
|
|
480
|
-
rucio-38.
|
|
481
|
-
rucio-38.
|
|
482
|
-
rucio-38.
|
|
483
|
-
rucio-38.
|
|
484
|
-
rucio-38.
|
|
485
|
-
rucio-38.
|
|
486
|
-
rucio-38.
|
|
487
|
-
rucio-38.
|
|
488
|
-
rucio-38.
|
|
489
|
-
rucio-38.
|
|
490
|
-
rucio-38.
|
|
491
|
-
rucio-38.
|
|
492
|
-
rucio-38.
|
|
493
|
-
rucio-38.
|
|
494
|
-
rucio-38.
|
|
434
|
+
rucio-38.5.0.data/data/rucio/requirements.server.txt,sha256=0tq4Oa50x-KzrCU5s2P8074foEcGzSNxaSsrQr_os8k,6011
|
|
435
|
+
rucio-38.5.0.data/data/rucio/etc/alembic.ini.template,sha256=4eZJWGyy_-lzZoIhQNRDVGqkALTe0i7Em4wkI4ocVvw,1781
|
|
436
|
+
rucio-38.5.0.data/data/rucio/etc/alembic_offline.ini.template,sha256=NLswPNzUFLVm2l4V4gzWcUpbLNLMnYFRttyVIGXsDaM,1939
|
|
437
|
+
rucio-38.5.0.data/data/rucio/etc/globus-config.yml.template,sha256=ADOplXW10bO5KZVYRavwKgNaDR0VmdJ3gVbINeqoSIA,96
|
|
438
|
+
rucio-38.5.0.data/data/rucio/etc/ldap.cfg.template,sha256=2n-Exv81toCDZ6OzuNfMa71OoiLTdCSjWhkzCfSN3eM,806
|
|
439
|
+
rucio-38.5.0.data/data/rucio/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
|
|
440
|
+
rucio-38.5.0.data/data/rucio/etc/rucio.cfg.atlas.client.template,sha256=aHP1oX9m5yA8xVTTT2Hz6AyOYu92-Bcd5LF0i3AZRQw,1350
|
|
441
|
+
rucio-38.5.0.data/data/rucio/etc/rucio.cfg.template,sha256=ziIlTeKz8Qs55VDznjjnj5gRg0RSYegjLJdKZJfrIZg,7976
|
|
442
|
+
rucio-38.5.0.data/data/rucio/etc/rucio_multi_vo.cfg.template,sha256=-nwEohnrOioXc-hUyV7YHM-C5RFah1JBR3MUucvtTfA,6899
|
|
443
|
+
rucio-38.5.0.data/data/rucio/etc/mail_templates/rule_approval_request.tmpl,sha256=MTrB-IQEFE6TJnkwXjLxlUIc4afHmmrdQDC1S5og_dM,1210
|
|
444
|
+
rucio-38.5.0.data/data/rucio/etc/mail_templates/rule_approved_admin.tmpl,sha256=HxYNm7EKG9cMNkwUNPgZUC7o0Q9-DTINh1JtGtHOYUg,105
|
|
445
|
+
rucio-38.5.0.data/data/rucio/etc/mail_templates/rule_approved_user.tmpl,sha256=R4rssZ2hE8wcYPmAyc-UDpO5SPhMLZGNuYz6pvLjPVc,499
|
|
446
|
+
rucio-38.5.0.data/data/rucio/etc/mail_templates/rule_denied_admin.tmpl,sha256=feXJ3pZynlESBuPoe_y8amB84UQnLaP6SHtRk3cn7ZA,120
|
|
447
|
+
rucio-38.5.0.data/data/rucio/etc/mail_templates/rule_denied_user.tmpl,sha256=O054th_sVqZTFUeC3Gg_Qe8CrXQb-bxJhMaO48VMzzU,493
|
|
448
|
+
rucio-38.5.0.data/data/rucio/etc/mail_templates/rule_ok_notification.tmpl,sha256=EiT0KucfIKYnIN5XO9XawzZAJSVRYlza5sn8VloyBy4,546
|
|
449
|
+
rucio-38.5.0.data/data/rucio/tools/bootstrap.py,sha256=iI0Ue2mrRJdjFITm93DLHUBxDb_yfEoMUDpgO5Bqkhw,1259
|
|
450
|
+
rucio-38.5.0.data/data/rucio/tools/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
|
|
451
|
+
rucio-38.5.0.data/data/rucio/tools/reset_database.py,sha256=ZDXVWhIck_QeIi6F7X2qlPK9kgaCo1DsG4lOj3HA8fo,3449
|
|
452
|
+
rucio-38.5.0.data/scripts/rucio,sha256=f8f5X6O9W2JfUqWiSdsuDROekGt28p9CBvFZropZ-C0,5260
|
|
453
|
+
rucio-38.5.0.data/scripts/rucio-abacus-account,sha256=rT7tgYxl5TMhPlg8gCvUA8NSxbgHdjilV8NJ_QMC5GA,2886
|
|
454
|
+
rucio-38.5.0.data/scripts/rucio-abacus-collection-replica,sha256=HD2acGu8xBDAsKGCA7oLQvcY5SdT1mIQhSrREDV2n_M,1809
|
|
455
|
+
rucio-38.5.0.data/scripts/rucio-abacus-rse,sha256=DoRsYnMzzkH7z6YvWjl40mIgXmq_3-osTPdDAqPjHgA,2633
|
|
456
|
+
rucio-38.5.0.data/scripts/rucio-admin,sha256=AhPO6-fAPviHObhB_Yi7GJXKfjpaH6m0RqxwctBeFlE,4229
|
|
457
|
+
rucio-38.5.0.data/scripts/rucio-atropos,sha256=o6KsmbjxbFgtKWl7gZbmBxBc3gYWax6FkkyfhUDmKbY,3171
|
|
458
|
+
rucio-38.5.0.data/scripts/rucio-auditor,sha256=4ktnrxKXkJTyMKysPc-AE7dDGbsa1e_o8bRDRkiJpT4,6124
|
|
459
|
+
rucio-38.5.0.data/scripts/rucio-automatix,sha256=Lgud3OXVqUcBrPMtTAgSgPE5ZWSr74FBfBh0EoA9-E8,1996
|
|
460
|
+
rucio-38.5.0.data/scripts/rucio-bb8,sha256=TD8P3cMiDB_knZKZcGTQsy8aA7nPQXMC1TNPCyXrsSg,3089
|
|
461
|
+
rucio-38.5.0.data/scripts/rucio-cache-client,sha256=71-xm4MyxEDBlwnlviHsOgF0tx5EbADsPoVpj_DJDkA,5276
|
|
462
|
+
rucio-38.5.0.data/scripts/rucio-cache-consumer,sha256=5mCXRQWwAww3aabTMQh-U9HgHFkCJf3VpTHdk9R-rsU,1348
|
|
463
|
+
rucio-38.5.0.data/scripts/rucio-conveyor-finisher,sha256=mAexgdlj41UOwIQDZ5POU8gTRMuKzaOqhEww6cRV2rI,2333
|
|
464
|
+
rucio-38.5.0.data/scripts/rucio-conveyor-poller,sha256=z2C17x3n_eKdDrL1w1ePJpslkbOw2UMTh5BaOw-__Es,2825
|
|
465
|
+
rucio-38.5.0.data/scripts/rucio-conveyor-preparer,sha256=jlaBQbN8f081ekInQxn3QcNvrQQqedmdjQ6PeEp9JeU,1746
|
|
466
|
+
rucio-38.5.0.data/scripts/rucio-conveyor-receiver,sha256=Tgg6oXQp1G31ZK_7OKh6fLvcO3GdGi55b7xho2I9B74,1669
|
|
467
|
+
rucio-38.5.0.data/scripts/rucio-conveyor-stager,sha256=AaFzBHTahrv5--H16lbpUlXc64hijLL_myakuJ0V-oI,3371
|
|
468
|
+
rucio-38.5.0.data/scripts/rucio-conveyor-submitter,sha256=IMENh4rK8w6KbjZaOD8UJEv5BHdiFDjhfsHmZZK-T80,6738
|
|
469
|
+
rucio-38.5.0.data/scripts/rucio-conveyor-throttler,sha256=5YIuyXE_ezko31YMuQkz-w1oGGYluoL3FP7o50KtoTI,3914
|
|
470
|
+
rucio-38.5.0.data/scripts/rucio-dark-reaper,sha256=GmQAUNmmJKJjeuY7jbQIHvrbdQWRJSlqojMF_6h8j2Y,2532
|
|
471
|
+
rucio-38.5.0.data/scripts/rucio-dumper,sha256=zGfdsamPIUxbnDFDPM6FtqR1d3FH1AdC0gtH1JeLaxU,6729
|
|
472
|
+
rucio-38.5.0.data/scripts/rucio-follower,sha256=GgZPcVlIejOX91VcgbUh7DThYTu3lDe8c1AuCIk85vM,1400
|
|
473
|
+
rucio-38.5.0.data/scripts/rucio-hermes,sha256=i238hHzuv9JNUUPHNcOjnFQSs6BpPmz88t8ZFgS2GxI,1973
|
|
474
|
+
rucio-38.5.0.data/scripts/rucio-judge-cleaner,sha256=iOucH4sil-tu5nibFOSKK3BQUhkXvzAx4E5QGbQGGCs,4726
|
|
475
|
+
rucio-38.5.0.data/scripts/rucio-judge-evaluator,sha256=JrWN2ZatnUig5iWM7Ku4nEspXBjaucOrc8Ic55_OCzc,7458
|
|
476
|
+
rucio-38.5.0.data/scripts/rucio-judge-injector,sha256=d6na_n4H7njpUmJQg2Gc4KlbgK0_xuW5vw3waLReLTQ,1657
|
|
477
|
+
rucio-38.5.0.data/scripts/rucio-judge-repairer,sha256=QHeBySAn1bYS17z5dTfq8o81uEUpqhGVUqe6KWZBVmQ,1661
|
|
478
|
+
rucio-38.5.0.data/scripts/rucio-kronos,sha256=WQQ0izYfdVvmfaaRkqSf4mejL-U86OL5mD5v1t2p6Eg,1770
|
|
479
|
+
rucio-38.5.0.data/scripts/rucio-minos,sha256=-utVl82-xd7zxp4yy1udqCm_MehRP7pU5WDdJ7EFuac,2246
|
|
480
|
+
rucio-38.5.0.data/scripts/rucio-minos-temporary-expiration,sha256=E9G_h__cJNWuEcFDoeBFjzCHqp1swW-ff67M2WpZ3eg,1983
|
|
481
|
+
rucio-38.5.0.data/scripts/rucio-necromancer,sha256=3qGsbLJqoEVyuKYLgpCRoxRexPf-_1ufR_wJYMby9gc,5681
|
|
482
|
+
rucio-38.5.0.data/scripts/rucio-oauth-manager,sha256=qqFyI_L-bHg4R6a3OSgL_RsmosuODykX7HM-u0Mr-nY,2776
|
|
483
|
+
rucio-38.5.0.data/scripts/rucio-reaper,sha256=c0aMDs0N0ubKcl5T5aHunqaBcmIIj6WmERReKTS9di4,3773
|
|
484
|
+
rucio-38.5.0.data/scripts/rucio-replica-recoverer,sha256=vE_8iW0wooL3rSejMtX5SDKZ8jVit1QC86XesGwwsIU,19446
|
|
485
|
+
rucio-38.5.0.data/scripts/rucio-rse-decommissioner,sha256=zXXTq1lPzoI5R012fGWrxXi9VcHZNIfB85EefwQN1kw,2337
|
|
486
|
+
rucio-38.5.0.data/scripts/rucio-storage-consistency-actions,sha256=Mb4GUO1kP7HdiCORhHkYfmfZIhJKp88RBr8TEC19HXo,3906
|
|
487
|
+
rucio-38.5.0.data/scripts/rucio-transmogrifier,sha256=i17F1FTrxharmCWVZpylXSH2Xow2KaxkTr2jzDFn8Rc,3350
|
|
488
|
+
rucio-38.5.0.data/scripts/rucio-undertaker,sha256=JYwGBZC_wdwOPHJKXj_VLipd7G838Eo__43JFNtBors,2775
|
|
489
|
+
rucio-38.5.0.dist-info/licenses/AUTHORS.rst,sha256=FQ5q2_bY3dYKDmEw-8YD-SgPJ4fgnM1XI5wRF5ksQPg,4771
|
|
490
|
+
rucio-38.5.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
491
|
+
rucio-38.5.0.dist-info/METADATA,sha256=BsQlIHZ8MiPC41UWX-26gHyUANr5SVP4AF4hneu6oOI,3300
|
|
492
|
+
rucio-38.5.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
493
|
+
rucio-38.5.0.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
|
|
494
|
+
rucio-38.5.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl
RENAMED
|
File without changes
|
{rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl
RENAMED
|
File without changes
|
{rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl
RENAMED
|
File without changes
|
{rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl
RENAMED
|
File without changes
|
|
File without changes
|
{rucio-38.3.0.data → rucio-38.5.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|