Thu Jul 1 08:40:14 2021 UTC ()
matrix-synapse: update to 1.37.0.

Synapse 1.37.0 (2021-06-29)
===========================

This release deprecates the current spam checker interface. See the [upgrade notes](https://matrix-org.github.io/synapse/develop/upgrade#deprecation-of-the-current-spam-checker-interface) for more information on how to update to the new generic module interface.

This release also removes support for fetching and renewing TLS certificates using the ACME v1 protocol, which has been fully decommissioned by Let's Encrypt on June 1st 2021. Admins previously using this feature should use a [reverse proxy](https://matrix-org.github.io/synapse/develop/reverse_proxy.html) to handle TLS termination, or use an external ACME client (such as [certbot](https://certbot.eff.org/)) to retrieve a certificate and key and provide them to Synapse using the `tls_certificate_path` and `tls_private_key_path` configuration settings.

Synapse 1.37.0rc1 (2021-06-24)
==============================

Features
--------

- Implement "room knocking" as per [MSC2403](https://github.com/matrix-org/matrix-doc/pull/2403). Contributed by @Sorunome and anoa. ([\#6739](https://github.com/matrix-org/synapse/issues/6739), [\#9359](https://github.com/matrix-org/synapse/issues/9359), [\#10167](https://github.com/matrix-org/synapse/issues/10167), [\#10212](https://github.com/matrix-org/synapse/issues/10212), [\#10227](https://github.com/matrix-org/synapse/issues/10227))
- Add experimental support for backfilling history into rooms ([MSC2716](https://github.com/matrix-org/matrix-doc/pull/2716)). ([\#9247](https://github.com/matrix-org/synapse/issues/9247))
- Implement a generic interface for third-party plugin modules. ([\#10062](https://github.com/matrix-org/synapse/issues/10062), [\#10206](https://github.com/matrix-org/synapse/issues/10206))
- Implement config option `sso.update_profile_information` to sync SSO users' profile information with the identity provider each time they login. Currently only displayname is supported. ([\#10108](https://github.com/matrix-org/synapse/issues/10108))
- Ensure that errors during startup are written to the logs and the console. ([\#10191](https://github.com/matrix-org/synapse/issues/10191))

Bugfixes
--------

- Fix a bug introduced in Synapse v1.25.0 that prevented the `ip_range_whitelist` configuration option from working for federation and identity servers. Contributed by @mikure. ([\#10115](https://github.com/matrix-org/synapse/issues/10115))
- Remove a broken import line in Synapse's `admin_cmd` worker. Broke in Synapse v1.33.0. ([\#10154](https://github.com/matrix-org/synapse/issues/10154))
- Fix a bug introduced in Synapse v1.21.0 which could cause `/sync` to return immediately with an empty response. ([\#10157](https://github.com/matrix-org/synapse/issues/10157), [\#10158](https://github.com/matrix-org/synapse/issues/10158))
- Fix a minor bug in the response to `/_matrix/client/r0/user/{user}/openid/request_token` causing `expires_in` to be a float instead of an integer. Contributed by @lukaslihotzki. ([\#10175](https://github.com/matrix-org/synapse/issues/10175))
- Always require users to re-authenticate for dangerous operations: deactivating an account, modifying an account password, and adding 3PIDs. ([\#10184](https://github.com/matrix-org/synapse/issues/10184))
- Fix a bug introduced in Synpase v1.7.2 where remote server count metrics collection would be incorrectly delayed on startup. Found by @heftig. ([\#10195](https://github.com/matrix-org/synapse/issues/10195))
- Fix a bug introduced in Synapse v1.35.1 where an `allow` key of a `m.room.join_rules` event could be applied for incorrect room versions and configurations. ([\#10208](https://github.com/matrix-org/synapse/issues/10208))
- Fix performance regression in responding to user key requests over federation. Introduced in Synapse v1.34.0rc1. ([\#10221](https://github.com/matrix-org/synapse/issues/10221))

Improved Documentation
----------------------

- Add a new guide to decoding request logs. ([\#8436](https://github.com/matrix-org/synapse/issues/8436))
- Mention in the sample homeserver config that you may need to configure max upload size in your reverse proxy. Contributed by @aaronraimist. ([\#10122](https://github.com/matrix-org/synapse/issues/10122))
- Fix broken links in documentation. ([\#10180](https://github.com/matrix-org/synapse/issues/10180))
- Deploy a snapshot of the documentation website upon each new Synapse release. ([\#10198](https://github.com/matrix-org/synapse/issues/10198))

Deprecations and Removals
-------------------------

- The current spam checker interface is deprecated in favour of a new generic modules system. See the [upgrade notes](https://matrix-org.github.io/synapse/develop/upgrade#deprecation-of-the-current-spam-checker-interface) for more information on how to update to the new system. ([\#10062](https://github.com/matrix-org/synapse/issues/10062), [\#10210](https://github.com/matrix-org/synapse/issues/10210), [\#10238](https://github.com/matrix-org/synapse/issues/10238))
- Stop supporting the unstable spaces prefixes from MSC1772. ([\#10161](https://github.com/matrix-org/synapse/issues/10161))
- Remove Synapse's support for automatically fetching and renewing certificates using the ACME v1 protocol. This protocol has been fully turned off by Let's Encrypt for existing installations on June 1st 2021. Admins previously using this feature should use a [reverse proxy](https://matrix-org.github.io/synapse/develop/reverse_proxy.html) to handle TLS termination, or use an external ACME client (such as [certbot](https://certbot.eff.org/)) to retrieve a certificate and key and provide them to Synapse using the `tls_certificate_path` and `tls_private_key_path` configuration settings. ([\#10194](https://github.com/matrix-org/synapse/issues/10194))

Internal Changes
----------------

- Update the database schema versioning to support gradual migration away from legacy tables. ([\#9933](https://github.com/matrix-org/synapse/issues/9933))
- Add type hints to the federation servlets. ([\#10080](https://github.com/matrix-org/synapse/issues/10080))
- Improve OpenTracing for event persistence. ([\#10134](https://github.com/matrix-org/synapse/issues/10134), [\#10193](https://github.com/matrix-org/synapse/issues/10193))
- Clean up the interface for injecting OpenTracing over HTTP. ([\#10143](https://github.com/matrix-org/synapse/issues/10143))
- Limit the number of in-flight `/keys/query` requests from a single device. ([\#10144](https://github.com/matrix-org/synapse/issues/10144))
- Refactor EventPersistenceQueue. ([\#10145](https://github.com/matrix-org/synapse/issues/10145))
- Document `SYNAPSE_TEST_LOG_LEVEL` to see the logger output when running tests. ([\#10148](https://github.com/matrix-org/synapse/issues/10148))
- Update the Complement build tags in GitHub Actions to test currently experimental features. ([\#10155](https://github.com/matrix-org/synapse/issues/10155))
- Add a `synapse_federation_soft_failed_events_total` metric to track how often events are soft failed. ([\#10156](https://github.com/matrix-org/synapse/issues/10156))
- Fetch the corresponding complement branch when performing CI. ([\#10160](https://github.com/matrix-org/synapse/issues/10160))
- Add some developer documentation about boolean columns in database schemas. ([\#10164](https://github.com/matrix-org/synapse/issues/10164))
- Add extra logging fields to better debug where events are being soft failed. ([\#10168](https://github.com/matrix-org/synapse/issues/10168))
- Add debug logging for when we enter and exit `Measure` blocks. ([\#10183](https://github.com/matrix-org/synapse/issues/10183))
- Improve comments in structured logging code. ([\#10188](https://github.com/matrix-org/synapse/issues/10188))
- Update [MSC3083](https://github.com/matrix-org/matrix-doc/pull/3083) support with modifications from the MSC. ([\#10189](https://github.com/matrix-org/synapse/issues/10189))
- Remove redundant DNS lookup limiter. ([\#10190](https://github.com/matrix-org/synapse/issues/10190))
- Upgrade `black` linting tool to 21.6b0. ([\#10197](https://github.com/matrix-org/synapse/issues/10197))
- Expose OpenTracing trace id in response headers. ([\#10199](https://github.com/matrix-org/synapse/issues/10199))

Synapse 1.36.0 (2021-06-15)
===========================

No significant changes.

Synapse 1.36.0rc2 (2021-06-11)
==============================

Bugfixes
--------

- Fix a bug which caused  presence updates to stop working some time after a restart, when using a presence writer worker. Broke in v1.33.0. ([\#10149](https://github.com/matrix-org/synapse/issues/10149))
- Fix a bug when using federation sender worker where it would send out more presence updates than necessary, leading to high resource usage. Broke in v1.33.0. ([\#10163](https://github.com/matrix-org/synapse/issues/10163))
- Fix a bug where Synapse could send the same presence update to a remote twice. ([\#10165](https://github.com/matrix-org/synapse/issues/10165))

Synapse 1.36.0rc1 (2021-06-08)
==============================

Features
--------

- Add new endpoint `/_matrix/client/r0/rooms/{roomId}/aliases` from Client-Server API r0.6.1 (previously [MSC2432](https://github.com/matrix-org/matrix-doc/pull/2432)). ([\#9224](https://github.com/matrix-org/synapse/issues/9224))
- Improve performance of incoming federation transactions in large rooms. ([\#9953](https://github.com/matrix-org/synapse/issues/9953), [\#9973](https://github.com/matrix-org/synapse/issues/9973))
- Rewrite logic around verifying JSON object and fetching server keys to be more performant and use less memory. ([\#10035](https://github.com/matrix-org/synapse/issues/10035))
- Add new admin APIs for unprotecting local media from quarantine. Contributed by @dklimpel. ([\#10040](https://github.com/matrix-org/synapse/issues/10040))
- Add new admin APIs to remove media by media ID from quarantine. Contributed by @dklimpel. ([\#10044](https://github.com/matrix-org/synapse/issues/10044))
- Make reason and score parameters optional for reporting content. Implements [MSC2414](https://github.com/matrix-org/matrix-doc/pull/2414). Contributed by Callum Brown. ([\#10077](https://github.com/matrix-org/synapse/issues/10077))
- Add support for routing more requests to workers. ([\#10084](https://github.com/matrix-org/synapse/issues/10084))
- Report OpenTracing spans for database activity. ([\#10113](https://github.com/matrix-org/synapse/issues/10113), [\#10136](https://github.com/matrix-org/synapse/issues/10136), [\#10141](https://github.com/matrix-org/synapse/issues/10141))
- Significantly reduce memory usage of joining large remote rooms. ([\#10117](https://github.com/matrix-org/synapse/issues/10117))

Bugfixes
--------

- Fixed a bug causing replication requests to fail when receiving a lot of events via federation. ([\#10082](https://github.com/matrix-org/synapse/issues/10082))
- Fix a bug in the `force_tracing_for_users` option introduced in Synapse v1.35 which meant that the OpenTracing spans produced were missing most tags. ([\#10092](https://github.com/matrix-org/synapse/issues/10092))
- Fixed a bug that could cause Synapse to stop notifying application services. Contributed by Willem Mulder. ([\#10107](https://github.com/matrix-org/synapse/issues/10107))
- Fix bug where the server would attempt to fetch the same history in the room from a remote server multiple times in parallel. ([\#10116](https://github.com/matrix-org/synapse/issues/10116))
- Fix a bug introduced in Synapse 1.33.0 which caused replication requests to fail when receiving a lot of very large events via federation. ([\#10118](https://github.com/matrix-org/synapse/issues/10118))
- Fix bug when using workers where pagination requests failed if a remote server returned zero events from `/backfill`. Introduced in 1.35.0. ([\#10133](https://github.com/matrix-org/synapse/issues/10133))

Improved Documentation
----------------------

- Clarify security note regarding hosting Synapse on the same domain as other web applications. ([\#9221](https://github.com/matrix-org/synapse/issues/9221))
- Update CAPTCHA documentation to mention turning off the verify origin feature. Contributed by @aaronraimist. ([\#10046](https://github.com/matrix-org/synapse/issues/10046))
- Tweak wording of database recommendation in `INSTALL.md`. Contributed by @aaronraimist. ([\#10057](https://github.com/matrix-org/synapse/issues/10057))
- Add initial infrastructure for rendering Synapse documentation with mdbook. ([\#10086](https://github.com/matrix-org/synapse/issues/10086))
- Convert the remaining Admin API documentation files to markdown. ([\#10089](https://github.com/matrix-org/synapse/issues/10089))
- Make a link in docs use HTTPS. Contributed by @RhnSharma. ([\#10130](https://github.com/matrix-org/synapse/issues/10130))
- Fix broken link in Docker docs. ([\#10132](https://github.com/matrix-org/synapse/issues/10132))

Deprecations and Removals
-------------------------

- Remove the experimental `spaces_enabled` flag. The spaces features are always available now. ([\#10063](https://github.com/matrix-org/synapse/issues/10063))

Internal Changes
----------------

- Tell CircleCI to build Docker images from `main` branch. ([\#9906](https://github.com/matrix-org/synapse/issues/9906))
- Simplify naming convention for release branches to only include the major and minor version numbers. ([\#10013](https://github.com/matrix-org/synapse/issues/10013))
- Add `parse_strings_from_args` for parsing an array from query parameters. ([\#10048](https://github.com/matrix-org/synapse/issues/10048), [\#10137](https://github.com/matrix-org/synapse/issues/10137))
- Remove some dead code regarding TLS certificate handling. ([\#10054](https://github.com/matrix-org/synapse/issues/10054))
- Remove redundant, unmaintained `convert_server_keys` script. ([\#10055](https://github.com/matrix-org/synapse/issues/10055))
- Improve the error message printed by synctl when synapse fails to start. ([\#10059](https://github.com/matrix-org/synapse/issues/10059))
- Fix GitHub Actions lint for newsfragments. ([\#10069](https://github.com/matrix-org/synapse/issues/10069))
- Update opentracing to inject the right context into the carrier. ([\#10074](https://github.com/matrix-org/synapse/issues/10074))
- Fix up `BatchingQueue` implementation. ([\#10078](https://github.com/matrix-org/synapse/issues/10078))
- Log method and path when dropping request due to size limit. ([\#10091](https://github.com/matrix-org/synapse/issues/10091))
- In Github Actions workflows, summarize the Sytest results in an easy-to-read format. ([\#10094](https://github.com/matrix-org/synapse/issues/10094))
- Make `/sync` do fewer state resolutions. ([\#10102](https://github.com/matrix-org/synapse/issues/10102))
- Add missing type hints to the admin API servlets. ([\#10105](https://github.com/matrix-org/synapse/issues/10105))
- Improve opentracing annotations for `Notifier`. ([\#10111](https://github.com/matrix-org/synapse/issues/10111))
- Enable Prometheus metrics for the jaeger client library. ([\#10112](https://github.com/matrix-org/synapse/issues/10112))
- Work to improve the responsiveness of `/sync` requests. ([\#10124](https://github.com/matrix-org/synapse/issues/10124))
- OpenTracing: use a consistent name for background processes. ([\#10135](https://github.com/matrix-org/synapse/issues/10135))


(wiz)
diff -r1.27 -r1.28 pkgsrc/chat/matrix-synapse/Makefile
diff -r1.13 -r1.14 pkgsrc/chat/matrix-synapse/PLIST
diff -r1.18 -r1.19 pkgsrc/chat/matrix-synapse/distinfo

cvs diff -r1.27 -r1.28 pkgsrc/chat/matrix-synapse/Makefile (switch to unified diff)

--- pkgsrc/chat/matrix-synapse/Makefile 2021/06/06 10:12:20 1.27
+++ pkgsrc/chat/matrix-synapse/Makefile 2021/07/01 08:40:13 1.28
@@ -1,88 +1,87 @@ @@ -1,88 +1,87 @@
1# $NetBSD: Makefile,v 1.27 2021/06/06 10:12:20 js Exp $ 1# $NetBSD: Makefile,v 1.28 2021/07/01 08:40:13 wiz Exp $
2 2
3DISTNAME= matrix-synapse-1.35.1 3DISTNAME= matrix-synapse-1.37.0
4PKGREVISION= 2 
5CATEGORIES= chat 4CATEGORIES= chat
6MASTER_SITES= ${MASTER_SITE_GITHUB:=matrix-org/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=matrix-org/}
7EGG_NAME= matrix_synapse-${PKGVERSION_NOREV} 6EGG_NAME= matrix_synapse-${PKGVERSION_NOREV}
8GITHUB_PROJECT= synapse 7GITHUB_PROJECT= synapse
9GITHUB_TAG= v${PKGVERSION_NOREV} 8GITHUB_TAG= v${PKGVERSION_NOREV}
10 9
11MAINTAINER= js@pkgsrc.org 10MAINTAINER= js@pkgsrc.org
12HOMEPAGE= https://github.com/matrix-org/synapse/ 11HOMEPAGE= https://github.com/matrix-org/synapse/
13COMMENT= Reference homeserver for the Matrix decentralised comms protocol 12COMMENT= Reference homeserver for the Matrix decentralised comms protocol
14LICENSE= apache-2.0 13LICENSE= apache-2.0
15 14
16DEPENDS+= ${PYPKGPREFIX}-sqlite3>=0:../../databases/py-sqlite3 15DEPENDS+= ${PYPKGPREFIX}-sqlite3>=0:../../databases/py-sqlite3
17DEPENDS+= ${PYPKGPREFIX}-jsonschema>=2.5.1:../../textproc/py-jsonschema 16DEPENDS+= ${PYPKGPREFIX}-jsonschema>=2.5.1:../../textproc/py-jsonschema
18DEPENDS+= ${PYPKGPREFIX}-frozendict>=1:../../devel/py-frozendict 17DEPENDS+= ${PYPKGPREFIX}-frozendict>=1:../../devel/py-frozendict
19DEPENDS+= ${PYPKGPREFIX}-unpaddedbase64>=1.1.0:../../devel/py-unpaddedbase64 18DEPENDS+= ${PYPKGPREFIX}-unpaddedbase64>=1.1.0:../../devel/py-unpaddedbase64
20DEPENDS+= ${PYPKGPREFIX}-canonicaljson>=1.4.0:../../devel/py-canonicaljson 19DEPENDS+= ${PYPKGPREFIX}-canonicaljson>=1.4.0:../../devel/py-canonicaljson
21DEPENDS+= ${PYPKGPREFIX}-signedjson>=1.1.0:../../security/py-signedjson 20DEPENDS+= ${PYPKGPREFIX}-signedjson>=1.1.0:../../security/py-signedjson
22DEPENDS+= ${PYPKGPREFIX}-nacl>=1.2.1:../../security/py-nacl 21DEPENDS+= ${PYPKGPREFIX}-nacl>=1.2.1:../../security/py-nacl
23DEPENDS+= ${PYPKGPREFIX}-idna>=2.5:../../www/py-idna 22DEPENDS+= ${PYPKGPREFIX}-idna>=2.5:../../www/py-idna
24DEPENDS+= ${PYPKGPREFIX}-service_identity>=18.1.0:../../security/py-service_identity 23DEPENDS+= ${PYPKGPREFIX}-service_identity>=18.1.0:../../security/py-service_identity
25DEPENDS+= ${PYPKGPREFIX}-twisted>=18.9.0:../../net/py-twisted 24DEPENDS+= ${PYPKGPREFIX}-twisted>=18.9.0:../../net/py-twisted
26DEPENDS+= ${PYPKGPREFIX}-treq>=15.1:../../devel/py-treq 25DEPENDS+= ${PYPKGPREFIX}-treq>=15.1:../../devel/py-treq
27DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=16.0.0:../../security/py-OpenSSL 26DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=16.0.0:../../security/py-OpenSSL
28DEPENDS+= ${PYPKGPREFIX}-yaml>=3.11:../../textproc/py-yaml 27DEPENDS+= ${PYPKGPREFIX}-yaml>=3.11:../../textproc/py-yaml
29DEPENDS+= ${PYPKGPREFIX}-asn1>=0.1.9:../../security/py-asn1 28DEPENDS+= ${PYPKGPREFIX}-asn1>=0.1.9:../../security/py-asn1
30DEPENDS+= ${PYPKGPREFIX}-asn1-modules>=0.0.7:../../security/py-asn1-modules 29DEPENDS+= ${PYPKGPREFIX}-asn1-modules>=0.0.7:../../security/py-asn1-modules
31DEPENDS+= ${PYPKGPREFIX}-daemonize>=2.3.1:../../devel/py-daemonize 30DEPENDS+= ${PYPKGPREFIX}-daemonize>=2.3.1:../../devel/py-daemonize
32DEPENDS+= ${PYPKGPREFIX}-bcrypt>=3.1.0:../../security/py-bcrypt 31DEPENDS+= ${PYPKGPREFIX}-bcrypt>=3.1.0:../../security/py-bcrypt
33DEPENDS+= ${PYPKGPREFIX}-sortedcontainers>=1.4.4:../../devel/py-sortedcontainers 32DEPENDS+= ${PYPKGPREFIX}-sortedcontainers>=1.4.4:../../devel/py-sortedcontainers
34DEPENDS+= ${PYPKGPREFIX}-macaroons>=0.13.0:../../devel/py-macaroons 33DEPENDS+= ${PYPKGPREFIX}-macaroons>=0.13.0:../../devel/py-macaroons
35DEPENDS+= ${PYPKGPREFIX}-msgpack>=0.5.2:../../devel/py-msgpack 34DEPENDS+= ${PYPKGPREFIX}-msgpack>=0.5.2:../../devel/py-msgpack
36DEPENDS+= ${PYPKGPREFIX}-phonenumbers>=8.2.0:../../textproc/py-phonenumbers 35DEPENDS+= ${PYPKGPREFIX}-phonenumbers>=8.2.0:../../textproc/py-phonenumbers
37DEPENDS+= ${PYPKGPREFIX}-six>=1.10:../../lang/py-six 36DEPENDS+= ${PYPKGPREFIX}-six>=1.10:../../lang/py-six
38DEPENDS+= ${PYPKGPREFIX}-prometheus_client>=0.8.0:../../net/py-prometheus_client 37DEPENDS+= ${PYPKGPREFIX}-prometheus_client>=0.8.0:../../net/py-prometheus_client
39DEPENDS+= ${PYPKGPREFIX}-attrs>=19.1.0:../../devel/py-attrs 38DEPENDS+= ${PYPKGPREFIX}-attrs>=19.1.0:../../devel/py-attrs
40DEPENDS+= ${PYPKGPREFIX}-netaddr>=0.7.18:../../net/py-netaddr 39DEPENDS+= ${PYPKGPREFIX}-netaddr>=0.7.18:../../net/py-netaddr
41DEPENDS+= ${PYPKGPREFIX}-jinja2>=2.9:../../textproc/py-jinja2 40DEPENDS+= ${PYPKGPREFIX}-jinja2>=2.9:../../textproc/py-jinja2
42DEPENDS+= ${PYPKGPREFIX}-bleach>=1.4.3:../../www/py-bleach 41DEPENDS+= ${PYPKGPREFIX}-bleach>=1.4.3:../../www/py-bleach
43DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=3.7.4:../../devel/py-typing-extensions 42DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=3.7.4:../../devel/py-typing-extensions
44DEPENDS+= ${PYPKGPREFIX}-ijson>=3.0:../../devel/py-ijson 43DEPENDS+= ${PYPKGPREFIX}-ijson>=3.0:../../devel/py-ijson
45DEPENDS+= ${PYPKGPREFIX}-psycopg2>=2.7:../../databases/py-psycopg2 44DEPENDS+= ${PYPKGPREFIX}-psycopg2>=2.7:../../databases/py-psycopg2
46DEPENDS+= ${PYPKGPREFIX}-lxml>=3.5.0:../../textproc/py-lxml 45DEPENDS+= ${PYPKGPREFIX}-lxml>=3.5.0:../../textproc/py-lxml
47 46
48PYTHON_VERSIONED_DEPENDENCIES= Pillow 47PYTHON_VERSIONED_DEPENDENCIES= Pillow
49 48
50USE_LANGUAGES= # none 49USE_LANGUAGES= # none
51USE_TOOLS+= perl:run 50USE_TOOLS+= perl:run
52REPLACE_PERL+= scripts/sync_room_to_group.pl 51REPLACE_PERL+= scripts/sync_room_to_group.pl
53 52
54PKG_SYSCONFSUBDIR= matrix-synapse 53PKG_SYSCONFSUBDIR= matrix-synapse
55 54
56SYNAPSE_USER?= synapse 55SYNAPSE_USER?= synapse
57SYNAPSE_GROUP?= ${SYNAPSE_USER} 56SYNAPSE_GROUP?= ${SYNAPSE_USER}
58SYNAPSE_DATA?= ${VARBASE}/db/matrix-synapse 57SYNAPSE_DATA?= ${VARBASE}/db/matrix-synapse
59BUILD_DEFS+= SYNAPSE_USER SYNAPSE_GROUP SYNAPSE_DATA VARBASE 58BUILD_DEFS+= SYNAPSE_USER SYNAPSE_GROUP SYNAPSE_DATA VARBASE
60 59
61OWN_DIRS_PERMS+= ${SYNAPSE_DATA} ${SYNAPSE_USER} ${SYNAPSE_GROUP} 0770 60OWN_DIRS_PERMS+= ${SYNAPSE_DATA} ${SYNAPSE_USER} ${SYNAPSE_GROUP} 0770
62 61
63PKG_USERS_VARS= SYNAPSE_USER 62PKG_USERS_VARS= SYNAPSE_USER
64PKG_GROUPS_VARS= SYNAPSE_GROUP 63PKG_GROUPS_VARS= SYNAPSE_GROUP
65PKG_GROUPS= ${SYNAPSE_GROUP} 64PKG_GROUPS= ${SYNAPSE_GROUP}
66PKG_USERS= ${SYNAPSE_USER}:${SYNAPSE_GROUP} 65PKG_USERS= ${SYNAPSE_USER}:${SYNAPSE_GROUP}
67PKG_GECOS.${SYNAPSE_USER}= Synapse daemon user 66PKG_GECOS.${SYNAPSE_USER}= Synapse daemon user
68PKG_HOME.${SYNAPSE_USER}= ${SYNAPSE_DATA} 67PKG_HOME.${SYNAPSE_USER}= ${SYNAPSE_DATA}
69PKG_SHELL.${SYNAPSE_USER}= ${NOLOGIN} 68PKG_SHELL.${SYNAPSE_USER}= ${NOLOGIN}
70 69
71RCD_SCRIPTS= matrix-synapse 70RCD_SCRIPTS= matrix-synapse
72 71
73FILES_SUBST+= SYNAPSE_DATA=${SYNAPSE_DATA:Q} 72FILES_SUBST+= SYNAPSE_DATA=${SYNAPSE_DATA:Q}
74FILES_SUBST+= SYNAPSE_USER=${SYNAPSE_USER:Q} 73FILES_SUBST+= SYNAPSE_USER=${SYNAPSE_USER:Q}
75FILES_SUBST+= SYNAPSE_GROUP=${SYNAPSE_GROUP:Q} 74FILES_SUBST+= SYNAPSE_GROUP=${SYNAPSE_GROUP:Q}
76MESSAGE_SUBST+= PYTHONBIN=${PYTHONBIN:Q} 75MESSAGE_SUBST+= PYTHONBIN=${PYTHONBIN:Q}
77MESSAGE_SUBST+= SYNAPSE_DATA=${SYNAPSE_DATA:Q} 76MESSAGE_SUBST+= SYNAPSE_DATA=${SYNAPSE_DATA:Q}
78 77
79SYNAPSE_DEFAULT_CREATOR_PL?= 100 78SYNAPSE_DEFAULT_CREATOR_PL?= 100
80SUBST_CLASSES+= pl 79SUBST_CLASSES+= pl
81SUBST_STAGE.pl= post-patch 80SUBST_STAGE.pl= post-patch
82SUBST_FILES.pl= synapse/handlers/room.py 81SUBST_FILES.pl= synapse/handlers/room.py
83SUBST_VARS.pl= SYNAPSE_DEFAULT_CREATOR_PL 82SUBST_VARS.pl= SYNAPSE_DEFAULT_CREATOR_PL
84BUILD_DEFS+= SYNAPSE_DEFAULT_CREATOR_PL 83BUILD_DEFS+= SYNAPSE_DEFAULT_CREATOR_PL
85 84
86.include "../../lang/python/egg.mk" 85.include "../../lang/python/egg.mk"
87.include "../../lang/python/versioned_dependencies.mk" 86.include "../../lang/python/versioned_dependencies.mk"
88.include "../../mk/bsd.pkg.mk" 87.include "../../mk/bsd.pkg.mk"

cvs diff -r1.13 -r1.14 pkgsrc/chat/matrix-synapse/PLIST (switch to unified diff)

--- pkgsrc/chat/matrix-synapse/PLIST 2021/06/05 15:28:02 1.13
+++ pkgsrc/chat/matrix-synapse/PLIST 2021/07/01 08:40:13 1.14
@@ -1,1779 +1,1780 @@ @@ -1,1779 +1,1780 @@
1@comment $NetBSD: PLIST,v 1.13 2021/06/05 15:28:02 js Exp $ 1@comment $NetBSD: PLIST,v 1.14 2021/07/01 08:40:13 wiz Exp $
2bin/export_signing_key 2bin/export_signing_key
3bin/generate_config 3bin/generate_config
4bin/generate_log_config 4bin/generate_log_config
5bin/generate_signing_key.py 5bin/generate_signing_key.py
6bin/hash_password 6bin/hash_password
7bin/move_remote_media_to_new_store.py 7bin/move_remote_media_to_new_store.py
8bin/register_new_matrix_user 8bin/register_new_matrix_user
9bin/synapse_port_db 9bin/synapse_port_db
10bin/sync_room_to_group.pl 10bin/sync_room_to_group.pl
11bin/synctl 11bin/synctl
12${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 12${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
13${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 13${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
14${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 14${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
15${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 15${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
16${PYSITELIB}/${EGG_INFODIR}/requires.txt 16${PYSITELIB}/${EGG_INFODIR}/requires.txt
17${PYSITELIB}/${EGG_INFODIR}/top_level.txt 17${PYSITELIB}/${EGG_INFODIR}/top_level.txt
18${PYSITELIB}/synapse/__init__.py 18${PYSITELIB}/synapse/__init__.py
19${PYSITELIB}/synapse/__init__.pyc 19${PYSITELIB}/synapse/__init__.pyc
20${PYSITELIB}/synapse/__init__.pyo 20${PYSITELIB}/synapse/__init__.pyo
21${PYSITELIB}/synapse/_scripts/__init__.py 21${PYSITELIB}/synapse/_scripts/__init__.py
22${PYSITELIB}/synapse/_scripts/__init__.pyc 22${PYSITELIB}/synapse/_scripts/__init__.pyc
23${PYSITELIB}/synapse/_scripts/__init__.pyo 23${PYSITELIB}/synapse/_scripts/__init__.pyo
24${PYSITELIB}/synapse/_scripts/register_new_matrix_user.py 24${PYSITELIB}/synapse/_scripts/register_new_matrix_user.py
25${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyc 25${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyc
26${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyo 26${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyo
27${PYSITELIB}/synapse/api/__init__.py 27${PYSITELIB}/synapse/api/__init__.py
28${PYSITELIB}/synapse/api/__init__.pyc 28${PYSITELIB}/synapse/api/__init__.pyc
29${PYSITELIB}/synapse/api/__init__.pyo 29${PYSITELIB}/synapse/api/__init__.pyo
30${PYSITELIB}/synapse/api/auth.py 30${PYSITELIB}/synapse/api/auth.py
31${PYSITELIB}/synapse/api/auth.pyc 31${PYSITELIB}/synapse/api/auth.pyc
32${PYSITELIB}/synapse/api/auth.pyo 32${PYSITELIB}/synapse/api/auth.pyo
33${PYSITELIB}/synapse/api/auth_blocking.py 33${PYSITELIB}/synapse/api/auth_blocking.py
34${PYSITELIB}/synapse/api/auth_blocking.pyc 34${PYSITELIB}/synapse/api/auth_blocking.pyc
35${PYSITELIB}/synapse/api/auth_blocking.pyo 35${PYSITELIB}/synapse/api/auth_blocking.pyo
36${PYSITELIB}/synapse/api/constants.py 36${PYSITELIB}/synapse/api/constants.py
37${PYSITELIB}/synapse/api/constants.pyc 37${PYSITELIB}/synapse/api/constants.pyc
38${PYSITELIB}/synapse/api/constants.pyo 38${PYSITELIB}/synapse/api/constants.pyo
39${PYSITELIB}/synapse/api/errors.py 39${PYSITELIB}/synapse/api/errors.py
40${PYSITELIB}/synapse/api/errors.pyc 40${PYSITELIB}/synapse/api/errors.pyc
41${PYSITELIB}/synapse/api/errors.pyo 41${PYSITELIB}/synapse/api/errors.pyo
42${PYSITELIB}/synapse/api/filtering.py 42${PYSITELIB}/synapse/api/filtering.py
43${PYSITELIB}/synapse/api/filtering.pyc 43${PYSITELIB}/synapse/api/filtering.pyc
44${PYSITELIB}/synapse/api/filtering.pyo 44${PYSITELIB}/synapse/api/filtering.pyo
45${PYSITELIB}/synapse/api/presence.py 45${PYSITELIB}/synapse/api/presence.py
46${PYSITELIB}/synapse/api/presence.pyc 46${PYSITELIB}/synapse/api/presence.pyc
47${PYSITELIB}/synapse/api/presence.pyo 47${PYSITELIB}/synapse/api/presence.pyo
48${PYSITELIB}/synapse/api/ratelimiting.py 48${PYSITELIB}/synapse/api/ratelimiting.py
49${PYSITELIB}/synapse/api/ratelimiting.pyc 49${PYSITELIB}/synapse/api/ratelimiting.pyc
50${PYSITELIB}/synapse/api/ratelimiting.pyo 50${PYSITELIB}/synapse/api/ratelimiting.pyo
51${PYSITELIB}/synapse/api/room_versions.py 51${PYSITELIB}/synapse/api/room_versions.py
52${PYSITELIB}/synapse/api/room_versions.pyc 52${PYSITELIB}/synapse/api/room_versions.pyc
53${PYSITELIB}/synapse/api/room_versions.pyo 53${PYSITELIB}/synapse/api/room_versions.pyo
54${PYSITELIB}/synapse/api/urls.py 54${PYSITELIB}/synapse/api/urls.py
55${PYSITELIB}/synapse/api/urls.pyc 55${PYSITELIB}/synapse/api/urls.pyc
56${PYSITELIB}/synapse/api/urls.pyo 56${PYSITELIB}/synapse/api/urls.pyo
57${PYSITELIB}/synapse/app/__init__.py 57${PYSITELIB}/synapse/app/__init__.py
58${PYSITELIB}/synapse/app/__init__.pyc 58${PYSITELIB}/synapse/app/__init__.pyc
59${PYSITELIB}/synapse/app/__init__.pyo 59${PYSITELIB}/synapse/app/__init__.pyo
60${PYSITELIB}/synapse/app/_base.py 60${PYSITELIB}/synapse/app/_base.py
61${PYSITELIB}/synapse/app/_base.pyc 61${PYSITELIB}/synapse/app/_base.pyc
62${PYSITELIB}/synapse/app/_base.pyo 62${PYSITELIB}/synapse/app/_base.pyo
63${PYSITELIB}/synapse/app/admin_cmd.py 63${PYSITELIB}/synapse/app/admin_cmd.py
64${PYSITELIB}/synapse/app/admin_cmd.pyc 64${PYSITELIB}/synapse/app/admin_cmd.pyc
65${PYSITELIB}/synapse/app/admin_cmd.pyo 65${PYSITELIB}/synapse/app/admin_cmd.pyo
66${PYSITELIB}/synapse/app/appservice.py 66${PYSITELIB}/synapse/app/appservice.py
67${PYSITELIB}/synapse/app/appservice.pyc 67${PYSITELIB}/synapse/app/appservice.pyc
68${PYSITELIB}/synapse/app/appservice.pyo 68${PYSITELIB}/synapse/app/appservice.pyo
69${PYSITELIB}/synapse/app/client_reader.py 69${PYSITELIB}/synapse/app/client_reader.py
70${PYSITELIB}/synapse/app/client_reader.pyc 70${PYSITELIB}/synapse/app/client_reader.pyc
71${PYSITELIB}/synapse/app/client_reader.pyo 71${PYSITELIB}/synapse/app/client_reader.pyo
72${PYSITELIB}/synapse/app/event_creator.py 72${PYSITELIB}/synapse/app/event_creator.py
73${PYSITELIB}/synapse/app/event_creator.pyc 73${PYSITELIB}/synapse/app/event_creator.pyc
74${PYSITELIB}/synapse/app/event_creator.pyo 74${PYSITELIB}/synapse/app/event_creator.pyo
75${PYSITELIB}/synapse/app/federation_reader.py 75${PYSITELIB}/synapse/app/federation_reader.py
76${PYSITELIB}/synapse/app/federation_reader.pyc 76${PYSITELIB}/synapse/app/federation_reader.pyc
77${PYSITELIB}/synapse/app/federation_reader.pyo 77${PYSITELIB}/synapse/app/federation_reader.pyo
78${PYSITELIB}/synapse/app/federation_sender.py 78${PYSITELIB}/synapse/app/federation_sender.py
79${PYSITELIB}/synapse/app/federation_sender.pyc 79${PYSITELIB}/synapse/app/federation_sender.pyc
80${PYSITELIB}/synapse/app/federation_sender.pyo 80${PYSITELIB}/synapse/app/federation_sender.pyo
81${PYSITELIB}/synapse/app/frontend_proxy.py 81${PYSITELIB}/synapse/app/frontend_proxy.py
82${PYSITELIB}/synapse/app/frontend_proxy.pyc 82${PYSITELIB}/synapse/app/frontend_proxy.pyc
83${PYSITELIB}/synapse/app/frontend_proxy.pyo 83${PYSITELIB}/synapse/app/frontend_proxy.pyo
84${PYSITELIB}/synapse/app/generic_worker.py 84${PYSITELIB}/synapse/app/generic_worker.py
85${PYSITELIB}/synapse/app/generic_worker.pyc 85${PYSITELIB}/synapse/app/generic_worker.pyc
86${PYSITELIB}/synapse/app/generic_worker.pyo 86${PYSITELIB}/synapse/app/generic_worker.pyo
87${PYSITELIB}/synapse/app/homeserver.py 87${PYSITELIB}/synapse/app/homeserver.py
88${PYSITELIB}/synapse/app/homeserver.pyc 88${PYSITELIB}/synapse/app/homeserver.pyc
89${PYSITELIB}/synapse/app/homeserver.pyo 89${PYSITELIB}/synapse/app/homeserver.pyo
90${PYSITELIB}/synapse/app/media_repository.py 90${PYSITELIB}/synapse/app/media_repository.py
91${PYSITELIB}/synapse/app/media_repository.pyc 91${PYSITELIB}/synapse/app/media_repository.pyc
92${PYSITELIB}/synapse/app/media_repository.pyo 92${PYSITELIB}/synapse/app/media_repository.pyo
93${PYSITELIB}/synapse/app/phone_stats_home.py 93${PYSITELIB}/synapse/app/phone_stats_home.py
94${PYSITELIB}/synapse/app/phone_stats_home.pyc 94${PYSITELIB}/synapse/app/phone_stats_home.pyc
95${PYSITELIB}/synapse/app/phone_stats_home.pyo 95${PYSITELIB}/synapse/app/phone_stats_home.pyo
96${PYSITELIB}/synapse/app/pusher.py 96${PYSITELIB}/synapse/app/pusher.py
97${PYSITELIB}/synapse/app/pusher.pyc 97${PYSITELIB}/synapse/app/pusher.pyc
98${PYSITELIB}/synapse/app/pusher.pyo 98${PYSITELIB}/synapse/app/pusher.pyo
99${PYSITELIB}/synapse/app/synchrotron.py 99${PYSITELIB}/synapse/app/synchrotron.py
100${PYSITELIB}/synapse/app/synchrotron.pyc 100${PYSITELIB}/synapse/app/synchrotron.pyc
101${PYSITELIB}/synapse/app/synchrotron.pyo 101${PYSITELIB}/synapse/app/synchrotron.pyo
102${PYSITELIB}/synapse/app/user_dir.py 102${PYSITELIB}/synapse/app/user_dir.py
103${PYSITELIB}/synapse/app/user_dir.pyc 103${PYSITELIB}/synapse/app/user_dir.pyc
104${PYSITELIB}/synapse/app/user_dir.pyo 104${PYSITELIB}/synapse/app/user_dir.pyo
105${PYSITELIB}/synapse/appservice/__init__.py 105${PYSITELIB}/synapse/appservice/__init__.py
106${PYSITELIB}/synapse/appservice/__init__.pyc 106${PYSITELIB}/synapse/appservice/__init__.pyc
107${PYSITELIB}/synapse/appservice/__init__.pyo 107${PYSITELIB}/synapse/appservice/__init__.pyo
108${PYSITELIB}/synapse/appservice/api.py 108${PYSITELIB}/synapse/appservice/api.py
109${PYSITELIB}/synapse/appservice/api.pyc 109${PYSITELIB}/synapse/appservice/api.pyc
110${PYSITELIB}/synapse/appservice/api.pyo 110${PYSITELIB}/synapse/appservice/api.pyo
111${PYSITELIB}/synapse/appservice/scheduler.py 111${PYSITELIB}/synapse/appservice/scheduler.py
112${PYSITELIB}/synapse/appservice/scheduler.pyc 112${PYSITELIB}/synapse/appservice/scheduler.pyc
113${PYSITELIB}/synapse/appservice/scheduler.pyo 113${PYSITELIB}/synapse/appservice/scheduler.pyo
114${PYSITELIB}/synapse/config/__init__.py 114${PYSITELIB}/synapse/config/__init__.py
115${PYSITELIB}/synapse/config/__init__.pyc 115${PYSITELIB}/synapse/config/__init__.pyc
116${PYSITELIB}/synapse/config/__init__.pyo 116${PYSITELIB}/synapse/config/__init__.pyo
117${PYSITELIB}/synapse/config/__main__.py 117${PYSITELIB}/synapse/config/__main__.py
118${PYSITELIB}/synapse/config/__main__.pyc 118${PYSITELIB}/synapse/config/__main__.pyc
119${PYSITELIB}/synapse/config/__main__.pyo 119${PYSITELIB}/synapse/config/__main__.pyo
120${PYSITELIB}/synapse/config/_base.py 120${PYSITELIB}/synapse/config/_base.py
121${PYSITELIB}/synapse/config/_base.pyc 121${PYSITELIB}/synapse/config/_base.pyc
122${PYSITELIB}/synapse/config/_base.pyi 122${PYSITELIB}/synapse/config/_base.pyi
123${PYSITELIB}/synapse/config/_base.pyo 123${PYSITELIB}/synapse/config/_base.pyo
124${PYSITELIB}/synapse/config/_util.py 124${PYSITELIB}/synapse/config/_util.py
125${PYSITELIB}/synapse/config/_util.pyc 125${PYSITELIB}/synapse/config/_util.pyc
126${PYSITELIB}/synapse/config/_util.pyo 126${PYSITELIB}/synapse/config/_util.pyo
127${PYSITELIB}/synapse/config/account_validity.py 127${PYSITELIB}/synapse/config/account_validity.py
128${PYSITELIB}/synapse/config/account_validity.pyc 128${PYSITELIB}/synapse/config/account_validity.pyc
129${PYSITELIB}/synapse/config/account_validity.pyo 129${PYSITELIB}/synapse/config/account_validity.pyo
130${PYSITELIB}/synapse/config/api.py 130${PYSITELIB}/synapse/config/api.py
131${PYSITELIB}/synapse/config/api.pyc 131${PYSITELIB}/synapse/config/api.pyc
132${PYSITELIB}/synapse/config/api.pyo 132${PYSITELIB}/synapse/config/api.pyo
133${PYSITELIB}/synapse/config/appservice.py 133${PYSITELIB}/synapse/config/appservice.py
134${PYSITELIB}/synapse/config/appservice.pyc 134${PYSITELIB}/synapse/config/appservice.pyc
135${PYSITELIB}/synapse/config/appservice.pyo 135${PYSITELIB}/synapse/config/appservice.pyo
136${PYSITELIB}/synapse/config/auth.py 136${PYSITELIB}/synapse/config/auth.py
137${PYSITELIB}/synapse/config/auth.pyc 137${PYSITELIB}/synapse/config/auth.pyc
138${PYSITELIB}/synapse/config/auth.pyo 138${PYSITELIB}/synapse/config/auth.pyo
139${PYSITELIB}/synapse/config/cache.py 139${PYSITELIB}/synapse/config/cache.py
140${PYSITELIB}/synapse/config/cache.pyc 140${PYSITELIB}/synapse/config/cache.pyc
141${PYSITELIB}/synapse/config/cache.pyo 141${PYSITELIB}/synapse/config/cache.pyo
142${PYSITELIB}/synapse/config/captcha.py 142${PYSITELIB}/synapse/config/captcha.py
143${PYSITELIB}/synapse/config/captcha.pyc 143${PYSITELIB}/synapse/config/captcha.pyc
144${PYSITELIB}/synapse/config/captcha.pyo 144${PYSITELIB}/synapse/config/captcha.pyo
145${PYSITELIB}/synapse/config/cas.py 145${PYSITELIB}/synapse/config/cas.py
146${PYSITELIB}/synapse/config/cas.pyc 146${PYSITELIB}/synapse/config/cas.pyc
147${PYSITELIB}/synapse/config/cas.pyo 147${PYSITELIB}/synapse/config/cas.pyo
148${PYSITELIB}/synapse/config/consent.py 148${PYSITELIB}/synapse/config/consent.py
149${PYSITELIB}/synapse/config/consent.pyc 149${PYSITELIB}/synapse/config/consent.pyc
150${PYSITELIB}/synapse/config/consent.pyo 150${PYSITELIB}/synapse/config/consent.pyo
151${PYSITELIB}/synapse/config/database.py 151${PYSITELIB}/synapse/config/database.py
152${PYSITELIB}/synapse/config/database.pyc 152${PYSITELIB}/synapse/config/database.pyc
153${PYSITELIB}/synapse/config/database.pyo 153${PYSITELIB}/synapse/config/database.pyo
154${PYSITELIB}/synapse/config/emailconfig.py 154${PYSITELIB}/synapse/config/emailconfig.py
155${PYSITELIB}/synapse/config/emailconfig.pyc 155${PYSITELIB}/synapse/config/emailconfig.pyc
156${PYSITELIB}/synapse/config/emailconfig.pyo 156${PYSITELIB}/synapse/config/emailconfig.pyo
157${PYSITELIB}/synapse/config/experimental.py 157${PYSITELIB}/synapse/config/experimental.py
158${PYSITELIB}/synapse/config/experimental.pyc 158${PYSITELIB}/synapse/config/experimental.pyc
159${PYSITELIB}/synapse/config/experimental.pyo 159${PYSITELIB}/synapse/config/experimental.pyo
160${PYSITELIB}/synapse/config/federation.py 160${PYSITELIB}/synapse/config/federation.py
161${PYSITELIB}/synapse/config/federation.pyc 161${PYSITELIB}/synapse/config/federation.pyc
162${PYSITELIB}/synapse/config/federation.pyo 162${PYSITELIB}/synapse/config/federation.pyo
163${PYSITELIB}/synapse/config/groups.py 163${PYSITELIB}/synapse/config/groups.py
164${PYSITELIB}/synapse/config/groups.pyc 164${PYSITELIB}/synapse/config/groups.pyc
165${PYSITELIB}/synapse/config/groups.pyo 165${PYSITELIB}/synapse/config/groups.pyo
166${PYSITELIB}/synapse/config/homeserver.py 166${PYSITELIB}/synapse/config/homeserver.py
167${PYSITELIB}/synapse/config/homeserver.pyc 167${PYSITELIB}/synapse/config/homeserver.pyc
168${PYSITELIB}/synapse/config/homeserver.pyo 168${PYSITELIB}/synapse/config/homeserver.pyo
169${PYSITELIB}/synapse/config/jwt.py 169${PYSITELIB}/synapse/config/jwt.py
170${PYSITELIB}/synapse/config/jwt.pyc 170${PYSITELIB}/synapse/config/jwt.pyc
171${PYSITELIB}/synapse/config/jwt.pyo 171${PYSITELIB}/synapse/config/jwt.pyo
172${PYSITELIB}/synapse/config/key.py 172${PYSITELIB}/synapse/config/key.py
173${PYSITELIB}/synapse/config/key.pyc 173${PYSITELIB}/synapse/config/key.pyc
174${PYSITELIB}/synapse/config/key.pyo 174${PYSITELIB}/synapse/config/key.pyo
175${PYSITELIB}/synapse/config/logger.py 175${PYSITELIB}/synapse/config/logger.py
176${PYSITELIB}/synapse/config/logger.pyc 176${PYSITELIB}/synapse/config/logger.pyc
177${PYSITELIB}/synapse/config/logger.pyo 177${PYSITELIB}/synapse/config/logger.pyo
178${PYSITELIB}/synapse/config/metrics.py 178${PYSITELIB}/synapse/config/metrics.py
179${PYSITELIB}/synapse/config/metrics.pyc 179${PYSITELIB}/synapse/config/metrics.pyc
180${PYSITELIB}/synapse/config/metrics.pyo 180${PYSITELIB}/synapse/config/metrics.pyo
 181${PYSITELIB}/synapse/config/modules.pyc
 182${PYSITELIB}/synapse/config/modules.py
 183${PYSITELIB}/synapse/config/modules.pyo
181${PYSITELIB}/synapse/config/oidc.py 184${PYSITELIB}/synapse/config/oidc.py
182${PYSITELIB}/synapse/config/oidc.pyc 185${PYSITELIB}/synapse/config/oidc.pyc
183${PYSITELIB}/synapse/config/oidc.pyo 186${PYSITELIB}/synapse/config/oidc.pyo
184${PYSITELIB}/synapse/config/password_auth_providers.py 187${PYSITELIB}/synapse/config/password_auth_providers.py
185${PYSITELIB}/synapse/config/password_auth_providers.pyc 188${PYSITELIB}/synapse/config/password_auth_providers.pyc
186${PYSITELIB}/synapse/config/password_auth_providers.pyo 189${PYSITELIB}/synapse/config/password_auth_providers.pyo
187${PYSITELIB}/synapse/config/push.py 190${PYSITELIB}/synapse/config/push.py
188${PYSITELIB}/synapse/config/push.pyc 191${PYSITELIB}/synapse/config/push.pyc
189${PYSITELIB}/synapse/config/push.pyo 192${PYSITELIB}/synapse/config/push.pyo
190${PYSITELIB}/synapse/config/ratelimiting.py 193${PYSITELIB}/synapse/config/ratelimiting.py
191${PYSITELIB}/synapse/config/ratelimiting.pyc 194${PYSITELIB}/synapse/config/ratelimiting.pyc
192${PYSITELIB}/synapse/config/ratelimiting.pyo 195${PYSITELIB}/synapse/config/ratelimiting.pyo
193${PYSITELIB}/synapse/config/redis.py 196${PYSITELIB}/synapse/config/redis.py
194${PYSITELIB}/synapse/config/redis.pyc 197${PYSITELIB}/synapse/config/redis.pyc
195${PYSITELIB}/synapse/config/redis.pyo 198${PYSITELIB}/synapse/config/redis.pyo
196${PYSITELIB}/synapse/config/registration.py 199${PYSITELIB}/synapse/config/registration.py
197${PYSITELIB}/synapse/config/registration.pyc 200${PYSITELIB}/synapse/config/registration.pyc
198${PYSITELIB}/synapse/config/registration.pyo 201${PYSITELIB}/synapse/config/registration.pyo
199${PYSITELIB}/synapse/config/repository.py 202${PYSITELIB}/synapse/config/repository.py
200${PYSITELIB}/synapse/config/repository.pyc 203${PYSITELIB}/synapse/config/repository.pyc
201${PYSITELIB}/synapse/config/repository.pyo 204${PYSITELIB}/synapse/config/repository.pyo
202${PYSITELIB}/synapse/config/room.py 205${PYSITELIB}/synapse/config/room.py
203${PYSITELIB}/synapse/config/room.pyc 206${PYSITELIB}/synapse/config/room.pyc
204${PYSITELIB}/synapse/config/room.pyo 207${PYSITELIB}/synapse/config/room.pyo
205${PYSITELIB}/synapse/config/room_directory.py 208${PYSITELIB}/synapse/config/room_directory.py
206${PYSITELIB}/synapse/config/room_directory.pyc 209${PYSITELIB}/synapse/config/room_directory.pyc
207${PYSITELIB}/synapse/config/room_directory.pyo 210${PYSITELIB}/synapse/config/room_directory.pyo
208${PYSITELIB}/synapse/config/saml2.py 211${PYSITELIB}/synapse/config/saml2.py
209${PYSITELIB}/synapse/config/saml2.pyc 212${PYSITELIB}/synapse/config/saml2.pyc
210${PYSITELIB}/synapse/config/saml2.pyo 213${PYSITELIB}/synapse/config/saml2.pyo
211${PYSITELIB}/synapse/config/server.py 214${PYSITELIB}/synapse/config/server.py
212${PYSITELIB}/synapse/config/server.pyc 215${PYSITELIB}/synapse/config/server.pyc
213${PYSITELIB}/synapse/config/server.pyo 216${PYSITELIB}/synapse/config/server.pyo
214${PYSITELIB}/synapse/config/server_notices.py 217${PYSITELIB}/synapse/config/server_notices.py
215${PYSITELIB}/synapse/config/server_notices.pyc 218${PYSITELIB}/synapse/config/server_notices.pyc
216${PYSITELIB}/synapse/config/server_notices.pyo 219${PYSITELIB}/synapse/config/server_notices.pyo
217${PYSITELIB}/synapse/config/spam_checker.py 220${PYSITELIB}/synapse/config/spam_checker.py
218${PYSITELIB}/synapse/config/spam_checker.pyc 221${PYSITELIB}/synapse/config/spam_checker.pyc
219${PYSITELIB}/synapse/config/spam_checker.pyo 222${PYSITELIB}/synapse/config/spam_checker.pyo
220${PYSITELIB}/synapse/config/sso.py 223${PYSITELIB}/synapse/config/sso.py
221${PYSITELIB}/synapse/config/sso.pyc 224${PYSITELIB}/synapse/config/sso.pyc
222${PYSITELIB}/synapse/config/sso.pyo 225${PYSITELIB}/synapse/config/sso.pyo
223${PYSITELIB}/synapse/config/stats.py 226${PYSITELIB}/synapse/config/stats.py
224${PYSITELIB}/synapse/config/stats.pyc 227${PYSITELIB}/synapse/config/stats.pyc
225${PYSITELIB}/synapse/config/stats.pyo 228${PYSITELIB}/synapse/config/stats.pyo
226${PYSITELIB}/synapse/config/third_party_event_rules.py 229${PYSITELIB}/synapse/config/third_party_event_rules.py
227${PYSITELIB}/synapse/config/third_party_event_rules.pyc 230${PYSITELIB}/synapse/config/third_party_event_rules.pyc
228${PYSITELIB}/synapse/config/third_party_event_rules.pyo 231${PYSITELIB}/synapse/config/third_party_event_rules.pyo
229${PYSITELIB}/synapse/config/tls.py 232${PYSITELIB}/synapse/config/tls.py
230${PYSITELIB}/synapse/config/tls.pyc 233${PYSITELIB}/synapse/config/tls.pyc
231${PYSITELIB}/synapse/config/tls.pyo 234${PYSITELIB}/synapse/config/tls.pyo
232${PYSITELIB}/synapse/config/tracer.py 235${PYSITELIB}/synapse/config/tracer.py
233${PYSITELIB}/synapse/config/tracer.pyc 236${PYSITELIB}/synapse/config/tracer.pyc
234${PYSITELIB}/synapse/config/tracer.pyo 237${PYSITELIB}/synapse/config/tracer.pyo
235${PYSITELIB}/synapse/config/user_directory.py 238${PYSITELIB}/synapse/config/user_directory.py
236${PYSITELIB}/synapse/config/user_directory.pyc 239${PYSITELIB}/synapse/config/user_directory.pyc
237${PYSITELIB}/synapse/config/user_directory.pyo 240${PYSITELIB}/synapse/config/user_directory.pyo
238${PYSITELIB}/synapse/config/voip.py 241${PYSITELIB}/synapse/config/voip.py
239${PYSITELIB}/synapse/config/voip.pyc 242${PYSITELIB}/synapse/config/voip.pyc
240${PYSITELIB}/synapse/config/voip.pyo 243${PYSITELIB}/synapse/config/voip.pyo
241${PYSITELIB}/synapse/config/workers.py 244${PYSITELIB}/synapse/config/workers.py
242${PYSITELIB}/synapse/config/workers.pyc 245${PYSITELIB}/synapse/config/workers.pyc
243${PYSITELIB}/synapse/config/workers.pyo 246${PYSITELIB}/synapse/config/workers.pyo
244${PYSITELIB}/synapse/crypto/__init__.py 247${PYSITELIB}/synapse/crypto/__init__.py
245${PYSITELIB}/synapse/crypto/__init__.pyc 248${PYSITELIB}/synapse/crypto/__init__.pyc
246${PYSITELIB}/synapse/crypto/__init__.pyo 249${PYSITELIB}/synapse/crypto/__init__.pyo
247${PYSITELIB}/synapse/crypto/context_factory.py 250${PYSITELIB}/synapse/crypto/context_factory.py
248${PYSITELIB}/synapse/crypto/context_factory.pyc 251${PYSITELIB}/synapse/crypto/context_factory.pyc
249${PYSITELIB}/synapse/crypto/context_factory.pyo 252${PYSITELIB}/synapse/crypto/context_factory.pyo
250${PYSITELIB}/synapse/crypto/event_signing.py 253${PYSITELIB}/synapse/crypto/event_signing.py
251${PYSITELIB}/synapse/crypto/event_signing.pyc 254${PYSITELIB}/synapse/crypto/event_signing.pyc
252${PYSITELIB}/synapse/crypto/event_signing.pyo 255${PYSITELIB}/synapse/crypto/event_signing.pyo
253${PYSITELIB}/synapse/crypto/keyring.py 256${PYSITELIB}/synapse/crypto/keyring.py
254${PYSITELIB}/synapse/crypto/keyring.pyc 257${PYSITELIB}/synapse/crypto/keyring.pyc
255${PYSITELIB}/synapse/crypto/keyring.pyo 258${PYSITELIB}/synapse/crypto/keyring.pyo
256${PYSITELIB}/synapse/event_auth.py 259${PYSITELIB}/synapse/event_auth.py
257${PYSITELIB}/synapse/event_auth.pyc 260${PYSITELIB}/synapse/event_auth.pyc
258${PYSITELIB}/synapse/event_auth.pyo 261${PYSITELIB}/synapse/event_auth.pyo
259${PYSITELIB}/synapse/events/__init__.py 262${PYSITELIB}/synapse/events/__init__.py
260${PYSITELIB}/synapse/events/__init__.pyc 263${PYSITELIB}/synapse/events/__init__.pyc
261${PYSITELIB}/synapse/events/__init__.pyo 264${PYSITELIB}/synapse/events/__init__.pyo
262${PYSITELIB}/synapse/events/builder.py 265${PYSITELIB}/synapse/events/builder.py
263${PYSITELIB}/synapse/events/builder.pyc 266${PYSITELIB}/synapse/events/builder.pyc
264${PYSITELIB}/synapse/events/builder.pyo 267${PYSITELIB}/synapse/events/builder.pyo
265${PYSITELIB}/synapse/events/presence_router.py 268${PYSITELIB}/synapse/events/presence_router.py
266${PYSITELIB}/synapse/events/presence_router.pyc 269${PYSITELIB}/synapse/events/presence_router.pyc
267${PYSITELIB}/synapse/events/presence_router.pyo 270${PYSITELIB}/synapse/events/presence_router.pyo
268${PYSITELIB}/synapse/events/snapshot.py 271${PYSITELIB}/synapse/events/snapshot.py
269${PYSITELIB}/synapse/events/snapshot.pyc 272${PYSITELIB}/synapse/events/snapshot.pyc
270${PYSITELIB}/synapse/events/snapshot.pyo 273${PYSITELIB}/synapse/events/snapshot.pyo
271${PYSITELIB}/synapse/events/spamcheck.py 274${PYSITELIB}/synapse/events/spamcheck.py
272${PYSITELIB}/synapse/events/spamcheck.pyc 275${PYSITELIB}/synapse/events/spamcheck.pyc
273${PYSITELIB}/synapse/events/spamcheck.pyo 276${PYSITELIB}/synapse/events/spamcheck.pyo
274${PYSITELIB}/synapse/events/third_party_rules.py 277${PYSITELIB}/synapse/events/third_party_rules.py
275${PYSITELIB}/synapse/events/third_party_rules.pyc 278${PYSITELIB}/synapse/events/third_party_rules.pyc
276${PYSITELIB}/synapse/events/third_party_rules.pyo 279${PYSITELIB}/synapse/events/third_party_rules.pyo
277${PYSITELIB}/synapse/events/utils.py 280${PYSITELIB}/synapse/events/utils.py
278${PYSITELIB}/synapse/events/utils.pyc 281${PYSITELIB}/synapse/events/utils.pyc
279${PYSITELIB}/synapse/events/utils.pyo 282${PYSITELIB}/synapse/events/utils.pyo
280${PYSITELIB}/synapse/events/validator.py 283${PYSITELIB}/synapse/events/validator.py
281${PYSITELIB}/synapse/events/validator.pyc 284${PYSITELIB}/synapse/events/validator.pyc
282${PYSITELIB}/synapse/events/validator.pyo 285${PYSITELIB}/synapse/events/validator.pyo
283${PYSITELIB}/synapse/federation/__init__.py 286${PYSITELIB}/synapse/federation/__init__.py
284${PYSITELIB}/synapse/federation/__init__.pyc 287${PYSITELIB}/synapse/federation/__init__.pyc
285${PYSITELIB}/synapse/federation/__init__.pyo 288${PYSITELIB}/synapse/federation/__init__.pyo
286${PYSITELIB}/synapse/federation/federation_base.py 289${PYSITELIB}/synapse/federation/federation_base.py
287${PYSITELIB}/synapse/federation/federation_base.pyc 290${PYSITELIB}/synapse/federation/federation_base.pyc
288${PYSITELIB}/synapse/federation/federation_base.pyo 291${PYSITELIB}/synapse/federation/federation_base.pyo
289${PYSITELIB}/synapse/federation/federation_client.py 292${PYSITELIB}/synapse/federation/federation_client.py
290${PYSITELIB}/synapse/federation/federation_client.pyc 293${PYSITELIB}/synapse/federation/federation_client.pyc
291${PYSITELIB}/synapse/federation/federation_client.pyo 294${PYSITELIB}/synapse/federation/federation_client.pyo
292${PYSITELIB}/synapse/federation/federation_server.py 295${PYSITELIB}/synapse/federation/federation_server.py
293${PYSITELIB}/synapse/federation/federation_server.pyc 296${PYSITELIB}/synapse/federation/federation_server.pyc
294${PYSITELIB}/synapse/federation/federation_server.pyo 297${PYSITELIB}/synapse/federation/federation_server.pyo
295${PYSITELIB}/synapse/federation/persistence.py 298${PYSITELIB}/synapse/federation/persistence.py
296${PYSITELIB}/synapse/federation/persistence.pyc 299${PYSITELIB}/synapse/federation/persistence.pyc
297${PYSITELIB}/synapse/federation/persistence.pyo 300${PYSITELIB}/synapse/federation/persistence.pyo
298${PYSITELIB}/synapse/federation/send_queue.py 301${PYSITELIB}/synapse/federation/send_queue.py
299${PYSITELIB}/synapse/federation/send_queue.pyc 302${PYSITELIB}/synapse/federation/send_queue.pyc
300${PYSITELIB}/synapse/federation/send_queue.pyo 303${PYSITELIB}/synapse/federation/send_queue.pyo
301${PYSITELIB}/synapse/federation/sender/__init__.py 304${PYSITELIB}/synapse/federation/sender/__init__.py
302${PYSITELIB}/synapse/federation/sender/__init__.pyc 305${PYSITELIB}/synapse/federation/sender/__init__.pyc
303${PYSITELIB}/synapse/federation/sender/__init__.pyo 306${PYSITELIB}/synapse/federation/sender/__init__.pyo
304${PYSITELIB}/synapse/federation/sender/per_destination_queue.py 307${PYSITELIB}/synapse/federation/sender/per_destination_queue.py
305${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyc 308${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyc
306${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyo 309${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyo
307${PYSITELIB}/synapse/federation/sender/transaction_manager.py 310${PYSITELIB}/synapse/federation/sender/transaction_manager.py
308${PYSITELIB}/synapse/federation/sender/transaction_manager.pyc 311${PYSITELIB}/synapse/federation/sender/transaction_manager.pyc
309${PYSITELIB}/synapse/federation/sender/transaction_manager.pyo 312${PYSITELIB}/synapse/federation/sender/transaction_manager.pyo
310${PYSITELIB}/synapse/federation/transport/__init__.py 313${PYSITELIB}/synapse/federation/transport/__init__.py
311${PYSITELIB}/synapse/federation/transport/__init__.pyc 314${PYSITELIB}/synapse/federation/transport/__init__.pyc
312${PYSITELIB}/synapse/federation/transport/__init__.pyo 315${PYSITELIB}/synapse/federation/transport/__init__.pyo
313${PYSITELIB}/synapse/federation/transport/client.py 316${PYSITELIB}/synapse/federation/transport/client.py
314${PYSITELIB}/synapse/federation/transport/client.pyc 317${PYSITELIB}/synapse/federation/transport/client.pyc
315${PYSITELIB}/synapse/federation/transport/client.pyo 318${PYSITELIB}/synapse/federation/transport/client.pyo
316${PYSITELIB}/synapse/federation/transport/server.py 319${PYSITELIB}/synapse/federation/transport/server.py
317${PYSITELIB}/synapse/federation/transport/server.pyc 320${PYSITELIB}/synapse/federation/transport/server.pyc
318${PYSITELIB}/synapse/federation/transport/server.pyo 321${PYSITELIB}/synapse/federation/transport/server.pyo
319${PYSITELIB}/synapse/federation/units.py 322${PYSITELIB}/synapse/federation/units.py
320${PYSITELIB}/synapse/federation/units.pyc 323${PYSITELIB}/synapse/federation/units.pyc
321${PYSITELIB}/synapse/federation/units.pyo 324${PYSITELIB}/synapse/federation/units.pyo
322${PYSITELIB}/synapse/groups/__init__.py 325${PYSITELIB}/synapse/groups/__init__.py
323${PYSITELIB}/synapse/groups/__init__.pyc 326${PYSITELIB}/synapse/groups/__init__.pyc
324${PYSITELIB}/synapse/groups/__init__.pyo 327${PYSITELIB}/synapse/groups/__init__.pyo
325${PYSITELIB}/synapse/groups/attestations.py 328${PYSITELIB}/synapse/groups/attestations.py
326${PYSITELIB}/synapse/groups/attestations.pyc 329${PYSITELIB}/synapse/groups/attestations.pyc
327${PYSITELIB}/synapse/groups/attestations.pyo 330${PYSITELIB}/synapse/groups/attestations.pyo
328${PYSITELIB}/synapse/groups/groups_server.py 331${PYSITELIB}/synapse/groups/groups_server.py
329${PYSITELIB}/synapse/groups/groups_server.pyc 332${PYSITELIB}/synapse/groups/groups_server.pyc
330${PYSITELIB}/synapse/groups/groups_server.pyo 333${PYSITELIB}/synapse/groups/groups_server.pyo
331${PYSITELIB}/synapse/handlers/__init__.py 334${PYSITELIB}/synapse/handlers/__init__.py
332${PYSITELIB}/synapse/handlers/__init__.pyc 335${PYSITELIB}/synapse/handlers/__init__.pyc
333${PYSITELIB}/synapse/handlers/__init__.pyo 336${PYSITELIB}/synapse/handlers/__init__.pyo
334${PYSITELIB}/synapse/handlers/_base.py 337${PYSITELIB}/synapse/handlers/_base.py
335${PYSITELIB}/synapse/handlers/_base.pyc 338${PYSITELIB}/synapse/handlers/_base.pyc
336${PYSITELIB}/synapse/handlers/_base.pyo 339${PYSITELIB}/synapse/handlers/_base.pyo
337${PYSITELIB}/synapse/handlers/account_data.py 340${PYSITELIB}/synapse/handlers/account_data.py
338${PYSITELIB}/synapse/handlers/account_data.pyc 341${PYSITELIB}/synapse/handlers/account_data.pyc
339${PYSITELIB}/synapse/handlers/account_data.pyo 342${PYSITELIB}/synapse/handlers/account_data.pyo
340${PYSITELIB}/synapse/handlers/account_validity.py 343${PYSITELIB}/synapse/handlers/account_validity.py
341${PYSITELIB}/synapse/handlers/account_validity.pyc 344${PYSITELIB}/synapse/handlers/account_validity.pyc
342${PYSITELIB}/synapse/handlers/account_validity.pyo 345${PYSITELIB}/synapse/handlers/account_validity.pyo
343${PYSITELIB}/synapse/handlers/acme.py 
344${PYSITELIB}/synapse/handlers/acme.pyc 
345${PYSITELIB}/synapse/handlers/acme.pyo 
346${PYSITELIB}/synapse/handlers/acme_issuing_service.py 
347${PYSITELIB}/synapse/handlers/acme_issuing_service.pyc 
348${PYSITELIB}/synapse/handlers/acme_issuing_service.pyo 
349${PYSITELIB}/synapse/handlers/admin.py 346${PYSITELIB}/synapse/handlers/admin.py
350${PYSITELIB}/synapse/handlers/admin.pyc 347${PYSITELIB}/synapse/handlers/admin.pyc
351${PYSITELIB}/synapse/handlers/admin.pyo 348${PYSITELIB}/synapse/handlers/admin.pyo
352${PYSITELIB}/synapse/handlers/appservice.py 349${PYSITELIB}/synapse/handlers/appservice.py
353${PYSITELIB}/synapse/handlers/appservice.pyc 350${PYSITELIB}/synapse/handlers/appservice.pyc
354${PYSITELIB}/synapse/handlers/appservice.pyo 351${PYSITELIB}/synapse/handlers/appservice.pyo
355${PYSITELIB}/synapse/handlers/auth.py 352${PYSITELIB}/synapse/handlers/auth.py
356${PYSITELIB}/synapse/handlers/auth.pyc 353${PYSITELIB}/synapse/handlers/auth.pyc
357${PYSITELIB}/synapse/handlers/auth.pyo 354${PYSITELIB}/synapse/handlers/auth.pyo
358${PYSITELIB}/synapse/handlers/cas.py 355${PYSITELIB}/synapse/handlers/cas.py
359${PYSITELIB}/synapse/handlers/cas.pyc 356${PYSITELIB}/synapse/handlers/cas.pyc
360${PYSITELIB}/synapse/handlers/cas.pyo 357${PYSITELIB}/synapse/handlers/cas.pyo
361${PYSITELIB}/synapse/handlers/deactivate_account.py 358${PYSITELIB}/synapse/handlers/deactivate_account.py
362${PYSITELIB}/synapse/handlers/deactivate_account.pyc 359${PYSITELIB}/synapse/handlers/deactivate_account.pyc
363${PYSITELIB}/synapse/handlers/deactivate_account.pyo 360${PYSITELIB}/synapse/handlers/deactivate_account.pyo
364${PYSITELIB}/synapse/handlers/device.py 361${PYSITELIB}/synapse/handlers/device.py
365${PYSITELIB}/synapse/handlers/device.pyc 362${PYSITELIB}/synapse/handlers/device.pyc
366${PYSITELIB}/synapse/handlers/device.pyo 363${PYSITELIB}/synapse/handlers/device.pyo
367${PYSITELIB}/synapse/handlers/devicemessage.py 364${PYSITELIB}/synapse/handlers/devicemessage.py
368${PYSITELIB}/synapse/handlers/devicemessage.pyc 365${PYSITELIB}/synapse/handlers/devicemessage.pyc
369${PYSITELIB}/synapse/handlers/devicemessage.pyo 366${PYSITELIB}/synapse/handlers/devicemessage.pyo
370${PYSITELIB}/synapse/handlers/directory.py 367${PYSITELIB}/synapse/handlers/directory.py
371${PYSITELIB}/synapse/handlers/directory.pyc 368${PYSITELIB}/synapse/handlers/directory.pyc
372${PYSITELIB}/synapse/handlers/directory.pyo 369${PYSITELIB}/synapse/handlers/directory.pyo
373${PYSITELIB}/synapse/handlers/e2e_keys.py 370${PYSITELIB}/synapse/handlers/e2e_keys.py
374${PYSITELIB}/synapse/handlers/e2e_keys.pyc 371${PYSITELIB}/synapse/handlers/e2e_keys.pyc
375${PYSITELIB}/synapse/handlers/e2e_keys.pyo 372${PYSITELIB}/synapse/handlers/e2e_keys.pyo
376${PYSITELIB}/synapse/handlers/e2e_room_keys.py 373${PYSITELIB}/synapse/handlers/e2e_room_keys.py
377${PYSITELIB}/synapse/handlers/e2e_room_keys.pyc 374${PYSITELIB}/synapse/handlers/e2e_room_keys.pyc
378${PYSITELIB}/synapse/handlers/e2e_room_keys.pyo 375${PYSITELIB}/synapse/handlers/e2e_room_keys.pyo
379${PYSITELIB}/synapse/handlers/event_auth.py 376${PYSITELIB}/synapse/handlers/event_auth.py
380${PYSITELIB}/synapse/handlers/event_auth.pyc 377${PYSITELIB}/synapse/handlers/event_auth.pyc
381${PYSITELIB}/synapse/handlers/event_auth.pyo 378${PYSITELIB}/synapse/handlers/event_auth.pyo
382${PYSITELIB}/synapse/handlers/events.py 379${PYSITELIB}/synapse/handlers/events.py
383${PYSITELIB}/synapse/handlers/events.pyc 380${PYSITELIB}/synapse/handlers/events.pyc
384${PYSITELIB}/synapse/handlers/events.pyo 381${PYSITELIB}/synapse/handlers/events.pyo
385${PYSITELIB}/synapse/handlers/federation.py 382${PYSITELIB}/synapse/handlers/federation.py
386${PYSITELIB}/synapse/handlers/federation.pyc 383${PYSITELIB}/synapse/handlers/federation.pyc
387${PYSITELIB}/synapse/handlers/federation.pyo 384${PYSITELIB}/synapse/handlers/federation.pyo
388${PYSITELIB}/synapse/handlers/groups_local.py 385${PYSITELIB}/synapse/handlers/groups_local.py
389${PYSITELIB}/synapse/handlers/groups_local.pyc 386${PYSITELIB}/synapse/handlers/groups_local.pyc
390${PYSITELIB}/synapse/handlers/groups_local.pyo 387${PYSITELIB}/synapse/handlers/groups_local.pyo
391${PYSITELIB}/synapse/handlers/identity.py 388${PYSITELIB}/synapse/handlers/identity.py
392${PYSITELIB}/synapse/handlers/identity.pyc 389${PYSITELIB}/synapse/handlers/identity.pyc
393${PYSITELIB}/synapse/handlers/identity.pyo 390${PYSITELIB}/synapse/handlers/identity.pyo
394${PYSITELIB}/synapse/handlers/initial_sync.py 391${PYSITELIB}/synapse/handlers/initial_sync.py
395${PYSITELIB}/synapse/handlers/initial_sync.pyc 392${PYSITELIB}/synapse/handlers/initial_sync.pyc
396${PYSITELIB}/synapse/handlers/initial_sync.pyo 393${PYSITELIB}/synapse/handlers/initial_sync.pyo
397${PYSITELIB}/synapse/handlers/message.py 394${PYSITELIB}/synapse/handlers/message.py
398${PYSITELIB}/synapse/handlers/message.pyc 395${PYSITELIB}/synapse/handlers/message.pyc
399${PYSITELIB}/synapse/handlers/message.pyo 396${PYSITELIB}/synapse/handlers/message.pyo
400${PYSITELIB}/synapse/handlers/oidc.py 397${PYSITELIB}/synapse/handlers/oidc.py
401${PYSITELIB}/synapse/handlers/oidc.pyc 398${PYSITELIB}/synapse/handlers/oidc.pyc
402${PYSITELIB}/synapse/handlers/oidc.pyo 399${PYSITELIB}/synapse/handlers/oidc.pyo
403${PYSITELIB}/synapse/handlers/pagination.py 400${PYSITELIB}/synapse/handlers/pagination.py
404${PYSITELIB}/synapse/handlers/pagination.pyc 401${PYSITELIB}/synapse/handlers/pagination.pyc
405${PYSITELIB}/synapse/handlers/pagination.pyo 402${PYSITELIB}/synapse/handlers/pagination.pyo
406${PYSITELIB}/synapse/handlers/password_policy.py 403${PYSITELIB}/synapse/handlers/password_policy.py
407${PYSITELIB}/synapse/handlers/password_policy.pyc 404${PYSITELIB}/synapse/handlers/password_policy.pyc
408${PYSITELIB}/synapse/handlers/password_policy.pyo 405${PYSITELIB}/synapse/handlers/password_policy.pyo
409${PYSITELIB}/synapse/handlers/presence.py 406${PYSITELIB}/synapse/handlers/presence.py
410${PYSITELIB}/synapse/handlers/presence.pyc 407${PYSITELIB}/synapse/handlers/presence.pyc
411${PYSITELIB}/synapse/handlers/presence.pyo 408${PYSITELIB}/synapse/handlers/presence.pyo
412${PYSITELIB}/synapse/handlers/profile.py 409${PYSITELIB}/synapse/handlers/profile.py
413${PYSITELIB}/synapse/handlers/profile.pyc 410${PYSITELIB}/synapse/handlers/profile.pyc
414${PYSITELIB}/synapse/handlers/profile.pyo 411${PYSITELIB}/synapse/handlers/profile.pyo
415${PYSITELIB}/synapse/handlers/read_marker.py 412${PYSITELIB}/synapse/handlers/read_marker.py
416${PYSITELIB}/synapse/handlers/read_marker.pyc 413${PYSITELIB}/synapse/handlers/read_marker.pyc
417${PYSITELIB}/synapse/handlers/read_marker.pyo 414${PYSITELIB}/synapse/handlers/read_marker.pyo
418${PYSITELIB}/synapse/handlers/receipts.py 415${PYSITELIB}/synapse/handlers/receipts.py
419${PYSITELIB}/synapse/handlers/receipts.pyc 416${PYSITELIB}/synapse/handlers/receipts.pyc
420${PYSITELIB}/synapse/handlers/receipts.pyo 417${PYSITELIB}/synapse/handlers/receipts.pyo
421${PYSITELIB}/synapse/handlers/register.py 418${PYSITELIB}/synapse/handlers/register.py
422${PYSITELIB}/synapse/handlers/register.pyc 419${PYSITELIB}/synapse/handlers/register.pyc
423${PYSITELIB}/synapse/handlers/register.pyo 420${PYSITELIB}/synapse/handlers/register.pyo
424${PYSITELIB}/synapse/handlers/room.py 421${PYSITELIB}/synapse/handlers/room.py
425${PYSITELIB}/synapse/handlers/room.pyc 422${PYSITELIB}/synapse/handlers/room.pyc
426${PYSITELIB}/synapse/handlers/room.pyo 423${PYSITELIB}/synapse/handlers/room.pyo
427${PYSITELIB}/synapse/handlers/room_list.py 424${PYSITELIB}/synapse/handlers/room_list.py
428${PYSITELIB}/synapse/handlers/room_list.pyc 425${PYSITELIB}/synapse/handlers/room_list.pyc
429${PYSITELIB}/synapse/handlers/room_list.pyo 426${PYSITELIB}/synapse/handlers/room_list.pyo
430${PYSITELIB}/synapse/handlers/room_member.py 427${PYSITELIB}/synapse/handlers/room_member.py
431${PYSITELIB}/synapse/handlers/room_member.pyc 428${PYSITELIB}/synapse/handlers/room_member.pyc
432${PYSITELIB}/synapse/handlers/room_member.pyo 429${PYSITELIB}/synapse/handlers/room_member.pyo
433${PYSITELIB}/synapse/handlers/room_member_worker.py 430${PYSITELIB}/synapse/handlers/room_member_worker.py
434${PYSITELIB}/synapse/handlers/room_member_worker.pyc 431${PYSITELIB}/synapse/handlers/room_member_worker.pyc
435${PYSITELIB}/synapse/handlers/room_member_worker.pyo 432${PYSITELIB}/synapse/handlers/room_member_worker.pyo
436${PYSITELIB}/synapse/handlers/saml.py 433${PYSITELIB}/synapse/handlers/saml.py
437${PYSITELIB}/synapse/handlers/saml.pyc 434${PYSITELIB}/synapse/handlers/saml.pyc
438${PYSITELIB}/synapse/handlers/saml.pyo 435${PYSITELIB}/synapse/handlers/saml.pyo
439${PYSITELIB}/synapse/handlers/search.py 436${PYSITELIB}/synapse/handlers/search.py
440${PYSITELIB}/synapse/handlers/search.pyc 437${PYSITELIB}/synapse/handlers/search.pyc
441${PYSITELIB}/synapse/handlers/search.pyo 438${PYSITELIB}/synapse/handlers/search.pyo
442${PYSITELIB}/synapse/handlers/send_email.py 439${PYSITELIB}/synapse/handlers/send_email.py
443${PYSITELIB}/synapse/handlers/send_email.pyc 440${PYSITELIB}/synapse/handlers/send_email.pyc
444${PYSITELIB}/synapse/handlers/send_email.pyo 441${PYSITELIB}/synapse/handlers/send_email.pyo
445${PYSITELIB}/synapse/handlers/set_password.py 442${PYSITELIB}/synapse/handlers/set_password.py
446${PYSITELIB}/synapse/handlers/set_password.pyc 443${PYSITELIB}/synapse/handlers/set_password.pyc
447${PYSITELIB}/synapse/handlers/set_password.pyo 444${PYSITELIB}/synapse/handlers/set_password.pyo
448${PYSITELIB}/synapse/handlers/space_summary.py 445${PYSITELIB}/synapse/handlers/space_summary.py
449${PYSITELIB}/synapse/handlers/space_summary.pyc 446${PYSITELIB}/synapse/handlers/space_summary.pyc
450${PYSITELIB}/synapse/handlers/space_summary.pyo 447${PYSITELIB}/synapse/handlers/space_summary.pyo
451${PYSITELIB}/synapse/handlers/sso.py 448${PYSITELIB}/synapse/handlers/sso.py
452${PYSITELIB}/synapse/handlers/sso.pyc 449${PYSITELIB}/synapse/handlers/sso.pyc
453${PYSITELIB}/synapse/handlers/sso.pyo 450${PYSITELIB}/synapse/handlers/sso.pyo
454${PYSITELIB}/synapse/handlers/state_deltas.py 451${PYSITELIB}/synapse/handlers/state_deltas.py
455${PYSITELIB}/synapse/handlers/state_deltas.pyc 452${PYSITELIB}/synapse/handlers/state_deltas.pyc
456${PYSITELIB}/synapse/handlers/state_deltas.pyo 453${PYSITELIB}/synapse/handlers/state_deltas.pyo
457${PYSITELIB}/synapse/handlers/stats.py 454${PYSITELIB}/synapse/handlers/stats.py
458${PYSITELIB}/synapse/handlers/stats.pyc 455${PYSITELIB}/synapse/handlers/stats.pyc
459${PYSITELIB}/synapse/handlers/stats.pyo 456${PYSITELIB}/synapse/handlers/stats.pyo
460${PYSITELIB}/synapse/handlers/sync.py 457${PYSITELIB}/synapse/handlers/sync.py
461${PYSITELIB}/synapse/handlers/sync.pyc 458${PYSITELIB}/synapse/handlers/sync.pyc
462${PYSITELIB}/synapse/handlers/sync.pyo 459${PYSITELIB}/synapse/handlers/sync.pyo
463${PYSITELIB}/synapse/handlers/typing.py 460${PYSITELIB}/synapse/handlers/typing.py
464${PYSITELIB}/synapse/handlers/typing.pyc 461${PYSITELIB}/synapse/handlers/typing.pyc
465${PYSITELIB}/synapse/handlers/typing.pyo 462${PYSITELIB}/synapse/handlers/typing.pyo
466${PYSITELIB}/synapse/handlers/ui_auth/__init__.py 463${PYSITELIB}/synapse/handlers/ui_auth/__init__.py
467${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyc 464${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyc
468${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyo 465${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyo
469${PYSITELIB}/synapse/handlers/ui_auth/checkers.py 466${PYSITELIB}/synapse/handlers/ui_auth/checkers.py
470${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyc 467${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyc
471${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyo 468${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyo
472${PYSITELIB}/synapse/handlers/user_directory.py 469${PYSITELIB}/synapse/handlers/user_directory.py
473${PYSITELIB}/synapse/handlers/user_directory.pyc 470${PYSITELIB}/synapse/handlers/user_directory.pyc
474${PYSITELIB}/synapse/handlers/user_directory.pyo 471${PYSITELIB}/synapse/handlers/user_directory.pyo
475${PYSITELIB}/synapse/http/__init__.py 472${PYSITELIB}/synapse/http/__init__.py
476${PYSITELIB}/synapse/http/__init__.pyc 473${PYSITELIB}/synapse/http/__init__.pyc
477${PYSITELIB}/synapse/http/__init__.pyo 474${PYSITELIB}/synapse/http/__init__.pyo
478${PYSITELIB}/synapse/http/additional_resource.py 475${PYSITELIB}/synapse/http/additional_resource.py
479${PYSITELIB}/synapse/http/additional_resource.pyc 476${PYSITELIB}/synapse/http/additional_resource.pyc
480${PYSITELIB}/synapse/http/additional_resource.pyo 477${PYSITELIB}/synapse/http/additional_resource.pyo
481${PYSITELIB}/synapse/http/client.py 478${PYSITELIB}/synapse/http/client.py
482${PYSITELIB}/synapse/http/client.pyc 479${PYSITELIB}/synapse/http/client.pyc
483${PYSITELIB}/synapse/http/client.pyo 480${PYSITELIB}/synapse/http/client.pyo
484${PYSITELIB}/synapse/http/connectproxyclient.py 481${PYSITELIB}/synapse/http/connectproxyclient.py
485${PYSITELIB}/synapse/http/connectproxyclient.pyc 482${PYSITELIB}/synapse/http/connectproxyclient.pyc
486${PYSITELIB}/synapse/http/connectproxyclient.pyo 483${PYSITELIB}/synapse/http/connectproxyclient.pyo
487${PYSITELIB}/synapse/http/federation/__init__.py 484${PYSITELIB}/synapse/http/federation/__init__.py
488${PYSITELIB}/synapse/http/federation/__init__.pyc 485${PYSITELIB}/synapse/http/federation/__init__.pyc
489${PYSITELIB}/synapse/http/federation/__init__.pyo 486${PYSITELIB}/synapse/http/federation/__init__.pyo
490${PYSITELIB}/synapse/http/federation/matrix_federation_agent.py 487${PYSITELIB}/synapse/http/federation/matrix_federation_agent.py
491${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyc 488${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyc
492${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyo 489${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyo
493${PYSITELIB}/synapse/http/federation/srv_resolver.py 490${PYSITELIB}/synapse/http/federation/srv_resolver.py
494${PYSITELIB}/synapse/http/federation/srv_resolver.pyc 491${PYSITELIB}/synapse/http/federation/srv_resolver.pyc
495${PYSITELIB}/synapse/http/federation/srv_resolver.pyo 492${PYSITELIB}/synapse/http/federation/srv_resolver.pyo
496${PYSITELIB}/synapse/http/federation/well_known_resolver.py 493${PYSITELIB}/synapse/http/federation/well_known_resolver.py
497${PYSITELIB}/synapse/http/federation/well_known_resolver.pyc 494${PYSITELIB}/synapse/http/federation/well_known_resolver.pyc
498${PYSITELIB}/synapse/http/federation/well_known_resolver.pyo 495${PYSITELIB}/synapse/http/federation/well_known_resolver.pyo
499${PYSITELIB}/synapse/http/matrixfederationclient.py 496${PYSITELIB}/synapse/http/matrixfederationclient.py
500${PYSITELIB}/synapse/http/matrixfederationclient.pyc 497${PYSITELIB}/synapse/http/matrixfederationclient.pyc
501${PYSITELIB}/synapse/http/matrixfederationclient.pyo 498${PYSITELIB}/synapse/http/matrixfederationclient.pyo
502${PYSITELIB}/synapse/http/proxyagent.py 499${PYSITELIB}/synapse/http/proxyagent.py
503${PYSITELIB}/synapse/http/proxyagent.pyc 500${PYSITELIB}/synapse/http/proxyagent.pyc
504${PYSITELIB}/synapse/http/proxyagent.pyo 501${PYSITELIB}/synapse/http/proxyagent.pyo
505${PYSITELIB}/synapse/http/request_metrics.py 502${PYSITELIB}/synapse/http/request_metrics.py
506${PYSITELIB}/synapse/http/request_metrics.pyc 503${PYSITELIB}/synapse/http/request_metrics.pyc
507${PYSITELIB}/synapse/http/request_metrics.pyo 504${PYSITELIB}/synapse/http/request_metrics.pyo
508${PYSITELIB}/synapse/http/server.py 505${PYSITELIB}/synapse/http/server.py
509${PYSITELIB}/synapse/http/server.pyc 506${PYSITELIB}/synapse/http/server.pyc
510${PYSITELIB}/synapse/http/server.pyo 507${PYSITELIB}/synapse/http/server.pyo
511${PYSITELIB}/synapse/http/servlet.py 508${PYSITELIB}/synapse/http/servlet.py
512${PYSITELIB}/synapse/http/servlet.pyc 509${PYSITELIB}/synapse/http/servlet.pyc
513${PYSITELIB}/synapse/http/servlet.pyo 510${PYSITELIB}/synapse/http/servlet.pyo
514${PYSITELIB}/synapse/http/site.py 511${PYSITELIB}/synapse/http/site.py
515${PYSITELIB}/synapse/http/site.pyc 512${PYSITELIB}/synapse/http/site.pyc
516${PYSITELIB}/synapse/http/site.pyo 513${PYSITELIB}/synapse/http/site.pyo
517${PYSITELIB}/synapse/logging/__init__.py 514${PYSITELIB}/synapse/logging/__init__.py
518${PYSITELIB}/synapse/logging/__init__.pyc 515${PYSITELIB}/synapse/logging/__init__.pyc
519${PYSITELIB}/synapse/logging/__init__.pyo 516${PYSITELIB}/synapse/logging/__init__.pyo
520${PYSITELIB}/synapse/logging/_remote.py 517${PYSITELIB}/synapse/logging/_remote.py
521${PYSITELIB}/synapse/logging/_remote.pyc 518${PYSITELIB}/synapse/logging/_remote.pyc
522${PYSITELIB}/synapse/logging/_remote.pyo 519${PYSITELIB}/synapse/logging/_remote.pyo
523${PYSITELIB}/synapse/logging/_structured.py 520${PYSITELIB}/synapse/logging/_structured.py
524${PYSITELIB}/synapse/logging/_structured.pyc 521${PYSITELIB}/synapse/logging/_structured.pyc
525${PYSITELIB}/synapse/logging/_structured.pyo 522${PYSITELIB}/synapse/logging/_structured.pyo
526${PYSITELIB}/synapse/logging/_terse_json.py 523${PYSITELIB}/synapse/logging/_terse_json.py
527${PYSITELIB}/synapse/logging/_terse_json.pyc 524${PYSITELIB}/synapse/logging/_terse_json.pyc
528${PYSITELIB}/synapse/logging/_terse_json.pyo 525${PYSITELIB}/synapse/logging/_terse_json.pyo
529${PYSITELIB}/synapse/logging/context.py 526${PYSITELIB}/synapse/logging/context.py
530${PYSITELIB}/synapse/logging/context.pyc 527${PYSITELIB}/synapse/logging/context.pyc
531${PYSITELIB}/synapse/logging/context.pyo 528${PYSITELIB}/synapse/logging/context.pyo
532${PYSITELIB}/synapse/logging/filter.py 529${PYSITELIB}/synapse/logging/filter.py
533${PYSITELIB}/synapse/logging/filter.pyc 530${PYSITELIB}/synapse/logging/filter.pyc
534${PYSITELIB}/synapse/logging/filter.pyo 531${PYSITELIB}/synapse/logging/filter.pyo
535${PYSITELIB}/synapse/logging/formatter.py 532${PYSITELIB}/synapse/logging/formatter.py
536${PYSITELIB}/synapse/logging/formatter.pyc 533${PYSITELIB}/synapse/logging/formatter.pyc
537${PYSITELIB}/synapse/logging/formatter.pyo 534${PYSITELIB}/synapse/logging/formatter.pyo
538${PYSITELIB}/synapse/logging/opentracing.py 535${PYSITELIB}/synapse/logging/opentracing.py
539${PYSITELIB}/synapse/logging/opentracing.pyc 536${PYSITELIB}/synapse/logging/opentracing.pyc
540${PYSITELIB}/synapse/logging/opentracing.pyo 537${PYSITELIB}/synapse/logging/opentracing.pyo
541${PYSITELIB}/synapse/logging/scopecontextmanager.py 538${PYSITELIB}/synapse/logging/scopecontextmanager.py
542${PYSITELIB}/synapse/logging/scopecontextmanager.pyc 539${PYSITELIB}/synapse/logging/scopecontextmanager.pyc
543${PYSITELIB}/synapse/logging/scopecontextmanager.pyo 540${PYSITELIB}/synapse/logging/scopecontextmanager.pyo
544${PYSITELIB}/synapse/logging/utils.py 541${PYSITELIB}/synapse/logging/utils.py
545${PYSITELIB}/synapse/logging/utils.pyc 542${PYSITELIB}/synapse/logging/utils.pyc
546${PYSITELIB}/synapse/logging/utils.pyo 543${PYSITELIB}/synapse/logging/utils.pyo
547${PYSITELIB}/synapse/metrics/__init__.py 544${PYSITELIB}/synapse/metrics/__init__.py
548${PYSITELIB}/synapse/metrics/__init__.pyc 545${PYSITELIB}/synapse/metrics/__init__.pyc
549${PYSITELIB}/synapse/metrics/__init__.pyo 546${PYSITELIB}/synapse/metrics/__init__.pyo
550${PYSITELIB}/synapse/metrics/_exposition.py 547${PYSITELIB}/synapse/metrics/_exposition.py
551${PYSITELIB}/synapse/metrics/_exposition.pyc 548${PYSITELIB}/synapse/metrics/_exposition.pyc
552${PYSITELIB}/synapse/metrics/_exposition.pyo 549${PYSITELIB}/synapse/metrics/_exposition.pyo
553${PYSITELIB}/synapse/metrics/background_process_metrics.py 550${PYSITELIB}/synapse/metrics/background_process_metrics.py
554${PYSITELIB}/synapse/metrics/background_process_metrics.pyc 551${PYSITELIB}/synapse/metrics/background_process_metrics.pyc
555${PYSITELIB}/synapse/metrics/background_process_metrics.pyo 552${PYSITELIB}/synapse/metrics/background_process_metrics.pyo
556${PYSITELIB}/synapse/metrics/jemalloc.py 553${PYSITELIB}/synapse/metrics/jemalloc.py
557${PYSITELIB}/synapse/metrics/jemalloc.pyc 554${PYSITELIB}/synapse/metrics/jemalloc.pyc
558${PYSITELIB}/synapse/metrics/jemalloc.pyo 555${PYSITELIB}/synapse/metrics/jemalloc.pyo
559${PYSITELIB}/synapse/module_api/__init__.py 556${PYSITELIB}/synapse/module_api/__init__.py
560${PYSITELIB}/synapse/module_api/__init__.pyc 557${PYSITELIB}/synapse/module_api/__init__.pyc
561${PYSITELIB}/synapse/module_api/__init__.pyo 558${PYSITELIB}/synapse/module_api/__init__.pyo
562${PYSITELIB}/synapse/module_api/errors.py 559${PYSITELIB}/synapse/module_api/errors.py
563${PYSITELIB}/synapse/module_api/errors.pyc 560${PYSITELIB}/synapse/module_api/errors.pyc
564${PYSITELIB}/synapse/module_api/errors.pyo 561${PYSITELIB}/synapse/module_api/errors.pyo
565${PYSITELIB}/synapse/notifier.py 562${PYSITELIB}/synapse/notifier.py
566${PYSITELIB}/synapse/notifier.pyc 563${PYSITELIB}/synapse/notifier.pyc
567${PYSITELIB}/synapse/notifier.pyo 564${PYSITELIB}/synapse/notifier.pyo
568${PYSITELIB}/synapse/push/__init__.py 565${PYSITELIB}/synapse/push/__init__.py
569${PYSITELIB}/synapse/push/__init__.pyc 566${PYSITELIB}/synapse/push/__init__.pyc
570${PYSITELIB}/synapse/push/__init__.pyo 567${PYSITELIB}/synapse/push/__init__.pyo
571${PYSITELIB}/synapse/push/action_generator.py 568${PYSITELIB}/synapse/push/action_generator.py
572${PYSITELIB}/synapse/push/action_generator.pyc 569${PYSITELIB}/synapse/push/action_generator.pyc
573${PYSITELIB}/synapse/push/action_generator.pyo 570${PYSITELIB}/synapse/push/action_generator.pyo
574${PYSITELIB}/synapse/push/baserules.py 571${PYSITELIB}/synapse/push/baserules.py
575${PYSITELIB}/synapse/push/baserules.pyc 572${PYSITELIB}/synapse/push/baserules.pyc
576${PYSITELIB}/synapse/push/baserules.pyo 573${PYSITELIB}/synapse/push/baserules.pyo
577${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.py 574${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.py
578${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyc 575${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyc
579${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyo 576${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyo
580${PYSITELIB}/synapse/push/clientformat.py 577${PYSITELIB}/synapse/push/clientformat.py
581${PYSITELIB}/synapse/push/clientformat.pyc 578${PYSITELIB}/synapse/push/clientformat.pyc
582${PYSITELIB}/synapse/push/clientformat.pyo 579${PYSITELIB}/synapse/push/clientformat.pyo
583${PYSITELIB}/synapse/push/emailpusher.py 580${PYSITELIB}/synapse/push/emailpusher.py
584${PYSITELIB}/synapse/push/emailpusher.pyc 581${PYSITELIB}/synapse/push/emailpusher.pyc
585${PYSITELIB}/synapse/push/emailpusher.pyo 582${PYSITELIB}/synapse/push/emailpusher.pyo
586${PYSITELIB}/synapse/push/httppusher.py 583${PYSITELIB}/synapse/push/httppusher.py
587${PYSITELIB}/synapse/push/httppusher.pyc 584${PYSITELIB}/synapse/push/httppusher.pyc
588${PYSITELIB}/synapse/push/httppusher.pyo 585${PYSITELIB}/synapse/push/httppusher.pyo
589${PYSITELIB}/synapse/push/mailer.py 586${PYSITELIB}/synapse/push/mailer.py
590${PYSITELIB}/synapse/push/mailer.pyc 587${PYSITELIB}/synapse/push/mailer.pyc
591${PYSITELIB}/synapse/push/mailer.pyo 588${PYSITELIB}/synapse/push/mailer.pyo
592${PYSITELIB}/synapse/push/presentable_names.py 589${PYSITELIB}/synapse/push/presentable_names.py
593${PYSITELIB}/synapse/push/presentable_names.pyc 590${PYSITELIB}/synapse/push/presentable_names.pyc
594${PYSITELIB}/synapse/push/presentable_names.pyo 591${PYSITELIB}/synapse/push/presentable_names.pyo
595${PYSITELIB}/synapse/push/push_rule_evaluator.py 592${PYSITELIB}/synapse/push/push_rule_evaluator.py
596${PYSITELIB}/synapse/push/push_rule_evaluator.pyc 593${PYSITELIB}/synapse/push/push_rule_evaluator.pyc
597${PYSITELIB}/synapse/push/push_rule_evaluator.pyo 594${PYSITELIB}/synapse/push/push_rule_evaluator.pyo
598${PYSITELIB}/synapse/push/push_tools.py 595${PYSITELIB}/synapse/push/push_tools.py
599${PYSITELIB}/synapse/push/push_tools.pyc 596${PYSITELIB}/synapse/push/push_tools.pyc
600${PYSITELIB}/synapse/push/push_tools.pyo 597${PYSITELIB}/synapse/push/push_tools.pyo
601${PYSITELIB}/synapse/push/pusher.py 598${PYSITELIB}/synapse/push/pusher.py
602${PYSITELIB}/synapse/push/pusher.pyc 599${PYSITELIB}/synapse/push/pusher.pyc
603${PYSITELIB}/synapse/push/pusher.pyo 600${PYSITELIB}/synapse/push/pusher.pyo
604${PYSITELIB}/synapse/push/pusherpool.py 601${PYSITELIB}/synapse/push/pusherpool.py
605${PYSITELIB}/synapse/push/pusherpool.pyc 602${PYSITELIB}/synapse/push/pusherpool.pyc
606${PYSITELIB}/synapse/push/pusherpool.pyo 603${PYSITELIB}/synapse/push/pusherpool.pyo
607${PYSITELIB}/synapse/push/rulekinds.py 604${PYSITELIB}/synapse/push/rulekinds.py
608${PYSITELIB}/synapse/push/rulekinds.pyc 605${PYSITELIB}/synapse/push/rulekinds.pyc
609${PYSITELIB}/synapse/push/rulekinds.pyo 606${PYSITELIB}/synapse/push/rulekinds.pyo
610${PYSITELIB}/synapse/python_dependencies.py 607${PYSITELIB}/synapse/python_dependencies.py
611${PYSITELIB}/synapse/python_dependencies.pyc 608${PYSITELIB}/synapse/python_dependencies.pyc
612${PYSITELIB}/synapse/python_dependencies.pyo 609${PYSITELIB}/synapse/python_dependencies.pyo
613${PYSITELIB}/synapse/replication/__init__.py 610${PYSITELIB}/synapse/replication/__init__.py
614${PYSITELIB}/synapse/replication/__init__.pyc 611${PYSITELIB}/synapse/replication/__init__.pyc
615${PYSITELIB}/synapse/replication/__init__.pyo 612${PYSITELIB}/synapse/replication/__init__.pyo
616${PYSITELIB}/synapse/replication/http/__init__.py 613${PYSITELIB}/synapse/replication/http/__init__.py
617${PYSITELIB}/synapse/replication/http/__init__.pyc 614${PYSITELIB}/synapse/replication/http/__init__.pyc
618${PYSITELIB}/synapse/replication/http/__init__.pyo 615${PYSITELIB}/synapse/replication/http/__init__.pyo
619${PYSITELIB}/synapse/replication/http/_base.py 616${PYSITELIB}/synapse/replication/http/_base.py
620${PYSITELIB}/synapse/replication/http/_base.pyc 617${PYSITELIB}/synapse/replication/http/_base.pyc
621${PYSITELIB}/synapse/replication/http/_base.pyo 618${PYSITELIB}/synapse/replication/http/_base.pyo
622${PYSITELIB}/synapse/replication/http/account_data.py 619${PYSITELIB}/synapse/replication/http/account_data.py
623${PYSITELIB}/synapse/replication/http/account_data.pyc 620${PYSITELIB}/synapse/replication/http/account_data.pyc
624${PYSITELIB}/synapse/replication/http/account_data.pyo 621${PYSITELIB}/synapse/replication/http/account_data.pyo
625${PYSITELIB}/synapse/replication/http/devices.py 622${PYSITELIB}/synapse/replication/http/devices.py
626${PYSITELIB}/synapse/replication/http/devices.pyc 623${PYSITELIB}/synapse/replication/http/devices.pyc
627${PYSITELIB}/synapse/replication/http/devices.pyo 624${PYSITELIB}/synapse/replication/http/devices.pyo
628${PYSITELIB}/synapse/replication/http/federation.py 625${PYSITELIB}/synapse/replication/http/federation.py
629${PYSITELIB}/synapse/replication/http/federation.pyc 626${PYSITELIB}/synapse/replication/http/federation.pyc
630${PYSITELIB}/synapse/replication/http/federation.pyo 627${PYSITELIB}/synapse/replication/http/federation.pyo
631${PYSITELIB}/synapse/replication/http/login.py 628${PYSITELIB}/synapse/replication/http/login.py
632${PYSITELIB}/synapse/replication/http/login.pyc 629${PYSITELIB}/synapse/replication/http/login.pyc
633${PYSITELIB}/synapse/replication/http/login.pyo 630${PYSITELIB}/synapse/replication/http/login.pyo
634${PYSITELIB}/synapse/replication/http/membership.py 631${PYSITELIB}/synapse/replication/http/membership.py
635${PYSITELIB}/synapse/replication/http/membership.pyc 632${PYSITELIB}/synapse/replication/http/membership.pyc
636${PYSITELIB}/synapse/replication/http/membership.pyo 633${PYSITELIB}/synapse/replication/http/membership.pyo
637${PYSITELIB}/synapse/replication/http/presence.py 634${PYSITELIB}/synapse/replication/http/presence.py
638${PYSITELIB}/synapse/replication/http/presence.pyc 635${PYSITELIB}/synapse/replication/http/presence.pyc
639${PYSITELIB}/synapse/replication/http/presence.pyo 636${PYSITELIB}/synapse/replication/http/presence.pyo
640${PYSITELIB}/synapse/replication/http/push.py 637${PYSITELIB}/synapse/replication/http/push.py
641${PYSITELIB}/synapse/replication/http/push.pyc 638${PYSITELIB}/synapse/replication/http/push.pyc
642${PYSITELIB}/synapse/replication/http/push.pyo 639${PYSITELIB}/synapse/replication/http/push.pyo
643${PYSITELIB}/synapse/replication/http/register.py 640${PYSITELIB}/synapse/replication/http/register.py
644${PYSITELIB}/synapse/replication/http/register.pyc 641${PYSITELIB}/synapse/replication/http/register.pyc
645${PYSITELIB}/synapse/replication/http/register.pyo 642${PYSITELIB}/synapse/replication/http/register.pyo
646${PYSITELIB}/synapse/replication/http/send_event.py 643${PYSITELIB}/synapse/replication/http/send_event.py
647${PYSITELIB}/synapse/replication/http/send_event.pyc 644${PYSITELIB}/synapse/replication/http/send_event.pyc
648${PYSITELIB}/synapse/replication/http/send_event.pyo 645${PYSITELIB}/synapse/replication/http/send_event.pyo
649${PYSITELIB}/synapse/replication/http/streams.py 646${PYSITELIB}/synapse/replication/http/streams.py
650${PYSITELIB}/synapse/replication/http/streams.pyc 647${PYSITELIB}/synapse/replication/http/streams.pyc
651${PYSITELIB}/synapse/replication/http/streams.pyo 648${PYSITELIB}/synapse/replication/http/streams.pyo
652${PYSITELIB}/synapse/replication/slave/__init__.py 649${PYSITELIB}/synapse/replication/slave/__init__.py
653${PYSITELIB}/synapse/replication/slave/__init__.pyc 650${PYSITELIB}/synapse/replication/slave/__init__.pyc
654${PYSITELIB}/synapse/replication/slave/__init__.pyo 651${PYSITELIB}/synapse/replication/slave/__init__.pyo
655${PYSITELIB}/synapse/replication/slave/storage/__init__.py 652${PYSITELIB}/synapse/replication/slave/storage/__init__.py
656${PYSITELIB}/synapse/replication/slave/storage/__init__.pyc 653${PYSITELIB}/synapse/replication/slave/storage/__init__.pyc
657${PYSITELIB}/synapse/replication/slave/storage/__init__.pyo 654${PYSITELIB}/synapse/replication/slave/storage/__init__.pyo
658${PYSITELIB}/synapse/replication/slave/storage/_base.py 655${PYSITELIB}/synapse/replication/slave/storage/_base.py
659${PYSITELIB}/synapse/replication/slave/storage/_base.pyc 656${PYSITELIB}/synapse/replication/slave/storage/_base.pyc
660${PYSITELIB}/synapse/replication/slave/storage/_base.pyo 657${PYSITELIB}/synapse/replication/slave/storage/_base.pyo
661${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.py 658${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.py
662${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyc 659${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyc
663${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyo 660${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyo
664${PYSITELIB}/synapse/replication/slave/storage/account_data.py 661${PYSITELIB}/synapse/replication/slave/storage/account_data.py
665${PYSITELIB}/synapse/replication/slave/storage/account_data.pyc 662${PYSITELIB}/synapse/replication/slave/storage/account_data.pyc
666${PYSITELIB}/synapse/replication/slave/storage/account_data.pyo 663${PYSITELIB}/synapse/replication/slave/storage/account_data.pyo
667${PYSITELIB}/synapse/replication/slave/storage/appservice.py 664${PYSITELIB}/synapse/replication/slave/storage/appservice.py
668${PYSITELIB}/synapse/replication/slave/storage/appservice.pyc 665${PYSITELIB}/synapse/replication/slave/storage/appservice.pyc
669${PYSITELIB}/synapse/replication/slave/storage/appservice.pyo 666${PYSITELIB}/synapse/replication/slave/storage/appservice.pyo
670${PYSITELIB}/synapse/replication/slave/storage/client_ips.py 667${PYSITELIB}/synapse/replication/slave/storage/client_ips.py
671${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyc 668${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyc
672${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyo 669${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyo
673${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.py 670${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.py
674${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyc 671${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyc
675${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyo 672${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyo
676${PYSITELIB}/synapse/replication/slave/storage/devices.py 673${PYSITELIB}/synapse/replication/slave/storage/devices.py
677${PYSITELIB}/synapse/replication/slave/storage/devices.pyc 674${PYSITELIB}/synapse/replication/slave/storage/devices.pyc
678${PYSITELIB}/synapse/replication/slave/storage/devices.pyo 675${PYSITELIB}/synapse/replication/slave/storage/devices.pyo
679${PYSITELIB}/synapse/replication/slave/storage/directory.py 676${PYSITELIB}/synapse/replication/slave/storage/directory.py
680${PYSITELIB}/synapse/replication/slave/storage/directory.pyc 677${PYSITELIB}/synapse/replication/slave/storage/directory.pyc
681${PYSITELIB}/synapse/replication/slave/storage/directory.pyo 678${PYSITELIB}/synapse/replication/slave/storage/directory.pyo
682${PYSITELIB}/synapse/replication/slave/storage/events.py 679${PYSITELIB}/synapse/replication/slave/storage/events.py
683${PYSITELIB}/synapse/replication/slave/storage/events.pyc 680${PYSITELIB}/synapse/replication/slave/storage/events.pyc
684${PYSITELIB}/synapse/replication/slave/storage/events.pyo 681${PYSITELIB}/synapse/replication/slave/storage/events.pyo
685${PYSITELIB}/synapse/replication/slave/storage/filtering.py 682${PYSITELIB}/synapse/replication/slave/storage/filtering.py
686${PYSITELIB}/synapse/replication/slave/storage/filtering.pyc 683${PYSITELIB}/synapse/replication/slave/storage/filtering.pyc
687${PYSITELIB}/synapse/replication/slave/storage/filtering.pyo 684${PYSITELIB}/synapse/replication/slave/storage/filtering.pyo
688${PYSITELIB}/synapse/replication/slave/storage/groups.py 685${PYSITELIB}/synapse/replication/slave/storage/groups.py
689${PYSITELIB}/synapse/replication/slave/storage/groups.pyc 686${PYSITELIB}/synapse/replication/slave/storage/groups.pyc
690${PYSITELIB}/synapse/replication/slave/storage/groups.pyo 687${PYSITELIB}/synapse/replication/slave/storage/groups.pyo
691${PYSITELIB}/synapse/replication/slave/storage/keys.py 688${PYSITELIB}/synapse/replication/slave/storage/keys.py
692${PYSITELIB}/synapse/replication/slave/storage/keys.pyc 689${PYSITELIB}/synapse/replication/slave/storage/keys.pyc
693${PYSITELIB}/synapse/replication/slave/storage/keys.pyo 690${PYSITELIB}/synapse/replication/slave/storage/keys.pyo
694${PYSITELIB}/synapse/replication/slave/storage/profile.py 691${PYSITELIB}/synapse/replication/slave/storage/profile.py
695${PYSITELIB}/synapse/replication/slave/storage/profile.pyc 692${PYSITELIB}/synapse/replication/slave/storage/profile.pyc
696${PYSITELIB}/synapse/replication/slave/storage/profile.pyo 693${PYSITELIB}/synapse/replication/slave/storage/profile.pyo
697${PYSITELIB}/synapse/replication/slave/storage/push_rule.py 694${PYSITELIB}/synapse/replication/slave/storage/push_rule.py
698${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyc 695${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyc
699${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyo 696${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyo
700${PYSITELIB}/synapse/replication/slave/storage/pushers.py 697${PYSITELIB}/synapse/replication/slave/storage/pushers.py
701${PYSITELIB}/synapse/replication/slave/storage/pushers.pyc 698${PYSITELIB}/synapse/replication/slave/storage/pushers.pyc
702${PYSITELIB}/synapse/replication/slave/storage/pushers.pyo 699${PYSITELIB}/synapse/replication/slave/storage/pushers.pyo
703${PYSITELIB}/synapse/replication/slave/storage/receipts.py 700${PYSITELIB}/synapse/replication/slave/storage/receipts.py
704${PYSITELIB}/synapse/replication/slave/storage/receipts.pyc 701${PYSITELIB}/synapse/replication/slave/storage/receipts.pyc
705${PYSITELIB}/synapse/replication/slave/storage/receipts.pyo 702${PYSITELIB}/synapse/replication/slave/storage/receipts.pyo
706${PYSITELIB}/synapse/replication/slave/storage/registration.py 703${PYSITELIB}/synapse/replication/slave/storage/registration.py
707${PYSITELIB}/synapse/replication/slave/storage/registration.pyc 704${PYSITELIB}/synapse/replication/slave/storage/registration.pyc
708${PYSITELIB}/synapse/replication/slave/storage/registration.pyo 705${PYSITELIB}/synapse/replication/slave/storage/registration.pyo
709${PYSITELIB}/synapse/replication/slave/storage/room.py 706${PYSITELIB}/synapse/replication/slave/storage/room.py
710${PYSITELIB}/synapse/replication/slave/storage/room.pyc 707${PYSITELIB}/synapse/replication/slave/storage/room.pyc
711${PYSITELIB}/synapse/replication/slave/storage/room.pyo 708${PYSITELIB}/synapse/replication/slave/storage/room.pyo
712${PYSITELIB}/synapse/replication/tcp/__init__.py 709${PYSITELIB}/synapse/replication/tcp/__init__.py
713${PYSITELIB}/synapse/replication/tcp/__init__.pyc 710${PYSITELIB}/synapse/replication/tcp/__init__.pyc
714${PYSITELIB}/synapse/replication/tcp/__init__.pyo 711${PYSITELIB}/synapse/replication/tcp/__init__.pyo
715${PYSITELIB}/synapse/replication/tcp/client.py 712${PYSITELIB}/synapse/replication/tcp/client.py
716${PYSITELIB}/synapse/replication/tcp/client.pyc 713${PYSITELIB}/synapse/replication/tcp/client.pyc
717${PYSITELIB}/synapse/replication/tcp/client.pyo 714${PYSITELIB}/synapse/replication/tcp/client.pyo
718${PYSITELIB}/synapse/replication/tcp/commands.py 715${PYSITELIB}/synapse/replication/tcp/commands.py
719${PYSITELIB}/synapse/replication/tcp/commands.pyc 716${PYSITELIB}/synapse/replication/tcp/commands.pyc
720${PYSITELIB}/synapse/replication/tcp/commands.pyo 717${PYSITELIB}/synapse/replication/tcp/commands.pyo
721${PYSITELIB}/synapse/replication/tcp/external_cache.py 718${PYSITELIB}/synapse/replication/tcp/external_cache.py
722${PYSITELIB}/synapse/replication/tcp/external_cache.pyc 719${PYSITELIB}/synapse/replication/tcp/external_cache.pyc
723${PYSITELIB}/synapse/replication/tcp/external_cache.pyo 720${PYSITELIB}/synapse/replication/tcp/external_cache.pyo
724${PYSITELIB}/synapse/replication/tcp/handler.py 721${PYSITELIB}/synapse/replication/tcp/handler.py
725${PYSITELIB}/synapse/replication/tcp/handler.pyc 722${PYSITELIB}/synapse/replication/tcp/handler.pyc
726${PYSITELIB}/synapse/replication/tcp/handler.pyo 723${PYSITELIB}/synapse/replication/tcp/handler.pyo
727${PYSITELIB}/synapse/replication/tcp/protocol.py 724${PYSITELIB}/synapse/replication/tcp/protocol.py
728${PYSITELIB}/synapse/replication/tcp/protocol.pyc 725${PYSITELIB}/synapse/replication/tcp/protocol.pyc
729${PYSITELIB}/synapse/replication/tcp/protocol.pyo 726${PYSITELIB}/synapse/replication/tcp/protocol.pyo
730${PYSITELIB}/synapse/replication/tcp/redis.py 727${PYSITELIB}/synapse/replication/tcp/redis.py
731${PYSITELIB}/synapse/replication/tcp/redis.pyc 728${PYSITELIB}/synapse/replication/tcp/redis.pyc
732${PYSITELIB}/synapse/replication/tcp/redis.pyo 729${PYSITELIB}/synapse/replication/tcp/redis.pyo
733${PYSITELIB}/synapse/replication/tcp/resource.py 730${PYSITELIB}/synapse/replication/tcp/resource.py
734${PYSITELIB}/synapse/replication/tcp/resource.pyc 731${PYSITELIB}/synapse/replication/tcp/resource.pyc
735${PYSITELIB}/synapse/replication/tcp/resource.pyo 732${PYSITELIB}/synapse/replication/tcp/resource.pyo
736${PYSITELIB}/synapse/replication/tcp/streams/__init__.py 733${PYSITELIB}/synapse/replication/tcp/streams/__init__.py
737${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyc 734${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyc
738${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyo 735${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyo
739${PYSITELIB}/synapse/replication/tcp/streams/_base.py 736${PYSITELIB}/synapse/replication/tcp/streams/_base.py
740${PYSITELIB}/synapse/replication/tcp/streams/_base.pyc 737${PYSITELIB}/synapse/replication/tcp/streams/_base.pyc
741${PYSITELIB}/synapse/replication/tcp/streams/_base.pyo 738${PYSITELIB}/synapse/replication/tcp/streams/_base.pyo
742${PYSITELIB}/synapse/replication/tcp/streams/events.py 739${PYSITELIB}/synapse/replication/tcp/streams/events.py
743${PYSITELIB}/synapse/replication/tcp/streams/events.pyc 740${PYSITELIB}/synapse/replication/tcp/streams/events.pyc
744${PYSITELIB}/synapse/replication/tcp/streams/events.pyo 741${PYSITELIB}/synapse/replication/tcp/streams/events.pyo
745${PYSITELIB}/synapse/replication/tcp/streams/federation.py 742${PYSITELIB}/synapse/replication/tcp/streams/federation.py
746${PYSITELIB}/synapse/replication/tcp/streams/federation.pyc 743${PYSITELIB}/synapse/replication/tcp/streams/federation.pyc
747${PYSITELIB}/synapse/replication/tcp/streams/federation.pyo 744${PYSITELIB}/synapse/replication/tcp/streams/federation.pyo
748${PYSITELIB}/synapse/res/templates/account_previously_renewed.html 745${PYSITELIB}/synapse/res/templates/account_previously_renewed.html
749${PYSITELIB}/synapse/res/templates/account_renewed.html 746${PYSITELIB}/synapse/res/templates/account_renewed.html
750${PYSITELIB}/synapse/res/templates/add_threepid.html 747${PYSITELIB}/synapse/res/templates/add_threepid.html
751${PYSITELIB}/synapse/res/templates/add_threepid.txt 748${PYSITELIB}/synapse/res/templates/add_threepid.txt
752${PYSITELIB}/synapse/res/templates/add_threepid_failure.html 749${PYSITELIB}/synapse/res/templates/add_threepid_failure.html
753${PYSITELIB}/synapse/res/templates/add_threepid_success.html 750${PYSITELIB}/synapse/res/templates/add_threepid_success.html
754${PYSITELIB}/synapse/res/templates/auth_success.html 751${PYSITELIB}/synapse/res/templates/auth_success.html
755${PYSITELIB}/synapse/res/templates/invalid_token.html 752${PYSITELIB}/synapse/res/templates/invalid_token.html
756${PYSITELIB}/synapse/res/templates/mail-Element.css 753${PYSITELIB}/synapse/res/templates/mail-Element.css
757${PYSITELIB}/synapse/res/templates/mail-Vector.css 754${PYSITELIB}/synapse/res/templates/mail-Vector.css
758${PYSITELIB}/synapse/res/templates/mail-expiry.css 755${PYSITELIB}/synapse/res/templates/mail-expiry.css
759${PYSITELIB}/synapse/res/templates/mail.css 756${PYSITELIB}/synapse/res/templates/mail.css
760${PYSITELIB}/synapse/res/templates/notice_expiry.html 757${PYSITELIB}/synapse/res/templates/notice_expiry.html
761${PYSITELIB}/synapse/res/templates/notice_expiry.txt 758${PYSITELIB}/synapse/res/templates/notice_expiry.txt
762${PYSITELIB}/synapse/res/templates/notif.html 759${PYSITELIB}/synapse/res/templates/notif.html
763${PYSITELIB}/synapse/res/templates/notif.txt 760${PYSITELIB}/synapse/res/templates/notif.txt
764${PYSITELIB}/synapse/res/templates/notif_mail.html 761${PYSITELIB}/synapse/res/templates/notif_mail.html
765${PYSITELIB}/synapse/res/templates/notif_mail.txt 762${PYSITELIB}/synapse/res/templates/notif_mail.txt
766${PYSITELIB}/synapse/res/templates/password_reset.html 763${PYSITELIB}/synapse/res/templates/password_reset.html
767${PYSITELIB}/synapse/res/templates/password_reset.txt 764${PYSITELIB}/synapse/res/templates/password_reset.txt
768${PYSITELIB}/synapse/res/templates/password_reset_confirmation.html 765${PYSITELIB}/synapse/res/templates/password_reset_confirmation.html
769${PYSITELIB}/synapse/res/templates/password_reset_failure.html 766${PYSITELIB}/synapse/res/templates/password_reset_failure.html
770${PYSITELIB}/synapse/res/templates/password_reset_success.html 767${PYSITELIB}/synapse/res/templates/password_reset_success.html
771${PYSITELIB}/synapse/res/templates/recaptcha.html 768${PYSITELIB}/synapse/res/templates/recaptcha.html
772${PYSITELIB}/synapse/res/templates/registration.html 769${PYSITELIB}/synapse/res/templates/registration.html
773${PYSITELIB}/synapse/res/templates/registration.txt 770${PYSITELIB}/synapse/res/templates/registration.txt
774${PYSITELIB}/synapse/res/templates/registration_failure.html 771${PYSITELIB}/synapse/res/templates/registration_failure.html
775${PYSITELIB}/synapse/res/templates/registration_success.html 772${PYSITELIB}/synapse/res/templates/registration_success.html
776${PYSITELIB}/synapse/res/templates/room.html 773${PYSITELIB}/synapse/res/templates/room.html
777${PYSITELIB}/synapse/res/templates/room.txt 774${PYSITELIB}/synapse/res/templates/room.txt
778${PYSITELIB}/synapse/res/templates/sso.css 775${PYSITELIB}/synapse/res/templates/sso.css
779${PYSITELIB}/synapse/res/templates/sso_account_deactivated.html 776${PYSITELIB}/synapse/res/templates/sso_account_deactivated.html
780${PYSITELIB}/synapse/res/templates/sso_auth_account_details.html 777${PYSITELIB}/synapse/res/templates/sso_auth_account_details.html
781${PYSITELIB}/synapse/res/templates/sso_auth_account_details.js 778${PYSITELIB}/synapse/res/templates/sso_auth_account_details.js
782${PYSITELIB}/synapse/res/templates/sso_auth_bad_user.html 779${PYSITELIB}/synapse/res/templates/sso_auth_bad_user.html
783${PYSITELIB}/synapse/res/templates/sso_auth_confirm.html 780${PYSITELIB}/synapse/res/templates/sso_auth_confirm.html
784${PYSITELIB}/synapse/res/templates/sso_auth_success.html 781${PYSITELIB}/synapse/res/templates/sso_auth_success.html
785${PYSITELIB}/synapse/res/templates/sso_error.html 782${PYSITELIB}/synapse/res/templates/sso_error.html
786${PYSITELIB}/synapse/res/templates/sso_footer.html 783${PYSITELIB}/synapse/res/templates/sso_footer.html
787${PYSITELIB}/synapse/res/templates/sso_login_idp_picker.html 784${PYSITELIB}/synapse/res/templates/sso_login_idp_picker.html
788${PYSITELIB}/synapse/res/templates/sso_new_user_consent.html 785${PYSITELIB}/synapse/res/templates/sso_new_user_consent.html
789${PYSITELIB}/synapse/res/templates/sso_partial_profile.html 786${PYSITELIB}/synapse/res/templates/sso_partial_profile.html
790${PYSITELIB}/synapse/res/templates/sso_redirect_confirm.html 787${PYSITELIB}/synapse/res/templates/sso_redirect_confirm.html
791${PYSITELIB}/synapse/res/templates/terms.html 788${PYSITELIB}/synapse/res/templates/terms.html
792${PYSITELIB}/synapse/rest/__init__.py 789${PYSITELIB}/synapse/rest/__init__.py
793${PYSITELIB}/synapse/rest/__init__.pyc 790${PYSITELIB}/synapse/rest/__init__.pyc
794${PYSITELIB}/synapse/rest/__init__.pyo 791${PYSITELIB}/synapse/rest/__init__.pyo
795${PYSITELIB}/synapse/rest/admin/__init__.py 792${PYSITELIB}/synapse/rest/admin/__init__.py
796${PYSITELIB}/synapse/rest/admin/__init__.pyc 793${PYSITELIB}/synapse/rest/admin/__init__.pyc
797${PYSITELIB}/synapse/rest/admin/__init__.pyo 794${PYSITELIB}/synapse/rest/admin/__init__.pyo
798${PYSITELIB}/synapse/rest/admin/_base.py 795${PYSITELIB}/synapse/rest/admin/_base.py
799${PYSITELIB}/synapse/rest/admin/_base.pyc 796${PYSITELIB}/synapse/rest/admin/_base.pyc
800${PYSITELIB}/synapse/rest/admin/_base.pyo 797${PYSITELIB}/synapse/rest/admin/_base.pyo
801${PYSITELIB}/synapse/rest/admin/devices.py 798${PYSITELIB}/synapse/rest/admin/devices.py
802${PYSITELIB}/synapse/rest/admin/devices.pyc 799${PYSITELIB}/synapse/rest/admin/devices.pyc
803${PYSITELIB}/synapse/rest/admin/devices.pyo 800${PYSITELIB}/synapse/rest/admin/devices.pyo
804${PYSITELIB}/synapse/rest/admin/event_reports.py 801${PYSITELIB}/synapse/rest/admin/event_reports.py
805${PYSITELIB}/synapse/rest/admin/event_reports.pyc 802${PYSITELIB}/synapse/rest/admin/event_reports.pyc
806${PYSITELIB}/synapse/rest/admin/event_reports.pyo 803${PYSITELIB}/synapse/rest/admin/event_reports.pyo
807${PYSITELIB}/synapse/rest/admin/groups.py 804${PYSITELIB}/synapse/rest/admin/groups.py
808${PYSITELIB}/synapse/rest/admin/groups.pyc 805${PYSITELIB}/synapse/rest/admin/groups.pyc
809${PYSITELIB}/synapse/rest/admin/groups.pyo 806${PYSITELIB}/synapse/rest/admin/groups.pyo
810${PYSITELIB}/synapse/rest/admin/media.py 807${PYSITELIB}/synapse/rest/admin/media.py
811${PYSITELIB}/synapse/rest/admin/media.pyc 808${PYSITELIB}/synapse/rest/admin/media.pyc
812${PYSITELIB}/synapse/rest/admin/media.pyo 809${PYSITELIB}/synapse/rest/admin/media.pyo
813${PYSITELIB}/synapse/rest/admin/purge_room_servlet.py 810${PYSITELIB}/synapse/rest/admin/purge_room_servlet.py
814${PYSITELIB}/synapse/rest/admin/purge_room_servlet.pyc 811${PYSITELIB}/synapse/rest/admin/purge_room_servlet.pyc
815${PYSITELIB}/synapse/rest/admin/purge_room_servlet.pyo 812${PYSITELIB}/synapse/rest/admin/purge_room_servlet.pyo
816${PYSITELIB}/synapse/rest/admin/rooms.py 813${PYSITELIB}/synapse/rest/admin/rooms.py
817${PYSITELIB}/synapse/rest/admin/rooms.pyc 814${PYSITELIB}/synapse/rest/admin/rooms.pyc
818${PYSITELIB}/synapse/rest/admin/rooms.pyo 815${PYSITELIB}/synapse/rest/admin/rooms.pyo
819${PYSITELIB}/synapse/rest/admin/server_notice_servlet.py 816${PYSITELIB}/synapse/rest/admin/server_notice_servlet.py
820${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyc 817${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyc
821${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyo 818${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyo
822${PYSITELIB}/synapse/rest/admin/statistics.py 819${PYSITELIB}/synapse/rest/admin/statistics.py
823${PYSITELIB}/synapse/rest/admin/statistics.pyc 820${PYSITELIB}/synapse/rest/admin/statistics.pyc
824${PYSITELIB}/synapse/rest/admin/statistics.pyo 821${PYSITELIB}/synapse/rest/admin/statistics.pyo
825${PYSITELIB}/synapse/rest/admin/users.py 822${PYSITELIB}/synapse/rest/admin/users.py
826${PYSITELIB}/synapse/rest/admin/users.pyc 823${PYSITELIB}/synapse/rest/admin/users.pyc
827${PYSITELIB}/synapse/rest/admin/users.pyo 824${PYSITELIB}/synapse/rest/admin/users.pyo
828${PYSITELIB}/synapse/rest/client/__init__.py 825${PYSITELIB}/synapse/rest/client/__init__.py
829${PYSITELIB}/synapse/rest/client/__init__.pyc 826${PYSITELIB}/synapse/rest/client/__init__.pyc
830${PYSITELIB}/synapse/rest/client/__init__.pyo 827${PYSITELIB}/synapse/rest/client/__init__.pyo
831${PYSITELIB}/synapse/rest/client/transactions.py 828${PYSITELIB}/synapse/rest/client/transactions.py
832${PYSITELIB}/synapse/rest/client/transactions.pyc 829${PYSITELIB}/synapse/rest/client/transactions.pyc
833${PYSITELIB}/synapse/rest/client/transactions.pyo 830${PYSITELIB}/synapse/rest/client/transactions.pyo
834${PYSITELIB}/synapse/rest/client/v1/__init__.py 831${PYSITELIB}/synapse/rest/client/v1/__init__.py
835${PYSITELIB}/synapse/rest/client/v1/__init__.pyc 832${PYSITELIB}/synapse/rest/client/v1/__init__.pyc
836${PYSITELIB}/synapse/rest/client/v1/__init__.pyo 833${PYSITELIB}/synapse/rest/client/v1/__init__.pyo
837${PYSITELIB}/synapse/rest/client/v1/directory.py 834${PYSITELIB}/synapse/rest/client/v1/directory.py
838${PYSITELIB}/synapse/rest/client/v1/directory.pyc 835${PYSITELIB}/synapse/rest/client/v1/directory.pyc
839${PYSITELIB}/synapse/rest/client/v1/directory.pyo 836${PYSITELIB}/synapse/rest/client/v1/directory.pyo
840${PYSITELIB}/synapse/rest/client/v1/events.py 837${PYSITELIB}/synapse/rest/client/v1/events.py
841${PYSITELIB}/synapse/rest/client/v1/events.pyc 838${PYSITELIB}/synapse/rest/client/v1/events.pyc
842${PYSITELIB}/synapse/rest/client/v1/events.pyo 839${PYSITELIB}/synapse/rest/client/v1/events.pyo
843${PYSITELIB}/synapse/rest/client/v1/initial_sync.py 840${PYSITELIB}/synapse/rest/client/v1/initial_sync.py
844${PYSITELIB}/synapse/rest/client/v1/initial_sync.pyc 841${PYSITELIB}/synapse/rest/client/v1/initial_sync.pyc
845${PYSITELIB}/synapse/rest/client/v1/initial_sync.pyo 842${PYSITELIB}/synapse/rest/client/v1/initial_sync.pyo
846${PYSITELIB}/synapse/rest/client/v1/login.py 843${PYSITELIB}/synapse/rest/client/v1/login.py
847${PYSITELIB}/synapse/rest/client/v1/login.pyc 844${PYSITELIB}/synapse/rest/client/v1/login.pyc
848${PYSITELIB}/synapse/rest/client/v1/login.pyo 845${PYSITELIB}/synapse/rest/client/v1/login.pyo
849${PYSITELIB}/synapse/rest/client/v1/logout.py 846${PYSITELIB}/synapse/rest/client/v1/logout.py
850${PYSITELIB}/synapse/rest/client/v1/logout.pyc 847${PYSITELIB}/synapse/rest/client/v1/logout.pyc
851${PYSITELIB}/synapse/rest/client/v1/logout.pyo 848${PYSITELIB}/synapse/rest/client/v1/logout.pyo
852${PYSITELIB}/synapse/rest/client/v1/presence.py 849${PYSITELIB}/synapse/rest/client/v1/presence.py
853${PYSITELIB}/synapse/rest/client/v1/presence.pyc 850${PYSITELIB}/synapse/rest/client/v1/presence.pyc
854${PYSITELIB}/synapse/rest/client/v1/presence.pyo 851${PYSITELIB}/synapse/rest/client/v1/presence.pyo
855${PYSITELIB}/synapse/rest/client/v1/profile.py 852${PYSITELIB}/synapse/rest/client/v1/profile.py
856${PYSITELIB}/synapse/rest/client/v1/profile.pyc 853${PYSITELIB}/synapse/rest/client/v1/profile.pyc
857${PYSITELIB}/synapse/rest/client/v1/profile.pyo 854${PYSITELIB}/synapse/rest/client/v1/profile.pyo
858${PYSITELIB}/synapse/rest/client/v1/push_rule.py 855${PYSITELIB}/synapse/rest/client/v1/push_rule.py
859${PYSITELIB}/synapse/rest/client/v1/push_rule.pyc 856${PYSITELIB}/synapse/rest/client/v1/push_rule.pyc
860${PYSITELIB}/synapse/rest/client/v1/push_rule.pyo 857${PYSITELIB}/synapse/rest/client/v1/push_rule.pyo
861${PYSITELIB}/synapse/rest/client/v1/pusher.py 858${PYSITELIB}/synapse/rest/client/v1/pusher.py
862${PYSITELIB}/synapse/rest/client/v1/pusher.pyc 859${PYSITELIB}/synapse/rest/client/v1/pusher.pyc
863${PYSITELIB}/synapse/rest/client/v1/pusher.pyo 860${PYSITELIB}/synapse/rest/client/v1/pusher.pyo
864${PYSITELIB}/synapse/rest/client/v1/room.py 861${PYSITELIB}/synapse/rest/client/v1/room.py
865${PYSITELIB}/synapse/rest/client/v1/room.pyc 862${PYSITELIB}/synapse/rest/client/v1/room.pyc
866${PYSITELIB}/synapse/rest/client/v1/room.pyo 863${PYSITELIB}/synapse/rest/client/v1/room.pyo
867${PYSITELIB}/synapse/rest/client/v1/voip.py 864${PYSITELIB}/synapse/rest/client/v1/voip.py
868${PYSITELIB}/synapse/rest/client/v1/voip.pyc 865${PYSITELIB}/synapse/rest/client/v1/voip.pyc
869${PYSITELIB}/synapse/rest/client/v1/voip.pyo 866${PYSITELIB}/synapse/rest/client/v1/voip.pyo
870${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.py 867${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.py
871${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.pyc 868${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.pyc
872${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.pyo 869${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.pyo
873${PYSITELIB}/synapse/rest/client/v2_alpha/_base.py 870${PYSITELIB}/synapse/rest/client/v2_alpha/_base.py
874${PYSITELIB}/synapse/rest/client/v2_alpha/_base.pyc 871${PYSITELIB}/synapse/rest/client/v2_alpha/_base.pyc
875${PYSITELIB}/synapse/rest/client/v2_alpha/_base.pyo 872${PYSITELIB}/synapse/rest/client/v2_alpha/_base.pyo
876${PYSITELIB}/synapse/rest/client/v2_alpha/account.py 873${PYSITELIB}/synapse/rest/client/v2_alpha/account.py
877${PYSITELIB}/synapse/rest/client/v2_alpha/account.pyc 874${PYSITELIB}/synapse/rest/client/v2_alpha/account.pyc
878${PYSITELIB}/synapse/rest/client/v2_alpha/account.pyo 875${PYSITELIB}/synapse/rest/client/v2_alpha/account.pyo
879${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.py 876${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.py
880${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.pyc 877${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.pyc
881${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.pyo 878${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.pyo
882${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.py 879${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.py
883${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.pyc 880${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.pyc
884${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.pyo 881${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.pyo
885${PYSITELIB}/synapse/rest/client/v2_alpha/auth.py 882${PYSITELIB}/synapse/rest/client/v2_alpha/auth.py
886${PYSITELIB}/synapse/rest/client/v2_alpha/auth.pyc 883${PYSITELIB}/synapse/rest/client/v2_alpha/auth.pyc
887${PYSITELIB}/synapse/rest/client/v2_alpha/auth.pyo 884${PYSITELIB}/synapse/rest/client/v2_alpha/auth.pyo
888${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.py 885${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.py
889${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.pyc 886${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.pyc
890${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.pyo 887${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.pyo
891${PYSITELIB}/synapse/rest/client/v2_alpha/devices.py 888${PYSITELIB}/synapse/rest/client/v2_alpha/devices.py
892${PYSITELIB}/synapse/rest/client/v2_alpha/devices.pyc 889${PYSITELIB}/synapse/rest/client/v2_alpha/devices.pyc
893${PYSITELIB}/synapse/rest/client/v2_alpha/devices.pyo 890${PYSITELIB}/synapse/rest/client/v2_alpha/devices.pyo
894${PYSITELIB}/synapse/rest/client/v2_alpha/filter.py 891${PYSITELIB}/synapse/rest/client/v2_alpha/filter.py
895${PYSITELIB}/synapse/rest/client/v2_alpha/filter.pyc 892${PYSITELIB}/synapse/rest/client/v2_alpha/filter.pyc
896${PYSITELIB}/synapse/rest/client/v2_alpha/filter.pyo 893${PYSITELIB}/synapse/rest/client/v2_alpha/filter.pyo
897${PYSITELIB}/synapse/rest/client/v2_alpha/groups.py 894${PYSITELIB}/synapse/rest/client/v2_alpha/groups.py
898${PYSITELIB}/synapse/rest/client/v2_alpha/groups.pyc 895${PYSITELIB}/synapse/rest/client/v2_alpha/groups.pyc
899${PYSITELIB}/synapse/rest/client/v2_alpha/groups.pyo 896${PYSITELIB}/synapse/rest/client/v2_alpha/groups.pyo
900${PYSITELIB}/synapse/rest/client/v2_alpha/keys.py 897${PYSITELIB}/synapse/rest/client/v2_alpha/keys.py
901${PYSITELIB}/synapse/rest/client/v2_alpha/keys.pyc 898${PYSITELIB}/synapse/rest/client/v2_alpha/keys.pyc
902${PYSITELIB}/synapse/rest/client/v2_alpha/keys.pyo 899${PYSITELIB}/synapse/rest/client/v2_alpha/keys.pyo
 900${PYSITELIB}/synapse/rest/client/v2_alpha/knock.pyo
 901${PYSITELIB}/synapse/rest/client/v2_alpha/knock.pyc
 902${PYSITELIB}/synapse/rest/client/v2_alpha/knock.py
903${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.py 903${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.py
904${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.pyc 904${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.pyc
905${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.pyo 905${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.pyo
906${PYSITELIB}/synapse/rest/client/v2_alpha/openid.py 906${PYSITELIB}/synapse/rest/client/v2_alpha/openid.py
907${PYSITELIB}/synapse/rest/client/v2_alpha/openid.pyc 907${PYSITELIB}/synapse/rest/client/v2_alpha/openid.pyc
908${PYSITELIB}/synapse/rest/client/v2_alpha/openid.pyo 908${PYSITELIB}/synapse/rest/client/v2_alpha/openid.pyo
909${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.py 909${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.py
910${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.pyc 910${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.pyc
911${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.pyo 911${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.pyo
912${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.py 912${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.py
913${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.pyc 913${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.pyc
914${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.pyo 914${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.pyo
915${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.py 915${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.py
916${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.pyc 916${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.pyc
917${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.pyo 917${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.pyo
918${PYSITELIB}/synapse/rest/client/v2_alpha/register.py 918${PYSITELIB}/synapse/rest/client/v2_alpha/register.py
919${PYSITELIB}/synapse/rest/client/v2_alpha/register.pyc 919${PYSITELIB}/synapse/rest/client/v2_alpha/register.pyc
920${PYSITELIB}/synapse/rest/client/v2_alpha/register.pyo 920${PYSITELIB}/synapse/rest/client/v2_alpha/register.pyo
921${PYSITELIB}/synapse/rest/client/v2_alpha/relations.py 921${PYSITELIB}/synapse/rest/client/v2_alpha/relations.py
922${PYSITELIB}/synapse/rest/client/v2_alpha/relations.pyc 922${PYSITELIB}/synapse/rest/client/v2_alpha/relations.pyc
923${PYSITELIB}/synapse/rest/client/v2_alpha/relations.pyo 923${PYSITELIB}/synapse/rest/client/v2_alpha/relations.pyo
924${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.py 924${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.py
925${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.pyc 925${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.pyc
926${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.pyo 926${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.pyo
927${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.py 927${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.py
928${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.pyc 928${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.pyc
929${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.pyo 929${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.pyo
930${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.py 930${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.py
931${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.pyc 931${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.pyc
932${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.pyo 932${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.pyo
933${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.py 933${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.py
934${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.pyc 934${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.pyc
935${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.pyo 935${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.pyo
936${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.py 936${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.py
937${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.pyc 937${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.pyc
938${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.pyo 938${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.pyo
939${PYSITELIB}/synapse/rest/client/v2_alpha/sync.py 939${PYSITELIB}/synapse/rest/client/v2_alpha/sync.py
940${PYSITELIB}/synapse/rest/client/v2_alpha/sync.pyc 940${PYSITELIB}/synapse/rest/client/v2_alpha/sync.pyc
941${PYSITELIB}/synapse/rest/client/v2_alpha/sync.pyo 941${PYSITELIB}/synapse/rest/client/v2_alpha/sync.pyo
942${PYSITELIB}/synapse/rest/client/v2_alpha/tags.py 942${PYSITELIB}/synapse/rest/client/v2_alpha/tags.py
943${PYSITELIB}/synapse/rest/client/v2_alpha/tags.pyc 943${PYSITELIB}/synapse/rest/client/v2_alpha/tags.pyc
944${PYSITELIB}/synapse/rest/client/v2_alpha/tags.pyo 944${PYSITELIB}/synapse/rest/client/v2_alpha/tags.pyo
945${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.py 945${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.py
946${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.pyc 946${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.pyc
947${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.pyo 947${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.pyo
948${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.py 948${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.py
949${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.pyc 949${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.pyc
950${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.pyo 950${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.pyo
951${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.py 951${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.py
952${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.pyc 952${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.pyc
953${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.pyo 953${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.pyo
954${PYSITELIB}/synapse/rest/client/versions.py 954${PYSITELIB}/synapse/rest/client/versions.py
955${PYSITELIB}/synapse/rest/client/versions.pyc 955${PYSITELIB}/synapse/rest/client/versions.pyc
956${PYSITELIB}/synapse/rest/client/versions.pyo 956${PYSITELIB}/synapse/rest/client/versions.pyo
957${PYSITELIB}/synapse/rest/consent/__init__.py 957${PYSITELIB}/synapse/rest/consent/__init__.py
958${PYSITELIB}/synapse/rest/consent/__init__.pyc 958${PYSITELIB}/synapse/rest/consent/__init__.pyc
959${PYSITELIB}/synapse/rest/consent/__init__.pyo 959${PYSITELIB}/synapse/rest/consent/__init__.pyo
960${PYSITELIB}/synapse/rest/consent/consent_resource.py 960${PYSITELIB}/synapse/rest/consent/consent_resource.py
961${PYSITELIB}/synapse/rest/consent/consent_resource.pyc 961${PYSITELIB}/synapse/rest/consent/consent_resource.pyc
962${PYSITELIB}/synapse/rest/consent/consent_resource.pyo 962${PYSITELIB}/synapse/rest/consent/consent_resource.pyo
963${PYSITELIB}/synapse/rest/health.py 963${PYSITELIB}/synapse/rest/health.py
964${PYSITELIB}/synapse/rest/health.pyc 964${PYSITELIB}/synapse/rest/health.pyc
965${PYSITELIB}/synapse/rest/health.pyo 965${PYSITELIB}/synapse/rest/health.pyo
966${PYSITELIB}/synapse/rest/key/__init__.py 966${PYSITELIB}/synapse/rest/key/__init__.py
967${PYSITELIB}/synapse/rest/key/__init__.pyc 967${PYSITELIB}/synapse/rest/key/__init__.pyc
968${PYSITELIB}/synapse/rest/key/__init__.pyo 968${PYSITELIB}/synapse/rest/key/__init__.pyo
969${PYSITELIB}/synapse/rest/key/v2/__init__.py 969${PYSITELIB}/synapse/rest/key/v2/__init__.py
970${PYSITELIB}/synapse/rest/key/v2/__init__.pyc 970${PYSITELIB}/synapse/rest/key/v2/__init__.pyc
971${PYSITELIB}/synapse/rest/key/v2/__init__.pyo 971${PYSITELIB}/synapse/rest/key/v2/__init__.pyo
972${PYSITELIB}/synapse/rest/key/v2/local_key_resource.py 972${PYSITELIB}/synapse/rest/key/v2/local_key_resource.py
973${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyc 973${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyc
974${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyo 974${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyo
975${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.py 975${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.py
976${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyc 976${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyc
977${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyo 977${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyo
978${PYSITELIB}/synapse/rest/media/__init__.py 978${PYSITELIB}/synapse/rest/media/__init__.py
979${PYSITELIB}/synapse/rest/media/__init__.pyc 979${PYSITELIB}/synapse/rest/media/__init__.pyc
980${PYSITELIB}/synapse/rest/media/__init__.pyo 980${PYSITELIB}/synapse/rest/media/__init__.pyo
981${PYSITELIB}/synapse/rest/media/v1/__init__.py 981${PYSITELIB}/synapse/rest/media/v1/__init__.py
982${PYSITELIB}/synapse/rest/media/v1/__init__.pyc 982${PYSITELIB}/synapse/rest/media/v1/__init__.pyc
983${PYSITELIB}/synapse/rest/media/v1/__init__.pyo 983${PYSITELIB}/synapse/rest/media/v1/__init__.pyo
984${PYSITELIB}/synapse/rest/media/v1/_base.py 984${PYSITELIB}/synapse/rest/media/v1/_base.py
985${PYSITELIB}/synapse/rest/media/v1/_base.pyc 985${PYSITELIB}/synapse/rest/media/v1/_base.pyc
986${PYSITELIB}/synapse/rest/media/v1/_base.pyo 986${PYSITELIB}/synapse/rest/media/v1/_base.pyo
987${PYSITELIB}/synapse/rest/media/v1/config_resource.py 987${PYSITELIB}/synapse/rest/media/v1/config_resource.py
988${PYSITELIB}/synapse/rest/media/v1/config_resource.pyc 988${PYSITELIB}/synapse/rest/media/v1/config_resource.pyc
989${PYSITELIB}/synapse/rest/media/v1/config_resource.pyo 989${PYSITELIB}/synapse/rest/media/v1/config_resource.pyo
990${PYSITELIB}/synapse/rest/media/v1/download_resource.py 990${PYSITELIB}/synapse/rest/media/v1/download_resource.py
991${PYSITELIB}/synapse/rest/media/v1/download_resource.pyc 991${PYSITELIB}/synapse/rest/media/v1/download_resource.pyc
992${PYSITELIB}/synapse/rest/media/v1/download_resource.pyo 992${PYSITELIB}/synapse/rest/media/v1/download_resource.pyo
993${PYSITELIB}/synapse/rest/media/v1/filepath.py 993${PYSITELIB}/synapse/rest/media/v1/filepath.py
994${PYSITELIB}/synapse/rest/media/v1/filepath.pyc 994${PYSITELIB}/synapse/rest/media/v1/filepath.pyc
995${PYSITELIB}/synapse/rest/media/v1/filepath.pyo 995${PYSITELIB}/synapse/rest/media/v1/filepath.pyo
996${PYSITELIB}/synapse/rest/media/v1/media_repository.py 996${PYSITELIB}/synapse/rest/media/v1/media_repository.py
997${PYSITELIB}/synapse/rest/media/v1/media_repository.pyc 997${PYSITELIB}/synapse/rest/media/v1/media_repository.pyc
998${PYSITELIB}/synapse/rest/media/v1/media_repository.pyo 998${PYSITELIB}/synapse/rest/media/v1/media_repository.pyo
999${PYSITELIB}/synapse/rest/media/v1/media_storage.py 999${PYSITELIB}/synapse/rest/media/v1/media_storage.py
1000${PYSITELIB}/synapse/rest/media/v1/media_storage.pyc 1000${PYSITELIB}/synapse/rest/media/v1/media_storage.pyc
1001${PYSITELIB}/synapse/rest/media/v1/media_storage.pyo 1001${PYSITELIB}/synapse/rest/media/v1/media_storage.pyo
1002${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.py 1002${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.py
1003${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyc 1003${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyc
1004${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyo 1004${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyo
1005${PYSITELIB}/synapse/rest/media/v1/storage_provider.py 1005${PYSITELIB}/synapse/rest/media/v1/storage_provider.py
1006${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyc 1006${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyc
1007${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyo 1007${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyo
1008${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.py 1008${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.py
1009${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyc 1009${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyc
1010${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyo 1010${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyo
1011${PYSITELIB}/synapse/rest/media/v1/thumbnailer.py 1011${PYSITELIB}/synapse/rest/media/v1/thumbnailer.py
1012${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyc 1012${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyc
1013${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyo 1013${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyo
1014${PYSITELIB}/synapse/rest/media/v1/upload_resource.py 1014${PYSITELIB}/synapse/rest/media/v1/upload_resource.py
1015${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyc 1015${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyc
1016${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyo 1016${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyo
1017${PYSITELIB}/synapse/rest/synapse/__init__.py 1017${PYSITELIB}/synapse/rest/synapse/__init__.py
1018${PYSITELIB}/synapse/rest/synapse/__init__.pyc 1018${PYSITELIB}/synapse/rest/synapse/__init__.pyc
1019${PYSITELIB}/synapse/rest/synapse/__init__.pyo 1019${PYSITELIB}/synapse/rest/synapse/__init__.pyo
1020${PYSITELIB}/synapse/rest/synapse/client/__init__.py 1020${PYSITELIB}/synapse/rest/synapse/client/__init__.py
1021${PYSITELIB}/synapse/rest/synapse/client/__init__.pyc 1021${PYSITELIB}/synapse/rest/synapse/client/__init__.pyc
1022${PYSITELIB}/synapse/rest/synapse/client/__init__.pyo 1022${PYSITELIB}/synapse/rest/synapse/client/__init__.pyo
1023${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.py 1023${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.py
1024${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyc 1024${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyc
1025${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyo 1025${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyo
1026${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.py 1026${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.py
1027${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyc 1027${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyc
1028${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyo 1028${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyo
1029${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.py 1029${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.py
1030${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyc 1030${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyc
1031${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyo 1031${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyo
1032${PYSITELIB}/synapse/rest/synapse/client/password_reset.py 1032${PYSITELIB}/synapse/rest/synapse/client/password_reset.py
1033${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyc 1033${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyc
1034${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyo 1034${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyo
1035${PYSITELIB}/synapse/rest/synapse/client/pick_idp.py 1035${PYSITELIB}/synapse/rest/synapse/client/pick_idp.py
1036${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyc 1036${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyc
1037${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyo 1037${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyo
1038${PYSITELIB}/synapse/rest/synapse/client/pick_username.py 1038${PYSITELIB}/synapse/rest/synapse/client/pick_username.py
1039${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyc 1039${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyc
1040${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyo 1040${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyo
1041${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.py 1041${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.py
1042${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyc 1042${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyc
1043${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyo 1043${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyo
1044${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.py 1044${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.py
1045${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyc 1045${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyc
1046${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyo 1046${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyo
1047${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.py 1047${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.py
1048${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyc 1048${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyc
1049${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyo 1049${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyo
1050${PYSITELIB}/synapse/rest/synapse/client/sso_register.py 1050${PYSITELIB}/synapse/rest/synapse/client/sso_register.py
1051${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyc 1051${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyc
1052${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyo 1052${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyo
1053${PYSITELIB}/synapse/rest/well_known.py 1053${PYSITELIB}/synapse/rest/well_known.py
1054${PYSITELIB}/synapse/rest/well_known.pyc 1054${PYSITELIB}/synapse/rest/well_known.pyc
1055${PYSITELIB}/synapse/rest/well_known.pyo 1055${PYSITELIB}/synapse/rest/well_known.pyo
1056${PYSITELIB}/synapse/server.py 1056${PYSITELIB}/synapse/server.py
1057${PYSITELIB}/synapse/server.pyc 1057${PYSITELIB}/synapse/server.pyc
1058${PYSITELIB}/synapse/server.pyo 1058${PYSITELIB}/synapse/server.pyo
1059${PYSITELIB}/synapse/server_notices/__init__.py 1059${PYSITELIB}/synapse/server_notices/__init__.py
1060${PYSITELIB}/synapse/server_notices/__init__.pyc 1060${PYSITELIB}/synapse/server_notices/__init__.pyc
1061${PYSITELIB}/synapse/server_notices/__init__.pyo 1061${PYSITELIB}/synapse/server_notices/__init__.pyo
1062${PYSITELIB}/synapse/server_notices/consent_server_notices.py 1062${PYSITELIB}/synapse/server_notices/consent_server_notices.py
1063${PYSITELIB}/synapse/server_notices/consent_server_notices.pyc 1063${PYSITELIB}/synapse/server_notices/consent_server_notices.pyc
1064${PYSITELIB}/synapse/server_notices/consent_server_notices.pyo 1064${PYSITELIB}/synapse/server_notices/consent_server_notices.pyo
1065${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.py 1065${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.py
1066${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyc 1066${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyc
1067${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyo 1067${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyo
1068${PYSITELIB}/synapse/server_notices/server_notices_manager.py 1068${PYSITELIB}/synapse/server_notices/server_notices_manager.py
1069${PYSITELIB}/synapse/server_notices/server_notices_manager.pyc 1069${PYSITELIB}/synapse/server_notices/server_notices_manager.pyc
1070${PYSITELIB}/synapse/server_notices/server_notices_manager.pyo 1070${PYSITELIB}/synapse/server_notices/server_notices_manager.pyo
1071${PYSITELIB}/synapse/server_notices/server_notices_sender.py 1071${PYSITELIB}/synapse/server_notices/server_notices_sender.py
1072${PYSITELIB}/synapse/server_notices/server_notices_sender.pyc 1072${PYSITELIB}/synapse/server_notices/server_notices_sender.pyc
1073${PYSITELIB}/synapse/server_notices/server_notices_sender.pyo 1073${PYSITELIB}/synapse/server_notices/server_notices_sender.pyo
1074${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.py 1074${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.py
1075${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyc 1075${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyc
1076${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyo 1076${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyo
1077${PYSITELIB}/synapse/spam_checker_api/__init__.py 1077${PYSITELIB}/synapse/spam_checker_api/__init__.py
1078${PYSITELIB}/synapse/spam_checker_api/__init__.pyc 1078${PYSITELIB}/synapse/spam_checker_api/__init__.pyc
1079${PYSITELIB}/synapse/spam_checker_api/__init__.pyo 1079${PYSITELIB}/synapse/spam_checker_api/__init__.pyo
1080${PYSITELIB}/synapse/state/__init__.py 1080${PYSITELIB}/synapse/state/__init__.py
1081${PYSITELIB}/synapse/state/__init__.pyc 1081${PYSITELIB}/synapse/state/__init__.pyc
1082${PYSITELIB}/synapse/state/__init__.pyo 1082${PYSITELIB}/synapse/state/__init__.pyo
1083${PYSITELIB}/synapse/state/v1.py 1083${PYSITELIB}/synapse/state/v1.py
1084${PYSITELIB}/synapse/state/v1.pyc 1084${PYSITELIB}/synapse/state/v1.pyc
1085${PYSITELIB}/synapse/state/v1.pyo 1085${PYSITELIB}/synapse/state/v1.pyo
1086${PYSITELIB}/synapse/state/v2.py 1086${PYSITELIB}/synapse/state/v2.py
1087${PYSITELIB}/synapse/state/v2.pyc 1087${PYSITELIB}/synapse/state/v2.pyc
1088${PYSITELIB}/synapse/state/v2.pyo 1088${PYSITELIB}/synapse/state/v2.pyo
1089${PYSITELIB}/synapse/static/client/login/index.html 1089${PYSITELIB}/synapse/static/client/login/index.html
1090${PYSITELIB}/synapse/static/client/login/js/jquery-3.4.1.min.js 1090${PYSITELIB}/synapse/static/client/login/js/jquery-3.4.1.min.js
1091${PYSITELIB}/synapse/static/client/login/js/login.js 1091${PYSITELIB}/synapse/static/client/login/js/login.js
1092${PYSITELIB}/synapse/static/client/login/spinner.gif 1092${PYSITELIB}/synapse/static/client/login/spinner.gif
1093${PYSITELIB}/synapse/static/client/login/style.css 1093${PYSITELIB}/synapse/static/client/login/style.css
1094${PYSITELIB}/synapse/static/client/register/index.html 1094${PYSITELIB}/synapse/static/client/register/index.html
1095${PYSITELIB}/synapse/static/client/register/js/jquery-3.4.1.min.js 1095${PYSITELIB}/synapse/static/client/register/js/jquery-3.4.1.min.js
1096${PYSITELIB}/synapse/static/client/register/js/register.js 1096${PYSITELIB}/synapse/static/client/register/js/register.js
1097${PYSITELIB}/synapse/static/client/register/register_config.sample.js 1097${PYSITELIB}/synapse/static/client/register/register_config.sample.js
1098${PYSITELIB}/synapse/static/client/register/style.css 1098${PYSITELIB}/synapse/static/client/register/style.css
1099${PYSITELIB}/synapse/static/index.html 1099${PYSITELIB}/synapse/static/index.html
1100${PYSITELIB}/synapse/storage/__init__.py 1100${PYSITELIB}/synapse/storage/__init__.py
1101${PYSITELIB}/synapse/storage/__init__.pyc 1101${PYSITELIB}/synapse/storage/__init__.pyc
1102${PYSITELIB}/synapse/storage/__init__.pyo 1102${PYSITELIB}/synapse/storage/__init__.pyo
1103${PYSITELIB}/synapse/storage/_base.py 1103${PYSITELIB}/synapse/storage/_base.py
1104${PYSITELIB}/synapse/storage/_base.pyc 1104${PYSITELIB}/synapse/storage/_base.pyc
1105${PYSITELIB}/synapse/storage/_base.pyo 1105${PYSITELIB}/synapse/storage/_base.pyo
1106${PYSITELIB}/synapse/storage/background_updates.py 1106${PYSITELIB}/synapse/storage/background_updates.py
1107${PYSITELIB}/synapse/storage/background_updates.pyc 1107${PYSITELIB}/synapse/storage/background_updates.pyc
1108${PYSITELIB}/synapse/storage/background_updates.pyo 1108${PYSITELIB}/synapse/storage/background_updates.pyo
1109${PYSITELIB}/synapse/storage/database.py 1109${PYSITELIB}/synapse/storage/database.py
1110${PYSITELIB}/synapse/storage/database.pyc 1110${PYSITELIB}/synapse/storage/database.pyc
1111${PYSITELIB}/synapse/storage/database.pyo 1111${PYSITELIB}/synapse/storage/database.pyo
1112${PYSITELIB}/synapse/storage/databases/__init__.py 1112${PYSITELIB}/synapse/storage/databases/__init__.py
1113${PYSITELIB}/synapse/storage/databases/__init__.pyc 1113${PYSITELIB}/synapse/storage/databases/__init__.pyc
1114${PYSITELIB}/synapse/storage/databases/__init__.pyo 1114${PYSITELIB}/synapse/storage/databases/__init__.pyo
1115${PYSITELIB}/synapse/storage/databases/main/__init__.py 1115${PYSITELIB}/synapse/storage/databases/main/__init__.py
1116${PYSITELIB}/synapse/storage/databases/main/__init__.pyc 1116${PYSITELIB}/synapse/storage/databases/main/__init__.pyc
1117${PYSITELIB}/synapse/storage/databases/main/__init__.pyo 1117${PYSITELIB}/synapse/storage/databases/main/__init__.pyo
1118${PYSITELIB}/synapse/storage/databases/main/account_data.py 1118${PYSITELIB}/synapse/storage/databases/main/account_data.py
1119${PYSITELIB}/synapse/storage/databases/main/account_data.pyc 1119${PYSITELIB}/synapse/storage/databases/main/account_data.pyc
1120${PYSITELIB}/synapse/storage/databases/main/account_data.pyo 1120${PYSITELIB}/synapse/storage/databases/main/account_data.pyo
1121${PYSITELIB}/synapse/storage/databases/main/appservice.py 1121${PYSITELIB}/synapse/storage/databases/main/appservice.py
1122${PYSITELIB}/synapse/storage/databases/main/appservice.pyc 1122${PYSITELIB}/synapse/storage/databases/main/appservice.pyc
1123${PYSITELIB}/synapse/storage/databases/main/appservice.pyo 1123${PYSITELIB}/synapse/storage/databases/main/appservice.pyo
1124${PYSITELIB}/synapse/storage/databases/main/cache.py 1124${PYSITELIB}/synapse/storage/databases/main/cache.py
1125${PYSITELIB}/synapse/storage/databases/main/cache.pyc 1125${PYSITELIB}/synapse/storage/databases/main/cache.pyc
1126${PYSITELIB}/synapse/storage/databases/main/cache.pyo 1126${PYSITELIB}/synapse/storage/databases/main/cache.pyo
1127${PYSITELIB}/synapse/storage/databases/main/censor_events.py 1127${PYSITELIB}/synapse/storage/databases/main/censor_events.py
1128${PYSITELIB}/synapse/storage/databases/main/censor_events.pyc 1128${PYSITELIB}/synapse/storage/databases/main/censor_events.pyc
1129${PYSITELIB}/synapse/storage/databases/main/censor_events.pyo 1129${PYSITELIB}/synapse/storage/databases/main/censor_events.pyo
1130${PYSITELIB}/synapse/storage/databases/main/client_ips.py 1130${PYSITELIB}/synapse/storage/databases/main/client_ips.py
1131${PYSITELIB}/synapse/storage/databases/main/client_ips.pyc 1131${PYSITELIB}/synapse/storage/databases/main/client_ips.pyc
1132${PYSITELIB}/synapse/storage/databases/main/client_ips.pyo 1132${PYSITELIB}/synapse/storage/databases/main/client_ips.pyo
1133${PYSITELIB}/synapse/storage/databases/main/deviceinbox.py 1133${PYSITELIB}/synapse/storage/databases/main/deviceinbox.py
1134${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyc 1134${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyc
1135${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyo 1135${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyo
1136${PYSITELIB}/synapse/storage/databases/main/devices.py 1136${PYSITELIB}/synapse/storage/databases/main/devices.py
1137${PYSITELIB}/synapse/storage/databases/main/devices.pyc 1137${PYSITELIB}/synapse/storage/databases/main/devices.pyc
1138${PYSITELIB}/synapse/storage/databases/main/devices.pyo 1138${PYSITELIB}/synapse/storage/databases/main/devices.pyo
1139${PYSITELIB}/synapse/storage/databases/main/directory.py 1139${PYSITELIB}/synapse/storage/databases/main/directory.py
1140${PYSITELIB}/synapse/storage/databases/main/directory.pyc 1140${PYSITELIB}/synapse/storage/databases/main/directory.pyc
1141${PYSITELIB}/synapse/storage/databases/main/directory.pyo 1141${PYSITELIB}/synapse/storage/databases/main/directory.pyo
1142${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.py 1142${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.py
1143${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyc 1143${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyc
1144${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyo 1144${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyo
1145${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.py 1145${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.py
1146${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyc 1146${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyc
1147${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyo 1147${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyo
1148${PYSITELIB}/synapse/storage/databases/main/event_federation.py 1148${PYSITELIB}/synapse/storage/databases/main/event_federation.py
1149${PYSITELIB}/synapse/storage/databases/main/event_federation.pyc 1149${PYSITELIB}/synapse/storage/databases/main/event_federation.pyc
1150${PYSITELIB}/synapse/storage/databases/main/event_federation.pyo 1150${PYSITELIB}/synapse/storage/databases/main/event_federation.pyo
1151${PYSITELIB}/synapse/storage/databases/main/event_push_actions.py 1151${PYSITELIB}/synapse/storage/databases/main/event_push_actions.py
1152${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyc 1152${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyc
1153${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyo 1153${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyo
1154${PYSITELIB}/synapse/storage/databases/main/events.py 1154${PYSITELIB}/synapse/storage/databases/main/events.py
1155${PYSITELIB}/synapse/storage/databases/main/events.pyc 1155${PYSITELIB}/synapse/storage/databases/main/events.pyc
1156${PYSITELIB}/synapse/storage/databases/main/events.pyo 1156${PYSITELIB}/synapse/storage/databases/main/events.pyo
1157${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.py 1157${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.py
1158${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyc 1158${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyc
1159${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyo 1159${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyo
1160${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.py 1160${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.py
1161${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyc 1161${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyc
1162${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyo 1162${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyo
1163${PYSITELIB}/synapse/storage/databases/main/events_worker.py 1163${PYSITELIB}/synapse/storage/databases/main/events_worker.py
1164${PYSITELIB}/synapse/storage/databases/main/events_worker.pyc 1164${PYSITELIB}/synapse/storage/databases/main/events_worker.pyc
1165${PYSITELIB}/synapse/storage/databases/main/events_worker.pyo 1165${PYSITELIB}/synapse/storage/databases/main/events_worker.pyo
1166${PYSITELIB}/synapse/storage/databases/main/filtering.py 1166${PYSITELIB}/synapse/storage/databases/main/filtering.py
1167${PYSITELIB}/synapse/storage/databases/main/filtering.pyc 1167${PYSITELIB}/synapse/storage/databases/main/filtering.pyc
1168${PYSITELIB}/synapse/storage/databases/main/filtering.pyo 1168${PYSITELIB}/synapse/storage/databases/main/filtering.pyo
1169${PYSITELIB}/synapse/storage/databases/main/group_server.py 1169${PYSITELIB}/synapse/storage/databases/main/group_server.py
1170${PYSITELIB}/synapse/storage/databases/main/group_server.pyc 1170${PYSITELIB}/synapse/storage/databases/main/group_server.pyc
1171${PYSITELIB}/synapse/storage/databases/main/group_server.pyo 1171${PYSITELIB}/synapse/storage/databases/main/group_server.pyo
1172${PYSITELIB}/synapse/storage/databases/main/keys.py 1172${PYSITELIB}/synapse/storage/databases/main/keys.py
1173${PYSITELIB}/synapse/storage/databases/main/keys.pyc 1173${PYSITELIB}/synapse/storage/databases/main/keys.pyc
1174${PYSITELIB}/synapse/storage/databases/main/keys.pyo 1174${PYSITELIB}/synapse/storage/databases/main/keys.pyo
1175${PYSITELIB}/synapse/storage/databases/main/media_repository.py 1175${PYSITELIB}/synapse/storage/databases/main/media_repository.py
1176${PYSITELIB}/synapse/storage/databases/main/media_repository.pyc 1176${PYSITELIB}/synapse/storage/databases/main/media_repository.pyc
1177${PYSITELIB}/synapse/storage/databases/main/media_repository.pyo 1177${PYSITELIB}/synapse/storage/databases/main/media_repository.pyo
1178${PYSITELIB}/synapse/storage/databases/main/metrics.py 1178${PYSITELIB}/synapse/storage/databases/main/metrics.py
1179${PYSITELIB}/synapse/storage/databases/main/metrics.pyc 1179${PYSITELIB}/synapse/storage/databases/main/metrics.pyc
1180${PYSITELIB}/synapse/storage/databases/main/metrics.pyo 1180${PYSITELIB}/synapse/storage/databases/main/metrics.pyo
1181${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.py 1181${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.py
1182${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyc 1182${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyc
1183${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyo 1183${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyo
1184${PYSITELIB}/synapse/storage/databases/main/openid.py 1184${PYSITELIB}/synapse/storage/databases/main/openid.py
1185${PYSITELIB}/synapse/storage/databases/main/openid.pyc 1185${PYSITELIB}/synapse/storage/databases/main/openid.pyc
1186${PYSITELIB}/synapse/storage/databases/main/openid.pyo 1186${PYSITELIB}/synapse/storage/databases/main/openid.pyo
1187${PYSITELIB}/synapse/storage/databases/main/presence.py 1187${PYSITELIB}/synapse/storage/databases/main/presence.py
1188${PYSITELIB}/synapse/storage/databases/main/presence.pyc 1188${PYSITELIB}/synapse/storage/databases/main/presence.pyc
1189${PYSITELIB}/synapse/storage/databases/main/presence.pyo 1189${PYSITELIB}/synapse/storage/databases/main/presence.pyo
1190${PYSITELIB}/synapse/storage/databases/main/profile.py 1190${PYSITELIB}/synapse/storage/databases/main/profile.py
1191${PYSITELIB}/synapse/storage/databases/main/profile.pyc 1191${PYSITELIB}/synapse/storage/databases/main/profile.pyc
1192${PYSITELIB}/synapse/storage/databases/main/profile.pyo 1192${PYSITELIB}/synapse/storage/databases/main/profile.pyo
1193${PYSITELIB}/synapse/storage/databases/main/purge_events.py 1193${PYSITELIB}/synapse/storage/databases/main/purge_events.py
1194${PYSITELIB}/synapse/storage/databases/main/purge_events.pyc 1194${PYSITELIB}/synapse/storage/databases/main/purge_events.pyc
1195${PYSITELIB}/synapse/storage/databases/main/purge_events.pyo 1195${PYSITELIB}/synapse/storage/databases/main/purge_events.pyo
1196${PYSITELIB}/synapse/storage/databases/main/push_rule.py 1196${PYSITELIB}/synapse/storage/databases/main/push_rule.py
1197${PYSITELIB}/synapse/storage/databases/main/push_rule.pyc 1197${PYSITELIB}/synapse/storage/databases/main/push_rule.pyc
1198${PYSITELIB}/synapse/storage/databases/main/push_rule.pyo 1198${PYSITELIB}/synapse/storage/databases/main/push_rule.pyo
1199${PYSITELIB}/synapse/storage/databases/main/pusher.py 1199${PYSITELIB}/synapse/storage/databases/main/pusher.py
1200${PYSITELIB}/synapse/storage/databases/main/pusher.pyc 1200${PYSITELIB}/synapse/storage/databases/main/pusher.pyc
1201${PYSITELIB}/synapse/storage/databases/main/pusher.pyo 1201${PYSITELIB}/synapse/storage/databases/main/pusher.pyo
1202${PYSITELIB}/synapse/storage/databases/main/receipts.py 1202${PYSITELIB}/synapse/storage/databases/main/receipts.py
1203${PYSITELIB}/synapse/storage/databases/main/receipts.pyc 1203${PYSITELIB}/synapse/storage/databases/main/receipts.pyc
1204${PYSITELIB}/synapse/storage/databases/main/receipts.pyo 1204${PYSITELIB}/synapse/storage/databases/main/receipts.pyo
1205${PYSITELIB}/synapse/storage/databases/main/registration.py 1205${PYSITELIB}/synapse/storage/databases/main/registration.py
1206${PYSITELIB}/synapse/storage/databases/main/registration.pyc 1206${PYSITELIB}/synapse/storage/databases/main/registration.pyc
1207${PYSITELIB}/synapse/storage/databases/main/registration.pyo 1207${PYSITELIB}/synapse/storage/databases/main/registration.pyo
1208${PYSITELIB}/synapse/storage/databases/main/rejections.py 1208${PYSITELIB}/synapse/storage/databases/main/rejections.py
1209${PYSITELIB}/synapse/storage/databases/main/rejections.pyc 1209${PYSITELIB}/synapse/storage/databases/main/rejections.pyc
1210${PYSITELIB}/synapse/storage/databases/main/rejections.pyo 1210${PYSITELIB}/synapse/storage/databases/main/rejections.pyo
1211${PYSITELIB}/synapse/storage/databases/main/relations.py 1211${PYSITELIB}/synapse/storage/databases/main/relations.py
1212${PYSITELIB}/synapse/storage/databases/main/relations.pyc 1212${PYSITELIB}/synapse/storage/databases/main/relations.pyc
1213${PYSITELIB}/synapse/storage/databases/main/relations.pyo 1213${PYSITELIB}/synapse/storage/databases/main/relations.pyo
1214${PYSITELIB}/synapse/storage/databases/main/room.py 1214${PYSITELIB}/synapse/storage/databases/main/room.py
1215${PYSITELIB}/synapse/storage/databases/main/room.pyc 1215${PYSITELIB}/synapse/storage/databases/main/room.pyc
1216${PYSITELIB}/synapse/storage/databases/main/room.pyo 1216${PYSITELIB}/synapse/storage/databases/main/room.pyo
1217${PYSITELIB}/synapse/storage/databases/main/roommember.py 1217${PYSITELIB}/synapse/storage/databases/main/roommember.py
1218${PYSITELIB}/synapse/storage/databases/main/roommember.pyc 1218${PYSITELIB}/synapse/storage/databases/main/roommember.pyc
1219${PYSITELIB}/synapse/storage/databases/main/roommember.pyo 1219${PYSITELIB}/synapse/storage/databases/main/roommember.pyo
1220${PYSITELIB}/synapse/storage/databases/main/search.py 1220${PYSITELIB}/synapse/storage/databases/main/search.py
1221${PYSITELIB}/synapse/storage/databases/main/search.pyc 1221${PYSITELIB}/synapse/storage/databases/main/search.pyc
1222${PYSITELIB}/synapse/storage/databases/main/search.pyo 1222${PYSITELIB}/synapse/storage/databases/main/search.pyo
1223${PYSITELIB}/synapse/storage/databases/main/signatures.py 1223${PYSITELIB}/synapse/storage/databases/main/signatures.py
1224${PYSITELIB}/synapse/storage/databases/main/signatures.pyc 1224${PYSITELIB}/synapse/storage/databases/main/signatures.pyc
1225${PYSITELIB}/synapse/storage/databases/main/signatures.pyo 1225${PYSITELIB}/synapse/storage/databases/main/signatures.pyo
1226${PYSITELIB}/synapse/storage/databases/main/state.py 1226${PYSITELIB}/synapse/storage/databases/main/state.py
1227${PYSITELIB}/synapse/storage/databases/main/state.pyc 1227${PYSITELIB}/synapse/storage/databases/main/state.pyc
1228${PYSITELIB}/synapse/storage/databases/main/state.pyo 1228${PYSITELIB}/synapse/storage/databases/main/state.pyo
1229${PYSITELIB}/synapse/storage/databases/main/state_deltas.py 1229${PYSITELIB}/synapse/storage/databases/main/state_deltas.py
1230${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyc 1230${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyc
1231${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyo 1231${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyo
1232${PYSITELIB}/synapse/storage/databases/main/stats.py 1232${PYSITELIB}/synapse/storage/databases/main/stats.py
1233${PYSITELIB}/synapse/storage/databases/main/stats.pyc 1233${PYSITELIB}/synapse/storage/databases/main/stats.pyc
1234${PYSITELIB}/synapse/storage/databases/main/stats.pyo 1234${PYSITELIB}/synapse/storage/databases/main/stats.pyo
1235${PYSITELIB}/synapse/storage/databases/main/stream.py 1235${PYSITELIB}/synapse/storage/databases/main/stream.py
1236${PYSITELIB}/synapse/storage/databases/main/stream.pyc 1236${PYSITELIB}/synapse/storage/databases/main/stream.pyc
1237${PYSITELIB}/synapse/storage/databases/main/stream.pyo 1237${PYSITELIB}/synapse/storage/databases/main/stream.pyo
1238${PYSITELIB}/synapse/storage/databases/main/tags.py 1238${PYSITELIB}/synapse/storage/databases/main/tags.py
1239${PYSITELIB}/synapse/storage/databases/main/tags.pyc 1239${PYSITELIB}/synapse/storage/databases/main/tags.pyc
1240${PYSITELIB}/synapse/storage/databases/main/tags.pyo 1240${PYSITELIB}/synapse/storage/databases/main/tags.pyo
1241${PYSITELIB}/synapse/storage/databases/main/transactions.py 1241${PYSITELIB}/synapse/storage/databases/main/transactions.py
1242${PYSITELIB}/synapse/storage/databases/main/transactions.pyc 1242${PYSITELIB}/synapse/storage/databases/main/transactions.pyc
1243${PYSITELIB}/synapse/storage/databases/main/transactions.pyo 1243${PYSITELIB}/synapse/storage/databases/main/transactions.pyo
1244${PYSITELIB}/synapse/storage/databases/main/ui_auth.py 1244${PYSITELIB}/synapse/storage/databases/main/ui_auth.py
1245${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyc 1245${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyc
1246${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyo 1246${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyo
1247${PYSITELIB}/synapse/storage/databases/main/user_directory.py 1247${PYSITELIB}/synapse/storage/databases/main/user_directory.py
1248${PYSITELIB}/synapse/storage/databases/main/user_directory.pyc 1248${PYSITELIB}/synapse/storage/databases/main/user_directory.pyc
1249${PYSITELIB}/synapse/storage/databases/main/user_directory.pyo 1249${PYSITELIB}/synapse/storage/databases/main/user_directory.pyo
1250${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.py 1250${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.py
1251${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyc 1251${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyc
1252${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyo 1252${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyo
1253${PYSITELIB}/synapse/storage/databases/state/__init__.py 1253${PYSITELIB}/synapse/storage/databases/state/__init__.py
1254${PYSITELIB}/synapse/storage/databases/state/__init__.pyc 1254${PYSITELIB}/synapse/storage/databases/state/__init__.pyc
1255${PYSITELIB}/synapse/storage/databases/state/__init__.pyo 1255${PYSITELIB}/synapse/storage/databases/state/__init__.pyo
1256${PYSITELIB}/synapse/storage/databases/state/bg_updates.py 1256${PYSITELIB}/synapse/storage/databases/state/bg_updates.py
1257${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyc 1257${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyc
1258${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyo 1258${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyo
1259${PYSITELIB}/synapse/storage/databases/state/store.py 1259${PYSITELIB}/synapse/storage/databases/state/store.py
1260${PYSITELIB}/synapse/storage/databases/state/store.pyc 1260${PYSITELIB}/synapse/storage/databases/state/store.pyc
1261${PYSITELIB}/synapse/storage/databases/state/store.pyo 1261${PYSITELIB}/synapse/storage/databases/state/store.pyo
1262${PYSITELIB}/synapse/storage/engines/__init__.py 1262${PYSITELIB}/synapse/storage/engines/__init__.py
1263${PYSITELIB}/synapse/storage/engines/__init__.pyc 1263${PYSITELIB}/synapse/storage/engines/__init__.pyc
1264${PYSITELIB}/synapse/storage/engines/__init__.pyo 1264${PYSITELIB}/synapse/storage/engines/__init__.pyo
1265${PYSITELIB}/synapse/storage/engines/_base.py 1265${PYSITELIB}/synapse/storage/engines/_base.py
1266${PYSITELIB}/synapse/storage/engines/_base.pyc 1266${PYSITELIB}/synapse/storage/engines/_base.pyc
1267${PYSITELIB}/synapse/storage/engines/_base.pyo 1267${PYSITELIB}/synapse/storage/engines/_base.pyo
1268${PYSITELIB}/synapse/storage/engines/postgres.py 1268${PYSITELIB}/synapse/storage/engines/postgres.py
1269${PYSITELIB}/synapse/storage/engines/postgres.pyc 1269${PYSITELIB}/synapse/storage/engines/postgres.pyc
1270${PYSITELIB}/synapse/storage/engines/postgres.pyo 1270${PYSITELIB}/synapse/storage/engines/postgres.pyo
1271${PYSITELIB}/synapse/storage/engines/sqlite.py 1271${PYSITELIB}/synapse/storage/engines/sqlite.py
1272${PYSITELIB}/synapse/storage/engines/sqlite.pyc 1272${PYSITELIB}/synapse/storage/engines/sqlite.pyc
1273${PYSITELIB}/synapse/storage/engines/sqlite.pyo 1273${PYSITELIB}/synapse/storage/engines/sqlite.pyo
1274${PYSITELIB}/synapse/storage/keys.py 1274${PYSITELIB}/synapse/storage/keys.py
1275${PYSITELIB}/synapse/storage/keys.pyc 1275${PYSITELIB}/synapse/storage/keys.pyc
1276${PYSITELIB}/synapse/storage/keys.pyo 1276${PYSITELIB}/synapse/storage/keys.pyo
1277${PYSITELIB}/synapse/storage/persist_events.py 1277${PYSITELIB}/synapse/storage/persist_events.py
1278${PYSITELIB}/synapse/storage/persist_events.pyc 1278${PYSITELIB}/synapse/storage/persist_events.pyc
1279${PYSITELIB}/synapse/storage/persist_events.pyo 1279${PYSITELIB}/synapse/storage/persist_events.pyo
1280${PYSITELIB}/synapse/storage/prepare_database.py 1280${PYSITELIB}/synapse/storage/prepare_database.py
1281${PYSITELIB}/synapse/storage/prepare_database.pyc 1281${PYSITELIB}/synapse/storage/prepare_database.pyc
1282${PYSITELIB}/synapse/storage/prepare_database.pyo 1282${PYSITELIB}/synapse/storage/prepare_database.pyo
1283${PYSITELIB}/synapse/storage/purge_events.py 1283${PYSITELIB}/synapse/storage/purge_events.py
1284${PYSITELIB}/synapse/storage/purge_events.pyc 1284${PYSITELIB}/synapse/storage/purge_events.pyc
1285${PYSITELIB}/synapse/storage/purge_events.pyo 1285${PYSITELIB}/synapse/storage/purge_events.pyo
1286${PYSITELIB}/synapse/storage/push_rule.py 1286${PYSITELIB}/synapse/storage/push_rule.py
1287${PYSITELIB}/synapse/storage/push_rule.pyc 1287${PYSITELIB}/synapse/storage/push_rule.pyc
1288${PYSITELIB}/synapse/storage/push_rule.pyo 1288${PYSITELIB}/synapse/storage/push_rule.pyo
1289${PYSITELIB}/synapse/storage/relations.py 1289${PYSITELIB}/synapse/storage/relations.py
1290${PYSITELIB}/synapse/storage/relations.pyc 1290${PYSITELIB}/synapse/storage/relations.pyc
1291${PYSITELIB}/synapse/storage/relations.pyo 1291${PYSITELIB}/synapse/storage/relations.pyo
1292${PYSITELIB}/synapse/storage/roommember.py 1292${PYSITELIB}/synapse/storage/roommember.py
1293${PYSITELIB}/synapse/storage/roommember.pyc 1293${PYSITELIB}/synapse/storage/roommember.pyc
1294${PYSITELIB}/synapse/storage/roommember.pyo 1294${PYSITELIB}/synapse/storage/roommember.pyo
1295${PYSITELIB}/synapse/storage/schema/README.md 1295${PYSITELIB}/synapse/storage/schema/README.md
1296${PYSITELIB}/synapse/storage/schema/__init__.py 1296${PYSITELIB}/synapse/storage/schema/__init__.py
1297${PYSITELIB}/synapse/storage/schema/__init__.pyc 1297${PYSITELIB}/synapse/storage/schema/__init__.pyc
1298${PYSITELIB}/synapse/storage/schema/__init__.pyo 1298${PYSITELIB}/synapse/storage/schema/__init__.pyo
1299${PYSITELIB}/synapse/storage/schema/common/delta/25/00background_updates.sql 1299${PYSITELIB}/synapse/storage/schema/common/delta/25/00background_updates.sql
1300${PYSITELIB}/synapse/storage/schema/common/delta/35/00background_updates_add_col.sql 1300${PYSITELIB}/synapse/storage/schema/common/delta/35/00background_updates_add_col.sql
1301${PYSITELIB}/synapse/storage/schema/common/delta/58/00background_update_ordering.sql 1301${PYSITELIB}/synapse/storage/schema/common/delta/58/00background_update_ordering.sql
1302${PYSITELIB}/synapse/storage/schema/common/full_schemas/54/full.sql 1302${PYSITELIB}/synapse/storage/schema/common/full_schemas/54/full.sql
1303${PYSITELIB}/synapse/storage/schema/common/schema_version.sql 1303${PYSITELIB}/synapse/storage/schema/common/schema_version.sql
1304${PYSITELIB}/synapse/storage/schema/main/delta/12/v12.sql 1304${PYSITELIB}/synapse/storage/schema/main/delta/12/v12.sql
1305${PYSITELIB}/synapse/storage/schema/main/delta/13/v13.sql 1305${PYSITELIB}/synapse/storage/schema/main/delta/13/v13.sql
1306${PYSITELIB}/synapse/storage/schema/main/delta/14/v14.sql 1306${PYSITELIB}/synapse/storage/schema/main/delta/14/v14.sql
1307${PYSITELIB}/synapse/storage/schema/main/delta/15/appservice_txns.sql 1307${PYSITELIB}/synapse/storage/schema/main/delta/15/appservice_txns.sql
1308${PYSITELIB}/synapse/storage/schema/main/delta/15/presence_indices.sql 1308${PYSITELIB}/synapse/storage/schema/main/delta/15/presence_indices.sql
1309${PYSITELIB}/synapse/storage/schema/main/delta/15/v15.sql 1309${PYSITELIB}/synapse/storage/schema/main/delta/15/v15.sql
1310${PYSITELIB}/synapse/storage/schema/main/delta/16/events_order_index.sql 1310${PYSITELIB}/synapse/storage/schema/main/delta/16/events_order_index.sql
1311${PYSITELIB}/synapse/storage/schema/main/delta/16/remote_media_cache_index.sql 1311${PYSITELIB}/synapse/storage/schema/main/delta/16/remote_media_cache_index.sql
1312${PYSITELIB}/synapse/storage/schema/main/delta/16/remove_duplicates.sql 1312${PYSITELIB}/synapse/storage/schema/main/delta/16/remove_duplicates.sql
1313${PYSITELIB}/synapse/storage/schema/main/delta/16/room_alias_index.sql 1313${PYSITELIB}/synapse/storage/schema/main/delta/16/room_alias_index.sql
1314${PYSITELIB}/synapse/storage/schema/main/delta/16/unique_constraints.sql 1314${PYSITELIB}/synapse/storage/schema/main/delta/16/unique_constraints.sql
1315${PYSITELIB}/synapse/storage/schema/main/delta/16/users.sql 1315${PYSITELIB}/synapse/storage/schema/main/delta/16/users.sql
1316${PYSITELIB}/synapse/storage/schema/main/delta/17/drop_indexes.sql 1316${PYSITELIB}/synapse/storage/schema/main/delta/17/drop_indexes.sql
1317${PYSITELIB}/synapse/storage/schema/main/delta/17/server_keys.sql 1317${PYSITELIB}/synapse/storage/schema/main/delta/17/server_keys.sql
1318${PYSITELIB}/synapse/storage/schema/main/delta/17/user_threepids.sql 1318${PYSITELIB}/synapse/storage/schema/main/delta/17/user_threepids.sql
1319${PYSITELIB}/synapse/storage/schema/main/delta/18/server_keys_bigger_ints.sql 1319${PYSITELIB}/synapse/storage/schema/main/delta/18/server_keys_bigger_ints.sql
1320${PYSITELIB}/synapse/storage/schema/main/delta/19/event_index.sql 1320${PYSITELIB}/synapse/storage/schema/main/delta/19/event_index.sql
1321${PYSITELIB}/synapse/storage/schema/main/delta/20/dummy.sql 1321${PYSITELIB}/synapse/storage/schema/main/delta/20/dummy.sql
1322${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.py 1322${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.py
1323${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.pyc 1323${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.pyc
1324${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.pyo 1324${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.pyo
1325${PYSITELIB}/synapse/storage/schema/main/delta/21/end_to_end_keys.sql 1325${PYSITELIB}/synapse/storage/schema/main/delta/21/end_to_end_keys.sql
1326${PYSITELIB}/synapse/storage/schema/main/delta/21/receipts.sql 1326${PYSITELIB}/synapse/storage/schema/main/delta/21/receipts.sql
1327${PYSITELIB}/synapse/storage/schema/main/delta/22/receipts_index.sql 1327${PYSITELIB}/synapse/storage/schema/main/delta/22/receipts_index.sql
1328${PYSITELIB}/synapse/storage/schema/main/delta/22/user_threepids_unique.sql 1328${PYSITELIB}/synapse/storage/schema/main/delta/22/user_threepids_unique.sql
1329${PYSITELIB}/synapse/storage/schema/main/delta/24/stats_reporting.sql 1329${PYSITELIB}/synapse/storage/schema/main/delta/24/stats_reporting.sql
1330${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.py 1330${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.py
1331${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.pyc 1331${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.pyc
1332${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.pyo 1332${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.pyo
1333${PYSITELIB}/synapse/storage/schema/main/delta/25/guest_access.sql 1333${PYSITELIB}/synapse/storage/schema/main/delta/25/guest_access.sql
1334${PYSITELIB}/synapse/storage/schema/main/delta/25/history_visibility.sql 1334${PYSITELIB}/synapse/storage/schema/main/delta/25/history_visibility.sql
1335${PYSITELIB}/synapse/storage/schema/main/delta/25/tags.sql 1335${PYSITELIB}/synapse/storage/schema/main/delta/25/tags.sql
1336${PYSITELIB}/synapse/storage/schema/main/delta/26/account_data.sql 1336${PYSITELIB}/synapse/storage/schema/main/delta/26/account_data.sql
1337${PYSITELIB}/synapse/storage/schema/main/delta/27/account_data.sql 1337${PYSITELIB}/synapse/storage/schema/main/delta/27/account_data.sql
1338${PYSITELIB}/synapse/storage/schema/main/delta/27/forgotten_memberships.sql 1338${PYSITELIB}/synapse/storage/schema/main/delta/27/forgotten_memberships.sql
1339${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.py 1339${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.py
1340${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.pyc 1340${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.pyc
1341${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.pyo 1341${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.pyo
1342${PYSITELIB}/synapse/storage/schema/main/delta/28/event_push_actions.sql 1342${PYSITELIB}/synapse/storage/schema/main/delta/28/event_push_actions.sql
1343${PYSITELIB}/synapse/storage/schema/main/delta/28/events_room_stream.sql 1343${PYSITELIB}/synapse/storage/schema/main/delta/28/events_room_stream.sql
1344${PYSITELIB}/synapse/storage/schema/main/delta/28/public_roms_index.sql 1344${PYSITELIB}/synapse/storage/schema/main/delta/28/public_roms_index.sql
1345${PYSITELIB}/synapse/storage/schema/main/delta/28/receipts_user_id_index.sql 1345${PYSITELIB}/synapse/storage/schema/main/delta/28/receipts_user_id_index.sql
1346${PYSITELIB}/synapse/storage/schema/main/delta/28/upgrade_times.sql 1346${PYSITELIB}/synapse/storage/schema/main/delta/28/upgrade_times.sql
1347${PYSITELIB}/synapse/storage/schema/main/delta/28/users_is_guest.sql 1347${PYSITELIB}/synapse/storage/schema/main/delta/28/users_is_guest.sql
1348${PYSITELIB}/synapse/storage/schema/main/delta/29/push_actions.sql 1348${PYSITELIB}/synapse/storage/schema/main/delta/29/push_actions.sql
1349${PYSITELIB}/synapse/storage/schema/main/delta/30/alias_creator.sql 1349${PYSITELIB}/synapse/storage/schema/main/delta/30/alias_creator.sql
1350${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.py 1350${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.py
1351${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.pyc 1351${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.pyc
1352${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.pyo 1352${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.pyo
1353${PYSITELIB}/synapse/storage/schema/main/delta/30/deleted_pushers.sql 1353${PYSITELIB}/synapse/storage/schema/main/delta/30/deleted_pushers.sql
1354${PYSITELIB}/synapse/storage/schema/main/delta/30/presence_stream.sql 1354${PYSITELIB}/synapse/storage/schema/main/delta/30/presence_stream.sql
1355${PYSITELIB}/synapse/storage/schema/main/delta/30/public_rooms.sql 1355${PYSITELIB}/synapse/storage/schema/main/delta/30/public_rooms.sql
1356${PYSITELIB}/synapse/storage/schema/main/delta/30/push_rule_stream.sql 1356${PYSITELIB}/synapse/storage/schema/main/delta/30/push_rule_stream.sql
1357${PYSITELIB}/synapse/storage/schema/main/delta/30/threepid_guest_access_tokens.sql 1357${PYSITELIB}/synapse/storage/schema/main/delta/30/threepid_guest_access_tokens.sql
1358${PYSITELIB}/synapse/storage/schema/main/delta/31/invites.sql 1358${PYSITELIB}/synapse/storage/schema/main/delta/31/invites.sql
1359${PYSITELIB}/synapse/storage/schema/main/delta/31/local_media_repository_url_cache.sql 1359${PYSITELIB}/synapse/storage/schema/main/delta/31/local_media_repository_url_cache.sql
1360${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.py 1360${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.py
1361${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.pyc 1361${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.pyc
1362${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.pyo 1362${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.pyo
1363${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers_index.sql 1363${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers_index.sql
1364${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.py 1364${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.py
1365${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.pyc 1365${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.pyc
1366${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.pyo 1366${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.pyo
1367${PYSITELIB}/synapse/storage/schema/main/delta/32/events.sql 1367${PYSITELIB}/synapse/storage/schema/main/delta/32/events.sql
1368${PYSITELIB}/synapse/storage/schema/main/delta/32/openid.sql 1368${PYSITELIB}/synapse/storage/schema/main/delta/32/openid.sql
1369${PYSITELIB}/synapse/storage/schema/main/delta/32/pusher_throttle.sql 1369${PYSITELIB}/synapse/storage/schema/main/delta/32/pusher_throttle.sql
1370${PYSITELIB}/synapse/storage/schema/main/delta/32/remove_indices.sql 1370${PYSITELIB}/synapse/storage/schema/main/delta/32/remove_indices.sql
1371${PYSITELIB}/synapse/storage/schema/main/delta/32/reports.sql 1371${PYSITELIB}/synapse/storage/schema/main/delta/32/reports.sql
1372${PYSITELIB}/synapse/storage/schema/main/delta/33/access_tokens_device_index.sql 1372${PYSITELIB}/synapse/storage/schema/main/delta/33/access_tokens_device_index.sql
1373${PYSITELIB}/synapse/storage/schema/main/delta/33/devices.sql 1373${PYSITELIB}/synapse/storage/schema/main/delta/33/devices.sql
1374${PYSITELIB}/synapse/storage/schema/main/delta/33/devices_for_e2e_keys.sql 1374${PYSITELIB}/synapse/storage/schema/main/delta/33/devices_for_e2e_keys.sql
1375${PYSITELIB}/synapse/storage/schema/main/delta/33/devices_for_e2e_keys_clear_unknown_device.sql 1375${PYSITELIB}/synapse/storage/schema/main/delta/33/devices_for_e2e_keys_clear_unknown_device.sql
1376${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.py 1376${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.py
1377${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.pyc 1377${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.pyc
1378${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.pyo 1378${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.pyo
1379${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.py 1379${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.py
1380${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.pyc 1380${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.pyc
1381${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.pyo 1381${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.pyo
1382${PYSITELIB}/synapse/storage/schema/main/delta/33/user_ips_index.sql 1382${PYSITELIB}/synapse/storage/schema/main/delta/33/user_ips_index.sql
1383${PYSITELIB}/synapse/storage/schema/main/delta/34/appservice_stream.sql 1383${PYSITELIB}/synapse/storage/schema/main/delta/34/appservice_stream.sql
1384${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.py 1384${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.py
1385${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.pyc 1385${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.pyc
1386${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.pyo 1386${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.pyo
1387${PYSITELIB}/synapse/storage/schema/main/delta/34/device_inbox.sql 1387${PYSITELIB}/synapse/storage/schema/main/delta/34/device_inbox.sql
1388${PYSITELIB}/synapse/storage/schema/main/delta/34/push_display_name_rename.sql 1388${PYSITELIB}/synapse/storage/schema/main/delta/34/push_display_name_rename.sql
1389${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.py 1389${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.py
1390${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.pyc 1390${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.pyc
1391${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.pyo 1391${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.pyo
1392${PYSITELIB}/synapse/storage/schema/main/delta/35/contains_url.sql 1392${PYSITELIB}/synapse/storage/schema/main/delta/35/contains_url.sql
1393${PYSITELIB}/synapse/storage/schema/main/delta/35/device_outbox.sql 1393${PYSITELIB}/synapse/storage/schema/main/delta/35/device_outbox.sql
1394${PYSITELIB}/synapse/storage/schema/main/delta/35/device_stream_id.sql 1394${PYSITELIB}/synapse/storage/schema/main/delta/35/device_stream_id.sql
1395${PYSITELIB}/synapse/storage/schema/main/delta/35/event_push_actions_index.sql 1395${PYSITELIB}/synapse/storage/schema/main/delta/35/event_push_actions_index.sql
1396${PYSITELIB}/synapse/storage/schema/main/delta/35/public_room_list_change_stream.sql 1396${PYSITELIB}/synapse/storage/schema/main/delta/35/public_room_list_change_stream.sql
1397${PYSITELIB}/synapse/storage/schema/main/delta/35/stream_order_to_extrem.sql 1397${PYSITELIB}/synapse/storage/schema/main/delta/35/stream_order_to_extrem.sql
1398${PYSITELIB}/synapse/storage/schema/main/delta/36/readd_public_rooms.sql 1398${PYSITELIB}/synapse/storage/schema/main/delta/36/readd_public_rooms.sql
1399${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.py 1399${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.py
1400${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.pyc 1400${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.pyc
1401${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.pyo 1401${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.pyo
1402${PYSITELIB}/synapse/storage/schema/main/delta/37/user_threepids.sql 1402${PYSITELIB}/synapse/storage/schema/main/delta/37/user_threepids.sql
1403${PYSITELIB}/synapse/storage/schema/main/delta/38/postgres_fts_gist.sql 1403${PYSITELIB}/synapse/storage/schema/main/delta/38/postgres_fts_gist.sql
1404${PYSITELIB}/synapse/storage/schema/main/delta/39/appservice_room_list.sql 1404${PYSITELIB}/synapse/storage/schema/main/delta/39/appservice_room_list.sql
1405${PYSITELIB}/synapse/storage/schema/main/delta/39/device_federation_stream_idx.sql 1405${PYSITELIB}/synapse/storage/schema/main/delta/39/device_federation_stream_idx.sql
1406${PYSITELIB}/synapse/storage/schema/main/delta/39/event_push_index.sql 1406${PYSITELIB}/synapse/storage/schema/main/delta/39/event_push_index.sql
1407${PYSITELIB}/synapse/storage/schema/main/delta/39/federation_out_position.sql 1407${PYSITELIB}/synapse/storage/schema/main/delta/39/federation_out_position.sql
1408${PYSITELIB}/synapse/storage/schema/main/delta/39/membership_profile.sql 1408${PYSITELIB}/synapse/storage/schema/main/delta/39/membership_profile.sql
1409${PYSITELIB}/synapse/storage/schema/main/delta/40/current_state_idx.sql 1409${PYSITELIB}/synapse/storage/schema/main/delta/40/current_state_idx.sql
1410${PYSITELIB}/synapse/storage/schema/main/delta/40/device_inbox.sql 1410${PYSITELIB}/synapse/storage/schema/main/delta/40/device_inbox.sql
1411${PYSITELIB}/synapse/storage/schema/main/delta/40/device_list_streams.sql 1411${PYSITELIB}/synapse/storage/schema/main/delta/40/device_list_streams.sql
1412${PYSITELIB}/synapse/storage/schema/main/delta/40/event_push_summary.sql 1412${PYSITELIB}/synapse/storage/schema/main/delta/40/event_push_summary.sql
1413${PYSITELIB}/synapse/storage/schema/main/delta/40/pushers.sql 1413${PYSITELIB}/synapse/storage/schema/main/delta/40/pushers.sql
1414${PYSITELIB}/synapse/storage/schema/main/delta/41/device_list_stream_idx.sql 1414${PYSITELIB}/synapse/storage/schema/main/delta/41/device_list_stream_idx.sql
1415${PYSITELIB}/synapse/storage/schema/main/delta/41/device_outbound_index.sql 1415${PYSITELIB}/synapse/storage/schema/main/delta/41/device_outbound_index.sql
1416${PYSITELIB}/synapse/storage/schema/main/delta/41/event_search_event_id_idx.sql 1416${PYSITELIB}/synapse/storage/schema/main/delta/41/event_search_event_id_idx.sql
1417${PYSITELIB}/synapse/storage/schema/main/delta/41/ratelimit.sql 1417${PYSITELIB}/synapse/storage/schema/main/delta/41/ratelimit.sql
1418${PYSITELIB}/synapse/storage/schema/main/delta/42/current_state_delta.sql 1418${PYSITELIB}/synapse/storage/schema/main/delta/42/current_state_delta.sql
1419${PYSITELIB}/synapse/storage/schema/main/delta/42/device_list_last_id.sql 1419${PYSITELIB}/synapse/storage/schema/main/delta/42/device_list_last_id.sql
1420${PYSITELIB}/synapse/storage/schema/main/delta/42/event_auth_state_only.sql 1420${PYSITELIB}/synapse/storage/schema/main/delta/42/event_auth_state_only.sql
1421${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.py 1421${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.py
1422${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.pyc 1422${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.pyc
1423${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.pyo 1423${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.pyo
1424${PYSITELIB}/synapse/storage/schema/main/delta/43/blocked_rooms.sql 1424${PYSITELIB}/synapse/storage/schema/main/delta/43/blocked_rooms.sql
1425${PYSITELIB}/synapse/storage/schema/main/delta/43/quarantine_media.sql 1425${PYSITELIB}/synapse/storage/schema/main/delta/43/quarantine_media.sql
1426${PYSITELIB}/synapse/storage/schema/main/delta/43/url_cache.sql 1426${PYSITELIB}/synapse/storage/schema/main/delta/43/url_cache.sql
1427${PYSITELIB}/synapse/storage/schema/main/delta/43/user_share.sql 1427${PYSITELIB}/synapse/storage/schema/main/delta/43/user_share.sql
1428${PYSITELIB}/synapse/storage/schema/main/delta/44/expire_url_cache.sql 1428${PYSITELIB}/synapse/storage/schema/main/delta/44/expire_url_cache.sql
1429${PYSITELIB}/synapse/storage/schema/main/delta/45/group_server.sql 1429${PYSITELIB}/synapse/storage/schema/main/delta/45/group_server.sql
1430${PYSITELIB}/synapse/storage/schema/main/delta/45/profile_cache.sql 1430${PYSITELIB}/synapse/storage/schema/main/delta/45/profile_cache.sql
1431${PYSITELIB}/synapse/storage/schema/main/delta/46/drop_refresh_tokens.sql 1431${PYSITELIB}/synapse/storage/schema/main/delta/46/drop_refresh_tokens.sql
1432${PYSITELIB}/synapse/storage/schema/main/delta/46/drop_unique_deleted_pushers.sql 1432${PYSITELIB}/synapse/storage/schema/main/delta/46/drop_unique_deleted_pushers.sql
1433${PYSITELIB}/synapse/storage/schema/main/delta/46/group_server.sql 1433${PYSITELIB}/synapse/storage/schema/main/delta/46/group_server.sql
1434${PYSITELIB}/synapse/storage/schema/main/delta/46/local_media_repository_url_idx.sql 1434${PYSITELIB}/synapse/storage/schema/main/delta/46/local_media_repository_url_idx.sql
1435${PYSITELIB}/synapse/storage/schema/main/delta/46/user_dir_null_room_ids.sql 1435${PYSITELIB}/synapse/storage/schema/main/delta/46/user_dir_null_room_ids.sql
1436${PYSITELIB}/synapse/storage/schema/main/delta/46/user_dir_typos.sql 1436${PYSITELIB}/synapse/storage/schema/main/delta/46/user_dir_typos.sql
1437${PYSITELIB}/synapse/storage/schema/main/delta/47/last_access_media.sql 1437${PYSITELIB}/synapse/storage/schema/main/delta/47/last_access_media.sql
1438${PYSITELIB}/synapse/storage/schema/main/delta/47/postgres_fts_gin.sql 1438${PYSITELIB}/synapse/storage/schema/main/delta/47/postgres_fts_gin.sql
1439${PYSITELIB}/synapse/storage/schema/main/delta/47/push_actions_staging.sql 1439${PYSITELIB}/synapse/storage/schema/main/delta/47/push_actions_staging.sql
1440${PYSITELIB}/synapse/storage/schema/main/delta/48/add_user_consent.sql 1440${PYSITELIB}/synapse/storage/schema/main/delta/48/add_user_consent.sql
1441${PYSITELIB}/synapse/storage/schema/main/delta/48/add_user_ips_last_seen_index.sql 1441${PYSITELIB}/synapse/storage/schema/main/delta/48/add_user_ips_last_seen_index.sql
1442${PYSITELIB}/synapse/storage/schema/main/delta/48/deactivated_users.sql 1442${PYSITELIB}/synapse/storage/schema/main/delta/48/deactivated_users.sql
1443${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.py 1443${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.py
1444${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.pyc 1444${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.pyc
1445${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.pyo 1445${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.pyo
1446${PYSITELIB}/synapse/storage/schema/main/delta/48/groups_joinable.sql 1446${PYSITELIB}/synapse/storage/schema/main/delta/48/groups_joinable.sql
1447${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_consent_server_notice_sent.sql 1447${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_consent_server_notice_sent.sql
1448${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_daily_visits.sql 1448${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_daily_visits.sql
1449${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_ips_last_seen_only_index.sql 1449${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_ips_last_seen_only_index.sql
1450${PYSITELIB}/synapse/storage/schema/main/delta/50/add_creation_ts_users_index.sql 1450${PYSITELIB}/synapse/storage/schema/main/delta/50/add_creation_ts_users_index.sql
1451${PYSITELIB}/synapse/storage/schema/main/delta/50/erasure_store.sql 1451${PYSITELIB}/synapse/storage/schema/main/delta/50/erasure_store.sql
1452${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.py 1452${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.py
1453${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.pyc 1453${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.pyc
1454${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.pyo 1454${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.pyo
1455${PYSITELIB}/synapse/storage/schema/main/delta/51/e2e_room_keys.sql 1455${PYSITELIB}/synapse/storage/schema/main/delta/51/e2e_room_keys.sql
1456${PYSITELIB}/synapse/storage/schema/main/delta/51/monthly_active_users.sql 1456${PYSITELIB}/synapse/storage/schema/main/delta/51/monthly_active_users.sql
1457${PYSITELIB}/synapse/storage/schema/main/delta/52/add_event_to_state_group_index.sql 1457${PYSITELIB}/synapse/storage/schema/main/delta/52/add_event_to_state_group_index.sql
1458${PYSITELIB}/synapse/storage/schema/main/delta/52/device_list_streams_unique_idx.sql 1458${PYSITELIB}/synapse/storage/schema/main/delta/52/device_list_streams_unique_idx.sql
1459${PYSITELIB}/synapse/storage/schema/main/delta/52/e2e_room_keys.sql 1459${PYSITELIB}/synapse/storage/schema/main/delta/52/e2e_room_keys.sql
1460${PYSITELIB}/synapse/storage/schema/main/delta/53/add_user_type_to_users.sql 1460${PYSITELIB}/synapse/storage/schema/main/delta/53/add_user_type_to_users.sql
1461${PYSITELIB}/synapse/storage/schema/main/delta/53/drop_sent_transactions.sql 1461${PYSITELIB}/synapse/storage/schema/main/delta/53/drop_sent_transactions.sql
1462${PYSITELIB}/synapse/storage/schema/main/delta/53/event_format_version.sql 1462${PYSITELIB}/synapse/storage/schema/main/delta/53/event_format_version.sql
1463${PYSITELIB}/synapse/storage/schema/main/delta/53/user_dir_populate.sql 1463${PYSITELIB}/synapse/storage/schema/main/delta/53/user_dir_populate.sql
1464${PYSITELIB}/synapse/storage/schema/main/delta/53/user_ips_index.sql 1464${PYSITELIB}/synapse/storage/schema/main/delta/53/user_ips_index.sql
1465${PYSITELIB}/synapse/storage/schema/main/delta/53/user_share.sql 1465${PYSITELIB}/synapse/storage/schema/main/delta/53/user_share.sql
1466${PYSITELIB}/synapse/storage/schema/main/delta/53/user_threepid_id.sql 1466${PYSITELIB}/synapse/storage/schema/main/delta/53/user_threepid_id.sql
1467${PYSITELIB}/synapse/storage/schema/main/delta/53/users_in_public_rooms.sql 1467${PYSITELIB}/synapse/storage/schema/main/delta/53/users_in_public_rooms.sql
1468${PYSITELIB}/synapse/storage/schema/main/delta/54/account_validity_with_renewal.sql 1468${PYSITELIB}/synapse/storage/schema/main/delta/54/account_validity_with_renewal.sql
1469${PYSITELIB}/synapse/storage/schema/main/delta/54/add_validity_to_server_keys.sql 1469${PYSITELIB}/synapse/storage/schema/main/delta/54/add_validity_to_server_keys.sql
1470${PYSITELIB}/synapse/storage/schema/main/delta/54/delete_forward_extremities.sql 1470${PYSITELIB}/synapse/storage/schema/main/delta/54/delete_forward_extremities.sql
1471${PYSITELIB}/synapse/storage/schema/main/delta/54/drop_legacy_tables.sql 1471${PYSITELIB}/synapse/storage/schema/main/delta/54/drop_legacy_tables.sql
1472${PYSITELIB}/synapse/storage/schema/main/delta/54/drop_presence_list.sql 1472${PYSITELIB}/synapse/storage/schema/main/delta/54/drop_presence_list.sql
1473${PYSITELIB}/synapse/storage/schema/main/delta/54/relations.sql 1473${PYSITELIB}/synapse/storage/schema/main/delta/54/relations.sql
1474${PYSITELIB}/synapse/storage/schema/main/delta/54/stats.sql 1474${PYSITELIB}/synapse/storage/schema/main/delta/54/stats.sql
1475${PYSITELIB}/synapse/storage/schema/main/delta/54/stats2.sql 1475${PYSITELIB}/synapse/storage/schema/main/delta/54/stats2.sql
1476${PYSITELIB}/synapse/storage/schema/main/delta/55/access_token_expiry.sql 1476${PYSITELIB}/synapse/storage/schema/main/delta/55/access_token_expiry.sql
1477${PYSITELIB}/synapse/storage/schema/main/delta/55/track_threepid_validations.sql 1477${PYSITELIB}/synapse/storage/schema/main/delta/55/track_threepid_validations.sql
1478${PYSITELIB}/synapse/storage/schema/main/delta/55/users_alter_deactivated.sql 1478${PYSITELIB}/synapse/storage/schema/main/delta/55/users_alter_deactivated.sql
1479${PYSITELIB}/synapse/storage/schema/main/delta/56/add_spans_to_device_lists.sql 1479${PYSITELIB}/synapse/storage/schema/main/delta/56/add_spans_to_device_lists.sql
1480${PYSITELIB}/synapse/storage/schema/main/delta/56/current_state_events_membership.sql 1480${PYSITELIB}/synapse/storage/schema/main/delta/56/current_state_events_membership.sql
1481${PYSITELIB}/synapse/storage/schema/main/delta/56/current_state_events_membership_mk2.sql 1481${PYSITELIB}/synapse/storage/schema/main/delta/56/current_state_events_membership_mk2.sql
1482${PYSITELIB}/synapse/storage/schema/main/delta/56/delete_keys_from_deleted_backups.sql 1482${PYSITELIB}/synapse/storage/schema/main/delta/56/delete_keys_from_deleted_backups.sql
1483${PYSITELIB}/synapse/storage/schema/main/delta/56/destinations_failure_ts.sql 1483${PYSITELIB}/synapse/storage/schema/main/delta/56/destinations_failure_ts.sql
1484${PYSITELIB}/synapse/storage/schema/main/delta/56/destinations_retry_interval_type.sql.postgres 1484${PYSITELIB}/synapse/storage/schema/main/delta/56/destinations_retry_interval_type.sql.postgres
1485${PYSITELIB}/synapse/storage/schema/main/delta/56/device_stream_id_insert.sql 1485${PYSITELIB}/synapse/storage/schema/main/delta/56/device_stream_id_insert.sql
1486${PYSITELIB}/synapse/storage/schema/main/delta/56/devices_last_seen.sql 1486${PYSITELIB}/synapse/storage/schema/main/delta/56/devices_last_seen.sql
1487${PYSITELIB}/synapse/storage/schema/main/delta/56/drop_unused_event_tables.sql 1487${PYSITELIB}/synapse/storage/schema/main/delta/56/drop_unused_event_tables.sql
1488${PYSITELIB}/synapse/storage/schema/main/delta/56/event_expiry.sql 1488${PYSITELIB}/synapse/storage/schema/main/delta/56/event_expiry.sql
1489${PYSITELIB}/synapse/storage/schema/main/delta/56/event_labels.sql 1489${PYSITELIB}/synapse/storage/schema/main/delta/56/event_labels.sql
1490${PYSITELIB}/synapse/storage/schema/main/delta/56/event_labels_background_update.sql 1490${PYSITELIB}/synapse/storage/schema/main/delta/56/event_labels_background_update.sql
1491${PYSITELIB}/synapse/storage/schema/main/delta/56/fix_room_keys_index.sql 1491${PYSITELIB}/synapse/storage/schema/main/delta/56/fix_room_keys_index.sql
1492${PYSITELIB}/synapse/storage/schema/main/delta/56/hidden_devices.sql 1492${PYSITELIB}/synapse/storage/schema/main/delta/56/hidden_devices.sql
1493${PYSITELIB}/synapse/storage/schema/main/delta/56/hidden_devices_fix.sql.sqlite 1493${PYSITELIB}/synapse/storage/schema/main/delta/56/hidden_devices_fix.sql.sqlite
1494${PYSITELIB}/synapse/storage/schema/main/delta/56/nuke_empty_communities_from_db.sql 1494${PYSITELIB}/synapse/storage/schema/main/delta/56/nuke_empty_communities_from_db.sql
1495${PYSITELIB}/synapse/storage/schema/main/delta/56/public_room_list_idx.sql 1495${PYSITELIB}/synapse/storage/schema/main/delta/56/public_room_list_idx.sql
1496${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor.sql 1496${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor.sql
1497${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor2.sql 1497${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor2.sql
1498${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor3_fix_update.sql.postgres 1498${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor3_fix_update.sql.postgres
1499${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor4.sql 1499${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor4.sql
1500${PYSITELIB}/synapse/storage/schema/main/delta/56/remove_tombstoned_rooms_from_directory.sql 1500${PYSITELIB}/synapse/storage/schema/main/delta/56/remove_tombstoned_rooms_from_directory.sql
1501${PYSITELIB}/synapse/storage/schema/main/delta/56/room_key_etag.sql 1501${PYSITELIB}/synapse/storage/schema/main/delta/56/room_key_etag.sql
1502${PYSITELIB}/synapse/storage/schema/main/delta/56/room_membership_idx.sql 1502${PYSITELIB}/synapse/storage/schema/main/delta/56/room_membership_idx.sql
1503${PYSITELIB}/synapse/storage/schema/main/delta/56/room_retention.sql 1503${PYSITELIB}/synapse/storage/schema/main/delta/56/room_retention.sql
1504${PYSITELIB}/synapse/storage/schema/main/delta/56/signing_keys.sql 1504${PYSITELIB}/synapse/storage/schema/main/delta/56/signing_keys.sql
1505${PYSITELIB}/synapse/storage/schema/main/delta/56/signing_keys_nonunique_signatures.sql 1505${PYSITELIB}/synapse/storage/schema/main/delta/56/signing_keys_nonunique_signatures.sql
1506${PYSITELIB}/synapse/storage/schema/main/delta/56/stats_separated.sql 1506${PYSITELIB}/synapse/storage/schema/main/delta/56/stats_separated.sql
1507${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.py 1507${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.py
1508${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.pyc 1508${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.pyc
1509${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.pyo 1509${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.pyo
1510${PYSITELIB}/synapse/storage/schema/main/delta/56/user_external_ids.sql 1510${PYSITELIB}/synapse/storage/schema/main/delta/56/user_external_ids.sql
1511${PYSITELIB}/synapse/storage/schema/main/delta/56/users_in_public_rooms_idx.sql 1511${PYSITELIB}/synapse/storage/schema/main/delta/56/users_in_public_rooms_idx.sql
1512${PYSITELIB}/synapse/storage/schema/main/delta/57/delete_old_current_state_events.sql 1512${PYSITELIB}/synapse/storage/schema/main/delta/57/delete_old_current_state_events.sql
1513${PYSITELIB}/synapse/storage/schema/main/delta/57/device_list_remote_cache_stale.sql 1513${PYSITELIB}/synapse/storage/schema/main/delta/57/device_list_remote_cache_stale.sql
1514${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.py 1514${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.py
1515${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.pyc 1515${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.pyc
1516${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.pyo 1516${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.pyo
1517${PYSITELIB}/synapse/storage/schema/main/delta/57/remove_sent_outbound_pokes.sql 1517${PYSITELIB}/synapse/storage/schema/main/delta/57/remove_sent_outbound_pokes.sql
1518${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column.sql 1518${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column.sql
1519${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_2.sql.postgres 1519${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_2.sql.postgres
1520${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_2.sql.sqlite 1520${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_2.sql.sqlite
1521${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_3.sql.postgres 1521${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_3.sql.postgres
1522${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_3.sql.sqlite 1522${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_3.sql.sqlite
1523${PYSITELIB}/synapse/storage/schema/main/delta/58/02remove_dup_outbound_pokes.sql 1523${PYSITELIB}/synapse/storage/schema/main/delta/58/02remove_dup_outbound_pokes.sql
1524${PYSITELIB}/synapse/storage/schema/main/delta/58/03persist_ui_auth.sql 1524${PYSITELIB}/synapse/storage/schema/main/delta/58/03persist_ui_auth.sql
1525${PYSITELIB}/synapse/storage/schema/main/delta/58/05cache_instance.sql.postgres 1525${PYSITELIB}/synapse/storage/schema/main/delta/58/05cache_instance.sql.postgres
1526${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.py 1526${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.py
1527${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.pyc 1527${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.pyc
1528${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.pyo 1528${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.pyo
1529${PYSITELIB}/synapse/storage/schema/main/delta/58/07add_method_to_thumbnail_constraint.sql.postgres 1529${PYSITELIB}/synapse/storage/schema/main/delta/58/07add_method_to_thumbnail_constraint.sql.postgres
1530${PYSITELIB}/synapse/storage/schema/main/delta/58/07add_method_to_thumbnail_constraint.sql.sqlite 1530${PYSITELIB}/synapse/storage/schema/main/delta/58/07add_method_to_thumbnail_constraint.sql.sqlite
1531${PYSITELIB}/synapse/storage/schema/main/delta/58/07persist_ui_auth_ips.sql 1531${PYSITELIB}/synapse/storage/schema/main/delta/58/07persist_ui_auth_ips.sql
1532${PYSITELIB}/synapse/storage/schema/main/delta/58/08_media_safe_from_quarantine.sql.postgres 1532${PYSITELIB}/synapse/storage/schema/main/delta/58/08_media_safe_from_quarantine.sql.postgres
1533${PYSITELIB}/synapse/storage/schema/main/delta/58/08_media_safe_from_quarantine.sql.sqlite 1533${PYSITELIB}/synapse/storage/schema/main/delta/58/08_media_safe_from_quarantine.sql.sqlite
1534${PYSITELIB}/synapse/storage/schema/main/delta/58/09shadow_ban.sql 1534${PYSITELIB}/synapse/storage/schema/main/delta/58/09shadow_ban.sql
1535${PYSITELIB}/synapse/storage/schema/main/delta/58/10_pushrules_enabled_delete_obsolete.sql 1535${PYSITELIB}/synapse/storage/schema/main/delta/58/10_pushrules_enabled_delete_obsolete.sql
1536${PYSITELIB}/synapse/storage/schema/main/delta/58/10drop_local_rejections_stream.sql 1536${PYSITELIB}/synapse/storage/schema/main/delta/58/10drop_local_rejections_stream.sql
1537${PYSITELIB}/synapse/storage/schema/main/delta/58/10federation_pos_instance_name.sql 1537${PYSITELIB}/synapse/storage/schema/main/delta/58/10federation_pos_instance_name.sql
1538${PYSITELIB}/synapse/storage/schema/main/delta/58/11dehydration.sql 1538${PYSITELIB}/synapse/storage/schema/main/delta/58/11dehydration.sql
1539${PYSITELIB}/synapse/storage/schema/main/delta/58/11fallback.sql 1539${PYSITELIB}/synapse/storage/schema/main/delta/58/11fallback.sql
1540${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.py 1540${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.py
1541${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.pyc 1541${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.pyc
1542${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.pyo 1542${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.pyo
1543${PYSITELIB}/synapse/storage/schema/main/delta/58/12room_stats.sql 1543${PYSITELIB}/synapse/storage/schema/main/delta/58/12room_stats.sql
1544${PYSITELIB}/synapse/storage/schema/main/delta/58/13remove_presence_allow_inbound.sql 1544${PYSITELIB}/synapse/storage/schema/main/delta/58/13remove_presence_allow_inbound.sql
1545${PYSITELIB}/synapse/storage/schema/main/delta/58/14events_instance_name.sql 1545${PYSITELIB}/synapse/storage/schema/main/delta/58/14events_instance_name.sql
1546${PYSITELIB}/synapse/storage/schema/main/delta/58/14events_instance_name.sql.postgres 1546${PYSITELIB}/synapse/storage/schema/main/delta/58/14events_instance_name.sql.postgres
1547${PYSITELIB}/synapse/storage/schema/main/delta/58/15_catchup_destination_rooms.sql 1547${PYSITELIB}/synapse/storage/schema/main/delta/58/15_catchup_destination_rooms.sql
1548${PYSITELIB}/synapse/storage/schema/main/delta/58/15unread_count.sql 1548${PYSITELIB}/synapse/storage/schema/main/delta/58/15unread_count.sql
1549${PYSITELIB}/synapse/storage/schema/main/delta/58/16populate_stats_process_rooms_fix.sql 1549${PYSITELIB}/synapse/storage/schema/main/delta/58/16populate_stats_process_rooms_fix.sql
1550${PYSITELIB}/synapse/storage/schema/main/delta/58/17_catchup_last_successful.sql 1550${PYSITELIB}/synapse/storage/schema/main/delta/58/17_catchup_last_successful.sql
1551${PYSITELIB}/synapse/storage/schema/main/delta/58/18stream_positions.sql 1551${PYSITELIB}/synapse/storage/schema/main/delta/58/18stream_positions.sql
1552${PYSITELIB}/synapse/storage/schema/main/delta/58/19instance_map.sql.postgres 1552${PYSITELIB}/synapse/storage/schema/main/delta/58/19instance_map.sql.postgres
1553${PYSITELIB}/synapse/storage/schema/main/delta/58/19txn_id.sql 1553${PYSITELIB}/synapse/storage/schema/main/delta/58/19txn_id.sql
1554${PYSITELIB}/synapse/storage/schema/main/delta/58/20instance_name_event_tables.sql 1554${PYSITELIB}/synapse/storage/schema/main/delta/58/20instance_name_event_tables.sql
1555${PYSITELIB}/synapse/storage/schema/main/delta/58/20user_daily_visits.sql 1555${PYSITELIB}/synapse/storage/schema/main/delta/58/20user_daily_visits.sql
1556${PYSITELIB}/synapse/storage/schema/main/delta/58/21as_device_stream.sql 1556${PYSITELIB}/synapse/storage/schema/main/delta/58/21as_device_stream.sql
1557${PYSITELIB}/synapse/storage/schema/main/delta/58/21drop_device_max_stream_id.sql 1557${PYSITELIB}/synapse/storage/schema/main/delta/58/21drop_device_max_stream_id.sql
1558${PYSITELIB}/synapse/storage/schema/main/delta/58/22puppet_token.sql 1558${PYSITELIB}/synapse/storage/schema/main/delta/58/22puppet_token.sql
1559${PYSITELIB}/synapse/storage/schema/main/delta/58/22users_have_local_media.sql 1559${PYSITELIB}/synapse/storage/schema/main/delta/58/22users_have_local_media.sql
1560${PYSITELIB}/synapse/storage/schema/main/delta/58/23e2e_cross_signing_keys_idx.sql 1560${PYSITELIB}/synapse/storage/schema/main/delta/58/23e2e_cross_signing_keys_idx.sql
1561${PYSITELIB}/synapse/storage/schema/main/delta/58/24drop_event_json_index.sql 1561${PYSITELIB}/synapse/storage/schema/main/delta/58/24drop_event_json_index.sql
1562${PYSITELIB}/synapse/storage/schema/main/delta/58/25user_external_ids_user_id_idx.sql 1562${PYSITELIB}/synapse/storage/schema/main/delta/58/25user_external_ids_user_id_idx.sql
1563${PYSITELIB}/synapse/storage/schema/main/delta/58/26access_token_last_validated.sql 1563${PYSITELIB}/synapse/storage/schema/main/delta/58/26access_token_last_validated.sql
1564${PYSITELIB}/synapse/storage/schema/main/delta/58/27local_invites.sql 1564${PYSITELIB}/synapse/storage/schema/main/delta/58/27local_invites.sql
1565${PYSITELIB}/synapse/storage/schema/main/delta/58/28drop_last_used_column.sql.postgres 1565${PYSITELIB}/synapse/storage/schema/main/delta/58/28drop_last_used_column.sql.postgres
1566${PYSITELIB}/synapse/storage/schema/main/delta/58/28drop_last_used_column.sql.sqlite 1566${PYSITELIB}/synapse/storage/schema/main/delta/58/28drop_last_used_column.sql.sqlite
1567${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.py 1567${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.py
1568${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.pyc 1568${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.pyc
1569${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.pyo 1569${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.pyo
1570${PYSITELIB}/synapse/storage/schema/main/delta/59/02shard_send_to_device.sql 1570${PYSITELIB}/synapse/storage/schema/main/delta/59/02shard_send_to_device.sql
1571${PYSITELIB}/synapse/storage/schema/main/delta/59/03shard_send_to_device_sequence.sql.postgres 1571${PYSITELIB}/synapse/storage/schema/main/delta/59/03shard_send_to_device_sequence.sql.postgres
1572${PYSITELIB}/synapse/storage/schema/main/delta/59/04_event_auth_chains.sql 1572${PYSITELIB}/synapse/storage/schema/main/delta/59/04_event_auth_chains.sql
1573${PYSITELIB}/synapse/storage/schema/main/delta/59/04_event_auth_chains.sql.postgres 1573${PYSITELIB}/synapse/storage/schema/main/delta/59/04_event_auth_chains.sql.postgres
1574${PYSITELIB}/synapse/storage/schema/main/delta/59/04drop_account_data.sql 1574${PYSITELIB}/synapse/storage/schema/main/delta/59/04drop_account_data.sql
1575${PYSITELIB}/synapse/storage/schema/main/delta/59/05cache_invalidation.sql 1575${PYSITELIB}/synapse/storage/schema/main/delta/59/05cache_invalidation.sql
1576${PYSITELIB}/synapse/storage/schema/main/delta/59/06chain_cover_index.sql 1576${PYSITELIB}/synapse/storage/schema/main/delta/59/06chain_cover_index.sql
1577${PYSITELIB}/synapse/storage/schema/main/delta/59/06shard_account_data.sql 1577${PYSITELIB}/synapse/storage/schema/main/delta/59/06shard_account_data.sql
1578${PYSITELIB}/synapse/storage/schema/main/delta/59/06shard_account_data.sql.postgres 1578${PYSITELIB}/synapse/storage/schema/main/delta/59/06shard_account_data.sql.postgres
1579${PYSITELIB}/synapse/storage/schema/main/delta/59/07shard_account_data_fix.sql 1579${PYSITELIB}/synapse/storage/schema/main/delta/59/07shard_account_data_fix.sql
1580${PYSITELIB}/synapse/storage/schema/main/delta/59/08delete_pushers_for_deactivated_accounts.sql 1580${PYSITELIB}/synapse/storage/schema/main/delta/59/08delete_pushers_for_deactivated_accounts.sql
1581${PYSITELIB}/synapse/storage/schema/main/delta/59/08delete_stale_pushers.sql 1581${PYSITELIB}/synapse/storage/schema/main/delta/59/08delete_stale_pushers.sql
1582${PYSITELIB}/synapse/storage/schema/main/delta/59/09rejected_events_metadata.sql 1582${PYSITELIB}/synapse/storage/schema/main/delta/59/09rejected_events_metadata.sql
1583${PYSITELIB}/synapse/storage/schema/main/delta/59/10delete_purged_chain_cover.sql 1583${PYSITELIB}/synapse/storage/schema/main/delta/59/10delete_purged_chain_cover.sql
 1584${PYSITELIB}/synapse/storage/schema/main/delta/59/11add_knock_members_to_stats.sql
1584${PYSITELIB}/synapse/storage/schema/main/delta/59/11drop_thumbnail_constraint.sql.postgres 1585${PYSITELIB}/synapse/storage/schema/main/delta/59/11drop_thumbnail_constraint.sql.postgres
1585${PYSITELIB}/synapse/storage/schema/main/delta/59/12account_validity_token_used_ts_ms.sql 1586${PYSITELIB}/synapse/storage/schema/main/delta/59/12account_validity_token_used_ts_ms.sql
1586${PYSITELIB}/synapse/storage/schema/main/delta/59/12presence_stream_instance.sql 1587${PYSITELIB}/synapse/storage/schema/main/delta/59/12presence_stream_instance.sql
1587${PYSITELIB}/synapse/storage/schema/main/delta/59/12presence_stream_instance_seq.sql.postgres 1588${PYSITELIB}/synapse/storage/schema/main/delta/59/12presence_stream_instance_seq.sql.postgres
1588${PYSITELIB}/synapse/storage/schema/main/delta/59/13users_to_send_full_presence_to.sql 1589${PYSITELIB}/synapse/storage/schema/main/delta/59/13users_to_send_full_presence_to.sql
1589${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/application_services.sql 1590${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/application_services.sql
1590${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/event_edges.sql 1591${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/event_edges.sql
1591${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/event_signatures.sql 1592${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/event_signatures.sql
1592${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/im.sql 1593${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/im.sql
1593${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/keys.sql 1594${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/keys.sql
1594${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/media_repository.sql 1595${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/media_repository.sql
1595${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/presence.sql 1596${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/presence.sql
1596${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/profiles.sql 1597${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/profiles.sql
1597${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/push.sql 1598${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/push.sql
1598${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/redactions.sql 1599${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/redactions.sql
1599${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/room_aliases.sql 1600${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/room_aliases.sql
1600${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/state.sql 1601${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/state.sql
1601${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/transactions.sql 1602${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/transactions.sql
1602${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/users.sql 1603${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/users.sql
1603${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/full.sql.postgres 1604${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/full.sql.postgres
1604${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/full.sql.sqlite 1605${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/full.sql.sqlite
1605${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/stream_positions.sql 1606${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/stream_positions.sql
1606${PYSITELIB}/synapse/storage/schema/state/delta/23/drop_state_index.sql 1607${PYSITELIB}/synapse/storage/schema/state/delta/23/drop_state_index.sql
1607${PYSITELIB}/synapse/storage/schema/state/delta/30/state_stream.sql 1608${PYSITELIB}/synapse/storage/schema/state/delta/30/state_stream.sql
1608${PYSITELIB}/synapse/storage/schema/state/delta/32/remove_state_indices.sql 1609${PYSITELIB}/synapse/storage/schema/state/delta/32/remove_state_indices.sql
1609${PYSITELIB}/synapse/storage/schema/state/delta/35/add_state_index.sql 1610${PYSITELIB}/synapse/storage/schema/state/delta/35/add_state_index.sql
1610${PYSITELIB}/synapse/storage/schema/state/delta/35/state.sql 1611${PYSITELIB}/synapse/storage/schema/state/delta/35/state.sql
1611${PYSITELIB}/synapse/storage/schema/state/delta/35/state_dedupe.sql 1612${PYSITELIB}/synapse/storage/schema/state/delta/35/state_dedupe.sql
1612${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.py 1613${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.py
1613${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.pyc 1614${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.pyc
1614${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.pyo 1615${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.pyo
1615${PYSITELIB}/synapse/storage/schema/state/delta/56/state_group_room_idx.sql 1616${PYSITELIB}/synapse/storage/schema/state/delta/56/state_group_room_idx.sql
1616${PYSITELIB}/synapse/storage/schema/state/full_schemas/54/full.sql 1617${PYSITELIB}/synapse/storage/schema/state/full_schemas/54/full.sql
1617${PYSITELIB}/synapse/storage/schema/state/full_schemas/54/sequence.sql.postgres 1618${PYSITELIB}/synapse/storage/schema/state/full_schemas/54/sequence.sql.postgres
1618${PYSITELIB}/synapse/storage/state.py 1619${PYSITELIB}/synapse/storage/state.py
1619${PYSITELIB}/synapse/storage/state.pyc 1620${PYSITELIB}/synapse/storage/state.pyc
1620${PYSITELIB}/synapse/storage/state.pyo 1621${PYSITELIB}/synapse/storage/state.pyo
1621${PYSITELIB}/synapse/storage/types.py 1622${PYSITELIB}/synapse/storage/types.py
1622${PYSITELIB}/synapse/storage/types.pyc 1623${PYSITELIB}/synapse/storage/types.pyc
1623${PYSITELIB}/synapse/storage/types.pyo 1624${PYSITELIB}/synapse/storage/types.pyo
1624${PYSITELIB}/synapse/storage/util/__init__.py 1625${PYSITELIB}/synapse/storage/util/__init__.py
1625${PYSITELIB}/synapse/storage/util/__init__.pyc 1626${PYSITELIB}/synapse/storage/util/__init__.pyc
1626${PYSITELIB}/synapse/storage/util/__init__.pyo 1627${PYSITELIB}/synapse/storage/util/__init__.pyo
1627${PYSITELIB}/synapse/storage/util/id_generators.py 1628${PYSITELIB}/synapse/storage/util/id_generators.py
1628${PYSITELIB}/synapse/storage/util/id_generators.pyc 1629${PYSITELIB}/synapse/storage/util/id_generators.pyc
1629${PYSITELIB}/synapse/storage/util/id_generators.pyo 1630${PYSITELIB}/synapse/storage/util/id_generators.pyo
1630${PYSITELIB}/synapse/storage/util/sequence.py 1631${PYSITELIB}/synapse/storage/util/sequence.py
1631${PYSITELIB}/synapse/storage/util/sequence.pyc 1632${PYSITELIB}/synapse/storage/util/sequence.pyc
1632${PYSITELIB}/synapse/storage/util/sequence.pyo 1633${PYSITELIB}/synapse/storage/util/sequence.pyo
1633${PYSITELIB}/synapse/streams/__init__.py 1634${PYSITELIB}/synapse/streams/__init__.py
1634${PYSITELIB}/synapse/streams/__init__.pyc 1635${PYSITELIB}/synapse/streams/__init__.pyc
1635${PYSITELIB}/synapse/streams/__init__.pyo 1636${PYSITELIB}/synapse/streams/__init__.pyo
1636${PYSITELIB}/synapse/streams/config.py 1637${PYSITELIB}/synapse/streams/config.py
1637${PYSITELIB}/synapse/streams/config.pyc 1638${PYSITELIB}/synapse/streams/config.pyc
1638${PYSITELIB}/synapse/streams/config.pyo 1639${PYSITELIB}/synapse/streams/config.pyo
1639${PYSITELIB}/synapse/streams/events.py 1640${PYSITELIB}/synapse/streams/events.py
1640${PYSITELIB}/synapse/streams/events.pyc 1641${PYSITELIB}/synapse/streams/events.pyc
1641${PYSITELIB}/synapse/streams/events.pyo 1642${PYSITELIB}/synapse/streams/events.pyo
1642${PYSITELIB}/synapse/types.py 1643${PYSITELIB}/synapse/types.py
1643${PYSITELIB}/synapse/types.pyc 1644${PYSITELIB}/synapse/types.pyc
1644${PYSITELIB}/synapse/types.pyo 1645${PYSITELIB}/synapse/types.pyo
1645${PYSITELIB}/synapse/util/__init__.py 1646${PYSITELIB}/synapse/util/__init__.py
1646${PYSITELIB}/synapse/util/__init__.pyc 1647${PYSITELIB}/synapse/util/__init__.pyc
1647${PYSITELIB}/synapse/util/__init__.pyo 1648${PYSITELIB}/synapse/util/__init__.pyo
1648${PYSITELIB}/synapse/util/async_helpers.py 1649${PYSITELIB}/synapse/util/async_helpers.py
1649${PYSITELIB}/synapse/util/async_helpers.pyc 1650${PYSITELIB}/synapse/util/async_helpers.pyc
1650${PYSITELIB}/synapse/util/async_helpers.pyo 1651${PYSITELIB}/synapse/util/async_helpers.pyo
1651${PYSITELIB}/synapse/util/batching_queue.py 1652${PYSITELIB}/synapse/util/batching_queue.py
1652${PYSITELIB}/synapse/util/batching_queue.pyc 1653${PYSITELIB}/synapse/util/batching_queue.pyc
1653${PYSITELIB}/synapse/util/batching_queue.pyo 1654${PYSITELIB}/synapse/util/batching_queue.pyo
1654${PYSITELIB}/synapse/util/caches/__init__.py 1655${PYSITELIB}/synapse/util/caches/__init__.py
1655${PYSITELIB}/synapse/util/caches/__init__.pyc 1656${PYSITELIB}/synapse/util/caches/__init__.pyc
1656${PYSITELIB}/synapse/util/caches/__init__.pyo 1657${PYSITELIB}/synapse/util/caches/__init__.pyo
1657${PYSITELIB}/synapse/util/caches/cached_call.py 1658${PYSITELIB}/synapse/util/caches/cached_call.py
1658${PYSITELIB}/synapse/util/caches/cached_call.pyc 1659${PYSITELIB}/synapse/util/caches/cached_call.pyc
1659${PYSITELIB}/synapse/util/caches/cached_call.pyo 1660${PYSITELIB}/synapse/util/caches/cached_call.pyo
1660${PYSITELIB}/synapse/util/caches/deferred_cache.py 1661${PYSITELIB}/synapse/util/caches/deferred_cache.py
1661${PYSITELIB}/synapse/util/caches/deferred_cache.pyc 1662${PYSITELIB}/synapse/util/caches/deferred_cache.pyc
1662${PYSITELIB}/synapse/util/caches/deferred_cache.pyo 1663${PYSITELIB}/synapse/util/caches/deferred_cache.pyo
1663${PYSITELIB}/synapse/util/caches/descriptors.py 1664${PYSITELIB}/synapse/util/caches/descriptors.py
1664${PYSITELIB}/synapse/util/caches/descriptors.pyc 1665${PYSITELIB}/synapse/util/caches/descriptors.pyc
1665${PYSITELIB}/synapse/util/caches/descriptors.pyo 1666${PYSITELIB}/synapse/util/caches/descriptors.pyo
1666${PYSITELIB}/synapse/util/caches/dictionary_cache.py 1667${PYSITELIB}/synapse/util/caches/dictionary_cache.py
1667${PYSITELIB}/synapse/util/caches/dictionary_cache.pyc 1668${PYSITELIB}/synapse/util/caches/dictionary_cache.pyc
1668${PYSITELIB}/synapse/util/caches/dictionary_cache.pyo 1669${PYSITELIB}/synapse/util/caches/dictionary_cache.pyo
1669${PYSITELIB}/synapse/util/caches/expiringcache.py 1670${PYSITELIB}/synapse/util/caches/expiringcache.py
1670${PYSITELIB}/synapse/util/caches/expiringcache.pyc 1671${PYSITELIB}/synapse/util/caches/expiringcache.pyc
1671${PYSITELIB}/synapse/util/caches/expiringcache.pyo 1672${PYSITELIB}/synapse/util/caches/expiringcache.pyo
1672${PYSITELIB}/synapse/util/caches/lrucache.py 1673${PYSITELIB}/synapse/util/caches/lrucache.py
1673${PYSITELIB}/synapse/util/caches/lrucache.pyc 1674${PYSITELIB}/synapse/util/caches/lrucache.pyc
1674${PYSITELIB}/synapse/util/caches/lrucache.pyo 1675${PYSITELIB}/synapse/util/caches/lrucache.pyo
1675${PYSITELIB}/synapse/util/caches/response_cache.py 1676${PYSITELIB}/synapse/util/caches/response_cache.py
1676${PYSITELIB}/synapse/util/caches/response_cache.pyc 1677${PYSITELIB}/synapse/util/caches/response_cache.pyc
1677${PYSITELIB}/synapse/util/caches/response_cache.pyo 1678${PYSITELIB}/synapse/util/caches/response_cache.pyo
1678${PYSITELIB}/synapse/util/caches/stream_change_cache.py 1679${PYSITELIB}/synapse/util/caches/stream_change_cache.py
1679${PYSITELIB}/synapse/util/caches/stream_change_cache.pyc 1680${PYSITELIB}/synapse/util/caches/stream_change_cache.pyc
1680${PYSITELIB}/synapse/util/caches/stream_change_cache.pyo 1681${PYSITELIB}/synapse/util/caches/stream_change_cache.pyo
1681${PYSITELIB}/synapse/util/caches/treecache.py 1682${PYSITELIB}/synapse/util/caches/treecache.py
1682${PYSITELIB}/synapse/util/caches/treecache.pyc 1683${PYSITELIB}/synapse/util/caches/treecache.pyc
1683${PYSITELIB}/synapse/util/caches/treecache.pyo 1684${PYSITELIB}/synapse/util/caches/treecache.pyo
1684${PYSITELIB}/synapse/util/caches/ttlcache.py 1685${PYSITELIB}/synapse/util/caches/ttlcache.py
1685${PYSITELIB}/synapse/util/caches/ttlcache.pyc 1686${PYSITELIB}/synapse/util/caches/ttlcache.pyc
1686${PYSITELIB}/synapse/util/caches/ttlcache.pyo 1687${PYSITELIB}/synapse/util/caches/ttlcache.pyo
1687${PYSITELIB}/synapse/util/daemonize.py 1688${PYSITELIB}/synapse/util/daemonize.py
1688${PYSITELIB}/synapse/util/daemonize.pyc 1689${PYSITELIB}/synapse/util/daemonize.pyc
1689${PYSITELIB}/synapse/util/daemonize.pyo 1690${PYSITELIB}/synapse/util/daemonize.pyo
1690${PYSITELIB}/synapse/util/distributor.py 1691${PYSITELIB}/synapse/util/distributor.py
1691${PYSITELIB}/synapse/util/distributor.pyc 1692${PYSITELIB}/synapse/util/distributor.pyc
1692${PYSITELIB}/synapse/util/distributor.pyo 1693${PYSITELIB}/synapse/util/distributor.pyo
1693${PYSITELIB}/synapse/util/file_consumer.py 1694${PYSITELIB}/synapse/util/file_consumer.py
1694${PYSITELIB}/synapse/util/file_consumer.pyc 1695${PYSITELIB}/synapse/util/file_consumer.pyc
1695${PYSITELIB}/synapse/util/file_consumer.pyo 1696${PYSITELIB}/synapse/util/file_consumer.pyo
1696${PYSITELIB}/synapse/util/frozenutils.py 1697${PYSITELIB}/synapse/util/frozenutils.py
1697${PYSITELIB}/synapse/util/frozenutils.pyc 1698${PYSITELIB}/synapse/util/frozenutils.pyc
1698${PYSITELIB}/synapse/util/frozenutils.pyo 1699${PYSITELIB}/synapse/util/frozenutils.pyo
1699${PYSITELIB}/synapse/util/hash.py 1700${PYSITELIB}/synapse/util/hash.py
1700${PYSITELIB}/synapse/util/hash.pyc 1701${PYSITELIB}/synapse/util/hash.pyc
1701${PYSITELIB}/synapse/util/hash.pyo 1702${PYSITELIB}/synapse/util/hash.pyo
1702${PYSITELIB}/synapse/util/httpresourcetree.py 1703${PYSITELIB}/synapse/util/httpresourcetree.py
1703${PYSITELIB}/synapse/util/httpresourcetree.pyc 1704${PYSITELIB}/synapse/util/httpresourcetree.pyc
1704${PYSITELIB}/synapse/util/httpresourcetree.pyo 1705${PYSITELIB}/synapse/util/httpresourcetree.pyo
1705${PYSITELIB}/synapse/util/iterutils.py 1706${PYSITELIB}/synapse/util/iterutils.py
1706${PYSITELIB}/synapse/util/iterutils.pyc 1707${PYSITELIB}/synapse/util/iterutils.pyc
1707${PYSITELIB}/synapse/util/iterutils.pyo 1708${PYSITELIB}/synapse/util/iterutils.pyo
1708${PYSITELIB}/synapse/util/jsonobject.py 1709${PYSITELIB}/synapse/util/jsonobject.py
1709${PYSITELIB}/synapse/util/jsonobject.pyc 1710${PYSITELIB}/synapse/util/jsonobject.pyc
1710${PYSITELIB}/synapse/util/jsonobject.pyo 1711${PYSITELIB}/synapse/util/jsonobject.pyo
1711${PYSITELIB}/synapse/util/logcontext.py 1712${PYSITELIB}/synapse/util/logcontext.py
1712${PYSITELIB}/synapse/util/logcontext.pyc 1713${PYSITELIB}/synapse/util/logcontext.pyc
1713${PYSITELIB}/synapse/util/logcontext.pyo 1714${PYSITELIB}/synapse/util/logcontext.pyo
1714${PYSITELIB}/synapse/util/logformatter.py 1715${PYSITELIB}/synapse/util/logformatter.py
1715${PYSITELIB}/synapse/util/logformatter.pyc 1716${PYSITELIB}/synapse/util/logformatter.pyc
1716${PYSITELIB}/synapse/util/logformatter.pyo 1717${PYSITELIB}/synapse/util/logformatter.pyo
1717${PYSITELIB}/synapse/util/macaroons.py 1718${PYSITELIB}/synapse/util/macaroons.py
1718${PYSITELIB}/synapse/util/macaroons.pyc 1719${PYSITELIB}/synapse/util/macaroons.pyc
1719${PYSITELIB}/synapse/util/macaroons.pyo 1720${PYSITELIB}/synapse/util/macaroons.pyo
1720${PYSITELIB}/synapse/util/manhole.py 1721${PYSITELIB}/synapse/util/manhole.py
1721${PYSITELIB}/synapse/util/manhole.pyc 1722${PYSITELIB}/synapse/util/manhole.pyc
1722${PYSITELIB}/synapse/util/manhole.pyo 1723${PYSITELIB}/synapse/util/manhole.pyo
1723${PYSITELIB}/synapse/util/metrics.py 1724${PYSITELIB}/synapse/util/metrics.py
1724${PYSITELIB}/synapse/util/metrics.pyc 1725${PYSITELIB}/synapse/util/metrics.pyc
1725${PYSITELIB}/synapse/util/metrics.pyo 1726${PYSITELIB}/synapse/util/metrics.pyo
1726${PYSITELIB}/synapse/util/module_loader.py 1727${PYSITELIB}/synapse/util/module_loader.py
1727${PYSITELIB}/synapse/util/module_loader.pyc 1728${PYSITELIB}/synapse/util/module_loader.pyc
1728${PYSITELIB}/synapse/util/module_loader.pyo 1729${PYSITELIB}/synapse/util/module_loader.pyo
1729${PYSITELIB}/synapse/util/msisdn.py 1730${PYSITELIB}/synapse/util/msisdn.py
1730${PYSITELIB}/synapse/util/msisdn.pyc 1731${PYSITELIB}/synapse/util/msisdn.pyc
1731${PYSITELIB}/synapse/util/msisdn.pyo 1732${PYSITELIB}/synapse/util/msisdn.pyo
1732${PYSITELIB}/synapse/util/patch_inline_callbacks.py 1733${PYSITELIB}/synapse/util/patch_inline_callbacks.py
1733${PYSITELIB}/synapse/util/patch_inline_callbacks.pyc 1734${PYSITELIB}/synapse/util/patch_inline_callbacks.pyc
1734${PYSITELIB}/synapse/util/patch_inline_callbacks.pyo 1735${PYSITELIB}/synapse/util/patch_inline_callbacks.pyo
1735${PYSITELIB}/synapse/util/ratelimitutils.py 1736${PYSITELIB}/synapse/util/ratelimitutils.py
1736${PYSITELIB}/synapse/util/ratelimitutils.pyc 1737${PYSITELIB}/synapse/util/ratelimitutils.pyc
1737${PYSITELIB}/synapse/util/ratelimitutils.pyo 1738${PYSITELIB}/synapse/util/ratelimitutils.pyo
1738${PYSITELIB}/synapse/util/retryutils.py 1739${PYSITELIB}/synapse/util/retryutils.py
1739${PYSITELIB}/synapse/util/retryutils.pyc 1740${PYSITELIB}/synapse/util/retryutils.pyc
1740${PYSITELIB}/synapse/util/retryutils.pyo 1741${PYSITELIB}/synapse/util/retryutils.pyo
1741${PYSITELIB}/synapse/util/rlimit.py 1742${PYSITELIB}/synapse/util/rlimit.py
1742${PYSITELIB}/synapse/util/rlimit.pyc 1743${PYSITELIB}/synapse/util/rlimit.pyc
1743${PYSITELIB}/synapse/util/rlimit.pyo 1744${PYSITELIB}/synapse/util/rlimit.pyo
1744${PYSITELIB}/synapse/util/stringutils.py 1745${PYSITELIB}/synapse/util/stringutils.py
1745${PYSITELIB}/synapse/util/stringutils.pyc 1746${PYSITELIB}/synapse/util/stringutils.pyc
1746${PYSITELIB}/synapse/util/stringutils.pyo 1747${PYSITELIB}/synapse/util/stringutils.pyo
1747${PYSITELIB}/synapse/util/templates.py 1748${PYSITELIB}/synapse/util/templates.py
1748${PYSITELIB}/synapse/util/templates.pyc 1749${PYSITELIB}/synapse/util/templates.pyc
1749${PYSITELIB}/synapse/util/templates.pyo 1750${PYSITELIB}/synapse/util/templates.pyo
1750${PYSITELIB}/synapse/util/threepids.py 1751${PYSITELIB}/synapse/util/threepids.py
1751${PYSITELIB}/synapse/util/threepids.pyc 1752${PYSITELIB}/synapse/util/threepids.pyc
1752${PYSITELIB}/synapse/util/threepids.pyo 1753${PYSITELIB}/synapse/util/threepids.pyo
1753${PYSITELIB}/synapse/util/versionstring.py 1754${PYSITELIB}/synapse/util/versionstring.py
1754${PYSITELIB}/synapse/util/versionstring.pyc 1755${PYSITELIB}/synapse/util/versionstring.pyc
1755${PYSITELIB}/synapse/util/versionstring.pyo 1756${PYSITELIB}/synapse/util/versionstring.pyo
1756${PYSITELIB}/synapse/util/wheel_timer.py 1757${PYSITELIB}/synapse/util/wheel_timer.py
1757${PYSITELIB}/synapse/util/wheel_timer.pyc 1758${PYSITELIB}/synapse/util/wheel_timer.pyc
1758${PYSITELIB}/synapse/util/wheel_timer.pyo 1759${PYSITELIB}/synapse/util/wheel_timer.pyo
1759${PYSITELIB}/synapse/visibility.py 1760${PYSITELIB}/synapse/visibility.py
1760${PYSITELIB}/synapse/visibility.pyc 1761${PYSITELIB}/synapse/visibility.pyc
1761${PYSITELIB}/synapse/visibility.pyo 1762${PYSITELIB}/synapse/visibility.pyo
1762${PYSITELIB}/synmark/__init__.py 1763${PYSITELIB}/synmark/__init__.py
1763${PYSITELIB}/synmark/__init__.pyc 1764${PYSITELIB}/synmark/__init__.pyc
1764${PYSITELIB}/synmark/__init__.pyo 1765${PYSITELIB}/synmark/__init__.pyo
1765${PYSITELIB}/synmark/__main__.py 1766${PYSITELIB}/synmark/__main__.py
1766${PYSITELIB}/synmark/__main__.pyc 1767${PYSITELIB}/synmark/__main__.pyc
1767${PYSITELIB}/synmark/__main__.pyo 1768${PYSITELIB}/synmark/__main__.pyo
1768${PYSITELIB}/synmark/suites/__init__.py 1769${PYSITELIB}/synmark/suites/__init__.py
1769${PYSITELIB}/synmark/suites/__init__.pyc 1770${PYSITELIB}/synmark/suites/__init__.pyc
1770${PYSITELIB}/synmark/suites/__init__.pyo 1771${PYSITELIB}/synmark/suites/__init__.pyo
1771${PYSITELIB}/synmark/suites/logging.py 1772${PYSITELIB}/synmark/suites/logging.py
1772${PYSITELIB}/synmark/suites/logging.pyc 1773${PYSITELIB}/synmark/suites/logging.pyc
1773${PYSITELIB}/synmark/suites/logging.pyo 1774${PYSITELIB}/synmark/suites/logging.pyo
1774${PYSITELIB}/synmark/suites/lrucache.py 1775${PYSITELIB}/synmark/suites/lrucache.py
1775${PYSITELIB}/synmark/suites/lrucache.pyc 1776${PYSITELIB}/synmark/suites/lrucache.pyc
1776${PYSITELIB}/synmark/suites/lrucache.pyo 1777${PYSITELIB}/synmark/suites/lrucache.pyo
1777${PYSITELIB}/synmark/suites/lrucache_evict.py 1778${PYSITELIB}/synmark/suites/lrucache_evict.py
1778${PYSITELIB}/synmark/suites/lrucache_evict.pyc 1779${PYSITELIB}/synmark/suites/lrucache_evict.pyc
1779${PYSITELIB}/synmark/suites/lrucache_evict.pyo 1780${PYSITELIB}/synmark/suites/lrucache_evict.pyo

cvs diff -r1.18 -r1.19 pkgsrc/chat/matrix-synapse/distinfo (switch to unified diff)

--- pkgsrc/chat/matrix-synapse/distinfo 2021/06/06 09:40:34 1.18
+++ pkgsrc/chat/matrix-synapse/distinfo 2021/07/01 08:40:13 1.19
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1$NetBSD: distinfo,v 1.18 2021/06/06 09:40:34 js Exp $ 1$NetBSD: distinfo,v 1.19 2021/07/01 08:40:13 wiz Exp $
2 2
3SHA1 (matrix-synapse-1.35.1.tar.gz) = db4bda55f94b523176a2322665390b637d75618d 3SHA1 (matrix-synapse-1.37.0.tar.gz) = 2ff978e0adc58e9ac5c8a65fafe3d3bbb116e883
4RMD160 (matrix-synapse-1.35.1.tar.gz) = 3493881a1038319eae27a5b6f8e161a214294f69 4RMD160 (matrix-synapse-1.37.0.tar.gz) = 1b6fe0b1f8b055927a5dd25cda289ed48490e6e5
5SHA512 (matrix-synapse-1.35.1.tar.gz) = 02a7a23f8d004c3e7d1af6904f4fac5d403335a7f089b80af367a833c292d0f970938f62a87f87a94ebee5acb41c87d50e337a8a38b0294657731155e7bfa3b3 5SHA512 (matrix-synapse-1.37.0.tar.gz) = b9d985e0f9ca5a671ce36617b6e0b8c23355f9d1431e3dc8cd967d54a0fb982a5fa87f7ec70b9a0982d79319b4c2ae23e0dd5bc71d56964504ed85d137484425
6Size (matrix-synapse-1.35.1.tar.gz) = 7301793 bytes 6Size (matrix-synapse-1.37.0.tar.gz) = 7347804 bytes
7SHA1 (patch-synapse_handlers_room.py) = 5c4a5ff4773b9ae4a8ce2b66ac7cd8aa678627ca 7SHA1 (patch-synapse_handlers_room.py) = 5c4a5ff4773b9ae4a8ce2b66ac7cd8aa678627ca
8SHA1 (patch-synapse_python_dependencies.py) = 914ae3a34a9367b2d479d393ddc7a07cbff65b36 8SHA1 (patch-synapse_python_dependencies.py) = 914ae3a34a9367b2d479d393ddc7a07cbff65b36